*** empty log message ***
[bpt/emacs.git] / lisp / ChangeLog
1 2005-12-09 Nick Roberts <nickrob@snap.net.nz>
2
3 * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
4 No need to check gud-comint-buffer is bound.
5 (gdb): Prevent multiple debugging when first session uses gdba.
6
7 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
8
9 CC Mode update to 5.31.
10
11 * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
12 Emacsen which lack `define-minor-mode'. (Currently Emacs <21. We
13 might do this function properly in the future).
14
15 * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el: New
16 macros c-sentence-end and c-default-value-sentence end, to cope
17 with Emacs 22's new function `sentence-end'.
18
19 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
20
21 * progmodes/cc-cmds.el (c-show-syntactic-information): Solved the
22 compat issue using `c-put-overlay' and `c-delete-overlay'.
23
24 * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay): New
25 compat macros to handle overlays/extents.
26
27 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
28
29 * progmodes/cc-fix.el: Add definitions of the macros push and pop
30 (for GNU Emacs 20.4)
31
32 * progmodes/cc-defs.el:
33 (i) Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4)
34
35 * progmodes/cc-cmds.el (c-show-syntactic-information): change the
36 highlighting mechanism so it will work in XEmacs too.
37
38 * progmodes/cc-defs.el: Insert c-int-to-char.
39
40 * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
41 call to the new macro c-int-to-char. This solves XEmacs's
42 regarding characters as different from integers.
43
44 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
45
46 * progmodes/cc-fonts.el (c-make-syntactic-matcher): New internal
47 helper.
48
49 (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
50 construct to make the indirect face lookup work in XEmacs.
51
52 (c-cpp-matchers): Append the negation char face to the existing
53 fontification, so that the cpp face doesn't disappear. Use
54 `c-make-syntactic-matcher' to avoid negation chars in comments and
55 strings.
56
57 * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
58 to map to `font-lock-negation-char-face' in emacsen where it
59 exists.
60
61 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
62
63 * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
64
65 * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el: Rename
66 "c-subword-move-mode" as "c-subword-mode".
67
68 * progmodes/cc-mode.el: Added tty suitable bindings for C-c
69 <delete> and C-c C-<delete>. (To the c-hungry- delete functions).
70
71 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
72
73 * progmodes/cc-mode.el: Added autoload directive for
74 `c-subword-move-mode' for use in older emacsen.
75
76 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
77
78 * progmodes/cc-mode.el:
79 (i) Insert a binding for C-c C-backspace into
80 c-bind-special-erase-keys which works in TTYs.
81 (ii) Make sure that when file styles are used, any explicitly
82 given style variables take priority over those in the style. Do
83 this by calling `hack-local-variables' a second time.
84
85 * progmodes/cc-vars.el: Add language specific customization
86 widgets for AWK to c-doc-comment-style, c-require-final-newline
87 and c-default-style. Add a defcustom for awk-mode-hook. Give
88 c-syntactic-element and c-syntactic-context doc-strings by
89 directly setting their `variable-documentation' propery. This
90 allows Emacs 22.1 to read these with C-h v.
91
92 * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan
93 Monnier).
94
95 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
96
97 * progmodes/cc-fonts.el, cc-vars.el
98 (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection,
99 gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
100 Masatake YAMATO.
101
102 (c-doc-comment-style): Made GtkDoc default in C mode.
103
104 * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
105 and C-c C-<delete>.
106
107 (c-bind-special-erase-keys): New function for use on
108 `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
109
110 * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
111 <delete> key behavior in XEmacs according to `delete-forward-p'.
112 C.f. `c-electric-delete'.
113
114 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
115
116 * progmodes/cc-mode.el: Give c-hungry-backspace and
117 c-hungry-delete-forward permanent key bindings.
118
119 * progmodes/cc-cmds.el (c-electric-semi&comma): Bind
120 c-syntactic-context for calls to "criteria functions", for
121 consistency with other calls to user functions.
122
123 * progmodes/cc-cmds.el (c-indent-command): expunge use of
124 `current-prefix-arg', since this might be the prefix arg to a
125 command which calls c-indent-command as a function. Change the
126 interactive spec from "p" to "P".
127
128 * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
129 reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
130 was difficult to understand.
131
132 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
133
134 * progmodes/cc-engine.el (c-on-identifier): Fixed bug when at the
135 first char of an identifier.
136
137 * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
138 +" syntax in C++.
139
140 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
141
142 * progmodes/cc-cmds.el (c-mask-paragraph): correct, so that
143 auto-fill doesn't split a c-comment's last word from a hanging
144 "*/" when a space is typed between them after fill-column.
145
146 * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
147
148 * progmodes/cc-styles.el (c-set-style,
149 c-setup-paragraph-variables): Abort the command if we're not in a
150 CC Mode buffer.
151
152 * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
153 with blank comment-prefix, and a blank line as the comment's
154 second line.
155
156 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
157
158 * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
159 Incorporated the patterns added in the Emacs development branch
160 for the new Emacs 22 face `font-lock-negation-char-face'.
161
162 * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
163 of "red" since it stands out better in xterms and DOS terminals.
164
165 * progmodes/cc-engine.el (c-literal-faces): Added
166 `font-lock-comment-delimiter-face' which is new in Emacs 22.
167
168 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
169
170 * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
171 forcibly enable c-electric-flag.
172
173 * progmodes/cc-vars.el, cc-cmds.el: New clean-up
174 `comment-close-slash' on c-electric-slash: if enabled, typing `/'
175 just after the comment-prefix of a C-style comment will close that
176 comment.
177
178 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
179
180 * progmodes/cc-fonts.el (c-basic-matchers-before,
181 c-complex-decl-matchers): Fixed the "not-arrow-prefix" regexp used
182 in Pike.
183
184 * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
185 digraphs.
186
187 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
188 (c-cpp-message-directives, c-cpp-include-directives,
189 c-opt-cpp-macro-define, c-opt-cpp-macro-define-start,
190 c-cpp-expr-directives): Introduced new language constants to
191 control cpp syntax in a cleaner way.
192
193 (c-cpp-expr-functions): Renamed from c-cpp-defined-fns.
194
195 (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
196
197 * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines,
198 c-multiline-string-start-char): New language constants and
199 variables to specify how newlines in string literals work.
200
201 (c-font-lock-invalid-string): Use them.
202
203 * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
204 unbalanced close brace is entered. Optimization by avoiding going
205 back over arbitrarily large blocks. Removed hints that this
206 function only would be relevant/useful in AWK.
207
208 (c-electric-brace): Indent syntactically after the cleanups since
209 lineup functions might do it differently then.
210
211 * progmodes/cc-engine.el, cc-langs.el
212 (c-opt-op-identifier-prefix): New language constant and variable.
213
214 (c-just-after-func-arglist-p, c-after-special-operator-id,
215 c-search-decl-header-end, c-inside-bracelist-p): Use it.
216
217 * progmodes/cc-align.el, cc-engine.el
218 (c-after-special-operator-id): New helper to handle C++ operator
219 identifiers.
220
221 (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p,
222 c-guess-basic-syntax): Handle C++ operator identifiers in
223 declarations.
224
225 * progmodes/cc-langs.el (c-assignment-operators): Added the
226 trigraph version of ^= too.
227
228 * progmodes/cc-langs.el (c-assignment-operators): Added the
229 trigraph version of |= in C++.
230
231 * progmodes/cc-fonts.el (c-font-lock-declarators): Handle
232 `c-decl-hangon-kwds' after the identifier name.
233
234 * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
235 whether an arglist is "nonempty", ignore a comment after the open
236 paren if it isn't followed by a non-comment token on the same
237 line.
238
239 * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4: Enable
240 heuristics below the point to cope with classes inside special
241 brace lists in Pike.
242
243 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
244
245 * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
246
247 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
248
249 * progmodes/cc-guess.el (cc-guess-install): New function to
250 install an already guessed style in another buffer.
251
252 * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
253 sets `inhibit-read-only' - `c-save-buffer-state' should be used
254 anyway if the change always is undone.
255
256 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
257
258 Implement togglable electricity:
259
260 * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
261 saying when it should be used.
262
263 * progmodes/cc-engine.el: Add the new buffer-local variable,
264 c-electric-flag.
265
266 * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
267 c-toggle-auto-newline.
268
269 * progmodes/cc-mode.el: Rename c-toggle-auto-state to
270 c-toggle-auto-newline. Remove the binding for
271 c-toggle-auto-hungry-state. Add the binding C-c C-l for the new
272 c-toggle-electric-state.
273
274 * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
275
276 * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
277 c-\(forward\|backward\)-subword.
278 (c-update-modeline): Add the new modeline flag `l' for
279 `c-electric-flag'. Make the auto-newline flag `a' dependent on
280 `l'.
281 (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'. Make
282 the old name an alias of the new name.
283 (c-toggle-electric-state): New function.
284 c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\):
285 Adapt these functions to do electric things only when
286 c-electric-flag is non-nil.
287 (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
288 new functions from c-electric-brace.
289 (c-point-syntax): Add a check for "virtual semicolons" in AWK
290 mode, so that the tentative extra newline doesn't change the
291 syntax of the following brace.
292 (c-electric-brace): restructure by extracting the above functions.
293 Tidy up the coding somewhat.
294 (c-electric-semi&comma, c-electric-colon, c-electric-paren):
295 restructure a bit.
296
297 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
298
299 * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
300 anchor position(s) using faces. Thanks to Masatake YAMATO for the
301 idea.
302
303 * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
304 (c-submode-indicators): Changed name from `c-auto-hungry-string'
305 since it's now used to track another submode.
306
307 (c-update-modeline): Converted to function and extended to check
308 `c-subword-move-mode'.
309
310 (c-forward-into-nomenclature, c-backward-into-nomenclature):
311 Converted to compat aliases for `c-forward-subword' and
312 `c-backward-subword'.
313
314 * progmodes/cc-subword.el: New functions and minor mode to handle
315 SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
316
317 (c-forward-subword, c-backward-subword, c-mark-subword,
318 c-kill-subword, c-backward-kill-subword, c-transpose-subwords,
319 c-capitalize-subword, c-downcase-subword, c-upcase-subword):
320 Functions corresponding to the standard word handling functions.
321
322 (c-subword-move-mode): Minor mode that replaces all the standard
323 word handling functions with their subword equivalences.
324
325 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
326
327 * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
328 entry for one-liner-defun.
329
330 * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
331 name in its def-edebug-spec.
332
333 * progmodes/cc-cmds.el (c-electric-brace): Make the
334 one-liner-defun clean-up work with empty-defun-braces. o-l-d now
335 compacts space before a comment, if this will make things fit on
336 one line.
337
338 Introduce an "awk" style, mainly for auto-newline and clean-ups.
339
340 * progmodes/cc-align.el: new function c-snug-1line-defun-close
341
342 * progmodes/cc-cmds.el: In c-electric-brace, add code for new
343 clean-up one-liner-defun.
344
345 * progmodes/cc-styles.el: Add the new "awk" style.
346
347 * progmodes/cc-vars.el: Add description of one-liner-defun to
348 c-cleanup-list's doc-string. New user options,
349 c-max-one-liner-length. In c-default-style, set the default style
350 for AWK to "awk".
351
352 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
353
354 * progmodes/cc-engine.el (c-forward-label): Fixed fontification of
355 macros inside labels.
356
357 * progmodes/cc-engine.el (c-looking-at-bos): Obsoleted in favor of
358 `c-at-statement-start-p' and `c-at-expression-start-p'.
359
360 * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
361 error if the mark isn't set.
362
363 * progmodes/cc-engine.el (c-guess-continued-construct,
364 c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
365 accurately detect functions inside functions.
366
367 * progmodes/cc-engine.el (c-at-expression-start-p): New function
368 like `c-at-statement-start-p' that additionally recognizes commas
369 and expression parentheses as delimiters.
370
371 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Added flag
372 to avoid heuristics that doesn't work for unclosed blocks.
373
374 (c-at-statement-start-p): New function.
375
376 * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
377 Objective-C directives, e.g. directives spanning lines should work
378 reasonably well now.
379
380 (c-put-c-type-property, c-clear-c-type-property): New helpers.
381
382 (c-forward-objc-directive): New function to move over any ObjC
383 directive.
384
385 (c-just-after-func-arglist-p, c-guess-basic-syntax,
386 c-basic-matchers-before): Use it.
387
388 (c-font-lock-objc-iip-decl): Removed.
389
390 * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
391 in the template arglist recognition.
392
393 * progmodes/cc-styles.el (c-style-alist): Fixed several
394 inconsistencies in the Whitesmith style.
395
396 * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks): New
397 lineup function to get lines after Whitesmith style blocks
398 correctly indented.
399
400 (c-lineup-whitesmith-in-block): Backed out the compensation for
401 opening parens since it's done using `add' lists in the style
402 definition instead. Don't use the anchor position since it varies
403 too much between the syntactic symbols. :P
404
405 * progmodes/cc-vars.el (c-valid-offset): Updated.
406
407 * progmodes/cc-engine.el (c-evaluate-offset): Extended to handle
408 lists where the offsets are combined according to several
409 different methods: `first', `min', `max', and `add'. Report
410 offset evaluation errors with `c-benign-error' so that some kind
411 of reindentation still is done.
412
413 * progmodes/cc-engine.el (c-guess-basic-syntax): Anchor
414 `arglist-intro' the same way as `arglist-cont-nonempty' and
415 `arglist-close'.
416
417 * progmodes/cc-engine.el (c-guess-basic-syntax): Fixed similar
418 situations for `arglist-cont-nonempty' and `arglist-close'.
419
420 * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New
421 constant.
422
423 * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
424 cc-bytecomp-boundp' in a number of places.
425
426 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fixed a
427 macro related issue.
428
429 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
430
431 * progmodes/cc-awk.el: Change the terminology of regexps: A char
432 list is now
433 [asdf], a char class [:alpha:]. Include code for char classes.
434 Set c-awk-NL-prop on lines ending in open strings. (Bug fix.)
435 Add character classes (e.g. "[:alpha:]") into AWK Mode's regexps.
436
437 Remove (nearly all of) the cruft associated with AWK Mode's former
438 concept of "virtual semicolons":
439
440 Adapt c-beginning-of-statement, c-end-of-statement (together with
441 subfunctions) to use the new notion of "virtual semicolon" in
442 place of the old awkward special handling for AWK. There remains
443 much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
444 * progmodes/cc-cmds.el:
445 (c-ascertain-adjacent-literal): In the backwards direction, now
446 recognises AWK regexp delimiters as string delimiters.
447 (c-after-statement-terminator-p): Adapt for virtual semicolons;
448 check more rigorously for "end of macro".
449 (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
450 virtual semicolons;
451 (c-beginning-of-statement): Adapt for virtual semicolons; Separate
452 out the code for forward movement into ...
453 (c-end-of-statement): Now contains the code for forward movement,
454 adapted for virtual semicolons.
455
456 * progmodes/cc-engine.el:
457 (c-ws*-string-limit-regexp): new regexp.
458 (c-forward-single-comment, c-backward-single-comment): Comment out
459 the (now redundant) "special" AWK stuff.
460
461 * progmodes/cc-styles.el, cc-vars.el: Change the settings of
462 c-string-par-start, c-string-par-separate to be more like Text
463 Mode than Fundamental Mode.
464
465 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
466
467 * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
468 to the fontified region so that fontification doesn't occur
469 outside it
470 (could happen e.g. when fontifying a line with an unfinished
471 declaration).
472
473 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
474
475 * progmodes/cc-awk.el: Regexps for analysing AWK code have been
476 moved to near the start of the file. ^L now separate sections of
477 the file. New defconsts: c-awk-non-eol-esc-pair-re,
478 c-awk-blank-or-comment-line-re,
479 c-awk-one-line-possibly-open-string-re,
480 c-awk-regexp-one-line-possibly-open-char-class-re,
481 c-awk-one-line-possibly-open-regexp-re,
482 c-awk-one-line-non-syn-ws*-re. New functions: c-awk-at-vsemi-p,
483 c-awk-vsemi-status-unknown-p.
484
485 Amend the concept of "virtual semicolons" (in the indentation
486 engine) for languages like AWK, such that they are now
487 conceptually attached to end of the last token of a statement, not
488 the end of the line. (In AWK Mode, however, the pertinent text
489 property is still physically set on the EOL.) Remove the specific
490 tests for awk-mode, thus facilitating the introduction of other
491 language modes where EOLs can end statements. (Note: The
492 funtionality in cc-cmds.el, specifically
493 c-beginning/end-of-statement has yet to be amended.)
494
495 * progmodes/cc-defs.el: New macros c-at-vsemi-p,
496 c-vsemi-status-unknown-p.
497
498 * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
499 c-stmt-delim-chars. New c-lang-defvars: c-at-vsemi-p-fn,
500 c-vsemi-status-unknown-p-fn (in a new page).
501
502 * progmodes/cc-engine.el: In c-beginning-of-statement-1,
503 c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
504 numerous awkward forms like
505 (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
506 with
507 (c-at-vsemi-p). Fix a few typos. In c-guess-basic-syntax, new
508 variable before-ws-ip, the place just after char-before-ip
509 appears.
510
511 * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
512 a comment.
513
514 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
515
516 * progmodes/cc-cmds.el (c-electric-brace): Cleaned up using
517 `c-tentative-buffer-changes'.
518
519 * progmodes/cc-defs.el (c-region-is-active-p): Simplified and
520 converted to macro to choose between Emacs and XEmacs at compile
521 time.
522
523 (c-set-region-active): New set counterpart to
524 `c-region-is-active-p'.
525
526 (c-tentative-buffer-changes): New macro to handle temporary buffer
527 changes in a convenient way.
528
529 (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
530 for `c-tentative-buffer-changes'.
531
532 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tightened up
533 the checks for paren sexps between the point and the keyword, to
534 avoid some false alarms.
535
536 * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
537 Fixed a situation where an error could be thrown for unbalanced
538 parens. Changed to make use of c-keyword-member' to avoid some
539 repeated regexp matches.
540
541 (c-opt-lambda-key, c-opt-inexpr-block-key,
542 c-opt-inexpr-class-key): These language variable are no longer
543 necessary.
544
545 (c-block-stmt-kwds): New language constant used by
546 c-looking-at-inexpr-block'.
547
548 (c-guess-basic-syntax): Removed an optional check that looked at
549 the existence of the now removed language variables.
550
551 * progmodes/cc-engine.el (c-fdoc-shift-type-backward,
552 c-forward-decl-or-cast-1): Fixed invalid recognition of C++ style
553 object instantiation expressions as declarations in some contexts.
554 This bug only affected languages where the declarator can't be
555 enclosed in parentheses.
556
557 * progmodes/cc-styles.el (c-style-alist): Fixed the GNU style to
558 insert newlines before and after substatement braces.
559
560 * progmodes/cc-engine.el: Improved the heuristics for recognizing
561 function declaration headers and the handling of C++ style member
562 init lists.
563
564 (c-just-after-func-arglist-p): Rewritten to use
565 `c-forward-decl-or-cast-1'. Now behaves a bit differently too.
566
567 (c-beginning-of-member-init-list): Removed since it isn't used
568 anymore.
569
570 (c-guess-basic-syntax): Case 5B adapted for the new
571 `c-just-after-func-arglist-p'. Cases 5B.1 and 5B.3 merged. Cases
572 5D.1 and 5D.2 removed since they aren't trigged anymore (case 5B.1
573 covers all cases now).
574
575 * progmodes/cc-defs.el (c-point): Added 'bosws and 'eosws.
576
577 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
578
579 * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
580 c-string-par-start/separate c-sentence-end-with-esc-eol,
581 initialised in c-setup-paragraph-variables, used in string
582 scanning subroutines of c-beginning-of-statement.
583
584 * progmodes/cc-cmds.el (c-electric-brace): don't delete a comment
585 which precedes the newly inserted `{'.
586
587 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
588
589 * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
590 function for declaration level blocks. It should now cope with
591 templates better and also be a lot more comprehensible.
592
593 (c-looking-at-decl-block): The new function.
594
595 (c-search-uplist-for-classkey): The old one. It's now a wrapper
596 for compatibility.
597
598 (c-add-class-syntax, c-guess-continued-construct,
599 c-guess-basic-syntax): Adapted for `c-looking-at-decl-block'.
600
601 (c-decl-block-key): Changed to tell apart ambiguous and
602 unambiguous keywords. Pike specials are now handled directly in
603 the code instead.
604
605 (c-block-prefix-disallowed-chars, c-block-prefix-charset): New
606 language constants and variables to make the backward skip in
607 `c-looking-at-decl-block' as tight as possible.
608
609 (c-nonsymbol-token-char-list): New language constant.
610
611 * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
612 find balanced template arglists backwards.
613
614 * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
615 making char classes for `c-syntactic-skip-backward'.
616
617 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplified case
618 16D - can't be a class-close at that point.
619
620 * progmodes/cc-engine.el (c-guess-basic-syntax,
621 c-add-class-syntax): Don't narrow out the enclosing declaration
622 level. This makes everything a lot easier, and it was actually
623 only four small places that needed it to work. Some places that
624 previously did `widen' are removed now, which has the effect that
625 `c-guess-basic-syntax' never will look at things outside the
626 current narrowment now. The anchor position for `topmost-intro'
627 is affected by this, but it was so bogus it was basically useless
628 before, and now it's equally bogus but in a slightly different
629 way.
630
631 (c-narrow-out-enclosing-class): Gone.
632
633 (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
634 the narrowed region.
635
636 (c-least-enclosing-brace): Removed silly optional argument.
637
638 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fixed bug where
639 the point could be left directly after an open paren when finding
640 the beginning of the first decl in the block.
641
642 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
643 Specify which submatch to use.
644
645 * progmodes/cc-langs.el (c-symbol-start): Include '@' in ObjC.
646
647 (c-decl-start-re): No no longer any need for special treatment of
648 ObjC due to the above.
649
650 (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
651 presumably follows C in that regard.
652
653 * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
654 New language constants to specify operator tokens inside
655 identifiers in a more high level way.
656
657 (c-opt-identifier-prefix-key): New internal language constant.
658
659 (c-opt-identifier-concat-key, c-opt-after-id-concat-key,
660 c-identifier-start, c-identifier-key): Now completely calculated
661 from other constants.
662
663 (c-identifier-last-sym-match): Decommissioned since it's no longer
664 used.
665
666 (c-operators): Use `c-identifier-ops'. Documented
667 `postfix-if-paren'.
668
669 * progmodes/cc-engine.el (c-forward-name): Removed the
670 optimization when c-identifier-key is equal to c-symbol-key since
671 it doesn't work in byte compiled files. Don't record empty
672 regions as identifiers.
673
674 * progmodes/cc-langs.el (c-filter-ops): New helper function to
675 simplify access to `c-operators' and its likes.
676
677 (c-operator-list, c-all-op-syntax-tokens,
678 c-nonsymbol-token-regexp, c-<>-multichar-token-regexp,
679 c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds,
680 c-primary-expr-regexp, c-cast-parens): Use it.
681
682 * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
683 an explicit language in functions.
684
685 * progmodes/cc-defs.el (c-make-keywords-re): Added an appendable
686 variant of adornment.
687
688 * progmodes/cc-langs.el (c-any-class-key): Removed unused language
689 variable.
690
691 (c-type-decl-prefix-key): Removed some now unnecessary cruft from
692 the Pike value.
693
694 * progmodes/cc-engine.el (c-on-identifier,
695 c-simple-skip-symbol-backward): Small fix for handling "-"
696 correctly in `skip-chars-backward'. Affected the operator lfun
697 syntax in Pike.
698
699 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disabled the
700 diagnostic message about precompiled language vars not being used.
701
702 * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
703 "__attribute__" is followed by a parenthesis.
704
705 (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re,
706 c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
707 language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
708
709 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el: Internal
710 cleanups to properly detect the declared identifiers in various
711 declarations.
712
713 (c-decl-start-kwds): New language constant to recognize
714 declarations that can start anywhere. Used for class declarations
715 in Pike.
716
717 (c-specifier-key, c-not-decl-init-keywords,
718 c-decl-prefix-or-start-re, c-find-decl-prefix-search,
719 c-find-decl-spots): Implement `c-decl-start-kwds'.
720
721 (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds,
722 c-decl-hangon-key, c-forward-decl-or-cast-1): Separated the
723 handling of the compiler specific extension keywords into a new
724 language constant `c-decl-hangon-kwds' that defines keyword
725 clauses to be ignored in declarations.
726
727 (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
728 past unrecognized tokens when handling `c-colon-type-list-kwds'.
729 Necessary to stop at the declared identifier in e.g. IDL valuetype
730 declarations.
731
732 (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds,
733 c-prefix-spec-kwds-re, c-postfix-spec-kwds,
734 c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key,
735 c-forward-decl-or-cast-1): Recognize the declared identifier in
736 class and enum declarations as such and not as part of the type.
737
738 (c-forward-decl-or-cast-1, c-forward-label): Relaxed the
739 interpretation of PRECEDING-TOKEN-END when there's no preceding
740 token.
741
742 (c-forward-decl-or-cast-1): Don't disregard sure signs of
743 declarations when there's some syntax error later on.
744
745 (c-complex-decl-matchers): Did away with a reference to
746 `c-specifier-key'.
747
748 * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
749 value - this variable is always dynamically bound.
750
751 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el,
752 cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el,
753 cc-cmds.el, cc-defs.el: Changed the policy for marking up
754 functions that might do hidden buffer changes: All such internal
755 functions are now marked instead of those that don't.
756
757 (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments,
758 c-(forward|backward)-single-comment, c-parse-state, c-on-identifier,
759 c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments,
760 c-literal-type): Allow these functions to make hidden buffer changes,
761 so that they are free to use text property caching later on.
762
763 (c-electric-backspace, c-electric-delete-forward, c-electric-pound,
764 c-electric-brace, c-electric-slash, c-electric-star,
765 c-electric-semi&comma, c-electric-colon, c-electric-lt-gt,
766 c-electric-paren, c-electric-continued-statement, c-indent-command,
767 c-indent-region, c-mask-paragraph, c-indent-new-comment-line,
768 c-context-line-break): Added `c-save-buffer-state' calls to comply
769 with the changed semantics of the functions above.
770
771 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fixed a bug
772 when macros occur in obscure places. Optimized the sexp movement
773 a bit.
774
775 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
776
777 Enhancements for c-beginning-of-statement to work in AWK Mode:
778
779 * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
780 (completed statement) with `}' (statement completed by closing
781 brace or semicolon) and `$' (statement completed by EOL).
782
783 (c-awk-virtual-semicolon-ends-prev-line-p,
784 c-awk-virtual-semicolon-ends-line-p,
785 c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward,
786 c-awk-at-statement-end-p): new functions
787
788 * progmodes/cc-cmds.el: Simplify the structure of functions
789 c-forward-over-illiterals, c-back-over-illiterals. Enhance these
790 two functions and c-beginning-of-statement to handle AWK Mode.
791
792 * progmodes/cc-engine.el: Enhance c-forward-single-comment,
793 c-backward-single-comment for AWK mode. Attempt to clarify their
794 doc-strings.
795
796 * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
797
798 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
799
800 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
801 label handling. Labels are now recognized in a uniform and more
802 robust way, regardless of context. Text properties are put on all
803 labels to recognize the following declarations better. Multiword
804 labels are handled both in indentation and fontification for the
805 benefit of language extensions like Qt. For consistency, keywords
806 in labels are now fontified with the label face instead. That
807 also applies to "case" and "default".
808
809 (c-beginning-of-statement-1): Fixed some bugs in the label
810 handling. Disregard `c-nonlabel-token-key' in labels that begin
811 with `c-label-kwds'.
812
813 (c-find-decl-spots): Support that the callback adds more
814 `c-decl-end' spots to find.
815
816 (c-forward-decl-or-cast-1): Don't treat a list of plain
817 identifiers followed by a colon as a declaration.
818
819 (c-forward-label): New function to recognize labels.
820
821 (c-guess-basic-syntax): Replaced uses of `c-label-key' with
822 `c-forward-label'. Moved the label recognition cases (14 and 15)
823 earlier since they aren't so context sensitive now. Handle labels
824 on the top level gracefully. Moved access label recognition to
825 the generic label case (CASE 15) - removed CASE 5E.
826
827 (c-font-lock-declarations): Added recognition of labels in the
828 same round since we need to handle labels in parallell with other
829 declarations to recognize both accurately. It should also improve
830 speed.
831
832 (c-simple-decl-matchers, c-basic-matchers-after): Moved
833 `c-font-lock-labels' so that it only is used on decoration level 2
834 since `c-font-lock-declarations' handles it otherwise.
835
836 (c-complex-decl-matchers): Removed the simplistic recognition of
837 access labels.
838
839 (c-decl-prefix-re): Removed the kludges that was necessary to cope
840 with labels earlier.
841
842 (c-decl-start-re): New language variable to make
843 `c-font-lock-declarations' stop for the special protection labels
844 in Objective-C that start with '@'.
845
846 (c-label-key): Removed since it's no longer used.
847
848 (c-recognize-colon-labels, c-label-prefix-re): New language
849 constants to support recognition of generic colon-terminated
850 labels.
851
852 (c-type-decl-end-used): `c-decl-end' is now used whenever there
853 are colon terminated labels.
854
855 * progmodes/cc-align.el (c-lineup-arglist): Fixed bug when the
856 first argument starts with a special brace list.
857
858 * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1,
859 c-font-lock-declarations): Broke out the declaration and cast
860 recognition from `c-font-lock-declarations' to a new function, so
861 that it can be used in the indentation engine.
862
863 * progmodes/cc-engine.el (c-find-decl-spots): Fixed bug in backing
864 up to the start of the literal. Fixed bug with the point on the
865 wrong side of the search limit that could happen when the start
866 position is inside a literal.
867
868 * progmodes/cc-engine.el (c-parse-state,
869 c-invalidate-state-cache): Modified the use of `c-state-cache-end'
870 so that it's kept a little bit back to increase the hit rate.
871
872 (c-parse-state): Changed the macro handling and fixed some
873 glitches. Macro context is checked more often than necessary now,
874 but otoh less garbage conses are generated.
875
876 * progmodes/cc-engine.el (c-parse-state,
877 c-invalidate-state-cache): Cache the last position where
878 `c-state-cache' applies. This can speed up refontification quite
879 a bit in blocks where there are many non-brace parens before the
880 point.
881
882 (c-state-cache-end): New variable for this.
883
884 (c-guess-basic-syntax, c-debug-parse-state): Adapted for the new
885 cache variable.
886
887 * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
888 get close initial continue positions when the start position is
889 inside a literal or macro. Do not call the callback for spots
890 before the start position (which can happen e.g. for `c-decl-end'
891 spots inside comments). Optimize better in special cases when the
892 region is a single line inside a literal or macro (typically when
893 the current line is refontified).
894
895 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplified calls
896 to `c-add-stmt-syntax' - there's no need to explicitly whack off
897 entries from the paren state.
898
899 * progmodes/cc-engine.el (c-add-stmt-syntax): Narrowed down the
900 special case for "else if" clauses.
901
902 * progmodes/cc-engine.el (c-looking-at-inexpr-block,
903 c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
904
905 * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks): New
906 language variable to recognize the gcc extension with statement
907 blocks inside expressions.
908
909 * progmodes/cc-engine.el (c-add-stmt-syntax): Restructured to make
910 it somewhat more comprehensible. The argument AT-BLOCK-START is
911 no longer used and hence removed.
912
913 (c-guess-continued-construct, c-guess-basic-syntax): Updated calls
914 to `c-add-stmt-syntax'.
915
916 * progmodes/cc-engine.el (c-backward-to-decl-anchor): Use
917 `c-beginning-of-statement-1' instead of duplicating parts of it.
918 This fixes bogus label recognition.
919
920 * progmodes/cc-engine.el (c-add-type, c-check-type,
921 c-forward-name, c-forward-type): Improved storage of template
922 types in `c-found-types' so that they can be recognized better.
923
924 (c-syntactic-content): Added option to skip past nested parens.
925
926 * progmodes/cc-engine.el (c-forward-name): Set
927 `c-last-identifier-range' all the time. It's less work that way.
928 Handle that there might not be an identifier to store in
929 `c-last-identifier-range'.
930
931 (c-forward-type): Handle that `c-last-identifier-range' might be
932 nil from `c-forward-name'.
933
934 * progmodes/cc-defs.el: (c-safe-scan-lists,
935 c-(go-)?(up|down)-list-(forward|backward)): Added limit arguments.
936
937 * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
938 to work even if the form fails.
939
940 * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
941 down in a large file in one go.
942
943 (c-get-fallback-start-pos): New helper function for
944 `c-parse-state'.
945
946 * progmodes/cc-align.el (c-lineup-assignments): New lineup
947 function which is like `c-lineup-math' but returns nil instead of
948 `c-basic-offset' when it doesn't match.
949
950 (c-lineup-math): Changed to use `c-lineup-assignments'.
951
952 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
953
954 * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
955 c-beginning-of-statement. New subfunctions
956 c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
957
958 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
959
960 * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
961 hardcoded char classes whereever possible. Changed a couple of
962 places to use skip by syntax instead of skip by char class.
963
964 * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
965 Fixed a bug in the regexp that caused extreme backtracking.
966
967 * progmodes/cc-langs.el (c-block-comment-starter,
968 c-block-comment-ender): New language constants to specify in a
969 single place how block comments look.
970
971 (c-comment-start-regexp, c-block-comment-start-regexp,
972 comment-start, comment-end, comment-start-skip,
973 c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws,
974 c-syntactic-ws, c-nonempty-syntactic-ws,
975 c-single-line-syntactic-ws, c-syntactic-eol): Now built from
976 `c-line-comment-starter', `c-block-comment-starter' and
977 `c-block-comment-ender'.
978
979 (c-block-comment-regexp, c-unterminated-block-comment-regexp): New
980 language constants to break up things a bit.
981
982 (c-simple-ws): New language constant for simple whitespace.
983
984 * progmodes/cc-defs.el (c-concat-separated): New convenience
985 function.
986
987 * progmodes/cc-defs.el (c-make-keywords-re): Added kludge for bug
988 in `regexp-opt' in Emacs 20 and XEmacs when strings contain
989 newlines. Allow and ignore nil elements in the list.
990
991 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
992
993 * progmodes/cc-cmds.el: Comment out a (n almost certainly
994 superfluous) check, (eq here (point-max)) in
995 c-beginning-of-statement.
996
997 * progmodes/cc-cmds.el: Tidy up the comments in
998 c-beginning-of-statement and subfunctions.
999
1000 * progmodes/cc-awk.el: Replace calls to put-text-property to the
1001 more flexible c-put-char-property and c-clear-char-properties.
1002 Add the author's email address.
1003
1004 * progmodes/cc-langs.el: New variable,
1005 c-block-comment-start-regexp.
1006
1007 * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
1008 closing "*/" of a block comment.
1009
1010 * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
1011 subfunctions) so that it works at BOB and EOB.
1012
1013 * progmodes/cc-cmds.el, cc-vars.el: More updating of
1014 c-beginning-of-statement, including new variable
1015 c-block-comment-start-regexp.
1016
1017 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1018
1019 * progmodes/cc-langs.el (c-known-type-key): Optimize simple
1020 symbols from `*-font-lock-extra-types' so that there's no need to
1021 use `regexp-opt' on those lists.
1022
1023 * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
1024 `c-type-modifier-kwds' is empty.
1025
1026 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
1027 there are several strings on the same line.
1028
1029 * progmodes/cc-engine.el (c-literal-limits): Removed the
1030 compatibility function for older emacsen. `c-literal-limits-fast'
1031 has now taken the place of this function.
1032
1033 * progmodes/cc-vars.el (c-emacs-features): Removed compatibility
1034 with older emacsen: We now require 'pps-extended-state.
1035
1036 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1037
1038 * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
1039 which obviates the need to hack sentence-end. This now handles
1040 escaped newlines in strings correctly. Correct minor bugs in
1041 c-move-over-sentence and in c-beginning-of-statement.
1042
1043 * progmodes/cc-cmds.el (c-beginning-of-statement (and
1044 subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
1045 that movement over macros and code are rigorously separated from
1046 eachother. Correct a few incidental bugs.
1047
1048 * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
1049 Improve its doc-string. Improve the handling of certain specific
1050 cases.
1051
1052 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1053
1054 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
1055 (c-guess-basic-syntax): Changed the way class-level labels are
1056 recognized; they can now contain essentially any symbols.
1057
1058 (c-opt-extra-label-key): New language variable to cope with the
1059 special protection label syntax in Objective-C.
1060
1061 (c-opt-access-key): Removed; this is now handled better by
1062 `c-nonlabel-token-key' and `c-opt-extra-label-key'.
1063
1064 (c-complex-decl-matchers): Update to handle that
1065 `c-opt-access-key' no longer exists.
1066
1067 * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
1068 improved label recognition in `c-beginning-of-statement-1'.
1069
1070 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
1071 Recognize bitfields better.
1072
1073 * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
1074 Removed some cruft and fixed a bug that could cause it to go to a
1075 position further down.
1076
1077 * progmodes/cc-langs.el, cc-engine.el
1078 (c-beginning-of-statement-1): Improved detection of labels in
1079 declaration contexts.
1080
1081 (c-beginning-of-decl-1): Use it.
1082
1083 (c-nonlabel-token-key): New language constant and variable needed
1084 by `c-beginning-of-statement-1'.
1085
1086 * progmodes/cc-engine.el (c-guess-basic-syntax): Fixed bug that
1087 manifested itself due to the correction in `c-forward-sexp'.
1088
1089 * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp): Made
1090 these behave as documented when used at the buffer limits.
1091
1092 * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
1093 (c-type-decl-end-used): Made this a language variable.
1094
1095 * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
1096 correctly when `combine-after-change-calls' is used together with
1097 temporary narrowings.
1098
1099 * progmodes/cc-engine.el (c-beginning-of-statement-1): Report
1100 labels correctly when the start point is immediately after the
1101 colon.
1102
1103 * progmodes/cc-defs.el (c-parse-sexp-lookup-properties): Removed
1104 since it isn't used anymore.
1105
1106 * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
1107 bracket arglists such as template parens in C++.
1108
1109 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fixed a bug
1110 in the last check-in. Some optimization.
1111
1112 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fixed bug
1113 where it could stop at the same level in a preceding sexp when
1114 PAREN-LEVEL is set.
1115
1116 * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
1117 text property lookup only when it's needed.
1118
1119 * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
1120 Changed the policy for paren marked angle brackets to be more
1121 persistent; once marked they remain marked even when they're found
1122 to be unbalanced in the searched region. This should keep the
1123 paren syntax around even when individual lines are refontified in
1124 multiline template arglists.
1125
1126 (c-parse-and-markup-<>-arglists): New dynamically bound variable
1127 to control markup so that incorrect angle bracket arglists aren't
1128 marked in contexts where the correct value for
1129 `c-disallow-comma-in-<>-arglists' isn't known.
1130
1131 (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
1132 argument has become `c-parse-and-markup-<>-arglists'.
1133
1134 (c-remove-<>-arglist-properties): Removed - no longer used.
1135
1136 (c-after-change-check-<>-operators): New function used on
1137 `after-change-functions' to avoid that "<" and ">" characters that
1138 are part of longer operators have paren syntax.
1139
1140 (c-<>-multichar-token-regexp): New language variable used by
1141 `c-after-change-check-<>-operators'.
1142
1143 (c-after-change): Call `c-after-change-check-<>-operators'.
1144
1145 (c-font-lock-<>-arglists): Use the context properties set by
1146 `c-font-lock-declarations' to set
1147 `c-disallow-comma-in-<>-arglists' correctly to avoid doing invalid
1148 markup.
1149
1150 (c-font-lock-declarations): Removed code that undoes the invalid
1151 markup done by `c-font-lock-<>-arglists'.
1152
1153 (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
1154 after `c-font-lock-declarations'.
1155
1156 * progmodes/cc-engine.el (c-syntactic-skip-backward): Added
1157 paren-level feature.
1158
1159 (c-guess-basic-syntax): Improved the anchor position for
1160 `template-args-cont' in nested template arglists. There's still
1161 much to be desired in this area, though.
1162
1163 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1164
1165 * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
1166 Make the "Text Filling and Line Breaking" commands work for AWK
1167 buffers.
1168
1169 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1170
1171 * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
1172 Removed;
1173 (c-major-mode-is 'awk-mode) can be used instead now.
1174
1175 * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
1176 it doesn't work no longer are supported.
1177
1178 * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el,
1179 cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
1180 requires support for the syntax-table' text property, which rules
1181 out Emacs 19 and XEmacs < 21.4. Removed various compatibility
1182 cruft associated with those versions.
1183
1184 * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
1185 for the `syntax-table' text property, which rules out Emacs 19 and
1186 XEmacs < 21.4. Removed various compatibility cruft associated
1187 with those versions.
1188
1189 * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
1190 support for the `syntax-table' text property.
1191
1192 * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
1193 variable and use an extra quoted face name instead. All the
1194 emacsen flavors handle that correctly.
1195
1196 * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare,
1197 c-font-lock-declarators, c-font-lock-declarations,
1198 c-complex-decl-matchers, c-basic-matchers-after): Use a text
1199 property to mark the items in in declarator lists to handle
1200 refontification inside multiline declarations better.
1201
1202 * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
1203 construct like "a * b = c;" as a declaration.
1204
1205 2005-12-08 Kim F. Storm <storm@cua.dk>
1206
1207 * emulation/cua-base.el (cua-use-hyper-key): Replaced by ...
1208 (cua-rectangle-modifier-key): ... this. New defcustom. Can now
1209 select either meta, hyper, or super modifier for rectangle commands.
1210 (cua--rectangle-modifier-key): New defvar.
1211 (cua--M/H-key): Use it. Remove special case for 'space.
1212 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
1213 on X, to meta otherwise. Always bind C-return to toggle
1214 rectangle. Pass ?\s instead of 'space to cua--M/H-key.
1215
1216 * emulation/cua-rect.el (cua-help-for-rectangle): Use
1217 cua--rectangle-modifier-key. Handle super modifier too.
1218 (cua--init-rectangles): Always bind C-return to toggle rectangle.
1219 Pass ?\s instead of 'space to cua--M/H-key and cua--rect-M/H-key.
1220
1221 * emulation/cua-rect.el (cua--extract-rectangle): Don't use \s
1222 in strings.
1223
1224 * ido.el: Move Acknowledgements and History after Commentary.
1225 Minor changes to Commentary.
1226
1227 * emulation/cua-base.el (cua--select-keymaps): Enable repeat
1228 keymap if cua--prefix-override-timer equals 'shift.
1229 (cua--shift-control-prefix): New function; emulate "type prefix
1230 key twice" functionality to handle shifted prefix key override.
1231 (cua--shift-control-c-prefix, cua--shift-control-x-prefix): New
1232 commands.
1233 (cua--init-keymaps): Bind them to S-C-c and S-C-x.
1234
1235 2005-12-08 Carsten Dominik <dominik@science.uva.nl>
1236
1237 * textmodes/org.el: (org-insert-heading): Try to do items before
1238 headings.
1239 (org-agenda-mode): Quote `org-agenda-mode-hook'.
1240 (org-insert-item): New function.
1241 (org-renumber-ordered-list): Don't skip to higher level lists.
1242
1243 2005-12-08 Juri Linkov <juri@jurta.org>
1244
1245 * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
1246
1247 * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
1248
1249 * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
1250
1251 * pcvs.el (defun-cvs-mode): Put `definition-name' property on
1252 the constructed function name fun-1.
1253
1254 * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
1255 because such links don't lead to parent documentation.
1256
1257 2005-12-08 Kenichi Handa <handa@m17n.org>
1258
1259 * descr-text.el (describe-char): Use *Help-2* buffer if the
1260 current buffer is *Help*. Call describe-text-properties while
1261 setting the original buffer.
1262
1263 2005-12-07 Bill Wohler <wohler@newt.com>
1264
1265 * files.el (auto-mode-alist): Remove mh-letter-mode. Unnecessary,
1266 and causes problems with non-MH users (such as Gnus users).
1267
1268 2005-12-08 Nick Roberts <nickrob@snap.net.nz>
1269
1270 * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
1271 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
1272 (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
1273 command "info sources". Move calls to GDB command "list".
1274 (gdb-find-file-hook): Just use gdb-source-file-list.
1275 (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
1276 (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
1277 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
1278 (gdb-data-list-register-values-handler): Use correct trigger name.
1279
1280 2005-12-07 Kim F. Storm <storm@cua.dk>
1281
1282 * ido.el (ido-completion-map): Renamed from ido-mode-map.
1283 (ido-common-completion-map, ido-file-completion-map)
1284 (ido-file-dir-completion-map, ido-buffer-completion-map):
1285 Renamed from ido-mode-....-map.
1286 (ido-init-completion-maps): Renamed from ido-init-mode-maps.
1287 (ido-setup-completion-map): Renamed from ido-define-mode-map.
1288 (ido-read-internal): Bind minibuffer-local-filename-completion-map
1289 to ido-completion-map.
1290
1291 2005-12-07 Kenichi Handa <handa@m17n.org>
1292
1293 * international/mule-cmds.el
1294 (set-display-table-and-terminal-coding-system): If the coding
1295 system specified in `unibyte-display' property is different from
1296 the arg coding-system, don't setup standard-display-table.
1297
1298 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1299
1300 * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
1301 that comments end at \n, regardless of selective-display.
1302
1303 2005-12-07 Nick Roberts <nickrob@snap.net.nz>
1304
1305 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
1306 (gdb-version): New variables.
1307 (gdb-source-file-list, gdb-register-names)
1308 (gdb-changed-registers): New variables for use with GDB 6.4+.
1309 (gdb-ann3): Replace with...
1310 (gdb-init-1, gdb-init-2): ...two new functions.
1311 (gdba, gdb-prompt): Call gdb-init-1.
1312 (gdb-get-version): New function. Call gdb-init-2 from here.
1313 (gud-watch): Make it work with mouse events too.
1314 (gdb-post-prompt): Don't add to queue until GDB version is known.
1315 (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
1316 (gdb-locals-mode): Use gdb-version.
1317 (gdb-memory-format-map, gdb-memory-unit-map)
1318 (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
1319 (gdb-locals-font-lock-keywords-1)
1320 (gdb-locals-font-lock-keywords-2): New variables.
1321 (gdb-find-file-hook): Make it work with GDB 6.4+ too.
1322 (gdb-set-gud-minor-mode-existing-buffers-1)
1323 (gdb-var-list-children-1, gdb-var-list-children-handler-1)
1324 (gdb-var-update-1, gdb-var-update-handler-1)
1325 (gdb-data-list-register-values-handler)
1326 (gdb-data-list-register-values-custom)
1327 (gdb-get-changed-registers, gdb-get-changed-registers-handler)
1328 (gdb-stack-list-locals-handler, gdb-get-register-names):
1329 New functions for use with GDB 6.4+.
1330 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
1331 (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
1332 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
1333 (gdb-stack-list-locals-regexp)
1334 (gdb-data-list-register-names-regexp): New regexps for use with
1335 GDB 6.4+.
1336
1337 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1338
1339 * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
1340
1341 2005-12-06 Nozomu Ando <nand@mac.com> (tiny patch)
1342
1343 * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
1344 prompts work for AUTH PLAIN. Also reported by Steve Allan
1345 <seallan@verizon.net>.
1346
1347 2005-12-06 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
1348
1349 * frame.el (set-frame-parameter): Add doc string.
1350
1351 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
1352
1353 * textmodes/org.el: (org-occur-highlights): New variable.
1354 (org-highlight-new-match, org-remove-occur-highlights): New functions.
1355 (org-highlight-sparse-tree-matches): New option.
1356 (org-do-occur): New function.
1357 (org-get-heading): Make it work also at beginning of line.
1358 (org-category-table): New variable.
1359 (org-get-category-table, org-get-category)
1360 (org-camel-to-words, org-link-search): New functions.
1361 (org-select-this-todo-keyword): New variable.
1362 (org-todo-list): New command.
1363 (org-shiftright, org-shiftleft): New commands.
1364 (org-agenda-todo): Add prefix argument.
1365 (org-show-hierarchy-above): New option.
1366 (org-show-todo-tree): Numerical prefix creates tree for specific
1367 TODO keyword.
1368 (org-outline-level): New function, to assign a level to plain
1369 lists items.
1370 (org-cycle-include-plain-lists): New option.
1371 (org-mode): Use `org-outline-level' as value of `outline-level'.
1372 (org-cycle): Temporarily switch `outline-regexp' if
1373 `org-cycle-include-plain-lists' is non-nil.
1374 (org-start-icalendar-file): Fix format bug.
1375 (org-agenda-get-day-entries): Create category table.
1376 (org-agenda-get-todos, org-agenda-get-timestamps)
1377 (org-agenda-get-deadlines, org-agenda-get-scheduled)
1378 (org-agenda-get-blocks): Use `org-get-category'.
1379 (org-context-in-file-links): Rename from
1380 `org-line-numbers-in-file-links' .
1381
1382 2005-12-06 Romain Francoise <romain@orebokech.com>
1383
1384 * window.el (balance-windows): Delete extraneous third arg in call
1385 to `enlarge-window'.
1386
1387 2005-12-06 Kenichi Handa <handa@m17n.org>
1388
1389 * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
1390
1391 2005-12-06 Nick Roberts <nickrob@snap.net.nz>
1392
1393 * progmodes/gdb-ui.el (gdb-var-create-handler)
1394 (gdb-var-evaluate-expression-handler, gdb-frame-handler)
1395 (gdb-var-list-children-handler, gdb-var-update-handler):
1396 Current buffer is already gdb-partial-output-buffer, don't
1397 make it current again.
1398
1399 2005-12-05 Luc Teirlinck <teirllm@auburn.edu>
1400
1401 * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
1402 (list-buffers-noselect): Use it.
1403
1404 2005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
1405
1406 * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
1407 (mail-yank-ignored-headers): Use regexp-opt.
1408 (mail-mode-map): Move initialization into declaration.
1409 (mail-sent-via): Remove unused shadowed var `to-line'.
1410 (mail-mailer-swallows-blank-line): Use with-temp-buffer.
1411 (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
1412 (mail-do-fcc): Use dolist and push.
1413 (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
1414 (mail-yank-ignored-headers): Don't autoload.
1415
1416 2005-12-05 Kenichi Handa <handa@m17n.org>
1417
1418 * international/mule-cmds.el (set-language-info-internal): New fun.
1419 (set-language-info): Call set-language-info-internal to update
1420 language-info-alist. If LANG-ENV is the current one, call
1421 set-language-environment to make INFO effective now.
1422 (set-language-info-alist): Likewise.
1423 (locale-language-names): With locale "en", use English
1424 lang. env. but set the default codings to iso-8859-1.
1425
1426 2005-12-04 Nick Roberts <nickrob@snap.net.nz>
1427
1428 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
1429 (gdb-speedbar-auto-raise): Echo new state in minibuffer.
1430 (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
1431 for plain strings.
1432 (gdb-frames-mode): Remove redundant call to font-lock-mode.
1433 (gdb-all-registers): Rename from toggle-gdb-all-registers.
1434 Create registers buffer if necessary. Echo new state in minibuffer.
1435 (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
1436
1437 2005-12-03 Chong Yidong <cyd@stupidchicken.com>
1438
1439 * info.el (Info-fontify-node): Match external links using
1440 non-directory part of filename.
1441
1442 2005-12-04 Juri Linkov <juri@jurta.org>
1443
1444 * font-core.el (global-font-lock-mode): Use define-global-minor-mode
1445 instead of easy-mmode-define-global-mode. Add `:group font-lock'.
1446 (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
1447 because there is no customization option for it.
1448
1449 * font-lock.el (lisp-font-lock-keywords-1):
1450 Add define-global-minor-mode.
1451
1452 * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
1453
1454 * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
1455 properties on the constructed variable names.
1456
1457 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
1458 Put `definition-name' properties on the constructed function names
1459 next-sym and prev-sym.
1460
1461 * emacs-lisp/find-func.el (find-function-regexp):
1462 Add define-global-minor-mode. Replace `easy-mmode-define-global-mode'
1463 with `easy-mmode-define-[a-z-]+'. Add easy-menu-define.
1464 (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
1465 and easy-menu-define.
1466
1467 * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
1468 easy-mmode-define-global-mode and define-global-minor-mode.
1469 (lisp-imenu-generic-expression): Add define-global-minor-mode.
1470
1471 * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
1472 instead of easy-mmode-define-global-mode.
1473
1474 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
1475 Use define-minor-mode instead of easy-mmode-define-minor-mode.
1476
1477 * cus-edit.el (customize-group, customize-group-other-window):
1478 Filter out autoloaded options from the group completion list by
1479 using heuristics that autoloaded groups don't have `custom-autoload'
1480 property on their symbols (they have only `custom-loads').
1481
1482 * simple.el (completion-setup-function): Put completions-common-part
1483 face on complete completion string too (i.e. completion string
1484 without completions-first-difference face).
1485
1486 * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
1487
1488 2005-12-03 Eli Zaretskii <eliz@gnu.org>
1489
1490 * view.el (view-mode): Doc fix.
1491
1492 * disp-table.el (standard-display-european): Add to the warning
1493 message a reference to the doc string.
1494
1495 * play/yow.el (apropos-zippy): Call print-help-return-message,
1496 similar to other Help and Apropos commands.
1497
1498 * help.el (print-help-return-message): If pop-up-frames is
1499 non-nil, set up help-return-method to delete the help window and,
1500 possibly, its frame as well, and don't display message about
1501 scrolling the help window. Doc fix.
1502 (help-return-method): Doc fix.
1503
1504 2005-12-03 Martin Rudalics <rudalics@gmx.at> (tiny change)
1505
1506 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
1507 whereby names of length one or names starting with a
1508 symbol-constituent character would not be returned.
1509
1510 2005-12-03 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
1511
1512 * subr.el (atomic-change-group): Add edebug and indentation spec.
1513
1514 2005-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
1515
1516 * completion.el (save-completions-file-name): Fix typo in last change.
1517
1518 2005-12-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1519
1520 * info.el: Move back/forward history to the beginning of the tool bar.
1521
1522 2005-12-02 Ken Manheimer <ken.manheimer@gmail.com>
1523
1524 * allout.el:(eval-when-compile): Remove unnecessary load of 'cl.
1525 Add fset of allout-real-isearch-abort during compile to fix
1526 byte-compilation warnings.
1527 (allout-mode-p): Move definition of this macro above all uses, or
1528 byte compilation in barren emacs (eg, during emacs build) will
1529 lack the definition.
1530 (allout-mode): Move this variable above any uses, or byte
1531 compilation will fail.
1532 (allout-resolve-xref): Remove use of personal file-reference function.
1533 (allout-toggle-current-subtree-encryption): Do the current (ie,
1534 visible containing) topic, rather than nearest around point. Doc fix.
1535 (allout-toggle-subtree-encryption): New function, workhorse that
1536 works on nearest topic containing point.
1537 (allout-encrypt-string): Signal requirement for newer version of pgg.
1538 (allout-resumptions): Doc fix.
1539
1540 2005-12-02 Eli Zaretskii <eliz@gnu.org>
1541
1542 * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
1543
1544 2005-12-02 Agustin Martin <agustin.martin@hispalinux.es>
1545
1546 * textmodes/flyspell.el (flyspell-external-point-words):
1547 Consider a misspelling as found in the string search if: (a) misspelling
1548 and found string lengths match, or (b) misspelling is found as
1549 element in a boundary-chars separated longer string, or (c)
1550 ispell-program-name is really ispell and misspelling is found as
1551 part of a TeX string. After successful match move beginning of
1552 search region to end of match. Warn about not found misspellings
1553 once the process is done.
1554 (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
1555
1556 2005-12-02 Nick Roberts <nickrob@snap.net.nz>
1557
1558 * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
1559 tool bar (removed inadvertently).
1560
1561 2005-12-02 Juri Linkov <juri@jurta.org>
1562
1563 * log-view.el (log-view-diff): Clarify doc string.
1564
1565 2005-12-01 Bill Wohler <wohler@newt.com>
1566
1567 * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
1568 triggers lm-verify errors.
1569
1570 2005-12-01 Luc Teirlinck <teirllm@auburn.edu>
1571
1572 * simple.el (transient-mark-mode, line-number-mode)
1573 (column-number-mode, size-indication-mode): Remove `:require nil'.
1574
1575 2005-12-01 Nick Roberts <nickrob@snap.net.nz>
1576
1577 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
1578 in the margin also.
1579 (gdb-breakpoints-mode-map): Use D instead of d for
1580 gdb-delete-breakpoint.
1581 (gdb-get-frame-number): Require a number to match on.
1582 (gdb-threads-mode-map): Add follow-link binding.
1583
1584 2005-11-30 Jason Rumney <jasonr@gnu.org>
1585
1586 * isearch.el (isearch-mode-map): Avoid exiting search on
1587 language-change event.
1588
1589 2005-11-30 Romain Francoise <romain@orebokech.com>
1590
1591 * speedbar.el (speedbar-default-position): New defcustom.
1592 (speedbar-frame-reposition-smartly): Use it.
1593
1594 * dframe.el (dframe-reposition-frame-emacs): Fix position
1595 computation for `left' location.
1596 Update copyright year.
1597
1598 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
1599
1600 * help.el (help-map): Move initialization into declaration.
1601
1602 * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
1603
1604 * help-fns.el (help-argument-name): Don't autoload.
1605 It's useless and triggers a bug in cus-dep.el causing ldefs-boot
1606 to be re-loaded when customizing the `help' group.
1607
1608 2005-11-30 John Paul Wallington <jpw@gnu.org>
1609
1610 * help-fns.el (describe-function-1): Fill arglist output.
1611
1612 2005-11-30 Kim F. Storm <storm@cua.dk>
1613
1614 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
1615 (cua--rectangle-post-command): Cleanup overlays and deactivate mark
1616 after revert-buffer (or anything else which kills all local variables).
1617
1618 * apropos.el (apropos-parse-pattern): Doc fix.
1619 Set apropos-regexp directly, rather than expecting callers to do so.
1620 (apropos-command, apropos, apropos-value, apropos-documentation):
1621 Simplify calls to apropos-parse-pattern.
1622
1623 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
1624
1625 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
1626 (hi-lock-face-phrase-buffer): Use hi-yellow face.
1627 (hi-lock-write-interactive-patterns): Use comment-region.
1628
1629 * longlines.el (longlines-mode): Add mail-setup-hook.
1630
1631 * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
1632
1633 * simple.el (sendmail-user-agent-compose, next-line):
1634 Conditionally use hard-newline.
1635
1636 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
1637
1638 * international/latexenc.el (latex-inputenc-coding-alist):
1639 Reword doc string.
1640
1641 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
1642
1643 * help.el (describe-key-briefly, describe-key): Recognize default
1644 bindings.
1645
1646 2005-11-29 Romain Francoise <romain@orebokech.com>
1647
1648 * view.el (view-inhibit-help-message): New defcustom.
1649 (view-mode-enter): Use it.
1650
1651 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu>
1652
1653 * ediff-wind (ediff-setup-control-frame, ediff-make-wide-display):
1654 Preserve user position.
1655
1656 2005-11-28 Luc Teirlinck <teirllm@auburn.edu>
1657
1658 * font-lock.el: Throw error if facemenu is not loaded to prevent
1659 accidental change of loading order in loadup.el. (Suggested by RMS.)
1660
1661 * loadup.el: Add comment explaining why facemenu must be loaded
1662 before font-lock.
1663
1664 2005-11-28 Jay Belanger <belanger@truman.edu>
1665
1666 * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
1667 (calc-dispatch-map): Add more keys for `calc-same-interface'.
1668
1669 * calc/calc-misc.el (calc-dispatch-help): Update docstring.
1670
1671 * calc/calc-embed.el (calc-do-embedded): Update help message.
1672
1673 * calc/calc-prog.el (calc-user-define-invokation): Update help message.
1674
1675 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
1676
1677 * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
1678
1679 * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
1680 called-interactively-p.
1681 (elp-profilable-p): Rename from elp-not-profilable-p.
1682 Invert result and take into account macros and autoloaded functions.
1683 (elp-instrument-function): Update call.
1684 (elp-instrument-package): Update call. Add completion.
1685 (elp-pack-number): Use match-string.
1686 (elp-results-jump-to-definition-by-mouse): Merge into
1687 elp-results-jump-to-definition and then remove.
1688 (elp-output-insert-symname): Make help echo text single-line.
1689
1690 * replace.el (query-replace-map): Move initialization into declaration.
1691 (occur-engine): Use with-current-buffer.
1692 (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
1693 (occur-mode-mouse-goto): Replace with an alias.
1694
1695 2005-11-28 Juri Linkov <juri@jurta.org>
1696
1697 * simple.el (quoted-insert): Let-bind input-method-function to nil.
1698
1699 * term/w32-win.el: Bind [S-tab] to [backtab].
1700
1701 * info.el (Info-fontify-node): Set 2nd arg `noerror' of
1702 `Info-find-file' to t.
1703
1704 * replace.el (occur-mode-mouse-goto): Pop, don't switch.
1705 (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
1706 and same-window-regexps.
1707 (occur-next-error): Don't move point for arg 0.
1708
1709 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
1710
1711 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
1712
1713 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
1714
1715 * log-edit.el (log-edit-changelog-use-first): New var.
1716 (log-edit-changelog-ours-p): Use it.
1717 (log-edit-insert-changelog): Set it with new arg `use-first'.
1718 (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
1719 (log-edit-hook): Add them to the list of suggested options.
1720
1721 * textmodes/flyspell.el (flyspell-last-buffer): New var.
1722 (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
1723 redundant work.
1724 (flyspell-mode-on): Use add-hook for after-change-functions.
1725 (flyspell-mode-off): Use remove-hook for after-change-functions.
1726 (flyspell-changes): Make it buffer-local.
1727 (flyspell-after-change-function): Make it non-interactive. Use push.
1728 (flyspell-post-command-hook): Check input-pending-p while processing
1729 the potentially long list of buffer changes.
1730
1731 2005-11-28 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
1732
1733 * buff-menu.el (list-buffers-noselect): Display the selected
1734 frame's buffer list, not the global one.
1735
1736 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
1737
1738 * xt-mouse.el (xterm-mouse-event): Set last-input-event so
1739 that (list last-input-event) works as in interactive spec.
1740
1741 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
1742
1743 * loadup.el ("facemenu"): Load facemenu before font-lock, because
1744 `facemenu-keymap' needs to be defined when font-lock is loaded.
1745 Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
1746
1747 2005-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
1748
1749 * completion.el: Remove useless leading * in defcustom docstrings.
1750 (save-completions-file-name): Use ~/.emacs.d if available.
1751 (completion-standard-syntax-table): Rename from
1752 cmpl-standard-syntax-table and fold initialization into declaration,
1753 thus removing cmpl-make-standard-completion-syntax-table.
1754 (completion-lisp-syntax-table, completion-c-syntax-table)
1755 (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
1756 (cmpl-saved-syntax, cmpl-saved-point): Remove.
1757 (symbol-under-point, symbol-before-point)
1758 (symbol-under-or-before-point, symbol-before-point-for-complete)
1759 (add-completions-from-c-buffer): Use with-syntax-table.
1760 (make-completion): Don't return a list of completion entries.
1761 Update callers.
1762 (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
1763 (completion-initialize): Rename from initialize-completions.
1764 (completion-find-file-hook): Rename from cmpl-find-file-hook.
1765 (kill-emacs-save-completions): Collect stats here.
1766 (save-completions-to-file, load-completions-from-file):
1767 Use with-current-buffer.
1768 (completion-def-wrapper): Rename from def-completion-wrapper. Make it
1769 into a function. Move all calls to toplevel.
1770 (completion-lisp-mode-hook): New fun.
1771 (completion-c-mode-hook, completion-setup-fortran-mode):
1772 Set the syntax-table here. Use local-set-key.
1773 (completion-saved-bindings): New var.
1774 (dynamic-completion-mode): Make it into a proper minor mode.
1775 (load-completions-from-file): Remove unused var `num-uses'.
1776
1777 * emacs-lisp/cl-macs.el (defstruct): Don't define the default
1778 constructor if it is explicitly overridden.
1779
1780 * complete.el (PC-completion-as-file-name-predicate):
1781 Use minibuffer-completing-file-name.
1782 (partial-completion-mode): Use find-file-not-found-functions.
1783 (PC-lisp-complete-symbol): Use with-syntax-table.
1784 (PC-look-for-include-file): Remove dead setq.
1785 (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
1786 (PC-complete): Use with-current-buffer.
1787
1788 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
1789 escape single quotes.
1790
1791 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
1792
1793 * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
1794 of `if' whose condition always returned nil. Doc fix.
1795
1796 * buff-menu.el (Buffer-menu-revert-function): Make the selected
1797 window's buffer the current buffer around the call to
1798 `list-buffers-noselect'. This is necessary to mark that buffer
1799 with a `.' in the Buffer Menu when called from Lisp, for instance
1800 by Auto Revert Mode.
1801
1802 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
1803
1804 * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
1805 attaching to it.
1806 (gdb-pre-prompt): Make sure gdb-error is reset.
1807
1808 * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
1809 with a child process, detect it.
1810 (gud-speedbar-buttons): Match regexp more carefully.
1811
1812 2005-11-27 Richard M. Stallman <rms@gnu.org>
1813
1814 * mouse.el (mouse-drag-move-window-bottom):
1815 Use adjust-window-trailing-edge.
1816
1817 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
1818
1819 * simple.el (blink-matching-open): Ignore
1820 `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
1821 (blink-matching-paren-on-screen): Update docstring.
1822
1823 * paren.el (show-paren-mode): No longer change
1824 `blink-matching-paren-on-screen'.
1825
1826 2005-11-27 John Paul Wallington <jpw@pobox.com>
1827
1828 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
1829 (gdb-threads-select, gdb-edit-register-value):
1830 Use `posn-set-point' instead of `mouse-set-point' because the
1831 latter is not fbound when configured without X.
1832
1833 2005-11-27 Kim F. Storm <storm@cua.dk>
1834
1835 * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
1836 existing face when partially highlighting a TAB in a rectangle.
1837
1838 2005-11-26 Kim F. Storm <storm@cua.dk>
1839
1840 * ido.el (ido-mode-map): Doc fix.
1841 (ido-mode-common-map, ido-mode-file-map)
1842 (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
1843 (ido-define-mode-map): Rewrite. Select one of the new maps as
1844 parent for ido-mode-map instead of building from scratch.
1845 (ido-init-mode-maps): New defun to initialize new maps.
1846 (ido-mode): Call it.
1847 (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
1848 (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
1849
1850 2005-11-26 John Paul Wallington <jpw@pobox.com>
1851
1852 * arc-mode.el (archive-extract): Use `posn-set-point' instead of
1853 `mouse-set-point' because the latter is not fbound when configured
1854 without X.
1855
1856 2005-11-26 Thien-Thi Nguyen <ttn@gnu.org>
1857
1858 * files.el (file-relative-name): Doc fix.
1859
1860 2005-11-26 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
1861
1862 * progmodes/octave-inf.el (inferior-octave-startup): Force a
1863 non-empty string for secondary prompt PS2.
1864
1865 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
1866
1867 * progmodes/compile.el (compilation-setup): Fix last change.
1868
1869 2005-11-26 Nick Roberts <nickrob@snap.net.nz>
1870
1871 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
1872 (gdb-mouse-toggle-breakpoint-margin)
1873 (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
1874 Add gdb-server-prefix to keep out of command history.
1875 (gdb-edit-register-value): New function.
1876 (gdb-registers-mode-map): Bind mouse-2 and RET to it.
1877 (gdb-info-registers-custom): Use above map.
1878
1879 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
1880
1881 * custom.el (enable-theme): Signal error if argument is not a
1882 theme. Don't recalculate a face if it's not loaded yet.
1883
1884 * cus-face.el (custom-theme-set-faces): Don't change saved-face if
1885 the `user' theme is in effect.
1886
1887 * info.el (Info-on-current-buffer): Record actual filename in
1888 Info-current-file, instead of t, or a fake filename if a non-file
1889 buffer. Make autoload.
1890 (Info-find-node, Info-revert-find-node): No need to check for
1891 Info-current-file nil.
1892 (Info-set-mode-line, Info-up, Info-copy-current-node-name):
1893 Info-current-file is now never `t'.
1894 (Info-fontify-node): Many simplifications due to Info-current-file
1895 always being valid. Use Info-find-file to find node filename.
1896
1897 2005-11-25 David Kastrup <dak@gnu.org>
1898
1899 * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
1900 new character, then delete" in order to preserve markers.
1901
1902 2005-11-25 David Ponce <david@dponce.com>
1903
1904 * recentf.el (recentf-arrange-by-rule): Handle a special
1905 `auto-mode-alist'-like "strip suffix" rule.
1906 (recentf-build-mode-rules): Handle second level auto-mode entries.
1907
1908 2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
1909
1910 * viper-keym.el (viper-ESC-key): Use different values in terminal and
1911 window modes.
1912
1913 * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
1914 jde-javadoc-checker-report-mode.
1915
1916 * ediff-wind (ediff-make-wide-display): Slight simplification.
1917
1918 * ediff.el (ediff-date): Change the date of last update.
1919
1920 2005-11-24 Chong Yidong <cyd@stupidchicken.com>
1921
1922 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
1923 Use define-minor-mode, and make it a local mode. Turn on font-lock.
1924 (hi-lock-mode): New global minor mode.
1925 (turn-on-hi-lock-if-enabled): New function.
1926 (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
1927 Change arguments to regexp and face instead of a font-lock pattern.
1928 Directly set face property, instead of refontifying.
1929 (hi-lock-font-lock-hook): Check if font-lock is being turned on.
1930 (hi-lock-find-patterns): Use line-number-at-pos.
1931
1932 (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode. Use new
1933 arguments for hi-lock-set-pattern.
1934 (hi-lock-unface-buffer, hi-lock-set-file-patterns): Call
1935 font-lock-fontify-buffer.
1936 (hi-lock-find-file-hook, hi-lock-current-line)
1937 (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
1938
1939 (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
1940 turned off.
1941
1942 * progmodes/compile.el (compilation-setup): Don't fiddle with
1943 font-lock-defaults.
1944
1945 2005-11-25 Nick Roberts <nickrob@snap.net.nz>
1946
1947 * progmodes/gdb-ui.el (gdb-var-create-handler)
1948 (gdb-var-list-children-handler): Find values for all variable
1949 objects. gud-speedbar-buttons decides whether to display them.
1950
1951 2005-11-24 Romain Francoise <romain@orebokech.com>
1952
1953 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
1954 buffer name with a space.
1955
1956 2005-11-24 Carsten Dominik <dominik@science.uva.nl>
1957
1958 * textmodes/org.el: (org-export-plain-list-max-depth): Renamed from
1959 `org-export-local-list-max-depth'. Change default value to 3.
1960 (org-auto-renumber-ordered-lists)
1961 (org-plain-list-ordered-item-terminator): New options.
1962 (org-at-item-p, org-beginning-of-item, org-end-of-item)
1963 (org-get-indentation, org-get-string-indentation)
1964 (org-maybe-renumber-ordered-list, org-renumber-ordered-list): New
1965 functions.
1966 (org-move-item-down, org-move-item-up): New commands.
1967 (org-export-as-html): New classes for CSS support. Bug fix in
1968 regular expression detecting fixed-width regions. Respect
1969 `org-local-list-ordered-item-terminator'.
1970 (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
1971 also a list item.
1972 (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
1973 New item moving functions.
1974
1975 2005-11-24 Juri Linkov <juri@jurta.org>
1976
1977 * isearch.el (isearch-repeat): With empty search ring set
1978 `isearch-error' to the error string instead of signaling error
1979 with the function `error'.
1980
1981 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1982
1983 * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
1984
1985 2005-11-24 Nick Roberts <nickrob@snap.net.nz>
1986
1987 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
1988 and variable.
1989 (gdb-var-create-handler, gdb-var-list-children-handler):
1990 Don't match on "char **...".
1991 (gdb-var-update-handler): Find values for all variable objects.
1992 (gdb-info-frames-custom): Identify frames by leading "#".
1993
1994 * progmodes/gud.el (gud-speedbar-menu-items): Add
1995 gdb-speedbar-auto-raise as radio button.
1996 (gud-speedbar-buttons): Raise speedbar if requested.
1997 Don't match on "char **...".
1998 (gud-speedbar-buttons): Add (pointer) value for non-leaves.
1999 Make it editable.
2000
2001 2005-11-23 Chong Yidong <cyd@stupidchicken.com>
2002
2003 * info.el (Info-fontify-node): Handle the case where
2004 Info-current-file is t.
2005
2006 2005-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
2007
2008 * simple.el (blink-matching-open): Fix off-by-one in last change.
2009
2010 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2011
2012 * term/mac-win.el: Don't change default directory.
2013
2014 2005-11-22 Luc Teirlinck <teirllm@auburn.edu>
2015
2016 * cus-edit.el (Custom-reset-standard): Make it handle Custom group
2017 buffers correctly. (It used to throw an error in such buffers.)
2018 Make it ask for confirmation in group buffers and other Custom
2019 buffers containing more than one customization item.
2020
2021 2005-11-22 John Paul Wallington <jpw@gnu.org>
2022
2023 * net/goto-addr.el (goto-address-fontify): Put `follow-link'
2024 property on mail and url overlays.
2025 (goto-address-at-point): Use `posn-set-point' instead of
2026 `mouse-set-point' because the latter is not fbound when configured
2027 without X.
2028
2029 2005-11-22 Lars Hansen <larsh@soem.dk>
2030
2031 * ls-lisp.el (ls-lisp-parse-symlink): Delete.
2032 (ls-lisp-classify, ls-lisp-format): Delete call to
2033 ls-lisp-parse-symlink.
2034 (ls-lisp-handle-switches): Handle symlinks to directories as
2035 directories when ls-lisp-dirs-first in non-nil.
2036
2037 2005-11-21 Luc Teirlinck <teirllm@auburn.edu>
2038
2039 * startup.el (command-line): Make sure that loaddefs.el is handled
2040 correctly in load-history.
2041
2042 2005-11-22 Nick Roberts <nickrob@snap.net.nz>
2043
2044 * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
2045 (gdb-struct-string, gdb-array-string): New constants.
2046 (gdb-info-locals-handler): Use them.
2047 (gdb-reset): Reset gdb-var-list to nil.
2048
2049 2005-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2050
2051 * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
2052 in patterns.
2053
2054 2005-11-21 Juri Linkov <juri@jurta.org>
2055
2056 * custom.el (defcustom): Update link types in docstring.
2057
2058 2005-11-20 Martin Rudalics <rudalics@gmx.at> (tiny change)
2059
2060 * custom.el (defgroup): Add doc-string-elt info.
2061
2062 * widget.el (define-widget): Don't use declare for the doc-string-elt.
2063
2064 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2065
2066 * newcomment.el (comment-enter-backward): Fix last fix.
2067
2068 * simple.el (blink-matching-open):
2069 * paren.el (show-paren-function): Allow new paren-class info.
2070
2071 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
2072
2073 * faces.el: Revert 2005-11-17 change. :ignore-defface is now
2074 handled automagically.
2075
2076 2005-11-20 Andreas Schwab <schwab@suse.de>
2077
2078 * descr-text.el (describe-char): When copying overlays put them
2079 over the full char description instead of just the first character
2080 of it.
2081
2082 2005-11-20 Juri Linkov <juri@jurta.org>
2083
2084 * simple.el (what-cursor-position):
2085 * descr-text.el (describe-char): Use Lisp-readable syntax
2086 for octal and hex. Reorder decimal, octal and hex values.
2087 Remove excess whitespace in the output. Use `=' in `column='
2088 like in `point=' and `Hscroll='.
2089
2090 * international/mule-cmds.el (encoded-string-description):
2091 Use Lisp-readable syntax for hex.
2092
2093 2005-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
2094
2095 * newcomment.el (comment-enter-backward): Handle the case where the
2096 comment is closed by EOB.
2097
2098 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
2099
2100 * longlines.el (longlines-before-revert-hook)
2101 (longlines-after-revert-hook): New functions.
2102 (longlines-mode): Turn off longlines temporarily when reverting.
2103 Add a message-setup-hook.
2104 (longlines-decode-buffer): New function.
2105 (longlines-wrap-line): Preserve marker positions.
2106
2107 2005-11-19 Andreas Schwab <schwab@suse.de>
2108
2109 * emacs-lisp/shadow.el: Handle compressed files.
2110
2111 2005-11-19 Romain Francoise <romain@orebokech.com>
2112
2113 * net/browse-url.el (browse-url-default-browser): Signal an error
2114 if no usable browser can be found, rather than try to load w3.
2115
2116 2005-11-16 Ryan Yeske <rcyeske@gmail.com>
2117
2118 * net/rcirc.el (rcirc-mangle-text): Add bold face property without
2119 replacing existing properties.
2120 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
2121 (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
2122 tty specs.
2123 (rcirc-server-prefix, rcirc-server): New faces.
2124 (rcirc-url-regexp): Generate with rx macro.
2125 (rcirc-last-server-message-time): New variable.
2126 (rcirc-filter): Record time of last message.
2127 (rcirc-keepalive): Kill processes that did not send a message
2128 since the last ping.
2129 (rcirc-mode): Give rcirc-topic a local binding here.
2130
2131 2005-11-19 Michael Cadilhac <michael.cadilhac@lrde.org> (tiny change)
2132
2133 * subr.el (read-passwd): Fontify the prompt as we do with other
2134 prompts.
2135
2136 2005-11-19 Ryan Yeske <rcyeske@gmail.com>
2137
2138 * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
2139 binding buffer-read-only to nil.
2140
2141 2005-11-19 Eli Zaretskii <eliz@gnu.org>
2142
2143 * complete.el (partial-completion-mode):
2144 Mention completion-auto-help in the doc string.
2145
2146 * man.el (Man-highlight-references): Doc fix. Reformat code in a
2147 more Lisp-ish way.
2148
2149 2005-11-19 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
2150
2151 * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
2152 digits, not 8, to avoid misalignment for files larger than 100MB.
2153
2154 2005-11-19 Eli Zaretskii <eliz@gnu.org>
2155
2156 * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
2157 Mention "keyboard shortcuts" in the help text.
2158
2159 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2160
2161 * startup.el (fancy-splash-default-action): Discard only
2162 mouse-down and succeeding mouse-up events in the splash screen
2163 window so that drag-n-drop event can be processed.
2164
2165 2005-11-18 Chong Yidong <cyd@stupidchicken.com>
2166
2167 * longlines.el (longlines-mode): Add hacks for mail-mode and
2168 message-mode.
2169
2170 2005-11-18 Carsten Dominik <dominik@science.uva.nl>
2171
2172 * textmodes/org.el: (org-table-sort-lines): New command.
2173 (org-tbl-menu): Add entry for `org-table-sort-lines'.
2174 (org-add-file): Command removed, use `org-agenda-file-to-front'
2175 instead.
2176 (org-export-icalendar): Use `org-icalendar-combined-name'.
2177 (org-cycle-agenda-files, org-agenda-file-to-end)
2178 (org-agenda-file-to-front): New commands.
2179 (org-table-tab-jumps-over-hlines,org-export-html-style): New
2180 options.
2181 (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
2182 (org-at-table.el-p, org-set-autofill-regexps,org-html-protect):
2183 New functions.
2184 (org-fill-paragraph): Call `org-table-align' in tables.
2185 (org-mode): Call `org-set-autofill-regexps'.
2186 (org-export-as-html): Support for local handformatted lists.
2187 Modified to produce valid HTML 4.0. Use `org-export-html-style'.
2188 (org-export-local-list-max-depth): New option.
2189 (org-html-expand): Use `org-html-protect'.
2190
2191 2005-11-18 Nick Roberts <nickrob@snap.net.nz>
2192
2193 * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
2194 to "p".
2195 (gdb): Move definition of gud-pp to...
2196
2197 * progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
2198 speedbar.
2199 (gdb-find-watch-expression): New function.
2200
2201 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
2202
2203 * faces.el (face-attribute, set-face-attribute): Mention existence
2204 of `:ignore-defface' setting in docstring.
2205
2206 2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
2207
2208 * simple.el (completion-setup-function): Fix last change.
2209
2210 2005-11-17 John Paul Wallington <jpw@pobox.com>
2211
2212 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
2213 Use `posn-set-point' instead of `mouse-set-point' because the
2214 latter is not fbound when configured without X.
2215
2216 * comint.el (comint-insert-input): Likewise.
2217
2218 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
2219
2220 * simple.el (hard-newline): New variable.
2221 (sendmail-user-agent-compose, next-line): Use it.
2222
2223 * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
2224 (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
2225 (mail-mail-reply-to, mail-mail-followup-to)
2226 (mail-position-on-field, mail-signature, mail-yank-original)
2227 (mail-attach-file): Likewise.
2228
2229 * mail/mailheader.el (mail-header-format)
2230 (mail-header-format-function): Likewise.
2231
2232 * add-log.el (add-change-log-entry, change-log-merge): Likewise.
2233
2234 2005-11-17 Juri Linkov <juri@jurta.org>
2235
2236 * font-lock.el (font-lock-faces): Rename this defgroup from
2237 `font-lock-highlighting-faces'.
2238 (font-lock-comment-face, font-lock-comment-delimiter-face)
2239 (font-lock-string-face, font-lock-doc-face)
2240 (font-lock-keyword-face, font-lock-builtin-face)
2241 (font-lock-function-name-face, font-lock-variable-name-face)
2242 (font-lock-type-face, font-lock-constant-face)
2243 (font-lock-warning-face, font-lock-negation-char-face)
2244 (font-lock-preprocessor-face)
2245 (font-lock-regexp-grouping-backslash)
2246 (font-lock-regexp-grouping-construct): Rename :group from
2247 `font-lock-highlighting-faces' to `font-lock-faces'.
2248
2249 * cus-edit.el (lisp, c, tex):
2250 * progmodes/ada-mode.el (ada):
2251 * progmodes/asm-mode.el (asm):
2252 * progmodes/cperl-mode.el (cperl-faces):
2253 * progmodes/cpp.el (cpp):
2254 * progmodes/dcl-mode.el (dcl):
2255 * progmodes/f90.el (f90):
2256 * progmodes/fortran.el (fortran):
2257 * progmodes/icon.el (icon):
2258 * progmodes/idlwave.el (idlwave-misc):
2259 * progmodes/m4-mode.el (m4):
2260 * progmodes/make-mode.el (makefile):
2261 * progmodes/meta-mode.el (meta-font):
2262 * progmodes/modula2.el (modula2):
2263 * progmodes/octave-mod.el (octave):
2264 * progmodes/pascal.el (pascal):
2265 * progmodes/perl-mode.el (perl):
2266 * progmodes/prolog.el (prolog):
2267 * progmodes/ps-mode.el (PostScript-edit):
2268 * progmodes/scheme.el (scheme):
2269 * progmodes/sh-script.el (sh-script):
2270 * progmodes/simula.el (simula):
2271 * progmodes/tcl.el (tcl):
2272 * textmodes/nroff-mode.el (nroff):
2273 * textmodes/reftex-vars.el (reftex-fontification-configurations):
2274 * textmodes/sgml-mode.el (sgml):
2275 * textmodes/texinfo.el (texinfo):
2276 Add :link (custom-group-link font-lock-faces) to defgroup.
2277
2278 * hi-lock.el (hi-lock): Rename this defgroup from
2279 `hi-lock-interactive-text-highlighting'. Change parent group from
2280 `faces' to `font-lock'. Add link to the manual.
2281 (hi-lock-mode, hi-lock-file-patterns-range)
2282 (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
2283 `hi-lock-interactive-text-highlighting' to `hi-lock'.
2284 (hi-lock-faces): Add :group `faces'.
2285
2286 * cus-edit.el (custom-variable-prompt): Clarify the code.
2287
2288 * faces.el (face-read-string): Set the default value arg of
2289 completing-read.
2290
2291 2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
2292
2293 * rfn-eshadow.el (file-name-shadow-properties)
2294 (file-name-shadow-tty-properties, file-name-shadow-mode):
2295 Remove autoloads, because the file is now preloaded.
2296
2297 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
2298
2299 * printing.el (easy-menu-intern): Don't define.
2300 (pr-get-symbol): Use easy-menu-intern only if defined.
2301
2302 * simple.el (blink-matching-open): Simplify a bit.
2303 (completion-setup-function): Fix the case of partial-completion-mode
2304 when the minibuffer's contents start with "-".
2305 Obey completion-base-size-function even when
2306 minibuffer-completing-file-name is non-nil.
2307
2308 2005-11-16 Richard M. Stallman <rms@gnu.org>
2309
2310 * net/eudcb-ph.el (eudc-ph-open-session):
2311 Use set-process-query-on-exit-flag.
2312
2313 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
2314
2315 * international/ucs-tables.el (ucs-set-table-for-input):
2316 Use make-local-variable, not make-variable-buffer-local.
2317
2318 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
2319 Improve warning message text.
2320
2321 * savehist.el (savehist-save-hook): Add :group.
2322
2323 * menu-bar.el (menu-bar-help-menu):
2324 Rename Find Extra Packages to External Packages.
2325
2326 * cus-edit.el (Custom-reset-standard): Verify that
2327 :custom-standard-value prop exists before calling it.
2328
2329 * apropos.el (apropos-calc-scores): Use apropos-pattern.
2330
2331 2005-11-16 Martin Rudalics <rudalics@gmx.at> (tiny change)
2332
2333 * wid-edit.el (color): Enclose %t in %{...%}.
2334
2335 * cus-edit.el (face): Enclose %t in %{...%}.
2336
2337 2005-11-16 Hrvoje Niksic <hniksic@xemacs.org>
2338
2339 * savehist.el (savehist-mode-hook): Re-add the var.
2340 (savehist-mode): Use it.
2341
2342 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
2343
2344 * textmodes/flyspell.el: Fix commenting convention.
2345 Remove unnecessary leading * in custom docstrings.
2346 (flyspell-emacs): Remove unused var.
2347 (flyspell-delete-region-overlays): Use remove-overlays.
2348 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
2349 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
2350 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
2351 (flyspell-debug-signal-word-checked): Use with-current-buffer.
2352 (make-flyspell-overlay): Don't locally reuse a global name.
2353 (flyspell-highlight-incorrect-region)
2354 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
2355 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
2356 (flyspell-notify-misspell): Remove unused args `start' and `end'.
2357 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
2358 Wrap calls to accept-process-output inside with-local-quit since it's
2359 often called from a post-command-hook.
2360 (flyspell-correct-word, flyspell-auto-correct-word):
2361 Use ispell-send-string.
2362 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
2363
2364 * calendar/diary-lib.el (diary-list-entries): Also hide the
2365 terminating newline.
2366
2367 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
2368
2369 * textmodes/reftex.el (reftex-use-fonts): Remove the check for
2370 window-system, to allow fonts on tty.
2371
2372 2005-11-17 Nick Roberts <nickrob@snap.net.nz>
2373
2374 * progmodes/gud.el (gud-speedbar-item-info): New function.
2375 (gud-install-speedbar-variables): Use it to display data type
2376 of watch expression as a tooltip in speedbar.
2377
2378 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
2379
2380 * font-core.el (global-font-lock-mode): Add :version keyword,
2381 because default was changed.
2382
2383 * jka-cmpr-hook.el (auto-compression-mode): Ditto.
2384
2385 * startup.el (command-line): Use `custom-reevaluate-setting' for
2386 `file-name-shadow-mode'.
2387
2388 * loadup.el: Preload rfn-eshadow.
2389
2390 * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
2391 Add :version keyword.
2392 (file-name-shadow-properties, file-name-shadow-tty-properties)
2393 (file-name-shadow): Add :version keyword.
2394
2395 * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
2396 instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
2397 in the custom-group property of the symbol frames and the fringe
2398 group got no link to its parent group frames.
2399 Doc fix.
2400
2401 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
2402
2403 * progmodes/gud.el (gud-stop-subjob): New function.
2404 (gud-menu-map, gud-tool-bar-map): Use it.
2405
2406 2005-11-16 Kim F. Storm <storm@cua.dk>
2407
2408 * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
2409 than kill it.
2410 (gud-tool-bar-map): Likewise. Move cont/until/finish buttons
2411 to a more useful/logical place.
2412
2413 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
2414
2415 * progmodes/gud.el (gud-menu-map): Make visibility of stop and
2416 go buttons complementary.
2417
2418 2005-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
2419
2420 * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
2421 (rfn-eshadow-sifn-equal): New function.
2422 (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
2423
2424 2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
2425
2426 * viper-utils (viper-non-word-characters-reformed-vi): Quote `-' in
2427 string.
2428
2429 * viper.el (viper-emacs-state-mode-list): Ensure that
2430 rcirc-mode buffers come up in Emacs state.
2431
2432 * ediff-util (ediff-make-temp-file): Use proper file-name-handler
2433 operation.
2434
2435 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
2436
2437 * term.el (term-termcap-format): Fix typos.
2438 (term-down): Fix the negative argument case.
2439
2440 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
2441
2442 * progmodes/gdb-ui.el: Remove face-alias left over from change on
2443 2005-08-15.
2444 (gdb-ann3): New command gud-go.
2445 (menu): Accomodate gdb-mi.el.
2446 (gdb-assembler-custom): Make buffer of selected window current
2447 so that set-window-point works.
2448
2449 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
2450 buttons and include new ones.
2451
2452 2005-11-16 Kim F. Storm <storm@cua.dk>
2453
2454 * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
2455 (gud-menu-map): Use it.
2456
2457 2005-11-14 Luc Teirlinck <teirllm@auburn.edu>
2458
2459 * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
2460 that works correctly for Custom and that does not override a user
2461 who disables it.
2462
2463 * help-mode.el (help-make-xrefs, help-xref-on-pp)
2464 (help-xref-interned, help-follow): Make hyperlinks for variables
2465 that are unbound, but have a non-nil variable-documentation property.
2466
2467 * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
2468 mode hook. (It conflicted with defcustoms for some mode hooks.)
2469 Use the `variable-documentation' property to give the mode hook a
2470 docstring and expand that docstring.
2471
2472 2005-11-14 Hrvoje Niksic <hniksic@xemacs.org>
2473
2474 * savehist.el (savehist-mode): Don't bother with
2475 `custom-set-minor-mode'.
2476 (savehist-coding-system): Check XEmacs version.
2477 (history-length): Declare also at run time.
2478 (savehist-mode): Don't emit a message. Don't run the minor mode hook.
2479 Don't set the customize state.
2480 (savehist-minibuffer-hook): Special case for when
2481 minibuffer-history-variable is equal to t.
2482
2483 2005-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
2484
2485 * files.el (write-file): Refresh VC status.
2486
2487 * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
2488 (mark-diary-entries, make-diary-entry): Check default-major-mode rather
2489 than fundamental-mode to see if the mode was set.
2490
2491 2005-11-14 Romain Francoise <romain@orebokech.com>
2492
2493 * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
2494 dummy function in `eval-when-compile' to avoid compiler warning.
2495 Require `man' at compile time.
2496
2497 2005-11-14 Jay Belanger <belanger@truman.edu>
2498
2499 * calc-alg.el (calcFunc-write-out-power): Rename it to
2500 calcFunc-powerexpand.
2501 (math-write-out-power): Rename it to math-powerexpand; have it
2502 handle negative exponents.
2503 (calc-writeoutpower): Rename it to calc-powerexpand.
2504
2505 * calc-ext.el: Change calcFunc-writeoutpower and
2506 calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
2507 autoloads.
2508 Add calcFunc-ldiv to autoloads.
2509
2510 * calc-arith.el (calcFunc-ldiv): New function.
2511
2512 * calc.el (calc-left-divide): New function.
2513
2514 2005-11-14 Juri Linkov <juri@jurta.org>
2515
2516 * cus-edit.el (custom-variable-prompt): Set the default value arg
2517 of completing-read.
2518
2519 * cus-dep.el (custom-make-dependencies): Reverse the list of
2520 found dependencies.
2521
2522 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu>
2523
2524 * menu-bar.el (menu-bar-options-menu): Delete "Syntax
2525 Highlighting" entry, it is on by default now.
2526 (menu-bar-options-save): Do not save global-font-lock-mode.
2527
2528 2005-11-13 Richard M. Stallman <rms@gnu.org>
2529
2530 * textmodes/flyspell.el (flyspell-large-region):
2531 Call flyspell-accept-buffer-local-defs.
2532
2533 2005-11-13 Agustin Martin <agustin.martin@hispalinux.es>
2534
2535 * textmodes/flyspell.el (flyspell-notify-misspell):
2536 Fix misspelling of "Misspelling".
2537 (flyspell-process-localwords): New function.
2538 (flyspell-large-region): Call flyspell-process-localwords and
2539 flyspell-delete-region-overlays.
2540 (flyspell-delete-region-overlays): New function.
2541 (flyspell-delete-all-overlays): Call that.
2542
2543 2005-11-13 Richard M. Stallman <rms@gnu.org>
2544
2545 * help.el (help-for-help-internal): Improve doc of C-h a.
2546 (describe-key): Improve prompt; doc fix.
2547
2548 2005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
2549
2550 * vc-svn.el (vc-svn-registered): Catch all errors.
2551
2552 * cus-dep.el (custom-make-dependencies): Typo.
2553
2554 2005-11-13 Michael Albinus <michael.albinus@gmx.de>
2555
2556 * net/tramp-util.el (top): Fix compilation warning.
2557
2558 2005-11-13 Kim F. Storm <storm@cua.dk>
2559
2560 * help.el (help-for-help-internal): Fix `a' entry. Add `d' entry.
2561
2562 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
2563
2564 * progmodes/gud.el (gud-menu-map): Move parentheses (again).
2565 (gud-speedbar-buttons): Match on "const char *" too.
2566
2567 * progmodes/gdb-ui.el (gdb-var-create-handler)
2568 (gdb-var-list-children-handler): Match on "const char *" too.
2569 (gdb-var-evaluate-expression-handler): Match on empty string.
2570 (gdb-var-update-handler): Only call
2571 gdb-var-evaluate-expression-handler when required.
2572
2573 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
2574
2575 * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
2576 selected window. This still doesn't work for speedbar.
2577 (gud-speedbar-buttons): Handle string expressions properly.
2578
2579 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
2580 (gdb-var-create-handler): Handle string expressions properly.
2581 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
2582 Handle string expressions properly. Move "type" field into regexp.
2583
2584 2005-11-12 Karl Fogel <kfogel@red-bean.com>
2585
2586 * bookmark.el (bookmark-maybe-message): New function to reduce
2587 code duplication: invokes `message' iff baud-rate is high enough.
2588 (bookmark-write-file): Use above instead of an inline conditional.
2589 (bookmark-load): Same.
2590
2591 2005-11-12 Karl Fogel <kfogel@red-bean.com>
2592
2593 * bookmark.el (bookmark-write-file): Don't visit the destination
2594 file, just write the data to it using write-region. This is
2595 similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
2596 change to avoid visiting the file in the first place.
2597
2598 2005-11-12 Chong Yidong <cyd@stupidchicken.com>
2599
2600 * hi-lock.el (hi-lock-mode): Set the default value of
2601 font-lock-defaults.
2602
2603 2005-11-11 Luc Teirlinck <teirllm@auburn.edu>
2604
2605 * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
2606 arg to `file-attributes'.
2607 (find-lisp-format): The UID and GID can now be strings.
2608
2609 2005-11-12 Kim F. Storm <storm@cua.dk>
2610
2611 * help.el (help-map): Bind C-h d to apropos-documentation.
2612
2613 * simple.el (what-cursor-position): Print (EOB) instead of (100%)
2614 when point is at end-of-buffer.
2615
2616 * apropos.el (apropos-match-face): Doc fix.
2617 (apropos-sort-by-scores): Add new choice `verbose'.
2618 (apropos-documentation-sort-by-scores): New defcustom.
2619 (apropos-pattern): Now contains the pattern entered by the user.
2620 (apropos-pattern-quoted): New defvar.
2621 (apropos-regexp): New defvar, containing the regexp corresponding
2622 to apropos-pattern.
2623 (apropos-all-words-regexp): Rename from apropos-all-regexp.
2624 (apropos-read-pattern): New defun. Use it to read pattern arg in
2625 interactive calls; returns list of words for a word list, and
2626 string for a regexp.
2627 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
2628 parses a list of words or regexp as returned by apropos-read-pattern.
2629 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
2630 (apropos-score-doc): Return a very high score if the string
2631 entered by the user matches literally.
2632 (apropos-variable): Doc fix. Use apropos-read-pattern.
2633 (apropos-command): Doc fix. Use apropos-read-pattern and
2634 apropos-parse-pattern. Call apropos-print with nosubst=t.
2635 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
2636 apropos-parse-pattern.
2637 (apropos-documentation): Doc fix. Use apropos-read-pattern and
2638 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
2639 apropos-documentation-sort-by-scores. Call apropos-print with
2640 nosubst=t.
2641 (apropos-documentation-internal): Pass doc string through
2642 substitute-key-definition before adding text properties.
2643 Highlight substring matching literal user input if possible.
2644 (apropos-documentation-check-doc-file): Remove locals beg and end.
2645 Fix calculation of score (as added twice). Pass doc string through
2646 substitute-key-definition before adding text properties.
2647 (apropos-documentation-check-elc-file): Pass doc string through
2648 substitute-key-definition before adding text properties.
2649 Highlight substring matching literal user input if possible.
2650 (apropos-print): Add new arg NOSUBST; if set, command and variable
2651 doc strings have already been passed through substitute-key-definition.
2652 Add code to handle apropos-accumulator items without score element
2653 for backwards compatibility (e.g. with woman package).
2654 Only show scores if apropos-sort-by-scores is `verbose'.
2655
2656 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
2657
2658 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
2659 Add jka-compr-load-suffixes to load-suffixes.
2660
2661 * jka-compr.el: Require 'jka-cmpr-hook.
2662 (jka-compr-info-compress-message, jka-compr-info-compress-program)
2663 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
2664 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
2665 (jka-compr-info-can-append, jka-compr-info-strip-extension)
2666 (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
2667 (jka-compr-info-regexp): Remove. Provided by jka-cmpr-hook.
2668 (jka-compr-uninstall): Remove entries from
2669 jka-compr-added-to-file-coding-system-alist after they are used.
2670 (jka-compr-error): Remove unused var `curbuf'.
2671 (jka-compr-file-local-copy): Remove unused var `notfound'.
2672
2673 2005-11-10 Romain Francoise <romain@orebokech.com>
2674
2675 * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
2676
2677 2005-11-11 Nick Roberts <nickrob@snap.net.nz>
2678
2679 * progmodes/gud.el (gud-menu-map): Move parentheses.
2680 (gdb): New command gud-pv.
2681
2682 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
2683
2684 * tar-mode.el: Remove spurious or unnecessary leading stars
2685 in docstrings.
2686 (tar-header-block-tokenize): Also obey default-file-name-coding-system.
2687 (tar-parse-octal-integer-safe): Use mapc.
2688 (tar-header-block-summarize): Remove unused var `ck'.
2689 (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
2690 cleared before. Obey default-enable-multibyte-characters.
2691 Use mapconcat. Simplify setting of tar-header-offset.
2692 (tar-mode-map): Move initialization inside delcaration.
2693 (tar-flag-deleted): Use `abs'.
2694 (tar-expunge-internal): Remove unused var `line'.
2695 (tar-expunge-internal): Don't hardcode point-min==1.
2696 (tar-expunge): Widen while doing set-buffer-multibyte.
2697 (tar-rename-entry): Use file-name-coding-system.
2698 (tar-alter-one-field): Don't hardcode point-min==1.
2699 (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
2700 (tar-pad-to-blocksize): Don't hardcode point-min==1. Clarify the code.
2701
2702 2005-11-10 Masatake YAMATO <jet@gyve.org>
2703
2704 * add-log.el (add-log-current-defun): Handle class::method
2705 notation of c++. Fix incorrect comment.
2706
2707 2005-11-10 Alan Mackenzie <acm@muc.de>
2708
2709 * help-fns.el (describe-variable): Make C-h v work when a variable
2710 has variable documentation yet is unbound.
2711
2712 2005-11-10 Masatake YAMATO <jet@gyve.org>
2713
2714 * man.el (Man-highlight-references): Set an empty
2715 string to `Man-arguments' if it is nil.
2716 Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
2717
2718 2005-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2719
2720 * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
2721 commenting conventions.
2722
2723 * cus-dep.el (custom-make-dependencies): Simplify.
2724 Better follow the commenting conventions.
2725
2726 2005-11-09 Richard M. Stallman <rms@gnu.org>
2727
2728 * apropos.el (apropos-pattern): Rename from apropos-regexp.
2729 (apropos-orig-pattern): Rename from apropos-orig-regexp.
2730 All uses changed.
2731 (apropos-rewrite-regexp): Doc fix.
2732 (apropos-variable, apropos-command, apropos, apropos-value):
2733 Change prompt; carry through the argument renaming.
2734
2735 2005-11-09 Luc Teirlinck <teirllm@auburn.edu>
2736
2737 * find-lisp.el: Require dired.
2738 (find-lisp-find-dired-internal): Do not call
2739 `abbreviate-file-name' on DIR.
2740
2741 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
2742
2743 * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
2744
2745 2005-11-09 Nick Roberts <nickrob@snap.net.nz>
2746
2747 * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
2748 when using the speedbar.
2749 (gdb): New command gud-pp.
2750 (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
2751
2752 2005-11-09 Juri Linkov <juri@jurta.org>
2753
2754 * replace.el (occur-excluded-properties): New defcustom.
2755 (occur-1, occur-engine, occur-accumulate-lines): Use it.
2756
2757 2005-11-08 Jay Belanger <belanger@truman.edu>
2758
2759 * calc/calc-units.el (math-convert-units): Replace any composite
2760 unit by its definition.
2761
2762 2005-11-08 Lars Hansen <larsh@soem.dk>
2763
2764 * emacs-lisp/autoload.el (update-directory-autoloads):
2765 Add obsolete function alias.
2766
2767 2005-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
2768
2769 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
2770 comment-indent-function.
2771 (lisp-comment-indent): Replace by an alias for comment-indent-default.
2772
2773 * reveal.el (reveal-post-command): Rework the handling of
2774 reveal-open-spots, so as to be more reliable. There were several
2775 tricky corner cases where an open spot might be lost, or where
2776 a closed spot might end up on the list of open spots.
2777 Only reveal text that's ellipsised.
2778
2779 2005-11-07 Carsten Dominik <dominik@science.uva.nl>
2780
2781 * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
2782
2783 2005-11-07 John Paul Wallington <jpw@gnu.org>
2784
2785 * ibuffer.el (ibuffer): Search iconified frames too when
2786 getting Ibuffer buffer's window.
2787
2788 2005-11-06 Richard M. Stallman <rms@gnu.org>
2789
2790 * progmodes/compile.el (compilation-internal-error-properties):
2791 save-excursion around the computation of MARKER.
2792
2793 2005-11-06 Piet van Oostrum <piet@cs.uu.nl>
2794
2795 * textmodes/flyspell.el (flyspell-external-point-words):
2796 flyspell-get-word returns a list, not just a string.
2797
2798 2005-11-06 John Paul Wallington <jpw@pobox.com>
2799
2800 * ibuffer.el (ibuffer): Search all visible frames when getting
2801 Ibuffer buffer's window.
2802
2803 2005-11-07 Masatake YAMATO <jet@gyve.org>
2804
2805 * man.el (Man-reference-regexp): Accept spaces between
2806 `Man-name-regexp' and `Man-section-regexp'.
2807 (Man-apropos-regexp): New variable.
2808 (Man-abstract-xref-man-page): Use value for `Man-target-string'
2809 if available.
2810 (Man-highlight-references, Man-highlight-references0):
2811 Handle the case when `Man-arguments' includes "-k".
2812 (Man-highlight-references0): Rename the argument `TARGET-POS' to
2813 `TARGET'. `TARGET' can be a number, function or nil.
2814
2815 2005-11-06 Nick Roberts <nickrob@snap.net.nz>
2816
2817 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
2818 (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
2819 (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
2820 (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
2821 (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
2822 (gdb-send-item): Use buffer-local-value and simplify.
2823
2824 2005-11-05 Luc Teirlinck <teirllm@auburn.edu>
2825
2826 * startup.el (command-line): Use `custom-reevaluate-setting' for
2827 `global-font-lock-mode'.
2828
2829 * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
2830 by default, except in batch mode or when the -D option is given.
2831
2832 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
2833 specified keyword args on to `define-minor-mode'. Update docstring.
2834
2835 2005-11-05 Romain Francoise <romain@orebokech.com>
2836
2837 * replace.el (occur-engine): Add marker at end of line, too.
2838
2839 2005-11-04 Dan Nicolaescu <dann@ics.uci.edu>
2840
2841 * font-lock.el: Don't deal with font-lock-face-attributes here,
2842 move the code ...
2843
2844 * startup.el (command-line): ... here. Use face-spec-set instead
2845 of custom-declare-face.
2846
2847 * faces.el (face-spec-set): Reset the face if spec is not nil.
2848
2849 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
2850
2851 * newcomment.el (comment-region-internal): Box more tightly in the
2852 common case where there's no TAB in the boxed text.
2853
2854 2005-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2855
2856 * info.el (info-tool-bar-map): Use images prev-node, next-node and
2857 up-node.
2858
2859 2005-11-04 Ulf Jasper <ulf.jasper@web.de>
2860
2861 * newsticker.el: Commentary updated. Code formatting changed.
2862 (newsticker-version): Change to "1.9".
2863 (newsticker, newsticker-feed): Doc fix.
2864 (newsticker-url-list): Doc fix. Add option "Weekly".
2865 (newsticker-retrieval-interval): Add option "Weekly".
2866 (newsticker-headline-processing): Doc fix.
2867 (newsticker-auto-mark-filter): Remove.
2868 (newsticker-auto-mark-filter-list): New.
2869 (newsticker-layout, newsticker-sort-method): Doc fix.
2870 (newsticker-hide-old-items-in-newsticker-buffer)
2871 (newsticker-heading-format, newsticker-item-format)
2872 (newsticker-desc-format): Doc fix.
2873 (newsticker-show-all-rss-elements): Remove.
2874 (newsticker-show-all-news-elements): New.
2875 (newsticker-faces, newsticker-ticker): Doc fix.
2876 (remove-from-invisibility-spec): Code formatting.
2877 (newsticker--process-ids): New.
2878 (newsticker-mode): Doc fix.
2879 (newsticker-mode): Change mode-line-format.
2880 (newsticker-start): Remove debug output.
2881 (newsticker-start-ticker): Doc fix. Add Autoload cookie.
2882 (newsticker-w3m-show-inline-images): Code formatting.
2883 (newsticker-next-item): Call `force-mode-line-update'.
2884 (newsticker-previous-item): Call `force-mode-line-update'.
2885 (newsticker-next-feed): Call `force-mode-line-update'.
2886 (newsticker-previous-feed): Call `force-mode-line-update'.
2887 (newsticker-mark-all-items-at-point-as-read): Code formatting.
2888 (newsticker-show-old-items): Do not show descs.
2889 (newsticker-hide-entry): Hide too much.
2890 (newsticker-hide-entry, newsticker-show-entry)
2891 (newsticker-toggle-auto-narrow-to-feed): Code formatting.
2892 (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
2893 (newsticker-toggle-auto-narrow-to-item): Code formatting.
2894 (newsticker-set-auto-narrow-to-item): Update buffer immediately.
2895 (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
2896 (newsticker-get-news): Call `force-mode-line-update'.
2897 Collect process ids.
2898 (newsticker--sentinel): Change coding system handling.
2899 Move image retrieval to new functions newsticker--get-logo-url-*.
2900 Move feed parsing to new functions newsticker--parse-*.
2901 Update list of process ids.
2902 (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
2903 (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
2904 (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
2905 (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
2906 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
2907 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
2908 (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
2909 (newsticker--decode-coding-string): Remove.
2910 (newsticker--decode-numeric-entities): Check input. Format code.
2911 (newsticker--remove-whitespace): Check input.
2912 (newsticker--do-forget-preformatted): Doc fix.
2913 (newsticker--decode-rfc822-date): Allow for missing time.
2914 (newsticker--update-process-ids): New.
2915 (newsticker--image-sentinel): Change comment.
2916 (newsticker--image-read): Change error message.
2917 (newsticker--imenu-goto): Doc fix. Show headline title.
2918 (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
2919 (newsticker--buffer-do-insert-text): Clean whitespace in
2920 html-rendered headline title. Code formatting.
2921 Call `newsticker--buffer-print-extra-elements'.
2922 (newsticker--buffer-print-extra-element): Remove.
2923 (newsticker--buffer-print-extra-elements): New.
2924 (newsticker--buffer-do-print-extra-element): New.
2925 (newsticker--buffer-insert-enclosure): Doc fix. Use MBytes for
2926 large sizes.
2927 (newsticker--run-auto-mark-filter)
2928 (newsticker--do-run-auto-mark-filter):
2929 Use `newsticker-auto-mark-filter-list'.
2930
2931 2005-11-04 Ryan Yeske <rcyeske@gmail.com>
2932
2933 * net/rcirc.el: Use split-string OMIT-NULLS argument.
2934 (rcirc-print): Force redisplay before running hooks. Do long
2935 buffer truncation after making new text read-only. Deal with nil
2936 text when decoding strings. If TARGET is nil, use either the
2937 currently selected buffer, if it is an rcirc buffer and of the
2938 same process or the process buffer.
2939 (rcirc-mode): Remove header-line. Recompute short buffer names.
2940 Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
2941 (rcirc-short-buffer-name): Add variable.
2942 (rcirc-kill-buffer-hook): Recompute short buffer names.
2943 Remove nick from private channel.
2944 (rcirc-send-input): Send command text to current-buffer.
2945 Don't clear overlay arrow here.
2946 (rcirc-short-buffer-name): Return a short buffer name.
2947 (rcirc-update-short-buffer-names, rcirc-abbreviate)
2948 (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
2949 buffer-name abbreviations.
2950 (rcirc-kill-buffer-hook-1): Split to make debugging easier.
2951 Do not touch nick-table when killing a parted channel.
2952 (rcirc-window-configuration-change): Rename from rcirc-update-activity.
2953 Clear arrow from current buffer if it is now hidden.
2954 (rcirc-current-buffer): Add variable.
2955 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
2956 (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
2957 Remove -face from names.
2958 (rcirc-update-activity-string): Print "DND" when globally ignoring
2959 activity.
2960 (rcirc-ignore-buffer-activity-flag): Rename from
2961 rcirc-ignore-channel-activity.
2962 (rcirc-ignore-all-activity-flag): Doc fix.
2963 (rcirc-channels): Remove variable.
2964 (rcirc-kill-buffer-hook):
2965 (rcirc-get-buffer-create): Add nick to private channel.
2966 (rcirc-multiline-edit-submit): Remove tabs.
2967 (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
2968 folded.
2969 (rcirc-remove-nick-channel): Bug fix.
2970 (rcirc-toggle-ignore-buffer-activity): Rename from
2971 rcirc-toggle-ignore-channel-activity.
2972 (rcirc-record-activity): Add buffers to the front of the list.
2973 (rcirc-update-activity): Remove killed buffers from list.
2974 (rcirc-process-server-response-1): Remove last argument if it is
2975 null before calling handler.
2976 (rcirc): Add "rcirc" defcustom prefix.
2977 (rcirc-prompt): Simplify default prompt.
2978 Use custom-initialize-default.
2979 (rcirc-private-chats): Remove variable.
2980 (rcirc-prompt): Change initialization.
2981 (rcirc-version): Remove function.
2982 (rcirc-id-string): Add constant.
2983 (rcirc-last-buffer): Remove variable.
2984 (rcirc-buffer-alist): Add variable.
2985 (rcirc-connect): Update variable setup.
2986 (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
2987 (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
2988 default.
2989 (rcirc-handler-generic): Trigger activity.
2990 (rcirc-send-message): Create the buffor of the target.
2991 (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
2992 (rcirc-get-buffer): Just return nil if there is no matching buffer.
2993 (rcirc-multiline-edit-cancel): Remove function.
2994 (rcirc-set-last-buffer): Remove function.
2995 (rcirc-get-any-buffer): Add function.
2996 (rcirc-join-channels): Don't print /join text.
2997 (rcirc-toggle-ignore-channel-activity): Add and update echo area
2998 messages.
2999 (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
3000 (rcirc-handler-NOTICE): Recognize CTCP responses.
3001 (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
3002 constructing TOPIC string for buffers we are not JOINed.
3003 (rcirc-handler-CTCP-response): Add handler.
3004 (rcirc-multiline-edit-submit): Restore the window-configuration
3005 before adjusting point.
3006 (rcirc): Add customization group.
3007 (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
3008 (rcirc-user-full-name, rcirc-startup-channels-alist)
3009 (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
3010 (rcirc-ignore-all-activity-flag, rcirc-time-format)
3011 (rcirc-input-ring-size, rcirc-read-only-flag)
3012 (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
3013 (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
3014 Change defvar to defcustom.
3015 (rcirc-update-prompt): Add optional ALL arg, which will update
3016 prompts in all rcirc buffers. Regexp quote replacement text.
3017 (rcirc-fill-column): Accept 'frame-width as a value.
3018 (rcirc-set-changed): Add function.
3019 (rcirc-next-active-buffer): Write more meaningful messages.
3020 (rcirc-faces): Add customization group.
3021 (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
3022 (rcirc-nick-in-message-face, rcirc-prompt-face)
3023 (rcirc-mode-line-nick-face): Move into rcirc-faces group.
3024 (with-rcirc-process-buffer): Move before first usage.
3025 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
3026 (rcirc-debug-flag): Rename from `rcirc-log-p'.
3027 (rcirc-debug): Rename from `rcirc-log'.
3028 (rcirc-format-response-string): Do not print '-' chars for a
3029 NOTICE with no sender. Simplify output of server responses.
3030
3031 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
3032
3033 (rcirc-browse-url-map, rcirc-browse-url-at-point)
3034 (rcirc-browse-url-at-mouse, rcirc-mangle-text): Make urls
3035 mouse and RET clickable.
3036
3037 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
3038
3039 * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
3040
3041 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
3042
3043 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
3044 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
3045 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
3046 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional 'passphrase'
3047 argument to all these routines, so the passphrase can be managed
3048 externally and passed in to the system.
3049 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
3050 pgg-add-passphrase-to-cache function.
3051
3052 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
3053 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
3054 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
3055 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional 'passphrase'
3056 argument to all these routines, so the passphrase can be managed
3057 externally and passed in to the system.
3058 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
3059 function.
3060
3061 2005-11-04 Edward O'Connor <hober0@gmail.com> (tiny change)
3062
3063 * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
3064 from goto-address-url-regexp.
3065
3066 2005-11-04 Carsten Dominik <dominik@science.uva.nl>
3067
3068 * textmodes/org.el (org-read-date, org-goto-calendar)
3069 (org-recenter-calendar, org-agenda-goto-calendar):
3070 Temporarily clear 'calendar-move-hook'.
3071
3072 2005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
3073
3074 * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
3075 merging.
3076
3077 * ediff-util.el (ediff-previous-difference): Don't skip regions that
3078 have merge clashes.
3079
3080 2005-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3081
3082 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
3083 Undo previous change.
3084
3085 * startup.el (command-line): Use `custom-reevaluate-setting' for
3086 mouse-wheel-down-event and mouse-wheel-up-event. Don't call
3087 tty-register-default-colors on Mac.
3088
3089 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
3090
3091 * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
3092 (gdb-buffer-type): Make it automatically buffer local...
3093 (gdb-get-create-buffer): ...and set it accordingly.
3094 (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
3095 actually work.
3096
3097 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
3098
3099 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
3100 not red.
3101
3102 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
3103
3104 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
3105 case GUD buffer is not visible.
3106 (gdb-goto-breakpoint): Try to force display in source buffer.
3107 (gdb-frame-gdb-buffer): Copy other similar functions.
3108 (gdb-restore-windows): Don't display source if not asked for.
3109 (gdb-assembler-buffer-name): Don't capitalise.
3110
3111 2005-11-03 Richard M. Stallman <rms@gnu.org>
3112
3113 * wid-edit.el (key-sequence): New widget type.
3114
3115 * simple.el (set-mark-command-repeat-pop): New variable.
3116 (set-mark-command): Only interpret plan C-@ after a pop as a pop
3117 if set-mark-command-repeat-pop is true.
3118
3119 * info.el (Info-fontify-node): Don't display extra "see" if there
3120 already is one here.
3121
3122 * mouse.el: Fix special handling of DEL after dragging a region:
3123 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
3124 (mouse-region-delete-keys): Add [backspace].
3125
3126 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
3127
3128 * textmodes/ispell.el (ispell-command-loop): Change `i' description
3129 not to assume it pertains to an affix.
3130
3131 * textmodes/flyspell.el (flyspell-post-command-hook):
3132 Bind deactivate-mark to prevent deactivation.
3133
3134 2005-11-03 Lars Hansen <larsh@soem.dk>
3135
3136 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
3137 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
3138 dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
3139
3140 2005-11-03 Romain Francoise <romain@orebokech.com>
3141
3142 * net/eudcb-mab.el: Now part of GNU Emacs. Update FSF's address.
3143 Update copyright years.
3144
3145 2005-11-03 Sam Steingold <sds@gnu.org>
3146
3147 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
3148 Use system-type instead of window-system because window-system is not
3149 correctly defined during loadup.
3150
3151 2005-11-02 Mark A. Hershberger <mah@everybody.org>
3152
3153 * xml.el (xml-syntax-table): Allow xml.el to compile in xemacs.
3154 (xml-parse-tag): Join strings separated by a comment properly.
3155
3156 2005-11-02 Andreas Schwab <schwab@suse.de>
3157
3158 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
3159
3160 2005-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
3161
3162 * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
3163 (byte-optimize-pure-func): Quote the eval'd value.
3164
3165 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
3166 Rename from perl-font-lock-syntactic-face-function.
3167 Change the calling convention so it can be used as a font-lock MATCHER.
3168 Do the parse-partial-sexp loop outselves.
3169 (perl-font-lock-syntactic-keywords): Use it.
3170 (perl-mode): Don't set font-lock-syntactic-face-function any more.
3171
3172 2005-11-02 Nick Roberts <nickrob@snap.net.nz>
3173
3174 * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
3175 disassembly buffer too.
3176 (gdb-exited): Remove overlay arrows when execution has finished.
3177 (gdb-info-frames-custom, gdb-info-threads-custom)
3178 (gdb-info-registers-custom): Don't add inappropriate text
3179 properties if inferior is not active.
3180
3181 2005-11-02 Glenn Morris <rgm@gnu.org>
3182
3183 * progmodes/fortran.el (fortran-blink-match):
3184 Use `blink-matching-delay'.
3185
3186 2005-11-02 John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
3187
3188 * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
3189
3190 2005-11-02 Lars Hansen <larsh@soem.dk>
3191
3192 * net/tramp.el (tramp-action-out-of-band): Handle scp message
3193 "Permission denied".
3194
3195 2005-11-01 Richard M. Stallman <rms@gnu.org>
3196
3197 * textmodes/flyspell.el (flyspell-external-point-words):
3198 Pass nil to flyspell-get-word.
3199
3200 2005-11-02 Kim F. Storm <storm@cua.dk>
3201
3202 * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
3203 item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
3204
3205 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
3206
3207 * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
3208 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
3209 (calendar-mouse-print-dates): Add optional `event' argument.
3210 Update interactive-spec.
3211 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
3212 Use `calendar-event-to-date' instead of `event'.
3213
3214 2005-11-02 Masatake YAMATO <jet@gyve.org>
3215
3216 * progmodes/ld-script.el (ld-script-builtins):
3217 Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
3218 "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
3219 (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
3220
3221 2005-11-01 Romain Francoise <romain@orebokech.com>
3222
3223 * vc-sccs.el: Update copyright year.
3224 * ezimage.el: Likewise.
3225
3226 2005-11-01 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
3227
3228 * info.el (Info-fontify-node): Use `string-width' for fontifying
3229 underlined titles.
3230
3231 2005-11-01 Juri Linkov <juri@jurta.org>
3232
3233 * info.el (Info-fontify-node): Downcase node header keywords Node,
3234 Prev, Next, Up before comparison.
3235 (Info-history): Insert absolute directory name, and put invisible
3236 property on it.
3237
3238 2005-11-01 Juri Linkov <juri@jurta.org>
3239
3240 * info.el (Info-file-supports-index-cookies): New variable.
3241 (Info-find-node-2): Check makeinfo version for index cookie support.
3242 (Info-index-nodes): Search for nodes with index cookies only when
3243 Info-file-supports-index-cookies is t. Otherwise, search nodes
3244 with "Index" in the node name.
3245 (Info-index-node): Search index cookie in the current node only when
3246 Info-file-supports-index-cookies is t. Otherwise, check the word
3247 "Index" in the node name.
3248 (Info-find-emacs-command-nodes): Remove code that searches nodes
3249 with "Index" node name in the top menu.
3250
3251 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
3252
3253 * progmodes/scheme.el (scheme-mode-variables): Use the default
3254 comment-indent-function.
3255
3256 * faces.el (face-attribute): Handle the case where a face inherits from
3257 a non-existent face.
3258
3259 * simple.el (eval-expression-print-format): Use lisp-readable syntax
3260 for octal and hexa output, and merge the char into the paren.
3261 (kill-new): Use push.
3262 (copy-to-buffer): Use with-current-buffer.
3263 (completion-setup-function): Move code in loop to remove redundancy.
3264 (minibuffer-local-must-match-map): Don't add bindings that duplicate
3265 those inherited from minibuffer-local-completion-map.
3266
3267 * savehist.el (savehist-mode) <defcustom>:
3268 Use custom-set-minor-mode if available.
3269 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
3270 and emit a message if applicable.
3271
3272 2005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
3273
3274 * savehist.el: Sync up to version 19.
3275 (savehist-mode): New minor mode.
3276 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
3277 (savehist-length): Remove (use history-length instead).
3278 (savehist-file-modes): Rename from savehist-modes.
3279 (savehist-save-hook, savehist-loaded): New vars.
3280 (savehist-load): Use savehist-mode. Try to smooth up transition from
3281 old format to new format.
3282 (savehist-install): Allow savehist-autosave-interval to be nil.
3283 (savehist-save): Run the new hook. Be more careful to only trim the
3284 history variables.
3285 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
3286 (savehist-printable): Print into a buffer rather than char-by-char.
3287
3288 2005-11-01 John Wiegley <johnw@newartisans.com>
3289
3290 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
3291 toggle-ignore keybinding (C-a). The author said it had been
3292 disabled much earlier due to a possible incompatibility, but after
3293 many months of usage I have encountered no problems (and it is a
3294 rather useful option, especially for switching to " *temp*").
3295
3296 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
3297 support for OS/X's AddressBook, by calling out to the open source
3298 program "contacts" (installable through Fink).
3299
3300 * net/eudc.el (eudc-expand-inline): If the
3301 `eudc-multiple-match-handling-method' is set to `all', delete the
3302 query string before inserting the query result.
3303
3304 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
3305 flag, to prevent Eshell from using the system ls when
3306 `eshell-ls-insert-directory' is in used.
3307 (eshell-ls-insert-directory): Disable font-lock in directory
3308 buffer so that Eshell's own fontification is seen. This broke
3309 recently due to changes in font-lock, so this goes back to version
3310 21 behavior.
3311
3312 2005-11-01 Nick Roberts <nickrob@snap.net.nz>
3313
3314 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
3315 (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
3316 (gdb-many-windows): Doc fix.
3317
3318 2005-10-31 Romain Francoise <romain@orebokech.com>
3319
3320 * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
3321
3322 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
3323
3324 * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
3325 that global-font-lock-mode can be enabled by default.
3326
3327 * font-lock.el (font-lock-keywords, font-lock-mode-internal)
3328 (font-lock-add-keywords, font-lock-remove-keywords)
3329 (font-lock-fontify-buffer): Remove autoload cookies.
3330
3331 * jit-lock.el (jit-lock-register): Likewise.
3332
3333 * emacs-lisp/syntax.el (syntax-ppss): Likewise.
3334
3335 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
3336
3337 * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
3338 intact if there is no gud-comint-buffer.
3339
3340 2005-10-31 Luc Teirlinck <teirllm@auburn.edu>
3341
3342 * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
3343 old prompt comint-prompt-read-only is t and GDB commands are
3344 issued from tool bar etc.
3345
3346 2005-10-31 Masatake YAMATO <jet@gyve.org>
3347
3348 * vc.el (vc-directory-exclusion-list): Add "{arch}".
3349
3350 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
3351
3352 * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
3353 (thumbs-thumbsdir): Make .emacs.d if it does not exist.
3354
3355 2005-10-30 Michael Albinus <michael.albinus@gmx.de>
3356
3357 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
3358 starting at beginning of line. Fontification is messed up when
3359 `open-paren-in-column-0-is-defun-start' set to t.
3360 Reported by John Paul Wallington <jpw@pobox.com>.
3361
3362 2005-10-30 Luc Teirlinck <teirllm@auburn.edu>
3363
3364 * comint.el (comint-send-input): Call `comint-update-fence' when
3365 `comint-process-echoes' and `comint-prompt-read-only' are both
3366 non-nil, to avoid leftover read-only newline.
3367
3368 2005-10-30 Richard M. Stallman <rms@gnu.org>
3369
3370 * textmodes/flyspell.el (flyspell-external-point-words):
3371 Detect when WORD can't be checked properly because
3372 flyspell-get-word finds just part of it, and move on.
3373
3374 * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
3375 boundarychar for Polish.
3376 (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
3377 (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
3378
3379 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
3380
3381 * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
3382 (gdb-registers-font-lock-keywords): Delete.
3383 (gdb-registers-mode): Don't fontify.
3384 (gdb-info-registers-custom): Use text properties instead as, in
3385 future, changed register values will use font-lock-warning-face.
3386 (gdb-local-font-lock-keywords): Rename to...
3387 (gdb-locals-font-lock-keywords): ...for consistency.
3388
3389 2005-10-30 Andre Spiegel <spiegel@gnu.org>
3390
3391 * vc.el (vc-switch-backend): Better error message if the buffer is
3392 not visiting a file under version control.
3393
3394 * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
3395
3396 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
3397
3398 * startup.el (command-line): Use ~/.emacs.d/init.el instead of
3399 ~/.emacs.d/.emacs.
3400
3401 2005-10-29 Richard M. Stallman <rms@gnu.org>
3402
3403 * replace.el (occur-mode-mouse-goto): Always go to other window.
3404 (occur-mode-goto-occurrence): Always switch in same window.
3405
3406 * simple.el (undo): Display message at end, not at start.
3407
3408 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
3409 New arg REUSE-CELL.
3410 (cancel-timer-internal): New function.
3411 (timer-event-handler): Use cancel-timer-internal,
3412 and pass the cell it returns to timer-activate...
3413
3414 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
3415 (jit-lock-deferred-fontify, jit-lock-context-fontify)
3416 (jit-lock-after-change): Test memory-full.
3417
3418 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
3419
3420 * textmodes/conf-mode.el (conf-assignment-sign)
3421 (conf-assignment-regexp): Fix docstrings.
3422 (conf-mode-initialize): New function.
3423 (conf-mode): Remove optional args. Use delay-mode-hooks to
3424 recognize recursive calls.
3425 (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
3426 (conf-space-mode, conf-colon-mode, conf-ppd-mode)
3427 (conf-xdefaults-mode): Use define-derived-mode and
3428 conf-mode-initialize.
3429
3430 2005-10-29 Romain Francoise <romain@orebokech.com>
3431
3432 * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
3433
3434 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
3435
3436 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
3437 part of the decoded armor to find the key-identifier.
3438 (pgg-gpg-lookup-key-owner): New function to return the
3439 human-readable identifier of a key owner.
3440 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
3441 key itself.
3442 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
3443 the key value) if we have a key and can match it against a secret
3444 key. Also, added a note pointing out fact that the prompt only
3445 indicates the first matching key.
3446
3447 * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
3448 pgg-decrypt-region.
3449 (pgg-pending-timers): A new hash for tracking the passphrase cache
3450 timers, so that new ones supercede old ones.
3451 (pgg-add-passphrase-to-cache): Rename from
3452 `pgg-add-passphrase-cache' to reduce confusion (all callers
3453 changed). Modified to cancel old timers when new ones are added.
3454 (pgg-remove-passphrase-from-cache): Rename from
3455 `pgg-remove-passphrase-cache' to reduce confusion (all callers
3456 changed). Modified to cancel old timers when their keys are
3457 removed from the cache.
3458 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
3459 XEmacs, an indirection to delete-itimer.
3460 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
3461 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
3462 users can only check cache without risk of prompting. Correct bug in
3463 notruncate behavior.
3464 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
3465 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
3466 Add informative docstrings.
3467 (pgg-decrypt): Convey provided passphrase in subordinate call to
3468 pgg-decrypt-region.
3469
3470 2005-10-20 Ken Manheimer <ken.manheimer+emacs@gmail.com>
3471
3472 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
3473 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
3474 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
3475 'passphrase' argument, so the passphrase can be managed externally
3476 and then passed in to the system.
3477
3478 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
3479 (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
3480 so the passphrase cache can be used reliably with identifiers
3481 besides a pgp packet's key id.
3482
3483 * pgg-gpg.el (pgg-pgp-encrypt-region)
3484 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
3485 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
3486 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional 'passphrase'
3487 argument to all these routines, so the passphrase can be managed
3488 externally and passed in to the system.
3489
3490 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
3491 'notruncate' argument, so the passphrase cache can be used
3492 reliably with identifiers besides a pgp packet's key id.
3493
3494 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
3495
3496 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
3497 symmetric encryption.
3498 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
3499 encrypted session key.
3500 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
3501 message ask for the passphrase in a proper way.
3502
3503 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
3504 New user commands for symmetric encryption.
3505
3506 2005-10-28 Bill Wohler <wohler@newt.com>
3507
3508 * help-mode.el (help-url): New button type. Calls browse-url.
3509 (help-xref-url-regexp): New regexp to recognize URLs in docstring.
3510 Similar to Info nodes: URL `url'.
3511 (help-make-xrefs): Create help-url buttons for
3512 help-xref-url-regexp matches.
3513
3514 2005-10-29 Nick Roberts <nickrob@snap.net.nz>
3515
3516 * tool-bar.el (tool-bar-add-item-from-menu)
3517 (tool-bar-local-item-from-menu): Fix doc strings.
3518
3519 2005-10-28 Romain Francoise <romain@orebokech.com>
3520
3521 * ldefs-boot.el: Update.
3522
3523 * subr.el (locate-library): Move from help-fns.el.
3524 * help-fns.el (locate-library): Move to subr.el.
3525
3526 2005-10-28 Richard M. Stallman <rms@gnu.org>
3527
3528 * net/tramp.el (tramp-completion-mode): defvar moved up.
3529
3530 * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
3531
3532 * tool-bar.el (tool-bar-mode): Delete autoload cookie.
3533
3534 * files.el (find-file-noselect): Use %d to format large file size.
3535
3536 * bindings.el (mode-line-format): Add %e.
3537
3538 * loadup.el ("facemenu"): Load unconditionally.
3539 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
3540 ("x-dnd"): Load, when appropriate.
3541
3542 * startup.el (command-line): Call before-init-hook earlier.
3543 Warn about some bad characters in -u user name.
3544
3545 * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
3546 (flyspell-external-point-words): Error if misspelled word is not found.
3547 Set flyspell-large-region-beg at end of word.
3548
3549 2005-10-28 Andreas Schwab <schwab@suse.de>
3550
3551 * view.el (View-revert-buffer-scroll-page-forward):
3552 Use view-page-size-default.
3553
3554 2005-10-28 Juri Linkov <juri@jurta.org>
3555
3556 * international/quail.el (quail-get-current-str): Translate last
3557 raw character for deterministic input methods.
3558
3559 2005-10-27 Jay Belanger <belanger@truman.edu>
3560
3561 * calc/calc-ext.el: Add functions to autoloads.
3562 (math-identity-matrix-p, math-ident-row-p): New functions.
3563
3564 * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
3565 multiplication by an identity matrix; don't turn multiplication by
3566 an inverse matrix into division.
3567 (math-div-symbol-fancy): Replace division by matrices with
3568 multiplication by inverse.
3569
3570 * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
3571
3572 * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
3573 (calc-writeoutpower): New functions.
3574
3575 2005-10-27 Romain Francoise <romain@orebokech.com>
3576
3577 * replace.el (occur-engine): Include colon in mouse-face highlight.
3578
3579 * dired-x.el: Change Maintainer field.
3580
3581 2005-10-26 Chong Yidong <cyd@stupidchicken.com>
3582
3583 * longlines.el (longlines-mode): Bind after-change-functions to
3584 nil during initial decoding and final encoding.
3585
3586 2005-10-26 Dan Nicolaescu <dann@ics.uci.edu>
3587
3588 * term.el (term-emulate-terminal, term-handle-colors-array)
3589 (term-handle-ansi-escape): Specify the terminfo capabilities
3590 implemented.
3591
3592 2005-10-26 Richard M. Stallman <rms@gnu.org>
3593
3594 * info.el (Info-fontify-node): Fix detection of sentence-break
3595 before *Note.
3596
3597 2005-10-26 Romain Francoise <romain@orebokech.com>
3598
3599 * smerge-mode.el: Add `tools' to file keywords.
3600
3601 2005-10-26 Nick Roberts <nickrob@snap.net.nz>
3602
3603 * progmodes/gud.el (gud-menu-map): Only display gud-until icon
3604 when the fringe is not available.
3605
3606 * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
3607 (def-gdb-auto-update-trigger): Simplify construction.
3608 (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
3609 def-gdb-auto-updated-buffer as gdb-info-locals-handler is
3610 defined explicitly.
3611 (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
3612 def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
3613 defined explicitly.
3614 (gdb-info-locals-custom): Remove as it's a no-op.
3615
3616 2005-10-25 Chong Yidong <cyd@stupidchicken.com>
3617
3618 * longlines.el (longlines-mode): Remove narrowing before
3619 performing the initial decoding or final encoding.
3620
3621 2005-10-25 Romain Francoise <romain@orebokech.com>
3622
3623 * emacs-lisp/find-func.el (find-library-name): Also strip
3624 extension if library name ends in .el, to take advantage of
3625 `find-library-suffixes'.
3626
3627 2005-10-25 Richard M. Stallman <rms@gnu.org>
3628
3629 * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
3630
3631 2005-10-25 Juri Linkov <juri@jurta.org>
3632
3633 * textmodes/texinfo.el (texinfo-mode): Change charset of one
3634 quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
3635
3636 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
3637
3638 * play/blackbox.el (blackbox-mode-map): Move init into declaration.
3639 (blackbox-redefine-key): Add argument `map'.
3640
3641 * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
3642 regions when moving the jit-lock-context-unfontify-pos boundary.
3643
3644 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
3645
3646 * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
3647
3648 2005-10-25 Masatake YAMATO <jet@gyve.org>
3649
3650 * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
3651
3652 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change)
3653
3654 * play/blackbox.el (blackbox-redefine-key): New function.
3655 (blackbox-mode-map): Use it to remap existing bindings for cursor
3656 motion instead of binding literal keys.
3657
3658 2005-10-25 Glenn Morris <rgm@gnu.org>
3659
3660 * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
3661 diary does not end in a newline. Do not assume a blank line at
3662 the start of the diary file.
3663
3664 2005-10-25 Kenichi Handa <handa@m17n.org>
3665
3666 * international/quail.el (quail-translate-key): If the input
3667 method is deterministic and failed to handle the last key, restart
3668 the key handling loop from an appropriate key.
3669
3670 2005-10-25 Michael Albinus <michael.albinus@gmx.de>
3671
3672 * vc.el (vc-dired-mode): Extend comment for binding of
3673 `directory-listing-before-filename-regexp'.
3674
3675 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
3676
3677 * textmodes/texinfo.el (texinfo-mode):
3678 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
3679 not to unnecessarily expose emacs-mule's internal char codes.
3680
3681 2005-10-25 Nick Roberts <nickrob@snap.net.nz>
3682
3683 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
3684 Display hand pointer and help-echo on disabled icon too.
3685 (gdb-mouse-until): New function.
3686 (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
3687
3688 2005-10-24 Chong Yidong <cyd@stupidchicken.com>
3689
3690 * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
3691 with 2005-10-23 change to doctor.el.
3692
3693 * finder.el (finder-mode-map): Add follow-link binding.
3694
3695 2005-10-25 Kim F. Storm <storm@cua.dk>
3696
3697 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
3698 to gdb-mouse-toggle-breakpoint-fringe.
3699 (gdb-mouse-toggle-breakpoint-margin): Rename from
3700 gdb-mouse-toggle-breakpoint. Fix doc.
3701 (gdb-mouse-toggle-breakpoint-fringe): New defun.
3702 (gdb-put-string): Add optional SPROPS arg. Add props to string.
3703 (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
3704 string properties also for fringe breakpoint bitmaps.
3705
3706 2005-10-24 Carsten Dominik <dominik@science.uva.nl>
3707
3708 * textmodes/org.el (org-start-icalendar-file): Fix format form.
3709
3710 2005-10-25 Masatake YAMATO <jet@gyve.org>
3711
3712 * simple.el (completion-common-substring):
3713 Use `completion-common-substring' prior to `completion-base-size'.
3714
3715 2005-10-24 Hrvoje Niksic <hniksic@xemacs.org>
3716
3717 * savehist.el: Require CL while compiling.
3718 (savehist-history-variables): Remove.
3719 (savehist-save-minibuffer-history, savehist-additional-variables)
3720 (savehist-minibuffer-history-variables): New vars.
3721 (savehist-save): Use them.
3722 (savehist-uninstall, savehist-minibuffer-hook): New funs.
3723 (savehist-install): New fun, extracted from savehist-load.
3724 (savehist-load): Use them.
3725
3726 2005-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
3727
3728 * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
3729 a dummy doc-string-elt property.
3730 (defalias, defvaralias, define-category): Add a docstring property.
3731
3732 * image.el (defimage):
3733 * widget.el (define-widget):
3734 * custom.el (defface, defcustom): Add `doc-string' declaration.
3735
3736 * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
3737 (defadvice): Add `doc-string' declaration.
3738
3739 * emacs-lisp/byte-run.el (macro-declaration-function):
3740 Handle `doc-string' declarations.
3741 (define-obsolete-function-alias, define-obsolete-variable-alias):
3742 Add `doc-string' declaration.
3743
3744 2005-10-24 Kenichi Handa <handa@m17n.org>
3745
3746 * international/utf-7.el (utf-7): Add autoload cookie.
3747
3748 * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
3749
3750 2005-10-24 Eli Zaretskii <eliz@gnu.org>
3751
3752 * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
3753 list of directories passed to batch-update-autoloads. Add "." to
3754 the list of the echoed directories.
3755
3756 * pgg-def.el:
3757 * pgg-gpg.el:
3758 * pgg-parse.el:
3759 * pgg-pgp.el:
3760 * pgg-pgp5.el:
3761 * pgg.el: Moved here from the gnus subdirectory.
3762
3763 2005-10-24 Nick Roberts <nickrob@snap.net.nz>
3764
3765 * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
3766 in case comint-prompt-read-only is set to t.
3767
3768 * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
3769 in case comint-prompt-read-only is set to t.
3770
3771 2005-10-24 Ulf Jasper <ulf.jasper@web.de>
3772
3773 * calendar/icalendar.el (icalendar-version): Increase to 0.13.
3774 Now a string.
3775 (icalendar-import-format): Handle CLASS, STATUS, URL.
3776 Rename `subject' to `summary'.
3777 (icalendar-import-format-summary): Rename from
3778 `icalendar-import-format-subject'.
3779 (icalendar-import-format-url, icalendar-import-format-status)
3780 (icalendar-import-format-class): New variables.
3781 (icalendar--rris): Take variable argument list.
3782 (icalendar--datestring-to-isodate): Remove unnecessary
3783 calendar-style check when converting dates with explicit month names.
3784 (icalendar-export-region): Change return type of conversion
3785 subroutines. Bury current buffer unless error occurred.
3786 (icalendar--convert-to-ical)
3787 (icalendar--parse-summary-and-rest): New functions.
3788 (icalendar--convert-ordinary-to-ical)
3789 (icalendar--convert-weekly-to-ical)
3790 (icalendar--convert-yearly-to-ical)
3791 (icalendar--convert-block-to-ical)
3792 (icalendar--convert-cyclic-to-ical)
3793 (icalendar--convert-anniversary-to-ical): Change return type.
3794 Strip trailing blanks from subject.
3795 (icalendar--convert-sexp-to-ical): Change return type.
3796 Strip trailing blanks from subject. Handle simple sexp
3797 entries as generated by icalendar.el.
3798 (icalendar--convert-float-to-ical)
3799 (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
3800 (icalendar-import-file): Doc fix.
3801 (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
3802 Correct call to icalendar--rris.
3803 (icalendar--convert-ical-to-diary): Doc fix. Rename `subject' to
3804 `summary'.
3805 (icalendar--add-diary-entry): Rename `subject' to `summary'.
3806
3807 2005-10-24 Romain Francoise <romain@orebokech.com>
3808
3809 * server.el (server-sentinel): Set query-on-exit flag to nil on
3810 new client processes (it isn't inherited from the server process).
3811
3812 * replace.el (occur-engine): Rearrange text properties.
3813
3814 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
3815
3816 * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
3817 case-fold-search is nil.
3818 (debug-help-follow): Use help-xref-interned directly.
3819
3820 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
3821
3822 * thumbs.el (thumbs-image-type): Add .pbm.
3823
3824 2005-10-23 Richard M. Stallman <rms@gnu.org>
3825
3826 * faces.el (inhibit-face-set-after-frame-default): New variable.
3827 (set-face-attribute): Bind it.
3828 (face-set-after-frame-default): Test it.
3829
3830 * help-fns.el (describe-simplify-lib-file-name): New function.
3831 (describe-function-1, describe-variable): Use it.
3832
3833 * faces.el (describe-face): Use describe-simplify-lib-file-name.
3834
3835 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
3836 Eliminate nil as possible value.
3837 (tooltip-hide-delay): Reduce internal-border-width.
3838
3839 * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
3840 (menu-bar-file-menu) <new-file>: Likewise.
3841
3842 * simple.el (line-move-finish): Ignore fields computing LINE-END.
3843
3844 * international/mule.el (load-with-code-conversion):
3845 Pass full file name to `eval-buffer' unless preloading.
3846
3847 * textmodes/flyspell.el (flyspell-large-region):
3848 Call ispell-check-version.
3849
3850 * textmodes/ispell.el (ispell-local-dictionary-overridden):
3851 Fix the make-variable-buffer-local call that was supposed
3852 to be for this variable.
3853 (ispell-aspell-supports-utf8): Doc fix.
3854 (ispell-find-aspell-dictionaries): Preserve elements of
3855 ispell-dictionary-alist for dictionaries that aspell doesn't report.
3856 (ispell-aspell-find-dictionary): Return nil on error.
3857
3858 * play/doctor.el (doctor-doc): Don't say "psychiatrist".
3859 (doctor-symptoms): Likewise.
3860
3861 * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
3862
3863 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
3864
3865 * cus-edit.el (custom-button, custom-button-pressed): New vars.
3866 (custom-raised-buttons): Add :set spec.
3867 (custom-button-unraised, custom-button-pressed-unraised):
3868 New faces, so that custom-raised-buttons actually does something.
3869 (custom-mode): Use custom-button and custom-button-pressed.
3870
3871 * wid-edit.el (widget-specify-button): Don't ignore
3872 widget-mouse-face on graphic terminals.
3873 (widget-move-and-invoke): Cleanup.
3874
3875 2005-10-23 Thien-Thi Nguyen <ttn@gnu.org>
3876
3877 * whitespace.el (whitespace-cleanup): Doc fix.
3878
3879 2005-10-23 Romain Francoise <romain@orebokech.com>
3880
3881 * emulation/viper.el (viper-set-hooks): Quote forms passed to
3882 `eval-after-load' to avoid evaluating their result.
3883
3884 2005-10-23 Michael Albinus <michael.albinus@gmx.de>
3885
3886 * files.el (directory-listing-before-filename-regexp):
3887 New defvar. Replaces `dired-move-to-filename-regexp' from dired.el.
3888
3889 * dired.el (dired-move-to-filename-regexp): Remove.
3890 All occurences replaced by `directory-listing-before-filename-regexp'.
3891
3892 * dired-x.el, locate.el, vc.el:
3893 Replace `dired-move-to-filename-regexp' by
3894 `directory-listing-before-filename-regexp'. In vc.el it is
3895 overwritten locally; maybe this can be handled in files.el too.
3896
3897 * net/ange-ftp.el (ange-ftp-date-regexp): Remove. All occurences
3898 replaced by `directory-listing-before-filename-regexp'.
3899
3900 2005-10-23 Andreas Schwab <schwab@suse.de>
3901
3902 * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
3903 and eval-next-after-load.
3904
3905 2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
3906
3907 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
3908 exist, create it.
3909
3910 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
3911
3912 * allout.el: Remove autoloads for mailcrypt and crypt++.
3913 Require pgg, pgg-gpg during compilation.
3914 (allout-version): Increment version number to 2.1, and use a literal
3915 rather than RCS Id.
3916 (allout-default-encryption-scheme): Remove.
3917 (allout-passphrase-verifier-handling)
3918 (allout-passphrase-verifier-string)
3919 (allout-file-passphrase-verifier-string)
3920 (allout-passphrase-hint-string): Rename -key- to -passphrase-.
3921 (allout-passphrase-hint-handling): Rename and simplify.
3922 (allout-init): Use `find-file-hook' if available, otherwise
3923 `find-file-hooks'.
3924 (allout-mode): Use `write-file-functions' if available, otherwise
3925 `local-write-file-hooks' and, instead of making auto-save-hook
3926 buffer local, make the write-file-hook activity contingent to
3927 allout-mode.
3928 (allout-mode): Use key-binding substitution in the docstring.
3929 (allout-kill-line): Spell-out kill ring data structure mutation
3930 instead of using byte-compiler-complaint-provoking `pop'.
3931 (allout-insert-listified): Use `insert' rather than `insert-string'
3932 (allout-toggle-current-subtree-encryption): Update docstring, adjust
3933 to new gpp-based encryption, use new `allout-encrypted-topic-p'.
3934 (allout-encrypt-string): Totally revamped vis new underlying
3935 encryption facilities.
3936 (allout-mc-activate-passwd): Remove.
3937 (allout-obtain-passphrase): New, more or less replaces
3938 allout-mc-activate-passwd.
3939 (allout-encrypted-key-info): More or less replaces
3940 allout-encrypted-text-type.
3941 (outlineify-sticky, outlinify-sticky): Add autoload cookie.
3942 (my-mark-marker): Use `(featurep 'xemacs)'.
3943
3944 2005-10-23 Lars Hansen <larsh@soem.dk>
3945
3946 * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
3947 (byte-compile-file-form-defmumble, byte-compile-defun)
3948 (byte-compile-defmacro): Use it.
3949 (byte-compile-form): Don't call byte-compile-set-symbol-position
3950 when a byte-compile handler is called.
3951
3952 2005-10-22 Romain Francoise <romain@orebokech.com>
3953
3954 * savehist.el (savehist-history-variables): Add `grep-find-history'.
3955
3956 * subr.el (eval-after-load): Convert library name to an absolute
3957 file name using locate-library, since load-history no longer has
3958 library names in it.
3959
3960 2005-10-22 Richard M. Stallman <rms@gnu.org>
3961
3962 * files.el (make-temp-file): Move from subr.el.
3963 * subr.el (make-temp-file): Move to files.el.
3964
3965 * window.el (get-buffer-window-list): Move from subr.el.
3966 * subr.el (get-buffer-window-list): Move to window.el.
3967
3968 * image.el (image-load-path): Use eval-at-startup to initialize.
3969
3970 * subr.el (eval-at-startup): New macro.
3971
3972 * subr.el: Much rearrangement of functions and division
3973 into pages. No code changes.
3974
3975 2005-10-22 Kenichi Handa <handa@m17n.org>
3976
3977 * tar-mode.el (tar-extract): Be sure to call
3978 find-operation-coding-system if set-auto-coding doesn't find a
3979 coding system.
3980
3981 2005-10-22 Kim F. Storm <storm@cua.dk>
3982
3983 * image.el (image-type-header-regexps): Rename from image-type-regexps.
3984 Change users.
3985 (image-type-file-name-regexps): New defconst.
3986 (image-type-from-data): Simplify loop.
3987 (image-type-from-buffer): New defun.
3988 (image-type-from-file-header): Use it instead of image-type-from-data.
3989 Use image-search-load-path instead of only looking in data-directory.
3990 (image-type-from-file-name): New defun.
3991 (image-search-load-path): Change `pathname' to `filename'.
3992 Make PATH arg optional, default to image-load-path.
3993
3994 2005-10-21 Richard M. Stallman <rms@gnu.org>
3995
3996 * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
3997
3998 * textmodes/paragraphs.el (sentence-end-base): New variable.
3999 (sentence-end): Use sentence-end-base.
4000
4001 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
4002
4003 * font-lock.el (font-lock-default-fontify-region): Check the multiline
4004 property independently from the font-lock-multiline variable.
4005
4006 2005-10-21 Richard M. Stallman <rms@gnu.org>
4007
4008 * emacs-lisp/find-func.el (find-library-name): Doc fix.
4009
4010 * startup.el (command-line): Convert library names
4011 in `load-history' to absolute file names.
4012
4013 * subr.el (symbol-file): Doc fix.
4014
4015 * loadhist.el (file-loadhist-lookup): Call locate-library
4016 instead of find-library-name. Don't try converting
4017 abs file names to library names, since load-history no longer
4018 has library names in it.
4019 (file-dependents, file-provides, file-requires): Doc fixes.
4020
4021 2005-10-21 Juri Linkov <juri@jurta.org>
4022
4023 * progmodes/etags.el (tags-table-mode): New function.
4024 (tags-verify-table): Replace initialize-new-tags-table with
4025 tags-table-mode.
4026
4027 * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
4028 default value.
4029 (desktop-modes-not-to-save): Add tags-table-mode to the
4030 default value.
4031
4032 * info.el (Info-index-next): Add total number of index
4033 alternatives to the message.
4034
4035 * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
4036 backward only space (instead of space and period) before looking
4037 at sentence end.
4038
4039 * simple.el (set-variable): Use user-variable-p instead of symbolp.
4040 Add the old variable value as 4th default-value arg of read-string.
4041
4042 2005-10-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4043
4044 * cus-face.el (custom-declare-face): Make face from X resources
4045 also on Mac.
4046
4047 * disp-table.el (standard-display-g1, standard-display-graphic):
4048 Refuse to use string glyphs also on Mac.
4049 (standard-display-european): Don't set terminal coding system also
4050 on Mac.
4051
4052 * frame.el (display-screens): Use x-display-screens also on Mac.
4053
4054 2005-10-21 Romain Francoise <romain@orebokech.com>
4055
4056 * net/rcirc.el: Now part of GNU Emacs. Update FSF's address.
4057
4058 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
4059
4060 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
4061 and $? into sexps.
4062
4063 * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
4064 warning face on open-paren-in-column-0.
4065
4066 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
4067 boundary case. Fix typo.
4068 Suggested by Martin Rudalics <rudalics@gmx.at>.
4069
4070 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
4071
4072 * textmodes/org.el: (org-combined-agenda-icalendar-file)
4073 (org-icalendar-include-todo, org-icalendar-combined-name): New options.
4074 (org-export-icalendar-this-file)
4075 (org-export-icalendar-all-agenda-files)
4076 (org-export-icalendar-combine-agenda-files): New commands.
4077 (org-export-icalendar, org-print-icalendar-entries)
4078 (org-start-icalendar-file, org-finish-icalendar-file)
4079 (org-ical-ts-to-string): New functions.
4080 (org-read-date, org-goto-calendar)
4081 (org-agenda-goto-calendar): Inhibit displaying diary entries by
4082 call to `calendar'.
4083 (orgtbl-setup): Remove the :keys arguments from the menu description.
4084 (org-after-save-iCalendar-file-hook): New variable.
4085
4086 2005-10-21 Kenichi Handa <handa@m17n.org>
4087
4088 * language/vietnamese.el (tcvn-5712): Make it an alias of
4089 vietnamese-tcvn coding-system.
4090
4091 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
4092
4093 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
4094 group id is given.
4095
4096 2005-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
4097
4098 * progmodes/sh-script.el (sh-escaped-line-re): New var.
4099 (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
4100 (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
4101 whose line is either continued or ends with a comment.
4102
4103 2005-10-20 Romain Francoise <romain@orebokech.com>
4104
4105 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
4106
4107 * replace.el (occur-engine): Add follow-link property.
4108
4109 * font-core.el (font-lock-mode): Doc fix.
4110
4111 2005-10-20 Richard M. Stallman <rms@gnu.org>
4112
4113 * net/rcirc.el: New file.
4114
4115 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
4116
4117 * term.el (term-term-name): Initialize to "eterm-color".
4118
4119 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
4120
4121 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
4122 for encryption functionality.
4123 Move allout customization subgroup from `editing' to `outlines' group.
4124 Fix commentary 'keywords' to legitimate ones.
4125 Update author info (using my current email address, obscurified).
4126 (allout-encrypt-string, allout-encryption-produce-work-buffer)
4127 (allout-encrypted-topic-p, allout-encrypted-text-type)
4128 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
4129 (allout-situate-encryption-key-verifier)
4130 (allout-get-encryption-key-verifier, allout-verify-key)
4131 (allout-next-topic-pending-encryption)
4132 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
4133 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
4134 (outline-key-verifier-handling, outline-key-hint-handling)
4135 (outline-encrypt-unencrypted-on-saves): New defcustoms.
4136 (allout-file-key-verifier-string, allout-encryption-scheme)
4137 (allout-key-verifier-string, allout-key-hint-string)
4138 (allout-after-save-decrypt): New variables.
4139 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
4140 (allout-after-saves-handler): New hook functions.
4141 (allout-post-command-business): Do allout-after-save-decrypt.
4142 (allout-enable-file-variable-adjustment): Custom var to enable
4143 mechanism for adding and adjusting settings of Emacs file variables.
4144 (allout-adjust-file-variable, allout-file-vars-section-data):
4145 New functions, implement the mechanism.
4146 (outlineify-sticky): Use the file vars mechanism.
4147 (allout-inhibit-protection, allout-during-write-cue)
4148 (allout-override-protect, allout-before-change-protect): Remove.
4149 (allout-flag-region, allout-open-topic): Adjust read-only text.
4150 (allout-open-line-not-read-only): Add to facilitate read-only
4151 text based protection.
4152 (allout-kill-line): Revise to adjust read-only text, clue the
4153 user about the inhibition.
4154 (allout-unprotected): Use unwind-protect.
4155 (allout-shift-in, allout-shift-out): Disallow manually shifting a
4156 topic deeper than the offspring depth of the previous topic -
4157 avoiding confusing "containment discontinuities".
4158 (allout-reindent-bodies): Fix retention of body relative hanging
4159 indent during promotion of collapsed bodies.
4160 (allout-open-topic): Make it easy to open new topic with same
4161 bullet as current topic - topic creation functions provided with
4162 any universal argument provokes now prompt for bullet, defaulting
4163 to the bullet of the previous topic.
4164 (allout-plain-bullets-string, allout-distinctive-bullets-string):
4165 Plain bullet alternates '.' period and ',' comma only. All other
4166 bullets are relegated to special status (but customizable).
4167 (allout-end-of-entry): Rename from 'allout-end-of-current-entry
4168 since it actually operates w.r.t. most immediately containing
4169 entry, visible or not.
4170 (allout-hide-current-entry, allout-show-current-entry): Use the
4171 revised version.
4172 (allout-old-expose-topic): Solidify deprecation.
4173 (allout-end-of-subtree): Add so we can span concealed as well
4174 as visible topics.
4175 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
4176 (allout-end-of-current-heading): Tweak to just respect the first line.
4177 (allout-get-body-text): Add.
4178 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
4179 when invoked interactively.
4180 (allout-up-current-level): Use `interactive-p'.
4181 (allout-mode, allout-init): Miscellaneous docstring and
4182 operational refinements, as well as hookups of new encryption stuff.
4183 (allout-beginning-of-current-entry): Now works as advertised.
4184 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
4185 (allout-isearch-rectification): Refine condition for isearching.
4186 (allout-isearch-abort, allout-enwrap-isearch)
4187 (allout-flag-region, my-region-active-p): Relocate some macros.
4188 (allout-title): Fallback title is '(buffer-name)', not
4189 non-existing '(current-buffer-name)'.
4190 (subst-char-in-string): Define if absent (for some XEmacs versions).
4191
4192 2005-10-20 Jari Aalto <jari.aalto@cante.net>
4193
4194 * mail/sendmail.el (mail-setup-hook, mail-aliases)
4195 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
4196 (mail-citation-prefix-regexp, mail-signature-file)
4197 (mail-default-headers, mail-bury-selects-summary)
4198 (mail-send-nonascii): Add autoload cookies.
4199
4200 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
4201
4202 * frame.el (blink-cursor-mode): Add `mac' to the list of
4203 window-system's that support blinking cursor.
4204
4205 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
4206
4207 * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
4208
4209 2005-10-20 Eli Zaretskii <eliz@gnu.org>
4210
4211 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
4212 Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
4213 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
4214
4215 2005-10-20 Kim F. Storm <storm@cua.dk>
4216
4217 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
4218 (ido-set-current-directory): Don't add / after final @.
4219 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
4220 Explicitly handle ange-ftp completion oddities.
4221 (ido-make-file-list): Don't rotate list at tramp root to avoid
4222 triggering tramp file handler for expand-file-name via get-file-buffer.
4223
4224 2005-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
4225
4226 * savehist.el (savehist-coding-system): Revert to checking XEmacs.
4227
4228 2005-10-19 Jay Belanger <belanger@truman.edu>
4229
4230 * calc/calc-units.el (math-standard-units): Add units, adjust
4231 symbols and update values.
4232 (math-unit-prefixes): Add more prefixes.
4233
4234 2005-10-19 Romain Francoise <romain@orebokech.com>
4235
4236 * bookmark.el (bookmark-menu-heading): New face.
4237 (bookmark-bmenu-list): Use it.
4238 Don't fiddle with `baud-rate' at top-level.
4239
4240 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
4241
4242 * image.el (create-image, find-image): Mention max-image-size in
4243 docstring.
4244
4245 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
4246
4247 * savehist.el (savehist-load): Revert to checking XEmacs.
4248
4249 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
4250 Various docstring and line-width fixups.
4251 (conf-mode): Use cond.
4252 Set font-lock-defaults. Don't set comment-use-syntax.
4253
4254 2005-10-18 David Ponce <david@dponce.com>
4255
4256 * tree-widget.el (tree-widget-button-click): New function.
4257 (tree-widget-button-keymap): Use it.
4258
4259 2005-10-18 Romain Francoise <romain@orebokech.com>
4260
4261 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
4262 (bookmark-bmenu-hide-filenames): Add follow-link property.
4263 Improve help-echo text.
4264
4265 * ffap.el (find-file-at-point): Doc fix.
4266
4267 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4268
4269 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
4270
4271 2005-10-18 Masatake YAMATO <jet@gyve.org>
4272
4273 Install to the CVS repository what I forgot to install in my
4274 2005-10-16 changes.
4275
4276 * progmodes/python.el (python-complete-symbol): Pass the common
4277 prefix substring of completion to `display-completion-list'.
4278
4279 * textmodes/org.el (org-complete): Ditto.
4280
4281 2005-10-18 Masatake YAMATO <jet@gyve.org>
4282
4283 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
4284
4285 * woman.el (WoMan-xref-man-page): New button type derived
4286 from `Man-abstract-xref-man-page'.
4287 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
4288
4289 * man.el (Man-abstract-xref-man-page): New button type.
4290 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
4291 (Man-highlight-references): Add new optional argument `xref-man-type'.
4292
4293 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
4294
4295 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
4296
4297 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
4298
4299 * cus-edit.el (Custom-move-and-invoke): Delete.
4300 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
4301
4302 * wid-edit.el (widget-move-and-invoke): New function, from
4303 Custom-move-and-invoke.
4304
4305 2005-10-17 Bill Wohler <wohler@newt.com>
4306
4307 Move all remaining images from lisp/toolbar to etc/images, move
4308 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
4309 the low resolution images in their own directory (low-color).
4310
4311 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*,
4312 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*:
4313 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*:
4314 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*:
4315 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*:
4316 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*:
4317 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
4318
4319 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
4320 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
4321 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
4322 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
4323 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
4324 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
4325 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
4326 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
4327 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
4328 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
4329 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
4330 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
4331 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
4332 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
4333 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
4334
4335 To conform with convention, replace the underscore (_) in the
4336 following image names with dash (-) or (/) as appropriate.
4337
4338 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
4339 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
4340 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
4341 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
4342 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
4343 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
4344 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
4345 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
4346 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
4347 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
4348 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
4349 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
4350 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
4351 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
4352 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
4353
4354 * info.el (info-tool-bar-map): Replace underscores in image names
4355 with dashes.
4356
4357 * makefile.w32-in (WINS): Remove toolbar.
4358
4359 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
4360
4361 * tool-bar.el: Move to lisp from toolbar. Now that
4362 toolbar is empty, it should be deleted when folks run "cvs up -P".
4363
4364 2005-10-18 Jay Belanger <belanger@truman.edu>
4365
4366 * calc/calc-store.el (calc-store-into): Get the proper variable name
4367 to display in message.
4368
4369 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
4370
4371 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
4372 expressions display in speedbar for all buffers when debugging.
4373 (gdb-speedbar-expand-node): Ensure node contraction is always updated.
4374
4375 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
4376 (speedbar-insert-button, speedbar-make-button):
4377 Use add-text-properties.
4378 (speedbar-update-localized-contents)
4379 (speedbar-update-directory-contents)
4380 (speedbar-update-special-contents): Use dolist.
4381 (speedbar-buffer-easymenu-definition): Add a menu separator.
4382
4383 2005-10-17 Jason Rumney <jasonr@gnu.org>
4384
4385 * makefile.w32-in: Use $(lisp) consistently.
4386 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
4387 for shell specific generation of mh-autoloads.
4388
4389 2005-10-17 Richard M. Stallman <rms@gnu.org>
4390
4391 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
4392
4393 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
4394
4395 * jit-lock.el (jit-lock-fontify-now):
4396 Move jit-lock-context-unfontify-pos to avoid wasted work.
4397
4398 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
4399
4400 * net/tramp.el (tramp-completion-mode): New defvar. Used in
4401 `tramp-completion-mode' for checking if we are in completion mode.
4402 (tramp-completion-handle-file-name-all-completions): Reorder code
4403 in order to complete for file names only in case there are no
4404 method/user/host completions. This is necessary for cooperation
4405 with ido. Reported by Kim F. Storm <storm@cua.dk>.
4406
4407 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
4408
4409 * longlines.el (longlines-search-forward)
4410 (longlines-search-backward): Match any number of spaces.
4411
4412 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
4413
4414 * diff-mode.el (diff-mode): Doc fix.
4415
4416 2005-10-16 David Reitter <david.reitter@gmail.com>
4417
4418 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
4419 as default on darwin and windows systems.
4420
4421 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
4422
4423 * arc-mode.el (archive-zip-extract): Doc fix.
4424
4425 2005-10-16 Romain Francoise <romain@orebokech.com>
4426
4427 * mouse.el (mouse-1-click-follows-link): Doc fix.
4428
4429 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
4430
4431 * savehist.el: Don't require CL at runtime.
4432 (savehist-xemacs): Remove.
4433 (savehist-coding-system): Use utf-8 if present, regardless of religion.
4434 (savehist-no-conversion): Use (featurep 'xemacs).
4435 (savehist-load): Check existence of start-itimer rather than XEmacs.
4436 Use an idle timer.
4437 (savehist-process-for-saving): Replace use of CL funs `subseq' and
4438 `delete-if-not'.
4439
4440 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
4441
4442 * savehist.el: Newer version.
4443 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
4444 (savehist-last-checksum, savehist-no-conversion): New vars.
4445 (savehist-autosave, savehist-process-for-saving, savehist-printable):
4446 New functions.
4447 (savehist-load, savehist-save): Use them.
4448 (savehist-delimit): Remove.
4449
4450 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
4451
4452 * progmodes/compile.el (compilation-goto-locus): Display the
4453 compilation buffer first and the source buffer second, in case they're
4454 in overlapping frames. Don't raise the compilation frame if it was the
4455 selected window upon entry. Pass the `other-window' arg to
4456 pop-to-buffer.
4457
4458 * info.el (Info-fontify-node): Use dolist.
4459 Change add-text-properties to put-text-property.
4460
4461 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4462
4463 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
4464 bound of search.
4465
4466 2005-10-16 Masatake YAMATO <jet@gyve.org>
4467
4468 * dabbrev.el (dabbrev-completion): Pass the common
4469 prefix substring of completion to `display-completion-list'.
4470
4471 * filecache.el (file-cache-minibuffer-complete)
4472 (file-cache-complete): Ditto.
4473
4474 * tempo.el (tempo-display-completions): Ditto.
4475
4476 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
4477
4478 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
4479
4480 * eshell/em-hist.el (eshell-list-history): Ditto.
4481
4482 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
4483
4484 * mail/mailalias.el (mail-complete): Ditto.
4485
4486 * progmodes/etags.el (complete-tag): Ditto.
4487
4488 * progmodes/make-mode.el (makefile-complete): Ditto.
4489
4490 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
4491
4492 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
4493
4494 * progmodes/pascal.el (pascal-complete-word)
4495 (pascal-show-completions): Ditto.
4496
4497 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
4498
4499 * simple.el (completion-common-substring): New variable.
4500 (completion-setup-function): Use `completion-common-substring'
4501 to put faces.
4502
4503 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4504
4505 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
4506 (x-get-selection, mac-select-convert-to-string): Convert from/to
4507 UTF-16 clipboard data as in native byte order, no BOM.
4508
4509 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
4510
4511 * progmodes/gud.el (gud-tool-bar-map): Rename the images
4512 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
4513 (gud-sentinel): Use speedbar-frame to check for speedbar.
4514
4515 2005-10-15 Richard M. Stallman <rms@gnu.org>
4516
4517 * savehist.el: New file.
4518
4519 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
4520
4521 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
4522 Fix bug in \bf fontification.
4523
4524 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
4525
4526 * pcvs.el (cvs-edit-log-files): New var.
4527 (cvs-mode-edit-log): New arg `file'.
4528 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
4529 Instead force the use of the original file and nothing else.
4530 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
4531 the cvs-minor-wrap-function is set.
4532 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
4533
4534 2005-10-14 Bill Wohler <wohler@newt.com>
4535
4536 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
4537 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
4538 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
4539 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
4540 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
4541 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
4542 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
4543 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
4544 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
4545 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
4546 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
4547 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
4548 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
4549 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
4550 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
4551
4552 * progmodes/gud.el (gud-tool-bar-map): Rename the images
4553 appropriately (for example, gud-break to gud/break).
4554
4555 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
4556
4557 * longlines.el (longlinges-search-function)
4558 (longlines-search-forward, longlines-search-backward): New functions.
4559 (longlines-mode): Set isearch-search-fun-function to
4560 longlinges-search-function.
4561
4562 * mouse.el (mouse-drag-region-1): Handle the case where a
4563 double-click event is bound to an arbitrary function.
4564
4565 2005-10-14 David Ponce <david@dponce.com>
4566
4567 * recentf.el (recentf-track-opened-file)
4568 (recentf-track-closed-file, recentf-update-menu)
4569 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
4570 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
4571 mouse-1-click-follows-link.
4572
4573 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4574
4575 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
4576 Gnome file-manager.png. Suggested by
4577 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
4578
4579 * toolbar/README: Add diropen.xpm.
4580
4581 2005-10-13 Bill Wohler <wohler@newt.com>
4582
4583 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
4584 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
4585
4586 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
4587
4588 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
4589 Don't waste the byte-compiler's time on constant data.
4590
4591 2005-10-13 Kenichi Handa <handa@m17n.org>
4592
4593 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
4594 byte with `escape-glyph' face.
4595
4596 * international/fontset.el (ccl-encode-unicode-font):
4597 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
4598 Handle the case that ucs-mule-to-mule-unicode translates a character to
4599 ASCII (usually for IPA characters).
4600
4601 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
4602
4603 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
4604 Don't hide the underline of titles if font-lock-mode is disabled.
4605
4606 2005-10-12 Bill Wohler <wohler@newt.com>
4607
4608 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
4609 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
4610 files in MH-E-SRC have been updated.
4611 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
4612
4613 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
4614
4615 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
4616 (mixal-mode-syntax-table): Add \n as end-comment.
4617 (mixal-operation-codes-alist): Immediately initialize to full value.
4618 (mixal-add-operation-code): Remove.
4619 (mixal-describe-operation-code): Make the arg non-optional.
4620 Use the interactive spec instead.
4621 Use mixal-operation-codes-alist rather than mixal-operation-codes.
4622 (mixal-font-lock-keywords): Don't highlight comments here any more.
4623 (mixal-font-lock-syntactic-keywords): New var.
4624 (mixal-mode): Use it. Fix comment-start-skip.
4625
4626 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4627
4628 * startup.el (command-line-x-option-alist): -nb => -nbi
4629
4630 2005-10-12 Kim F. Storm <storm@cua.dk>
4631
4632 * startup.el (fancy-splash-default-action): Discard mouse click in
4633 the splash screen window, as it has no sensible meaning in the
4634 next window to be selected. Fixes error reported by Jan D.
4635
4636 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
4637
4638 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
4639
4640 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
4641
4642 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
4643 Try to fix up minor layout issues like indentation, line break, etc...
4644 (mixal-mode-syntax-table): Don't try to specify comment syntax,
4645 because it doesn't work.
4646 (mixal-operation-codes): Add some more codes.
4647 (mixal-font-lock-keywords): Process comments here.
4648 (mixal-mode): mixasm no longer needs -g option.
4649
4650 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
4651
4652 * progmodes/sh-script.el (sh-tmp-file):
4653 Use mktemp -t. Finish support for es and rc shells.
4654
4655 2005-10-11 Jay Belanger <belanger@truman.edu>
4656
4657 * calc/calcalg2.el (calc-integral): With an argument, compute the
4658 definite integral.
4659
4660 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
4661
4662 * mouse.el (mouse-drag-region-1): Don't try to catch a
4663 double-click when doing follow-link (it's overridden anyway).
4664
4665 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
4666
4667 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
4668 (autoload-print-form-outbuf): Add docstring.
4669
4670 2005-10-11 Juri Linkov <juri@jurta.org>
4671
4672 * info.el (Info-mode-menu): Delete menu item "Edit".
4673 (Info-mode): Delete description of Info-edit from docstring,
4674 and rearrange descriptions of Info commands in the order
4675 they are documented in the Info manual.
4676
4677 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
4678
4679 * calendar/appt.el (appt-check): Use diary-selective-display var.
4680
4681 2005-10-10 Richard M. Stallman <rms@gnu.org>
4682
4683 * net/newsticker.el (newsticker-start, newsticker-show-news):
4684 Add autoload cookies.
4685
4686 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
4687
4688 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
4689
4690 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
4691
4692 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
4693
4694 2005-10-10 Jay Belanger <belanger@truman.edu>
4695
4696 * calc/calc-arith.el (math-check-known-scalarp)
4697 (math-check-known-matrixp): Check the values of arguments that are
4698 variables.
4699 (math-check-known-square-matrixp): New function.
4700 (math-known-square-matrixp): Use math-check-known-square-matrixp.
4701 (math-super-types): Add sqmatrix type.
4702
4703 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
4704 mode name `square' to 'sqmatrix'.
4705
4706 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
4707 mode name `square' to 'sqmatrix'.
4708
4709 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
4710
4711 * progmodes/etags.el (select-tags-table-mode): Don't use
4712 selective-display.
4713 (tags-select-tags-table): Pass `button' to the action function.
4714 (select-tags-table): Place the side-info on button properties rather
4715 than in hidden text. Abbreviate file names.
4716 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
4717 (select-tags-table-select): Add `button' argument.
4718 Get side-info from the button property rather than from hidden text.
4719
4720 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
4721
4722 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
4723 (gud-speedbar-buttons): Preserve point if possible.
4724 (gud-sentinel): Restore previous speedbar display type.
4725
4726 * progmodes/gdb-ui.el (gdba): Improve diagram.
4727 (def-gdb-auto-update-handler, gdb-info-locals-handler)
4728 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
4729 Call get-buffer-window once.
4730
4731 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
4732
4733 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
4734 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
4735 (pascal-indent-command): Remove unused var `ind'.
4736 (pascal-indent-case): Remove unused var `oldpos'.
4737 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
4738 since it's now used as a proper minor mode map.
4739 (pascal-outline): Rename to pascal-outline-mode.
4740 (pascal-outline-mode): Use define-minor-mode.
4741 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
4742 selective-display.
4743
4744 2005-10-10 Andreas Schwab <schwab@suse.de>
4745
4746 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
4747 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
4748
4749 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
4750 outside source directory.
4751
4752 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
4753
4754 * textmodes/org.el: (org-mode-map): Explicit definition of `C-c
4755 C-x' as a prefix.
4756 (orgtbl-mode-map): Full keymap instead of sparse, because all
4757 `self-insert-command' keys are redefined in this map.
4758 (org-export-as-html): Specify charset for HTML file, by taking it
4759 from the coding system.
4760
4761 2005-10-10 Kenichi Handa <handa@m17n.org>
4762
4763 * textmodes/flyspell.el (flyspell-check-word-p):
4764 If unread-command-events is non-empty, don't call sit-for.
4765
4766 2005-10-09 Richard M. Stallman <rms@gnu.org>
4767
4768 * font-lock.el (font-lock-syntactic-keywords)
4769 (font-lock-keywords): Doc fixes.
4770
4771 * textmodes/flyspell.el (flyspell-external-point-words):
4772 Simplify logic, and don't try to check for consecutive appearances
4773 of one incorrect word.
4774
4775 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
4776
4777 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
4778 separator.
4779
4780 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
4781 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
4782 (gud-expansion-speedbar-buttons): New function.
4783 (gud-speedbar-buttons): Check for gud-comint-buffer.
4784
4785 2005-10-09 Bill Wohler <wohler@newt.com>
4786
4787 * Makefile.in (updates): Add mh-loaddefs dependency.
4788
4789 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
4790
4791 * speedbar.el (speedbar-file-key-map): Fix typo.
4792
4793 2005-10-09 Daniel Brockman <daniel@brockman.se>
4794
4795 * cus-start.el (line-spacing): Add custom spec.
4796
4797 2005-10-09 Romain Francoise <romain@orebokech.com>
4798
4799 * textmodes/ispell.el (ispell-check-version): Fix last change.
4800
4801 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4802
4803 * term/x-win.el: Remove -i, --icon-type from comment.
4804
4805 * startup.el (command-line-x-option-alist): Remove options -i,
4806 -itype, --icon-type, added -nb, --no-bitmap-icon
4807
4808 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
4809
4810 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
4811 instead of :active.
4812
4813 2005-10-08 Eric Hanchrow <offby1@blarg.net>
4814
4815 * textmodes/ispell.el (ispell-check-version):
4816 Ignore hyphen, and all that follows, in aspell's version text.
4817
4818 2005-10-08 Jay Belanger <belanger@truman.edu>
4819
4820 * calc/calc-arith.el (math-known-square-matrixp): New function.
4821 (math-pow-fancy): Check for matrices before distributing exponent
4822 across products.
4823
4824 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
4825 fullscreen keypad. Suggested by Luc Teirlinck.
4826 (calc-keypad-show-input): Add space for formatting.
4827
4828 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
4829 Add square matrix option.
4830
4831 * calc/calc-poly.el (math-expand-term): Check for matrices instead
4832 of checking calc-matrix-mode when deciding how to expand.
4833
4834 * calc/calc.el (calc-set-mode-line): Add square matrix option.
4835
4836 2005-10-08 Lars Hansen <larsh@soem.dk>
4837
4838 * net/tramp.el (tramp-perl-directory-files-and-attributes):
4839 Add error handling.
4840 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
4841
4842 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
4843
4844 Sync with Tramp 2.0.51.
4845
4846 * net/tramp.el (tramp-handle-set-visited-file-modtime)
4847 (tramp-handle-insert-file-contents, tramp-handle-write-region):
4848 Insert special handling for `last-coding-system-used', again
4849 it still seems to be necessary (unlike stated before).
4850 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
4851 (tramp-password-prompt-regexp): There might be other words before
4852 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
4853 (tramp-chunksize): Improve docstring.
4854 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
4855 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
4856 Christian Joergensen <bugs@razor.dk>.
4857
4858 2005-10-07 Glenn Morris <rgm@gnu.org>
4859
4860 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
4861 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
4862 precision'.
4863
4864 2005-10-07 Romain Francoise <romain@orebokech.com>
4865
4866 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
4867 (ibuffer-do-shell-command-pipe-replace)
4868 (ibuffer-do-shell-command-file, ibuffer-do-eval)
4869 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
4870 (ibuffer-do-revert, ibuffer-do-replace-regexp)
4871 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
4872 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
4873 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
4874 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
4875 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
4876 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
4877 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
4878 Autoload file sans suffix.
4879
4880 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
4881
4882 2005-10-07 David Ponce <david@dponce.com>
4883
4884 * recentf.el (recentf-menu-open-all-flag): New option.
4885 (recentf-digit-shortcut-command-name): New function.
4886 (recentf--shortcuts-keymap): New variable.
4887 (recentf-menu-shortcuts): New variable.
4888 (recentf-make-menu-items): Initialize it. Replace the "More..."
4889 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
4890 (recentf-menu-value-shortcut): New function.
4891 (recentf-make-menu-item): Use it. No more in-lined.
4892 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
4893 (recentf-open-most-recent-file): Rename from
4894 `recentf-open-file-with-key'. Don't depend on key binding.
4895 (recentf-mode-map): New variable.
4896 (recentf-mode): Use it.
4897
4898 2005-10-06 Bill Wohler <wohler@newt.com>
4899
4900 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
4901
4902 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
4903 (MH-E-SRC): New. Used by mh-autoloads.
4904 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
4905 files in MH-E-SRC have been updated.
4906 (compile, recompile, bootstrap): Depend on mh-autoloads.
4907
4908 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
4909
4910 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
4911 gud-break and gud-remove icons when the fringe is not available.
4912
4913 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
4914 Typo.
4915
4916 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change)
4917
4918 * play/zone.el (zone): Wrap body with save-window-excursion.
4919
4920 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
4921
4922 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
4923 Use the new `list-only' arg to diary-list-entries.
4924
4925 * calendar/diary-lib.el: Use overlays rather than selective-display.
4926 (diary-selective-display): New var.
4927 (diary-header-line-format): Use it.
4928 (diary-list-entries): Add argument `list-only'.
4929 Put the buffer in diary-mode. Don't add \^M at beg and end.
4930 Replace \^M by invisible overlays.
4931 (diary-unhide-everything): Replace \^M by invisible overlays.
4932 (print-diary-entries): Look for overlays rather than \^M.
4933 Add a space to the temp buffer name.
4934 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
4935 Put the buffer in diary-mode.
4936 (list-sexp-diary-entries): Replace \^M by invisible overlays.
4937 (diary-anniversary): Make the year arg optional.
4938 (diary-time-regexp): New const.
4939 (diary-font-lock-keywords): Use it to accept a few more time formats.
4940
4941 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
4942
4943 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
4944
4945 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
4946 Fix bug introduced 2005-07-03: Use (car (last ...))
4947 to faithfully reproduce replaced artist-last.
4948 (artist-set-arrow-points-for-poly): Likewise.
4949 Suggested by Johan Bockg\e,Ae\e(Brd.
4950
4951 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
4952
4953 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
4954 * wid-edit.el (widget):
4955 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
4956 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
4957
4958 2005-10-06 Kenichi Handa <handa@m17n.org>
4959
4960 * international/mule-cmds.el (set-language-environment):
4961 Fix setting up of case-table for unibyte mode.
4962
4963 * simple.el (what-cursor-position): If the character is displayed
4964 by some `display' text property, show that. Don't use
4965 single-key-description for eight-bit characters in multibyte mode.
4966
4967 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
4968
4969 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
4970 (gdb-ann3): Set it.
4971 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
4972 (gdb-info-frames-custom): Use inverse-video for first five
4973 characters of selected frame only.
4974 (gdb-get-frame-number): Select frame even when point is on frame
4975 number.
4976
4977 2005-10-06 Masatake YAMATO <jet@gyve.org>
4978
4979 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
4980 Put `font-lock-function-name-face'.
4981 (gdb-info-frames-custom): Put `font-lock-function-name-face'
4982 and `font-lock-variable-name-face'
4983 (gdb-registers-font-lock-keywords): New font lock keywords definition.
4984 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
4985 (gdb-memory-font-lock-keywords): New font lock keywords definition.
4986 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
4987 (gdb-local-font-lock-keywords): New font lock keywords definition.
4988 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
4989 (gdb-threads-font-lock-keywords): New font lock keywords definition.
4990 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
4991
4992 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
4993
4994 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
4995 (ediff-merge-region-is-non-clash-to-skip): Previously called
4996 ediff-merge-region-is-non-clash.
4997
4998 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
4999 Use insert-buffer-substring.
5000
5001 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
5002 selecting files to patch. Also bug fixes.
5003
5004 * ediff-util.el (ediff-setup): Bug fix.
5005 (ediff-next-difference): Never skip clashes that differ in white
5006 space only.
5007
5008 * ediff-wind.el (ediff-setup-control-frame)
5009 (ediff-destroy-control-frame): Check the menubar feature.
5010
5011 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
5012 (viper-refresh-mode-line): Use make-local-variable to localize
5013 some vars instead of make-variable-buffer-local. Suggested by
5014 Stefan Monnier.
5015
5016 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
5017 (viper-restore-cursor-type, viper-set-insert-cursor-type):
5018 Use make-local-variable instead of make-variable-buffer-local.
5019 Suggested by Stefan Monnier.
5020
5021 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
5022 (viper-comint-mode-hook): Use make-local-variable on
5023 require-final-newline.
5024 (viper-non-hook-settings): Don't use make-variable-buffer-local.
5025
5026 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
5027
5028 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
5029 also the second char of a comment-start sequence.
5030 (scheme-sexp-comment-syntax-table): New var.
5031 (lambda, define): Set their scheme-doc-string-elt property.
5032 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
5033 Use lisp-font-lock-syntactic-face-function now that it properly
5034 handles |...| symbols.
5035 (scheme-mode-variables): Set lisp-doc-string-elt-property,
5036 parse-sexp-lookup-properties and font-lock-extra-managed-props.
5037
5038 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
5039 bit from # to |.
5040 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
5041
5042 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
5043 (lisp-doc-string-elt-property): New var.
5044 (lisp-font-lock-syntactic-face-function): Use it.
5045 Rewrite to recognize docstrings even for forms not at toplevel.
5046
5047 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
5048 annotation on the | part of #| rather than on the # part.
5049 (scheme-font-lock-syntactic-face-function): New function, to
5050 distinguish strings from |...| symbols.
5051 (scheme-mode-variables): Use it. Also fix up the font-lock-time
5052 syntax-table so that #|...|# is properly highlighted.
5053
5054 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
5055 Don't mark as docstring the 3rd elem of an unknown toplevel form.
5056
5057 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
5058
5059 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
5060 and C-e.
5061
5062 * emacs-lisp/eldoc.el: Move comments into docstrings.
5063 (eldoc-message-commands): Initialize in its declaration.
5064 Add move-beginning-of-line and move-end-of-line.
5065 (eldoc-add-command, eldoc-add-command-completions)
5066 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
5067
5068 * outline.el (outline-mark-subtree): Activate the mark.
5069
5070 * calendar/appt.el (appt-time-regexp): New var.
5071 (appt-add, appt-make-list): Use it.
5072 (appt-convert-time): Clean up.
5073
5074 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
5075 Don't set any syntax-table property here.
5076 (tex-font-lock-verb): New function. Do it here.
5077 (tex-font-lock-syntactic-keywords): Use it.
5078
5079 2005-10-04 Richard M. Stallman <rms@gnu.org>
5080
5081 * wid-edit.el (widget-file-complete): Get the widget start point
5082 the right way. Default directory to `/' if file has none.
5083
5084 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
5085
5086 * textmodes/flyspell.el (flyspell-mode-on):
5087 Call ispell-maybe-find-aspell-dictionaries.
5088
5089 * textmodes/ispell.el (ispell-word, ispell-region):
5090 Call ispell-maybe-find-aspell-dictionaries.
5091 (ispell-accept-buffer-local-defs):
5092 Don't call ispell-maybe-find-aspell-dictionaries
5093
5094 2005-10-04 Richard M. Stallman <rms@gnu.org>
5095
5096 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
5097
5098 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
5099
5100 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
5101 instead of `fboundp' in order to allow for anonymous functions.
5102
5103 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
5104
5105 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
5106 case the user clicks on the link while another window is selected.
5107 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
5108
5109 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
5110 functionality.
5111 (dframe-help-echo): Save point in case mouse tracking is off.
5112
5113 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
5114
5115 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
5116
5117 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
5118
5119 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
5120 not change the global value of those vars.
5121
5122 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
5123 make-local-variable which we do not need any more.
5124
5125 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
5126
5127 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
5128 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
5129 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
5130 (speedbar-path-line): Define obsolete aliases.
5131 (speedbar-line-directory): Doc fix.
5132
5133 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
5134 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
5135 instead of speedbar-line-path.
5136
5137 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5138
5139 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
5140 to nil if dropping on a window. Handle dropping on a minibuffer window
5141 like dropping on a non-window part of Emacs.
5142
5143 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
5144
5145 * net/ange-ftp.el: Use with-current-buffer.
5146 (ange-ftp-insert-directory): Do not follow symlinks any more.
5147
5148 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
5149 Remove interactive spec.
5150
5151 2005-10-03 Kim F. Storm <storm@cua.dk>
5152
5153 * ido.el (ido-mode): Use custom-initialize-set.
5154
5155 2005-10-02 Richard M. Stallman <rms@gnu.org>
5156
5157 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
5158 Use insert-buffer-substring.
5159
5160 * net/tramp.el: Pacify byte compiler warnings in pacification code.
5161 (tramp-handle-file-local-copy): Use insert-buffer-substring.
5162
5163 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
5164
5165 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
5166 in last change.
5167 (ange-ftp-insert-directory): Fix up the search for the case where
5168 `file' is absolute.
5169
5170 2005-10-02 Romain Francoise <romain@orebokech.com>
5171
5172 * progmodes/compile.el (compile-goto-error): Delete extra paren.
5173
5174 2005-10-02 Andreas Schwab <schwab@suse.de>
5175
5176 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
5177 directory component in the session info.
5178
5179 2005-10-01 Richard M. Stallman <rms@gnu.org>
5180
5181 * comint.el (comint-redirect-subvert-readonly): Doc fix.
5182
5183 * simple.el (next-error-internal): New function.
5184
5185 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
5186 (compilation-start): Pass new arg to compilation-buffer-name.
5187 (compile-goto-error): Use next-error-internal.
5188
5189 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
5190
5191 * speedbar.el: Remove RCS tag.
5192 (speedbar-check-read-only): Handle non-existent files.
5193
5194 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
5195
5196 * info.el (Info-speedbar-hierarchy-buttons)
5197 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
5198
5199 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5200
5201 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
5202 Do not match newline.
5203 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
5204 (bibtex-summary): Remove unnecessary save-excursion.
5205 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
5206
5207 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5208
5209 * term/mac-win.el: Add charset info for "iso10646-1".
5210 Modify default fontset to use ATSUI-compatible fonts for some charsets
5211 if available.
5212
5213 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
5214
5215 * speedbar.el: Re-apply arch tag.
5216 (speedbar-version): Rename to version 1.0. Suggested by Eric
5217 M. Ludlam.
5218 Reapply two changes from Emacs CVS' version of speedbar lost
5219 during the merge:
5220 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
5221 (speedbar-frame-parameters): Improve customize type.
5222
5223 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
5224
5225 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
5226 (ange-ftp-file-directory-p): Fix the symlink case.
5227 (ange-ftp-insert-directory): When listing a single file, get a list of
5228 the parent buffer and extract the relevant line. Inspired from a patch
5229 by Katsumi Yamaoka <yamaoka@jpl.org>.
5230 (ange-ftp-file-name-sans-versions): Simplify.
5231
5232 2005-09-30 Bill Wohler <wohler@newt.com>
5233
5234 Move MH-E image files from toolbar and mail directories into
5235 etc/images.
5236
5237 * mail/reply2.*: Move to etc/images/mail/reply*.
5238
5239 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
5240 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
5241 etc/images.
5242
5243 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
5244 * toolbar/reply*: Move to etc/images/mail.
5245
5246 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
5247
5248 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
5249
5250 * speedbar.el: New version 1.0pre3.
5251
5252 Frame management code (including timer, and mouse click specifics)
5253 moved to dframe.el:
5254 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
5255 (speedbar-timer): Removed. Use dframe-timer.
5256 (speedbar-close-frame): Removed. Use dframe-close-frame.
5257 (speedbar-activity-change-focus-flag): Removed. Use
5258 dframe-activity-change-focus-flag.
5259 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
5260 dframe-update-speed.
5261
5262 (speedbar-current-frame): New macro. Use this instead of the
5263 variable speedbar-frame.
5264
5265 (speedbar-use-images, speedbar-expand-image-button-alist)
5266 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
5267
5268 (speedbar-find-image-on-load-path): Removed. Replaced by
5269 defezimage in ezimage.el.
5270 (speedbar-expand-image-button-alist): Removed. Replaced by
5271 ezimage-expand-image-button-alist in ezimage.el.
5272
5273 (speedbar-ignored-directory-regexp)
5274 (speedbar-add-ignored-directory-regexp)
5275 (speedbar-ignored-directory-expressions)
5276 (speedbar-line-directory, speedbar-buffers-line-directory)
5277 (speedbar-directory-line, speedbar-buffers-line-directory):
5278 Renamed, replacing `path' with `directory'.
5279
5280 (speedbar-create-directory, speedbar-expand-line-descendants)
5281 (speedbar-toggle-line-expansion)
5282 (speedbar-contract-line-descendants): New commands.
5283
5284 (speedbar-query-confirmation-method, speedbar-select-frame-method)
5285 (speedbar-use-tool-tips-flag): New options.
5286
5287 (speedbar-check-read-only, speedbar-require-version)
5288 (speedbar-insert-separator, speedbar-buffers-tail-notes)
5289 (speedbar-handle-delete-frame, speedbar-try-completion)
5290 (speedbar-update-localized-contents): New functions.
5291
5292 (speedbar-incompatible-version, speedbar-ro-to-do-point)
5293 (speedbar-object-read-only-indicator): New variables.
5294
5295 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
5296 New hooks.
5297
5298 (speedbar-separator-face): New face.
5299
5300 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
5301 (speedbar-ignored-modes): Add fundamental-mode.
5302 (speedbar-directory-unshown-regexp): Add . directories.
5303
5304 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
5305 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
5306 `]' for full expand/close.
5307 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
5308
5309 (speedbar-check-vc): Support hidden files.
5310 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
5311 (speedbar-this-file-in-vc): Use vc-state if available. If VC
5312 state is nil, it is not checked out.
5313
5314 (speedbar-line-text, speedbar-line-token): Support expand buttons
5315 with no text.
5316 (speedbar-refresh): Universal argument acts as power-click.
5317 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
5318 that buffer to get variable values.
5319
5320 And many other bugfixes.
5321
5322 * dframe.el, ezimage.el, sb-image.el: New files.
5323
5324 * sb-*.xpm: Remove files. New image files installed into
5325 etc/images/ezimage.
5326
5327 2005-09-30 Kenichi Handa <handa@m17n.org>
5328
5329 * ps-mule.el (ps-mule-show-warning): If a character is in
5330 ps-print-translation-table, don't treat it as non-printable.
5331
5332 2005-09-30 David Ponce <david@dponce.com>
5333
5334 * tree-widget.el (tree-widget-themes-load-path): New variable.
5335 (tree-widget-themes-directory): Doc fix.
5336 (tree-widget-image-formats) [Emacs]: Doc fix.
5337 (tree-widget--locate-sub-directory): New function.
5338 (tree-widget-themes-directory): Use it.
5339
5340 * recentf.el (recentf-filename-handlers): Rename from
5341 `recentf-filename-handler'. Allow a list of functions.
5342 (recentf-menu-items-for-commands): Fix :help strings.
5343 (recentf-apply-filename-handlers): New function.
5344 (recentf-expand-file-name): Use it.
5345 (recentf-cleanup): Remove duplicates too.
5346
5347 2005-09-29 Juri Linkov <juri@jurta.org>
5348
5349 * faces.el: Rearrange face definitions to be in the same order as
5350 their face descriptions in "(emacs)Standard Faces".
5351
5352 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
5353
5354 * tooltip.el (tooltip): Add group `basic-faces'.
5355
5356 * buff-menu.el (Buffer-menu-buffer): Remove group
5357 `font-lock-highlighting-faces'.
5358
5359 * progmodes/compile.el (compilation-error, compilation-warning)
5360 (compilation-info, compilation-line-number, compilation-column-number):
5361 Change group from `font-lock-highlighting-faces' to `compilation'.
5362
5363 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
5364 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
5365 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
5366 (vhdl-font-lock-reserved-words-face)
5367 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
5368 `font-lock-highlighting-faces'.
5369
5370 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
5371
5372 2005-09-28 Kim F. Storm <storm@cua.dk>
5373
5374 * emulation/cua-base.el: Set CUA move property on additional commands:
5375 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
5376 forward-sexp, backward-sexp, forward-list, backward-list.
5377
5378 2005-09-28 Romain Francoise <romain@orebokech.com>
5379
5380 * comint.el (comint-show-output): Really set point at the
5381 beginning of the output when not using `comint-use-prompt-regexp'.
5382
5383 2005-09-27 Jay Belanger <belanger@truman.edu>
5384
5385 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
5386 in TeX mode.
5387
5388 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
5389
5390 * textmodes/org.el (org-table-sum): Fix format string.
5391
5392 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
5393 Quote face names.
5394
5395 2005-09-26 Romain Francoise <romain@orebokech.com>
5396
5397 * isearch.el (isearch-forward-regexp): Close doc string.
5398
5399 2005-09-25 Richard M. Stallman <rms@gnu.org>
5400
5401 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
5402
5403 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
5404
5405 * progmodes/compile.el (compilation-error-properties):
5406 When getting the file from the previous error message,
5407 correctly decode the new data format.
5408
5409 * progmodes/cc-cmds.el (c-electric-paren):
5410 Call old-blink-paren only for close-paren.
5411
5412 2005-09-24 Andreas Schwab <schwab@suse.de>
5413
5414 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
5415 condition.
5416
5417 2005-09-25 Romain Francoise <romain@orebokech.com>
5418
5419 * dired-aux.el (dired-copy-file-recursive):
5420 * dired.el (dired-delete-file):
5421 * ediff-mult.el (ediff-dir-diff-copy-file):
5422 * ediff-util.el (ediff-test-save-region):
5423 * forms.el (forms-mode):
5424 * ido.el (ido-file-internal, ido-delete-file-at-head):
5425 * log-edit.el (log-edit-done):
5426 * ses.el (ses-yank-resize):
5427 * play/gomoku.el (gomoku-human-plays, gomoku)
5428 (gomoku-human-resigns, gomoku-prompt-for-other-game)
5429 (gomoku-offer-a-draw):
5430 * play/landmark.el (lm-human-resigns, lm):
5431 * net/eudcb-ldap.el (eudc-ldap-check-base):
5432 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
5433 * progmodes/ebrowse.el (ebrowse-find-pattern):
5434 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
5435 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
5436 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
5437
5438 * vc.el (vc-delete-file):
5439 * play/gomoku.el (gomoku-terminate-game, gomoku)
5440 (gomoku-prompt-for-move, gomoku-human-takes-back):
5441 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
5442 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
5443
5444 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
5445
5446 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
5447 color rxvt terminals by using the code xterm.el used to use before
5448 2005-04-09 in order to match the colors used by rxvt.
5449
5450 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
5451
5452 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
5453 colors rxvt-unicode terminals by using the same code as xterm.el.
5454
5455 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
5456
5457 * textmodes/tex-mode.el (tex-font-lock-append-prop)
5458 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
5459 new symbol used for the tex-verbatim face.
5460
5461 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
5462
5463 * woman.el (woman-file-name):
5464 * wid-edit.el (widget-file-prompt-value)
5465 (widget-coding-system-prompt-value):
5466 * w32-fns.el (set-w32-system-coding-system):
5467 * vc.el (vc-version-diff, vc-annotate):
5468 * textmodes/reftex-auc.el (reftex-arg-cite)
5469 (reftex-arg-index-tag):
5470 * textmodes/refer.el (refer-get-bib-files):
5471 * textmodes/artist.el (artist-figlet-choose-font):
5472 * terminal.el (terminal-emulator):
5473 * replace.el (occur-read-primary-args):
5474 * rect.el (string-rectangle, string-insert-rectangle):
5475 * ps-print.el (ps-print-preprint):
5476 * progmodes/pascal.el (pascal-goto-defun):
5477 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
5478 * progmodes/compile.el (compilation-find-file):
5479 * printing.el (pr-interactive-n-up):
5480 * play/animate.el (animate-birthday-present):
5481 * net/rcompile.el (remote-compile):
5482 * man.el (man, Man-goto-section, Man-follow-manual-reference):
5483 * mail/rmailsum.el (rmail-summary-search-backward)
5484 (rmail-summary-search):
5485 * mail/rmailout.el (rmail-output-read-rmail-file-name)
5486 (rmail-output-read-file-name):
5487 * mail/rmail.el (rmail-search, rmail-search-backwards):
5488 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
5489 * locate.el (locate):
5490 * international/quail.el (quail-show-keyboard-layout):
5491 * international/mule.el (set-buffer-file-coding-system)
5492 (revert-buffer-with-coding-system, set-file-name-coding-system)
5493 (set-terminal-coding-system, set-keyboard-coding-system)
5494 (set-next-selection-coding-system):
5495 * international/mule-diag.el (describe-coding-system)
5496 (describe-font, describe-fontset):
5497 * international/mule-cmds.el (universal-coding-system-argument)
5498 (search-unencodable-char, describe-input-method)
5499 (set-language-environment, describe-language-environment):
5500 * international/codepage.el (codepage-setup):
5501 * international/code-pages.el (codepage-setup):
5502 * info.el (Info-search, Info-follow-reference)
5503 (Info-search-backward):
5504 * emacs-lisp/advice.el (ad-read-advised-function)
5505 (ad-read-advice-class, ad-clear-cache, ad-activate)
5506 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
5507 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
5508 (ad-read-regexp):
5509 * ediff-util.el (ediff-toggle-regexp-match):
5510 * ediff-ptch.el (ediff-prompt-for-patch-file):
5511 * dired-aux.el (dired-diff):
5512 * diff.el (diff):
5513 * cus-edit.el (custom-variable-prompt):
5514 * calendar/timeclock.el (timeclock-ask-for-project):
5515 * calc/calcalg3.el (calc-get-fit-variables):
5516 * calc/calc-store.el (calc-edit-variable)
5517 (calc-permanent-variable):
5518 * vc-mcvs.el (vc-mcvs-register):
5519 * shadowfile.el (shadow-define-literal-group):
5520 * woman.el (woman-file-name):
5521 * vc.el (vc-version-diff, vc-merge):
5522 * textmodes/reftex-index.el (reftex-index-complete-tag):
5523 * format.el (format-decode-buffer, format-decode-region):
5524 * emulation/viper-cmd.el (viper-read-string-with-history):
5525 * emacs-lisp/debug.el (cancel-debug-on-entry):
5526 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
5527 * ediff.el (ediff-merge-revisions)
5528 (ediff-merge-revisions-with-ancestor, ediff-revision):
5529 * completion.el (interactive-completion-string-reader):
5530 * calc/calc-prog.el (calc-user-define-formula):
5531 Follow convention for reading with the minibuffer.
5532
5533 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
5534
5535 * progmodes/python.el (python-describe-symbol): Add globals() and
5536 locals() to the arguments of emacs.ehelp.
5537
5538 2005-09-24 Magnus Henoch <mange@freemail.hu>
5539
5540 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
5541 New function, code extracted from ispell-valid-dictionary-list.
5542 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
5543 Call it.
5544
5545 2005-09-24 Eli Zaretskii <eliz@gnu.org>
5546
5547 * subr.el (version-regexp-alist): Extend valid syntax for version
5548 strings: allow any of the characters -,_,+ to separate the
5549 alpha/beta/rc part from the version part. Doc fix.
5550 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
5551
5552 2005-09-23 David Reitter <david.reitter@gmail.com>
5553
5554 * mail/mailclient.el: New file.
5555
5556 2005-09-23 Richard M. Stallman <rms@gnu.org>
5557
5558 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
5559 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
5560 Doc fixes.
5561
5562 * progmodes/cc-mode.el (c-font-lock-init):
5563 Specify font-lock-lines-before.
5564
5565 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
5566
5567 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
5568 whole conflict.
5569
5570 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
5571
5572 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
5573 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
5574 of `remap' feature when available. Additional key bindings for
5575 better tty support.
5576 (org-mode-restart, org-force-self-insert): New commands.
5577 (org-time-stamp-inactive): New command.
5578 (org-remap): New function.
5579 (org-table-auto-blank-field, org-level-color-stars-only): New options.
5580 (org-enable-fixed-width-editor): Move to `org-structure'
5581 customization group.
5582 (org-self-insert-command, orgtbl-self-insert-command): Modify to
5583 blank field after field motion commands.
5584
5585 2005-09-23 Kenichi Handa <handa@m17n.org>
5586
5587 * international/mule-cmds.el (set-language-environment):
5588 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
5589 have to call utf-translate-cjk-load-tables.
5590
5591 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
5592
5593 * mouse.el (mouse-move-drag-overlay): Fix last change.
5594
5595 2005-09-22 David Ponce <david@dponce.com>
5596
5597 * tree-widget.el (tree-widget-value-create): Fix previous change.
5598
5599 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
5600
5601 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
5602
5603 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
5604
5605 * mouse.el (mouse-move-drag-overlay): New function.
5606 (mouse-drag-region-1): Use it.
5607 Try to simplify a bit the state handling. Handle clicks on links
5608 inside intangible areas.
5609 (mouse-save-then-kill): Minor simplification.
5610 (mouse-secondary-overlay): Make it always non-nil instead of
5611 recreating it each time.
5612 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
5613 (mouse-kill-secondary, mouse-secondary-save-then-kill):
5614 Simplify accordingly.
5615
5616 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
5617
5618 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
5619
5620 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
5621
5622 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
5623 (ediff-file-name-sans-prefix): Treat nil as an empty string.
5624 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
5625 to patch.
5626
5627 * ediff-util.el: Use insert-buffer-substring.
5628
5629 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
5630
5631 * emulation/viper-cmd.el (viper-change-state): Don't move over the
5632 field boundaries in the minibuffer.
5633 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
5634 (viper-minibuffer-post-command-hook): New hook.
5635 (viper-line): Don't move cursor at bolp.
5636
5637 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
5638
5639 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
5640 avoid compiler warnings.
5641
5642 * emulation/viper-macs.el (ex-map): Better messages.
5643
5644 * emulation/viper-utils.el (viper-beginning-of-field): New function.
5645
5646 * emulation/viper.el: Replace make-variable-buffer-local with
5647 viper-make-variable-buffer-local everywhere, to avoid warnings.
5648
5649 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
5650
5651 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
5652 Delete unused var `old-selected-window'.
5653 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
5654 (mouse-drag-secondary): Delete unused var `start-frame'.
5655
5656 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
5657
5658 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
5659
5660 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
5661
5662 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
5663 Re-indent within 80 columns. Use inhibit-read-only.
5664
5665 2005-09-19 Romain Francoise <romain@orebokech.com>
5666
5667 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
5668
5669 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
5670
5671 * font-lock.el (font-lock-default-fontify-region): Don't add a line
5672 unconditionally, since the after-change-function already did it.
5673
5674 2005-09-19 Miles Bader <miles@gnu.org>
5675
5676 * net/newsticker.el: Get rid of CVS keyword.
5677
5678 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan+sf@dd.chalmers.se>
5679
5680 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
5681 The prompt is formatted later.
5682
5683 2005-09-19 David Ponce <david@dponce.com>
5684
5685 * tree-widget.el (tree-widget-value-create): Save the converted
5686 tree :node widget.
5687
5688 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
5689
5690 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
5691 variable `message'.
5692
5693 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
5694
5695 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
5696 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
5697 <slawomir.nowaczyk.847@student.lu.se>.
5698
5699 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
5700
5701 * image.el (image-load-path): Use symbol `data-directory' instead
5702 of its value, for backward compatibility with packages that bind
5703 it during `find-image'. Suggested by Katsumi Yamaoka.
5704 (image-search-load-path): Handle symbols whose values are strings.
5705
5706 2005-09-18 Romain Francoise <romain@orebokech.com>
5707
5708 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
5709 with-current-buffer form in save-excursion.
5710
5711 2005-09-18 D Goel <deego@gnufans.org>
5712
5713 * apropos.el (apropos-command): Fix `message' call: first arg
5714 should be a format spec. In this and all other cases that appear
5715 below and elsewhere in the source code, I made a change only when
5716 two conditions were satisfied: [1] I can think of a possibility
5717 that the arguments would cause an error, for example, the code in
5718 question relies on external variables such as filenames. [2] I
5719 was sure that the arg to `message' could not have been nil in the code.
5720
5721 * textmodes/tildify.el (tildify-region): Ditto.
5722
5723 * textmodes/reftex-index.el (reftex-index-change-entry)
5724 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
5725 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
5726 * textmodes/org.el (org-complete, org-deadline, org-schedule)
5727 (org-priority, org-table-sum):
5728 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
5729 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
5730 (flyspell-word, flyspell-display-next-corrections):
5731 * textmodes/bibtex.el (bibtex-print-help-message):
5732 * textmodes/artist.el (artist-key-set-point-poly):
5733 * term/mac-win.el (mac-services-insert-text):
5734 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
5735 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
5736 (vhdl-port-paste-testbench, vhdl-compose-new-component)
5737 (vhdl-compose-configuration):
5738 * progmodes/sh-script.el (sh-blink, sh-show-indent)
5739 (sh-set-indent, sh-learn-line-indent):
5740 * progmodes/ps-mode.el (ps-mode-target-column):
5741 * progmodes/idlwave.el (idlwave-make-tags)
5742 (idlwave-scan-library-catalogs):
5743 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
5744 * progmodes/gud.el (gud-jdb-analyze-source):
5745 * progmodes/flymake.el (flymake-log):
5746 * progmodes/ebnf2ps.el (ebnf-generate-region):
5747 * progmodes/cmacexp.el (c-macro-expansion):
5748 * progmodes/ada-xref.el (ada-treat-cmd-string):
5749 * progmodes/ada-mode.el (ada-create-case-exception-substring)
5750 (ada-justified-indent-current, ada-batch-reformat):
5751 * play/zone.el (zone):
5752 * play/landmark.el (lm-move):
5753 * play/decipher.el (decipher-show-alphabet):
5754 * net/newsticker.el (newsticker--display-jump)
5755 (newsticker--display-scroll):
5756 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
5757 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
5758 * mail/feedmail.el (feedmail-dump-message-to-queue):
5759 * eshell/esh-proc.el (eshell-remove-process-entry):
5760 * emulation/ws-mode.el (ws-last-error):
5761 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
5762 (viper-record-kbd-macro):
5763 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
5764 * emacs-lisp/lisp-mnt.el (lm-report-bug):
5765 * emacs-lisp/find-func.el (find-function-noselect):
5766 * calendar/timeclock.el (timeclock-status-string)
5767 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
5768 (timeclock-when-to-leave-string):
5769 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
5770 * calc/calc-units.el (calc-enter-units-table):
5771 * calc/calc-mode.el (calc-mode-record-mode):
5772 * woman.el (woman-mini-help):
5773 * wdired.el (wdired-change-to-wdired-mode):
5774 * vc.el (vc-retrieve-snapshot):
5775 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
5776 * startup.el (display-startup-echo-area-message):
5777 * simple.el (set-goal-column):
5778 * ses.el (ses-command-hook, ses-recalculate-cell):
5779 * server.el (server-process-filter):
5780 * printing.el (pr-interface-txt-print, pr-interface-printify)
5781 (pr-interface-ps):
5782 * pcvs.el (cvs-help):
5783 * log-edit.el (log-edit, log-edit-mode-help):
5784 * iswitchb.el (iswitchb-possible-new-buffer):
5785 * isearch.el (isearch-edit-string):
5786 * image-mode.el (image-mode, image-minor-mode):
5787 * ibuf-macs.el (define-ibuffer-filter):
5788 * hi-lock.el (hi-lock-find-patterns):
5789 * files.el (toggle-read-only):
5790 * ediff-util.el (ediff-copy-diff)
5791 (ediff-write-merge-buffer-and-maybe-kill):
5792 * echistory.el (Electric-history-undefined):
5793 * dnd.el (dnd-insert-text):
5794 * dired-aux.el (dired-query):
5795 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
5796 * bookmark.el (bookmark-bmenu-locate):
5797 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
5798 Fix `message' calls to ensure first arg is a format string.
5799 The change was made only when these two conditions were satisfied:
5800 [1] when there is a possibility that the arguments would cause an error
5801 for example, if the code in question relies on external variables
5802 such as filenames, and
5803 [2] if the arg to `message' could not have been nil in the code.
5804
5805 * pcomplete.el (pcomplete--help): Fix `message' format spec.
5806 Not having a %s would be weird, though not technically wrong.
5807
5808 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5809
5810 * term/mac-win.el (mac-add-charset-info): Doc fix.
5811
5812 2005-09-17 Romain Francoise <romain@orebokech.com>
5813
5814 * shell.el (shell-resync-dirs): Handle echoing processes more
5815 reliably. Don't insert resync command if `comint-process-echoes'
5816 is non-nil.
5817
5818 2005-09-17 Magnus Henoch <mange@freemail.hu>
5819
5820 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
5821 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
5822 aspell versions >= 0.60.
5823 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
5824 only if ispell-aspell-supports-utf8 is non-nil.
5825
5826 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
5827
5828 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
5829 buffer-local value to lisp-indent-function.
5830
5831 2005-09-17 Milan Zamazal <pdm@zamazal.org>
5832
5833 * progmodes/glasses.el (glasses-make-readable): If
5834 glasses-separator differs from underscore, put appropriate
5835 overlays over underscore characters.
5836 (glasses-convert-to-unreadable): If glasses-separator differs from
5837 underscore, try to convert glasses-separator characters to
5838 underscores.
5839
5840 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
5841
5842 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
5843 Use with-syntax-table and dolist.
5844
5845 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
5846
5847 * textmodes/reftex-auc.el:
5848 * textmodes/reftex-cite.el:
5849 * textmodes/reftex-dcr.el:
5850 * textmodes/reftex-global.el:
5851 * textmodes/reftex-parse.el:
5852 * textmodes/reftex-ref.el:
5853 * textmodes/reftex-sel.el:
5854 * textmodes/reftex-toc.el:
5855 * textmodes/reftex-vars.el:
5856 * textmodes/reftex.el: Small changes to remove compiler warnings.
5857
5858 * textmodes/reftex-index.el: Likewise.
5859 (reftex-query-index-phrase): More efficient use of markers.
5860
5861 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
5862
5863 * image.el (image-load-path): New variable.
5864 (image-search-load-path): New function.
5865 (find-image): Search for images in `image-load-path'.
5866
5867 2005-09-15 Richard M. Stallman <rms@gnu.org>
5868
5869 * follow.el: Change Maintainer field.
5870
5871 2005-09-15 David Ponce <david@dponce.com>
5872
5873 * recentf.el (recentf-save-file-modes): New option.
5874 (recentf-save-list): Use it.
5875
5876 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
5877
5878 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
5879 (mode-line-mule-info, mode-line-modified): Move bindings from
5880 mouse-3 to mouse-1.
5881
5882 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
5883
5884 * simple.el (sendmail-user-agent-compose): Revert last change.
5885
5886 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
5887
5888 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
5889 Use with-current-buffer.
5890 (ange-ftp-gwp-start): Remove unused var `gw-user'.
5891 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
5892 (ange-ftp-insert-directory): Remove unused var `short'.
5893 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
5894
5895 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
5896 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
5897
5898 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
5899 (check-calendar-holidays, diary-list-entries): Autoload.
5900 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
5901 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
5902
5903 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
5904 which mistakenly removed a call to display-buffer.
5905
5906 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
5907
5908 * obsolete/iso-insert.el: Move to obsolete/ from international/.
5909
5910 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
5911
5912 * progmodes/hideshow.el
5913 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
5914 (hs-allow-nesting): New user var.
5915 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
5916 (hs-hide-block-at-point): When nesting allowed,
5917 if there is already an overlay in place, delete it.
5918 (hs-safety-is-job-n): Delete func; remove call sites.
5919 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
5920 (hs-overlay-at): New func.
5921 (hs-already-hidden-p, hs-show-block): Use it.
5922 (hs-hide-all): Don't pre-clean if nesting allowed.
5923 (hs-show-all): Temporarily disallow
5924 nesting around call to `hs-discard-overlays'.
5925
5926 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
5927
5928 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
5929 Delete unused local var.
5930
5931 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
5932
5933 * help-fns.el (describe-categories): "?\ " -> "?\s".
5934 (help-do-arg-highlight): Recognize also ARG-n, as in
5935 `move-to-left-margin' (ARG+n is already recognized). Simplify.
5936
5937 * international/codepage.el (dos-unsupported-char-glyph):
5938 * net/newsticker.el (tool-bar-map, w3-mode-map)
5939 (w3m-minor-mode-map):
5940 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
5941 (ent-alist):
5942 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
5943
5944 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
5945
5946 * custom.el (custom-push-theme): Handle the case where a symbol is
5947 bound but face properties have not yet been assigned.
5948
5949 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
5950 Fix behavior if noerase is `t' and there is no mail buffer.
5951
5952 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
5953 if `continue' is nil, rather than signal an error.
5954
5955 2005-09-12 Richard M. Stallman <rms@gnu.org>
5956
5957 * font-lock.el (font-lock-keywords): Add autoload.
5958
5959 * help-fns.el (describe-variable): Rearrange to put source link
5960 in a predictable place.
5961
5962 * net/newsticker.el: New file.
5963
5964 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5965
5966 * calendar/calendar.el (calendar-for-loop): Add edebug info.
5967 (calendar-basic-setup): Use the new nil arg.
5968 (number-of-diary-entries): Move to diary-lib.el.
5969
5970 * calendar/diary-lib.el: Use with-current-buffer, match-string.
5971 (diary-list-entries): Use with-syntax-table and dolist.
5972 Rename from list-diary-entries.
5973 Use number-of-diary-entries if `number' is nil.
5974 (diary, diary-view-entries): Use this new name and new nil arg value.
5975 (number-of-diary-entries): Move from calendar.el.
5976 (diary-unhide-everything): New function.
5977 (include-other-diary-files, fancy-diary-display)
5978 (diary-show-all-entries, make-diary-entry): Use it.
5979 (diary-mail-entries): Use buffer-string.
5980 (mark-diary-entries): Fix long standing paren typo.
5981 (diary-sexp-entry): Use count-lines.
5982 (make-diary-entry): Avoid `previous-line'.
5983 (diary-mode-map): New var.
5984 (diary-mode): Redraw cal after saving. Setup header-line.
5985 (fancy-diary-display-mode): Use local-set-key.
5986
5987 * startup.el (command-line): Try calling various terminal-init-foo-bar
5988 functions by stripping hyphenated suffixes from $TERM.
5989
5990 * files.el (normal-mode): Check boundness of font-lock-keywords.
5991
5992 2005-09-12 Richard M. Stallman <rms@gnu.org>
5993
5994 * progmodes/compile.el: Don't decide a file's directory
5995 until the user actually tries to go there.
5996 (compilation-next-error-function):
5997 Pass compilation-find-file the directory from the file-struct.
5998 (compilation-internal-error-properties): Separate local FILE-STRUCT
5999 from FILE. Doc the args better. Rename arg FMT to FMTS.
6000 (compilation-find-file): Arg DIR renamed to DIRECTORY.
6001 Expand it, and if nil, use default-directory.
6002 (compilation-get-file-structure): Don't mix specified directory
6003 with default directory. Put specified directory into
6004 file-struct. Don't make the file name absolute.
6005
6006 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
6007 (compile-command): Add autoload.
6008 (compilation-disable-input): Add autoload.
6009
6010 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
6011
6012 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
6013 strings of the variables it can override.
6014 (time-stamp): New (as yet undocumented) time-stamp-format escapes
6015 %Q and %q, for fully-qualified domain name and unqualified host name.
6016
6017 2005-09-11 Kim F. Storm <storm@cua.dk>
6018
6019 * emacs-lisp/authors.el (authors-aliases): Update list.
6020 (authors-fixed-entries): Update mldrag.el entry.
6021
6022 2005-09-10 Alan Mackenzie <acm@muc.de>
6023
6024 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
6025 from the region narrowed to.
6026
6027 2005-09-10 Magnus Henoch <mange@freemail.hu>
6028
6029 * textmodes/ispell.el (ispell-check-version): Signal an error if
6030 aspell version is less than 0.60.
6031
6032 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
6033
6034 * progmodes/octave-inf.el (inferior-octave-startup):
6035 Resync current dir at the end.
6036
6037 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
6038
6039 * woman.el (woman-topic-at-point-default):
6040 Rename to woman-use-topic-at-point-default.
6041 (woman-topic-at-point): Rename to woman-use-topic-at-point.
6042 (woman-file-name): Reflect renames above. Automatically use the
6043 word at point as topic if woman-use-topic-at-point is non-nil.
6044 Otherwise offer it as default but don't insert it in the
6045 minibuffer. Also use `test-completion' instead of `assoc' as
6046 suggested by Stefan Monnier.
6047
6048 2005-09-10 Andre Spiegel <spiegel@gnu.org>
6049
6050 * vc.el (vc-directory, vc-update-change-log): Throw an error on
6051 the attempt to do it over Tramp. This is not yet supported.
6052
6053 2005-09-10 Eli Zaretskii <eliz@gnu.org>
6054
6055 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
6056 (menu-bar-non-minibuffer-window-p): New functions.
6057 ("Split Window", "Save As..."): Use them.
6058 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
6059 ("Print Buffer", "Truncate Long Lines in this Buffer"):
6060 Use menu-bar-menu-frame-live-and-visible-p.
6061 ("Save Buffer", "Insert File", "Open Directory...")
6062 ("Open File...", "Visit New File..."):
6063 Use menu-bar-non-minibuffer-window-p.
6064 (kill-this-buffer-enabled-p, dired <menu-enable>):
6065 Use menu-bar-non-minibuffer-window-p.
6066
6067 2005-09-09 Eli Zaretskii <eliz@gnu.org>
6068
6069 * cus-start.el (all): Don't complain about fringe-related
6070 built-ins if fringes are not supported. Ditto about
6071 selection-related built-ins. Fix the test for GTK-related built-ins.
6072
6073 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
6074 ("Postscript Print Buffer", "Print Region", "Save As...")
6075 ("Save", "Insert File...", "Open Directory...")
6076 ("Open File...", "Visit New File..."")
6077 ("Truncate Long Lines in this Buffer"): Don't look at
6078 menu-updating-frame if this display does not support multiple frames.
6079
6080 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
6081
6082 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
6083
6084 2005-09-09 Emilio Lopes <eclig@gmx.net>
6085
6086 * woman.el: Format- and whitespace-related changes.
6087
6088 2005-09-09 Eli Zaretskii <eliz@gnu.org>
6089
6090 * woman.el: Fix my email address.
6091
6092 2005-09-08 Richard M. Stallman <rms@gnu.org>
6093
6094 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
6095 (sh-mode): Locally set skeleton-pair-default-alist.
6096
6097 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
6098
6099 * progmodes/flymake.el: Require `compile' unconditionally.
6100
6101 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
6102
6103 * woman.el (woman-file-name): Provide a default, not initial input.
6104
6105 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
6106
6107 * font-lock.el (font-lock-support-mode): Doc fix.
6108
6109 * descr-text.el (describe-property-list): Handle non-symbol prop names.
6110
6111 2005-09-08 Richard M. Stallman <rms@gnu.org>
6112
6113 * simple.el (blink-matching-open): Get rid of text props from
6114 the string shown in echo area. Don't permanently set point.
6115 Some rearrangements.
6116
6117 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
6118
6119 * recentf.el (recentf-filename-handler): Add custom choice
6120 `abbreviate-file-name'.
6121
6122 * msb.el (msb--very-many-menus): Fix typo.
6123
6124 * disp-table.el (standard-display-european): Don't set
6125 enable-multibyte-characters to nil.
6126
6127 2005-09-08 David Ponce <david@dponce.com>
6128
6129 * recentf.el (recentf-show-file-shortcuts-flag): New option.
6130 (recentf-expand-file-name): Doc fix.
6131 (recentf-dialog-mode-map): Define digit shortcuts.
6132 (recentf--files-with-key): New variable.
6133 (recentf-show-digit-shortcut-filter): New function.
6134 (recentf-open-files-items): New function.
6135 (recentf-open-files): Use it.
6136 (recentf-open-file-with-key): New command.
6137
6138 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
6139
6140 * buff-menu.el (Buffer-menu-sort-by-column): New function.
6141 Suggested by Kim F. Storm.
6142 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
6143 (Buffer-menu-make-sort-button): Use global keymap.
6144
6145 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
6146
6147 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
6148 (Man-getpage-in-background-advice): Remove defadvice; it isn't
6149 necessary any longer with the remapped command.
6150 (Man-bgproc-sentinel-advice): Remove defadvice which counts
6151 formatting time only.
6152
6153 * net/tramp.el (tramp-action-password)
6154 (tramp-multi-action-password): Compile the password prompt from
6155 `method', `user' and `host'. Sometimes it isn't obvious which
6156 password to enter, for example with remote files offered by
6157 recentf.el, or with multiple steps. Suggested by Robert Marshall
6158 <robert@chezmarshall.freeserve.co.uk>.
6159
6160 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
6161
6162 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
6163 Fix regexp for when "s///" is at the beginning of line.
6164
6165 2005-09-07 Jay Belanger <belanger@truman.edu>
6166
6167 * calc/calc-poly.el (math-expand-term): Multiply out any powers
6168 when in matrix mode.
6169
6170 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
6171
6172 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
6173 non-anonymous functions.
6174
6175 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
6176
6177 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
6178 when using a header line. Otherwise, use mouse-1-click-follows-link.
6179
6180 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
6181 can't be moved; don't signal an error.
6182
6183 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
6184
6185 * cus-theme.el (custom-theme-write-faces): Save the current face
6186 spec, not the defface spec.
6187
6188 * custom.el (custom-known-themes): Clarify meaning of "standard".
6189 (custom-push-theme): Save old values in the standard theme.
6190 (disable-theme): Correct typo.
6191 (custom-face-theme-value) Deleted unused function.
6192 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
6193
6194 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
6195
6196 * progmodes/compile.el (compilation-goto-locus): Take into account
6197 iconified frames when determining whether the buffer is
6198 already visible.
6199 Don't reset window height if the window already existed.
6200
6201 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
6202
6203 * custom.el (load-theme): Rename from require-theme.
6204 Add interactive spec.
6205 (enable-theme): Rename from custom-enable-theme.
6206 Add interactive spec.
6207 (disable-theme): Rename from custom-disable-theme.
6208 Add interactive spec.
6209 (custom-make-theme-feature): Doc fix.
6210 (custom-theme-directory): Doc fix.
6211 (provide-theme): Call enable-theme.
6212
6213 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
6214
6215 * obsolete/lazy-lock.el (lazy-lock-mode):
6216 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
6217 font-lock-mode if it's off. Print a warning instead.
6218
6219 * progmodes/compile.el (compilation-start): Ignore errors if the
6220 process died before we get to send-eof.
6221
6222 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
6223 Undo last change. Enclosing the result in quotes broke things on Unix
6224 since tex-send-command passes it through shell-quote-argument.
6225 (tex-send-command): Pass `file' through convert-standard-filename
6226 when possible.
6227 (tex-uptodate-p): Handle the case where TeX hasn't put additional
6228 info in a transcript.
6229
6230 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
6231
6232 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
6233 fix compilation warning. Reorder the key definitions to group
6234 together keys emitted by the current version of xterm.
6235
6236 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
6237 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
6238 Reorder predicates to correct min-color usage.
6239
6240 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
6241
6242 * longlines.el (longlines-mode): Inhibit read-only when encoding.
6243 Kill local variables when longlines-mode is turned off.
6244
6245 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
6246
6247 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
6248
6249 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
6250
6251 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
6252
6253 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
6254 (font-lock-lines-before): Change default to being inactive.
6255 (font-lock-default-fontify-region): Obey font-lock-lines-before.
6256 (font-lock-after-change-function): Don't handle f-l-lines-before here.
6257
6258 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
6259
6260 * net/tramp.el (tramp-handle-make-auto-save-file-name):
6261 Deactivate temporarily advice if active (not needed for Emacs 22,
6262 but for backwards compatibility).
6263 (tramp-exists-file-name-handler): Rewrite. First implementation
6264 was too simple.
6265 (tramp-advice-make-auto-save-file-name):
6266 Call `tramp-handle-make-auto-save-file-name' (again, just for
6267 backwards compatibility).
6268
6269 2005-08-31 Reto Zimmermann <reto@gnu.org>
6270
6271 * progmodes/vhdl-mode.el
6272 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
6273 (vhdl-end-p): Fix indentation bug "else" after "-- when".
6274 (vhdl-set-default-project): New function (easier setting of default).
6275 (vhdl-port-copy): Handle extended identifiers for generics.
6276 (vhdl-compiler-alist): Better description for error message regexp.
6277 (vhdl-make): Query for target, use previous as default.
6278 (vhdl-port-copy): Fix port copy for port names starting with "signal".
6279 (vhdl-font-lock-keywords-2): Fix fontification for record
6280 el. assign.
6281 (vhdl-speedbar-make-subpack-line): Add package body link.
6282 (vhdl-generate-makefile-1): Not include itself as dependency.
6283 (vhdl-font-lock-init): Highlight c-preprocessor directives.
6284 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
6285 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
6286 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
6287 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
6288 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
6289 (vhdl-import-project): Add string argument for `error'.
6290 (vhdl-compose-configuration)
6291 (vhdl-compose-configuration-architecture): Add configuration
6292 declaration generation.
6293 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
6294 (vhdl-trailer-re): Add "record" keyword (better indentation).
6295 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
6296 "[^ \t-\"]+".
6297 (vhdl-font-lock-keywords-2): Not highlight formal parameter after '|'.
6298 (vhdl-testbench-entity-file-name)
6299 (vhdl-testbench-architecture-file-name): Allow separate
6300 customization of testbench file names.
6301 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
6302 (vhdl-get-visible-signals): Allow newline within alias declaration.
6303 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
6304 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
6305 (member-ignore-case): Alias for missing function in XEmacs.
6306 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
6307 (vhdl-update-sensitivity-list): Ignore case on read signals.
6308 (vhdl-replace-string): Adjust case only for file names.
6309 (vhdl-update-sensitivity-list): Fix search for read signals.
6310 (vhdl-update-sensitivity-list): Exclude formal parameters.
6311 (vhdl-get-visible-signals): Include aliases of signals.
6312 (vhdl-get-visible-signals): Fix signal name searching.
6313 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
6314 (vhdl-fixup-whitespace-region): Fix for character
6315 literals (e.g. ':').
6316
6317 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
6318
6319 * ansi-color.el (comint-last-output-start):
6320 * bs.el (font-lock-verbose):
6321 * diff-mode.el (add-log-buffer-file-name-function):
6322 * dired-x.el (vm-folder-directory):
6323 * faces.el (help-xref-stack-item):
6324 * files.el (font-lock-keywords):
6325 * find-lisp.el (dired-buffers, dired-subdir-alist):
6326 * ido.el (cua-inhibit-cua-keys):
6327 * log-view.el (cvs-minor-wrap-function):
6328 * outline.el (font-lock-warning-face):
6329 * simple.el (compilation-current-error):
6330 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
6331 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
6332 * tooltip.el (comint-prompt-regexp):
6333 * w32-fns.el (explicit-shell-file-name):
6334 * term/mac-win.el (mac-charset-info-alist)
6335 (mac-services-selection, mac-system-script-code):
6336 * term/tty-colors.el (msdos-color-values):
6337 * term/w32-win.el (xlfd-regexp-registry-subnum):
6338 * term/x-win.el (x-keysym-table, x-selection-timeout)
6339 (x-session-id, x-session-previous-id):
6340 * textmodes/ispell.el (mail-yank-prefix):
6341 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
6342 * textmodes/org.el (calc-embedded-close-formula)
6343 (calc-embedded-open-formula)
6344 (font-lock-unfontify-region-function):
6345 * textmodes/reftex-global.el (isearch-next-buffer-function)
6346 (TeX-master):
6347 * textmodes/reftex.el (font-lock-keywords):
6348 * textmodes/tex-mode.el (font-lock-comment-face)
6349 (font-lock-doc-face):
6350 * textmodes/texinfo.el (outline-heading-alist):
6351 Add defvars.
6352
6353 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
6354 (artist-spray-chars, artist-mode-init, artist-replace-string)
6355 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
6356 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
6357 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
6358
6359 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
6360 (conf-align-assignments): "?\ " -> "?\s".
6361
6362 * textmodes/reftex-index.el (TeX-master): Add defvar.
6363 (reftex-index-phrases-marker): Move up defvar.
6364
6365 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
6366 (reftex-toc-include-labels-indicator)
6367 (reftex-toc-include-index-indicator)
6368 (reftex-toc-max-level-indicator): Move up declarations.
6369
6370 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
6371 of args to `tramp-run-real-handler', even if it's empty in this case.
6372
6373 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6374
6375 * dired.el (dired-move-to-filename-regexp): Add date format for
6376 Mac OS X 10.3 in East Asian locales.
6377
6378 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
6379
6380 * files.el (make-auto-save-file-name): Add file name handler call
6381 if applicable.
6382
6383 * net/tramp.el (tramp-file-name-handler-alist)
6384 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
6385 (tramp-handle-make-auto-save-file-name): Rename from
6386 `tramp-make-auto-save-file-name'.
6387 (tramp-exists-file-name-handler): New defun.
6388 (tramp-advice-make-auto-save-file-name): Make defadvice only when
6389 `make-auto-save-file-name' is not a magic file name operation.
6390
6391 2005-08-30 Richard M. Stallman <rms@gnu.org>
6392
6393 * files.el (risky-local-variable-p):
6394 Match `-predicates' and `-commands.
6395
6396 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
6397 (custom-save-all): Visit the file if necessary;
6398 kill the buffer if we created it.
6399 (custom-save-delete): Don't visit file or kill buffer here.
6400
6401 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
6402
6403 * textmodes/org.el (org-special-keyword): New face.
6404 (org-table-copy-down, org-table-eval-formula)
6405 (org-table-recalculate, org-init-section-numbers):
6406 Use `string-to-number' instead of `string-to-int'.
6407 (org-get-location): Use `insert-buffer-substring' instead of
6408 `insert-buffer'.
6409 (org-modify-diary-entry-string): New function.
6410 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
6411 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
6412 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
6413 active region.
6414 (org-export-as-html): Handle QUOTE keyword.
6415 (org-quote-string): New option.
6416 (org-bookmark-jump-unhide): New function, used for
6417 `bookmark-after-jump-hook'.
6418 (org-diary-default-entry): Apply only when not called through
6419 `org-agenda'.
6420
6421 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
6422
6423 * net/eudc.el (mode-popup-menu):
6424 * play/handwrite.el (ps-printer-name, ps-lpr-command):
6425 * progmodes/ada-mode.el (compile-auto-highlight)
6426 (skeleton-further-elements):
6427 * progmodes/autoconf.el (font-lock-syntactic-keywords):
6428 * progmodes/cmacexp.el (msdos-shells):
6429 * progmodes/compile.el (font-lock-extra-managed-props)
6430 (font-lock-keywords, font-lock-maximum-size)
6431 (font-lock-support-mode):
6432 * progmodes/grep.el (font-lock-lines-before):
6433 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
6434 * progmodes/mixal-mode.el (compile-command):
6435 * progmodes/perl-mode.el (font-lock-comment-face)
6436 (font-lock-doc-face, font-lock-string-face):
6437 * progmodes/prolog.el (comint-prompt-regexp):
6438 * progmodes/sh-script.el (font-lock-comment-face)
6439 (font-lock-set-defaults, font-lock-string-face):
6440 * progmodes/sql.el (font-lock-keyword-face)
6441 (font-lock-set-defaults, font-lock-string-face):
6442 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
6443 (itimer-version, lazy-lock-defer-contextually)
6444 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
6445 Add defvars.
6446
6447 * progmodes/cperl-mode.el (cperl-electric-lbrace)
6448 (cperl-electric-keyword, cperl-electric-pod)
6449 (cperl-electric-backspace, cperl-forward-re)
6450 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
6451 (vc-rcs-header, vc-sccs-header): Add defvars.
6452
6453 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
6454 (font-lock-syntactic-keywords, gud-find-expr-function):
6455 Add defvars.
6456
6457 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
6458 (gdb-frame-parameters): Declare before use.
6459
6460 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
6461 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
6462 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
6463 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
6464
6465 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
6466 (idlwave-help-with-source): Use `insert-buffer-substring', not
6467 `insert-buffer'.
6468
6469 2005-08-29 Juri Linkov <juri@jurta.org>
6470
6471 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
6472 Put outline-back-to-heading function call inside save-excursion.
6473
6474 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
6475
6476 * man.el (Man-init-defvars, Man-translate-references)
6477 (Man-support-local-filenames, Man-highlight-references):
6478 * progmodes/sql.el (sql-interactive-mode):
6479 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
6480
6481 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
6482 (compilation-mode-font-lock-keywords): Add defvars.
6483 (checkdoc-interactive-loop): "?\ " -> "?\s".
6484
6485 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
6486 (font-lock-doc-face, font-lock-string-face)
6487 (font-lock-keywords-case-fold-search): Add defvars.
6488 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
6489
6490 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
6491 Don't pass X and Y (they are ignored anyway).
6492 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
6493 (mouse-delete-window): Make arguments optional.
6494
6495 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
6496 (caesar-translate-table, minor-modes, news-buffer-save)
6497 (news-group-name, news-minor-modes): Add defvars.
6498
6499 * emacs-lisp/lselect.el (mouse-highlight-priority)
6500 (x-lost-selection-functions, zmacs-regions):
6501 * emacs-lisp/pp.el (font-lock-verbose):
6502 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
6503 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
6504 (ses-mode-map):
6505 * emacs-lisp/tcover-unsafep.el (safe-functions):
6506 * international/mule-cmds.el (mac-system-coding-system)
6507 (mac-system-locale):
6508 * language/ethio-util.el (rmail-current-message)
6509 (rmail-message-vector):
6510 * language/thai-util.el (thai-auto-composition-mode):
6511 * mail/metamail.el (rmail-current-message, rmail-message-vector):
6512 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
6513 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
6514 (vm-primary-inbox, vm-spool-files):
6515 * mail/rmail.el (deleted-head, font-lock-fontified)
6516 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
6517 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
6518 (total-messages):
6519 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
6520 (rmail-summary-mode-map):
6521 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
6522 (rmail-last-label, rmail-last-multi-labels)
6523 (rmail-summary-vector, rmail-total-messages):
6524 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
6525 * mail/rmailsum.el (msgnum):
6526 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
6527 (rmail-current-message):
6528 * obsolete/fast-lock.el (font-lock-face-list):
6529 * obsolete/rnewspost.el (mail-reply-buffer):
6530 * obsolete/scribe.el (compile-command):
6531 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
6532
6533 2005-08-28 John Paul Wallington <jpw@gnu.org>
6534
6535 * ibuf-ext.el (ibuffer-auto-update-changed):
6536 Use `frame-or-buffer-changed-p' to check whether we need to update.
6537 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
6538 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
6539 as a `frame-or-buffer-changed-p' state vector instead.
6540
6541 2005-08-27 Romain Francoise <romain@orebokech.com>
6542
6543 * textmodes/makeinfo.el (makeinfo-compile):
6544 Use `compilation-start'. Set `next-error-function' according to
6545 `disable-errors'.
6546 (makeinfo-next-error): New function.
6547 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
6548 (makeinfo-buffer): Likewise.
6549
6550 * progmodes/compile.el (compilation-start): Add autoload cookie.
6551
6552 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
6553 * textmodes/sgml-mode.el: Likewise.
6554 * progmodes/python.el: Likewise.
6555
6556 2005-08-27 Eli Zaretskii <eliz@gnu.org>
6557
6558 * simple.el (blink-matching-paren-distance): Document the meaning
6559 of nil value, and allow to customize to nil.
6560
6561 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
6562 command.com, not command.exe.
6563
6564 2005-08-26 John Wiegley <johnw@newartisans.com>
6565
6566 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
6567 code around a bit so that an extraneous nil argument is not added
6568 to a command when no args are given.
6569
6570 * eshell/esh-arg.el (eshell-parse-double-quote): If a
6571 double-quoted argument resolves to nil, return it as an empty
6572 string rather than as nil. This made it impossible to pass "" to
6573 a shell script as a null string argument.
6574
6575 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
6576
6577 * outline.el (outline-invent-heading): New fun.
6578 (outline-promote, outline-demote): Use it.
6579 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
6580 (outline-end-of-subtree): Remove unused var `opoint'.
6581
6582 2005-08-26 David Reitter <david.reitter@gmail.com>
6583
6584 * menu-bar.el (truncate-lines, write-file, print-buffer)
6585 (ps-print-buffer-faces, ps-print-buffer, split-window):
6586 Disable menu items when the frame they refer to is invisible, or when
6587 they refer to a buffer and the minibuffer is selected.
6588
6589 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
6590
6591 * progmodes/flymake.el (flymake-highlight-err-lines):
6592 Use save-excursion around flymake-highlight-line to preserve point.
6593
6594 2005-08-26 Eli Zaretskii <eliz@gnu.org>
6595
6596 * progmodes/octave-mod.el: Change Author and Maintainer address.
6597 (octave-maintainer-address): Change Kurt's email address.
6598 * progmodes/octave-inf.el: Change Author and Maintainer address.
6599 * progmodes/octave-hlp.el: Change Author and Maintainer address.
6600
6601 2005-08-26 Kim F. Storm <storm@cua.dk>
6602
6603 * subr.el (version-list-<, version-list-<=, version-list-=):
6604 Renamed from integer-list-*.
6605 (version-list-not-zero): Likewise. Fix while loop.
6606 (version=): Use version-list-= instead of string-equal.
6607
6608 2005-08-26 Richard M. Stallman <rms@gnu.org>
6609
6610 * outline.el (outline-promote): Try shortening the heading.
6611 As last resort, read the heading to use.
6612 (outline-demote): As last resort, read the heading to use.
6613
6614 2005-08-26 Romain Francoise <romain@orebokech.com>
6615
6616 * progmodes/compile.el (compilation-start): Doc fix.
6617
6618 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
6619 (antlr-font-lock-additional-keywords): Fix reference to
6620 `antlr-font-lock-literal-regexp' erroneously changed during the
6621 mass face rename.
6622 (antlr-run-tool): Use `compilation-start'.
6623
6624 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
6625 instead of the obsolete `compile-internal'.
6626
6627 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
6628
6629 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
6630 (number, original-date):
6631 * calendar/cal-china.el (date):
6632 * calendar/cal-coptic.el (date):
6633 * calendar/cal-french.el (date):
6634 * calendar/cal-hebrew.el (date, entry, number, original-date):
6635 * calendar/cal-islam.el (date, number, original-date):
6636 * calendar/cal-iso.el (date):
6637 * calendar/cal-julian.el (date):
6638 * calendar/cal-mayan.el (date):
6639 * calendar/cal-menu.el (date, event):
6640 * calendar/cal-persia.el (date):
6641 * calendar/lunar.el (date):
6642 * calendar/solar.el (date): Add defvars.
6643
6644 * emerge.el:
6645 * ibuffer.el:
6646 * info-xref.el:
6647 * obsolete/bg-mouse.el:
6648 * obsolete/sun-curs.el:
6649 * obsolete/swedish.el: Move the `defvar's to the top level.
6650
6651 * smerge-mode.el (smerge-refined-change): Add :group.
6652
6653 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
6654
6655 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
6656 (smerge-keep-n): Remove props.
6657 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
6658 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
6659 now that it's done in smerge-keep-n.
6660 (smerge-refined-change): New face.
6661 (smerge-refine-chopup-region, smerge-refine-highlight-change)
6662 (smerge-refine): New funs.
6663 (smerge-basic-map): Bind smerge-refine.
6664
6665 2005-08-25 Juri Linkov <juri@jurta.org>
6666
6667 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
6668 compilation-process-setup-function and compilation-disable-input
6669 in grep-mode instead of let-bindings in grep.
6670
6671 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
6672 Delete "Automatic File De/compression" (auto-compression-mode).
6673
6674 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
6675
6676 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
6677 Silence warning about non-existent variable.
6678
6679 2005-08-25 Richard M. Stallman <rms@gnu.org>
6680
6681 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
6682 Rename "Describe Key" to "Describe Key or Mouse Operation".
6683
6684 * mail/mailalias.el (build-mail-aliases): Delete comments
6685 from the contents before processing them.
6686
6687 * isearch.el (isearch-edit-string): Erase the Search prompt
6688 if user enters an empty string and there is no default.
6689
6690 * comint.el (comint-file-name-prefix): Add autoload.
6691
6692 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
6693
6694 * subr.el (play-sound): Rearrange to avoid warning.
6695
6696 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
6697
6698 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
6699 New hook.
6700 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
6701
6702 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
6703
6704 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
6705
6706 * custom.el (custom-theme-set-variables): Sort minor modes last.
6707
6708 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6709
6710 * subr.el (version-separator, version-regexp-alist): New vars used by
6711 version comparison funs.
6712 (integer-list-<, integer-list-=, integer-list-<=)
6713 (integer-list-not-zero): New funs for integer list comparison.
6714 (version-to-list, version=, version<, version<=): New funs for version
6715 comparison.
6716
6717 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
6718
6719 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
6720 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
6721 time to silence the byte-compiler.
6722
6723 * ibuffer.el (ibuffer-compile-make-eliding-form)
6724 (ibuffer-check-formats): Use `with-no-warnings' to hide references
6725 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
6726 so it's silly to get warnings for it).
6727 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
6728 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
6729 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
6730 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
6731 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
6732 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
6733 Defvar at compile time.
6734 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
6735 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
6736 Declare them before use.
6737
6738 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
6739 (info-xref-good, info-xref-bad): Defvar at compile time.
6740
6741 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
6742 Use `let*' instead of `let'.
6743
6744 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
6745 (*mouse-y*, menu, char): Defvar at compile time.
6746 (sc::menu): Declare it before use.
6747 (sc::pack-one-line): Use `let', not `let*'.
6748
6749 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
6750 (mail-send-hook): Defvar at compile time.
6751
6752 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
6753 Defvar at compile time.
6754
6755 * term/sun-mouse.el (current-global-mousemap)
6756 (current-local-mousemap): Declare them before use.
6757
6758 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
6759
6760 * bookmark.el (bookmark-after-jump-hook): New hook.
6761 (bookmark-jump): Run `bookmark-after-jump-hook'.
6762
6763 2005-08-23 Juri Linkov <juri@jurta.org>
6764
6765 * faces.el (minibuffer-prompt): Doc fix.
6766
6767 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
6768
6769 * progmodes/xscheme.el: Trivial changes to silence warnings.
6770 (xscheme-previous-mode, xscheme-previous-process-state):
6771 Add defvars.
6772 (xscheme-last-input-end, xscheme-process-command-line)
6773 (xscheme-process-name, xscheme-buffer-name)
6774 (xscheme-expressions-ring-max, xscheme-expressions-ring)
6775 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
6776 (xscheme-control-g-synchronization-p)
6777 (xscheme-control-g-disabled-p, xscheme-string-receiver)
6778 (default-xscheme-runlight, xscheme-runlight)
6779 (xscheme-runlight-string, xscheme-process-filter-state)
6780 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
6781 Move to beginning of file.
6782 (scheme-interaction-mode-commands-alist)
6783 (scheme-interaction-mode-map, scheme-debugger-mode-map):
6784 Declare them before use. Note: the initialization code for the variables
6785 has not been moved because it uses functions that reference the variables.
6786 (xscheme-control-g-message-string, xscheme-process-filter-alist)
6787 (xscheme-prompt-for-expression-map): Declare them before use.
6788 (scheme-debugger-mode-commands): "?\ " -> "?\s".
6789
6790 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
6791
6792 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
6793
6794 2005-08-22 Juri Linkov <juri@jurta.org>
6795
6796 * faces.el (set-face-underline): Delete this duplicate function
6797 and make an obsolete alias to set-face-underline-p.
6798 (set-face-underline-p): Use docstring of set-face-underline.
6799 (describe-face): Create hyperlink to parent face.
6800
6801 * info.el (Info-insert-dir): Use save-excursion around
6802 insert-buffer-substring.
6803 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
6804 (Info-escape-percent): Delete function.
6805 (Info-fontify-node): Replace Info-escape-percent by
6806 replace-regexp-in-string with REP arg set to lambda that
6807 duplicates `%' and preserves text properties.
6808
6809 * progmodes/compile.el (compilation-disable-input): Doc fix.
6810 (define-compilation-mode): Doc fix and refill.
6811 (kill-compilation): Use `mode-name' in the error message.
6812 (compilation-find-file): Use `compilation-error' in the
6813 read-file-name's prompt.
6814
6815 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
6816
6817 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
6818 (smerge-auto-leave): Make undo re-enable the mode.
6819 (debug-ignored-errors): Add the user-error of impossible resolution.
6820 (smerge-resolve): Move things around a bit, in preparation for later.
6821 (smerge-diff): Don't fail if the buffer has no associated file.
6822 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
6823 (smerge-conflict-overlay): New function.
6824 (smerge-match-conflict): Don't add text properties here.
6825 (smerge-find-conflict): Instead, add an overlay here.
6826 Also check for the case where we're inside a conflict already, so as to
6827 obviate the need for font-lock-multiline, which is unbearably slow with
6828 large conflicts and ciomplex font-lock patterns.
6829 (smerge-remove-props): Remove overlay rather than text-properties.
6830 (smerge-mode): Don't set font-lock-multiline.
6831 Remove overlays when turned off.
6832
6833 2005-08-21 Kim F. Storm <storm@cua.dk>
6834
6835 * ido.el (ido-ignore-item-p): Use save-match-data.
6836 Bind case-fold-search to ido-case-fold locally.
6837
6838 2005-08-20 Richard M. Stallman <rms@gnu.org>
6839
6840 * files.el (normal-mode): If font lock is on, turn it off and on.
6841
6842 * subr.el (replace-regexp-in-string): Doc fix.
6843
6844 * startup.el (command-line-1): Don't suppress startup screen
6845 due to existing processes.
6846
6847 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
6848
6849 * progmodes/compile.el (compilation-disable-input): Default to nil.
6850
6851 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
6852
6853 * progmodes/compile.el (compilation-disable-input): New defcustom.
6854 (compilation-start): If compilation-disable-input is non-nil, send
6855 EOF to the compilation process.
6856
6857 2005-08-20 Eli Zaretskii <eliz@gnu.org>
6858
6859 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
6860 Run the argument of tex-shell-cd-command through
6861 convert-standard-filename, to get the correct style of slashes on
6862 Windows, and enclose the result in quotes, in case the file name
6863 includes whitespace or other special characters.
6864
6865 2005-08-19 Andreas Schwab <schwab@suse.de>
6866
6867 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
6868 process.
6869
6870 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
6871
6872 * cus-start.el (minibuffer-prompt-properties): Correct typo.
6873
6874 2005-08-18 Kim F. Storm <storm@cua.dk>
6875
6876 * scroll-lock.el: Fix errors due to incorrect line wrapping.
6877
6878 2005-08-18 Richard M. Stallman <rms@gnu.org>
6879
6880 * scroll-lock.el: New file.
6881
6882 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
6883
6884 * dired.el (dired-move-to-end-of-filename):
6885 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
6886
6887 2005-08-18 Kim F. Storm <storm@cua.dk>
6888
6889 * ido.el (ido-everywhere): Fix defcustom :set function to disable
6890 rather than toggle mode when custom value is nil.
6891 (ido-everywhere): Fix defun doc string.
6892
6893 2005-08-17 Richard M. Stallman <rms@gnu.org>
6894
6895 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
6896 as tag instead of "Inviolable".
6897
6898 2005-08-17 Kim F. Storm <storm@cua.dk>
6899
6900 * windmove.el (windmove-coordinates-of-position): Remove.
6901 (windmove-coordinates-of-window-position): Remove.
6902 (windmove-reference-loc): Use posn-at-point instead.
6903
6904 * subr.el (insert-for-yank-1): Doc fix.
6905
6906 * ido.el (ido-enter-matching-directory): Rename from
6907 ido-enter-single-matching-directory. Change 'slash choice to
6908 'only. Add 'first choice.
6909 (ido-exhibit): Adapt to above changes.
6910
6911 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
6912
6913 * Makefile.in: Expand comment about building loaddefs.el.
6914
6915 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
6916
6917 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
6918 Comment use of defadvice.
6919
6920 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
6921
6922 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
6923
6924 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
6925 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
6926 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
6927 * progmodes/idlw-shell.el, progmodes/ld-script.el,
6928 * progmodes/which-func.el, ruler-mode.el, strokes.el,
6929 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
6930 for backward compatibility for faces that did not appear in the
6931 previous Emacs release.
6932
6933 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
6934
6935 2005-08-15 Kim F. Storm <storm@cua.dk>
6936
6937 * emulation/cua-base.el (cua-delete-region): Return t if
6938 deleted region was non-empty.
6939 (cua-replace-region): Inhibit overwrite-mode for
6940 self-insert-command if replaced region was non-empty.
6941 (cua--explicit-region-start, cua--status-string): Make them
6942 buffer-local at top-level...
6943 (cua-mode): ...rather than when mode is enabled.
6944
6945 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
6946
6947 * progmodes/vhdl-mode.el (vhdl-emacs-21):
6948 Set t for Emacs 21, 22, and so on.
6949
6950 2005-08-15 David Ponce <david@dponce.com>
6951
6952 * tree-widget.el: Update Commentary header.
6953 (tree-widget-theme): Doc fix.
6954 (tree-widget-space-width): New option.
6955 (tree-widget-image-properties): Look up in the default theme too.
6956 (tree-widget--cursors): Only for images with arrow pointer shape.
6957 (tree-widget-lookup-image): Pointer shape is hand by default.
6958 (tree-widget-icon): Rename generic icon widget from
6959 `tree-widget-control'.
6960 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
6961 derive from `tree-widget-icon'.
6962 (tree-widget-handle): Improve default look and feel of the text
6963 representation.
6964 (tree-widget): Rename :*-control properties to :*-icon properties.
6965 Add :action and :help-echo properties.
6966 (tree-widget-after-toggle-functions): Move.
6967 (tree-widget-close-node, tree-widget-open-node): Remove.
6968 (tree-widget-before-create-icon-functions): New hook.
6969 (tree-widget-value-create): Update to allow customization of icons
6970 and nodes at run-time via that new hook.
6971 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
6972 (tree-widget-icon-action, tree-widget-icon-help-echo)
6973 (tree-widget-action, tree-widget-help-echo): New functions.
6974
6975 2005-08-15 Kim F. Storm <storm@cua.dk>
6976
6977 * ido.el (ido-buffer-internal): Use with-no-warnings.
6978 (ido-make-merged-file-list): Use while-no-input.
6979
6980 2005-08-15 Richard M. Stallman <rms@gnu.org>
6981
6982 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
6983 (flyspell-large-region): Fix doc and custom type.
6984
6985 2005-08-14 Richard M. Stallman <rms@gnu.org>
6986
6987 * files.el (interpreter-mode-alist): Doc fix.
6988
6989 * mail/rmail.el (rmail-nonignored-headers): New variable.
6990 (rmail-clear-headers): Use it.
6991 (rmail-reply): Better handling of mail-followup-to header.
6992
6993 * progmodes/sh-script.el (sh-font-lock-keywords-var):
6994 Rename variable from sh-font-lock-keywords. In the `shell' entry,
6995 don't try to refer to executable-font-lock-keywords.
6996 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
6997 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
6998 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
6999 (sh-mode): Set comment-start-skip, local-abbrev-table,
7000 imenu-case-fold-search.
7001 (sh-set-shell): Don't set them here.
7002 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
7003 Don't cache the results in the original alist; don't ever modify
7004 that alist.
7005
7006 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
7007
7008 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
7009 empty.
7010
7011 2005-08-15 Andreas Schwab <schwab@suse.de>
7012
7013 * desktop.el: Put autoload cookie at risky-local-variable declarations.
7014
7015 * dired.el, info.el, mail/rmail.el: Revert last change.
7016
7017 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
7018
7019 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
7020 modification in `eval-after-load' form.
7021 * info.el: Likewise.
7022 * mail/rmail.el: Likewise.
7023
7024 2005-08-14 Juri Linkov <juri@jurta.org>
7025
7026 * progmodes/compile.el (compilation-mode-font-lock-keywords):
7027 Remove highlighting of "Compilation started". Highlight only
7028 the word "finished" in "Compilation finished". Add highlighting
7029 of "interrupt", "killed", "terminated" and the exit code.
7030 (compilation-start): Add newline after header. Use exactly the
7031 same time stamp format as the finishing message.
7032 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
7033
7034 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
7035 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
7036 Add highlighting of "interrupt", "killed", "terminated".
7037
7038 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
7039 enabled and the current command is self-insert-command, call it
7040 explicitly with overwrite-mode bound to nil, to not allow it
7041 to delete the character after the selected region.
7042
7043 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
7044
7045 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
7046 move-end-of-line, end-of-line, and beginning-of-line to the list
7047 of commands after which the echo area is updated.
7048
7049 2005-08-12 Eli Zaretskii <eliz@gnu.org>
7050
7051 * cus-edit.el (custom-save-all, custom-save-delete):
7052 Bind recentf-exclude to exclude custom-file.
7053
7054 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
7055
7056 * mail/rmailsum.el (rmail-summary-end-of-message): New command
7057 to go to the bottom of the mail message. Added to
7058 `rmail-summary-mode-map' with key "/".
7059 (rmail-summary-show-message): New (internal) function for use by
7060 both `rmail-summary-beginning/end-of-message'.
7061 (rmail-summary-beginning-of-message): Change to use
7062 rmail-summary-show-message.
7063
7064 * mail/rmail.el (rmail-end-of-message): New command to go to the
7065 end of the current message. Added to `rmail-mode-map' with key "/".
7066 (rmail-beginning-of-message): Fix to work as documented.
7067 (rmail-mode): Change documentation.
7068
7069 * progmodes/compile.el (compilation-start): Add the line
7070 "Compilation started" with compilation start time.
7071 (compilation-mode-font-lock-keywords): Add `started' to keywords.
7072
7073 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
7074
7075 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
7076 of menu items.
7077
7078 2005-08-11 Richard M. Stallman <rms@gnu.org>
7079
7080 * simple.el (pop-global-mark): Reverse test of widen-automatically.
7081
7082 * battery.el (battery-status-function): Don't use ignore-errors.
7083
7084 2005-08-11 Lute Kamstra <lute@gnu.org>
7085
7086 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
7087 define-obsolete-variable-alias.
7088
7089 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
7090
7091 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
7092 (ange-ftp-send-cmd): Revert last change, and expand
7093 the comment explaining the problem.
7094
7095 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
7096
7097 * ldefs-boot.el: Update.
7098
7099 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
7100 item to "Time, Load and Mail". Change help echo text.
7101
7102 * time.el (display-time-use-mail-icon, display-time-format)
7103 (display-time-string-forms): Shorten first line of docstrings.
7104
7105 2005-08-10 Lars Hansen <larsh@soem.dk>
7106
7107 * desktop.el (desktop-buffer-mode-handlers):
7108 Make non-customizable. Add autoload cookie. Change initial value to
7109 nil; add elements in respective modules instead. Fix doc string.
7110 (desktop-load-file): New function.
7111 (desktop-minor-mode-handlers): New autoloaded variable.
7112 (desktop-create-buffer): Call minor mode handlers.
7113 Use desktop-load-file to load major and minor mode modules prior to
7114 checking for a handler.
7115 (desktop-save): Don't add nil to desktop-minor-modes for minor
7116 modes with nil function in desktop-minor-mode-table. Don't delete
7117 desktop file before rewriting it.
7118 (desktop-locals-to-save): Add autoload cookie. Don't make
7119 automatically buffer-local. Add variables column-number-mode,
7120 size-indication-mode, indent-tabs-mode,
7121 indicate-buffer-boundaries, indicate-empty-lines and
7122 show-trailing-whitespace.
7123 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
7124 regexps. Don't use desktop-clear-preserve-buffers-regexp.
7125 (desktop-clear-preserve-buffers-regexp): Delete.
7126 (desktop-clear-preserve-buffers): Update initial value and docstring.
7127 (desktop-save-buffer): Fix doc string.
7128
7129 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
7130 (hilit-chg-desktop-restore): New function.
7131 (highlight-changes-mode): Add highlight-changes-mode to
7132 desktop-locals-to-save.
7133
7134 * dired.el: Add handler to desktop-buffer-mode-handlers.
7135 (dired-restore-desktop-buffer): Remove autoload cookie.
7136 (dired-mode): Add autoload cookie.
7137
7138 * info.el: Add handler to desktop-buffer-mode-handlers.
7139 (Info-restore-desktop-buffer): Remove autoload cookie.
7140 (Info-mode): Add autoload cookie.
7141
7142 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
7143 (mh-restore-desktop-buffer): Remove autoload cookie.
7144 (mh-folder-mode): Add autoload cookie.
7145
7146 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
7147 (rmail-restore-desktop-buffer): Remove autoload cookie.
7148
7149 2005-08-11 Masatake YAMATO <jet@gyve.org>
7150
7151 * hexl.el (hexl-address-region):
7152 (hexl-ascii-region, hexl-font-lock-keywords):
7153 (hexl-highlight-line-range): Use the term "region"
7154 instead of "area" for consistency with the other symbols
7155 defined in hexl.el.
7156
7157 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
7158
7159 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
7160 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
7161 out by Juri Linkov). Add `display-battery-mode'.
7162
7163 2005-08-09 Juri Linkov <juri@jurta.org>
7164
7165 * progmodes/compile.el (compilation-mode-font-lock-keywords):
7166 Remove `-text' from face variable names.
7167 (compilation-error-file-name, compilation-warning-file-name)
7168 (compilation-info-file-name): Delete faces.
7169 (compilation-line-number, compilation-column-number):
7170 Remove face underlining.
7171 (compilation-message-face): Set to `underline' value by default.
7172 (compilation-error-face, compilation-warning-face)
7173 (compilation-info-face): Remove `-file-name' from face names.
7174 (compilation-error-text-face, compilation-warning-text-face)
7175 (compilation-info-text-face): Delete face variables.
7176 (compilation-text-face): Delete function.
7177
7178 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
7179 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
7180 (grep-error-face): Set to `compilation-error' instead of
7181 `compilation-error-face' (which is redefined to `grep-hit-face' in
7182 grep buffers).
7183 (grep-mode-font-lock-keywords): Remove `-text' from face variable
7184 names. Use `grep-error-face' instead of `compilation-error-text-face'.
7185
7186 * dired-aux.el (dired-do-query-replace-regexp):
7187 Use `query-replace-read-args'.
7188
7189 * replace.el (query-replace-read-from, query-replace-read-to)
7190 (query-replace-read-args): Rename arg `string' to `prompt'.
7191
7192 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
7193
7194 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
7195
7196 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
7197 uploading files.
7198 (ange-ftp-canonize-filename): Handle file names beginning with ~
7199 correctly.
7200
7201 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
7202
7203 * textmodes/fill.el (canonically-space-region)
7204 (fill-context-prefix, fill-french-nobreak-p)
7205 (fill-delete-newlines, fill-comment-paragraph)
7206 (justify-current-line): "?\ " -> "?\s".
7207
7208 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
7209
7210 * textmodes/fill.el (fill-nonuniform-paragraphs):
7211 Improve argument/docstring consistency.
7212
7213 2005-08-09 Richard M. Stallman <rms@gnu.org>
7214
7215 * textmodes/ispell.el (ispell-word): More fboundp checks.
7216
7217 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
7218 (find-file-noselect-1): Call it here, only if RAWFILE.
7219 (normal-mode): Always set some major mode.
7220 (save-some-buffers-action-alist): Change some explanation strings.
7221 (file-name-non-special): In the `quote' method, use unwind-protect.
7222
7223 2005-08-09 Magnus Henoch <mange@freemail.hu>
7224
7225 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
7226 (ispell-have-aspell-dictionaries): New variable.
7227 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
7228 (ispell-get-aspell-config-value): New function.
7229 (ispell-aspell-find-dictionary): New function.
7230 (ispell-aspell-add-aliases): New function.
7231 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
7232 appropriate. Don't look for ispell dictionaries if we use aspell.
7233 (ispell-menu-map): Don't build a submenu of dictionaries.
7234
7235 2005-08-09 Richard M. Stallman <rms@gnu.org>
7236
7237 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
7238 (sql-read-passwd): Use read-passwd.
7239
7240 * progmodes/idlw-toolbar.el (idlwave-toolbar)
7241 (idlwave-toolbar-is-possible): Add defvars.
7242
7243 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
7244 Avoid warnings.
7245
7246 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
7247 (idlwave-system-class-info, idlwave-executive-commands-alist):
7248 Use defvar.
7249
7250 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
7251
7252 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
7253 Avoid warnings.
7254
7255 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
7256 and content-type: headers.
7257
7258 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
7259
7260 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
7261 and rename some of them to be more self-explanatory.
7262
7263 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
7264
7265 * startup.el (command-line-1): Implement -scriptload.
7266
7267 * replace.el (occur-engine): Initial *Occur* output not undoable.
7268
7269 * menu-bar.el (menu-bar-file-menu): Rename some menu items
7270 and improve help strings.
7271
7272 * isearch.el (isearch-repeat): When changing direction,
7273 mark search successful.
7274
7275 * ediff-init.el: Use (featurep 'xemacs).
7276
7277 * comint.el (send-invisible): Identify buffer, if not selected.
7278
7279 * align.el: Delete autoload for c-guess-basic-syntax.
7280
7281 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
7282
7283 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
7284 Improve argument/docstring consistency. Doc fixes.
7285 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
7286 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
7287 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
7288 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
7289 (r2bv-organization, r2bv-pages, r2bv-primary-author)
7290 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
7291 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
7292 Defvar at compile time.
7293
7294 2005-08-09 Juri Linkov <juri@jurta.org>
7295
7296 * info.el: Replace `info' with upper-case `Info' where appropriate.
7297 (info-title-1, info-title-2, info-title-3, info-title-4)
7298 (info-menu-header): Move up face definitions.
7299 (info-menu-star): Rename from `info-menu-5'.
7300 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
7301 (Info-fontify-visited-nodes): Fix docstring.
7302 (Info-hide-note-references): Fix docstring.
7303 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
7304 menu items in the same way as on cross-references.
7305 (info-apropos): Fix sorting order and formatting to be like in the
7306 stand-alone Info browser. Display error messages for 1 sec.
7307 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
7308 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
7309 from the menu bar.
7310 (Info-insert-dir): Restore point after calling
7311 `insert-buffer-substring'.
7312
7313 2005-08-08 Richard M. Stallman <rms@gnu.org>
7314
7315 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
7316 (recompute-lucid-menubar): Add defvars.
7317
7318 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
7319
7320 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
7321
7322 * net/net-utils.el (run-dig): Rename from `dig'.
7323
7324 * play/gametree.el (gametree-mode): Use make-local-variable,
7325 not make-variable-buffer-local.
7326
7327 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
7328
7329 * ansi-color.el (ansi-color-make-extent)
7330 (ansi-color-set-extent-face): Use fboundp, not functionp.
7331
7332 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
7333 not make-variable-buffer-local.
7334
7335 * bookmark.el (Info-current-file): Add defvar.
7336 (bookmark-jump-noselect): Use with-no-warnings.
7337
7338 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
7339
7340 * ebuff-menu.el (Helper-return-blurb): Add defvar.
7341
7342 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
7343
7344 * find-file.el (ada-procedure-start-regexp)
7345 (ada-package-start-regexp): Add defvars.
7346
7347 * info.el (Info-insert-dir): Use insert-buffer-substring.
7348
7349 * xml.el (xml-att-def-re): Add defvar.
7350
7351 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
7352 calling convention.
7353
7354 * subr.el (while-no-input): Return t if there is input.
7355
7356 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
7357
7358 * cus-start.el (all): Add `overflow-newline-into-fringe'.
7359
7360 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
7361
7362 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
7363 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
7364
7365 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
7366
7367 * cmuscheme.el (scheme-start-file): Replace reference to
7368 `user-emacs-directory' by "~/.emacs.d/".
7369
7370 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
7371
7372 * info.el (Info-dir-remove-duplicates): Avoid case folding
7373 in loop; instead, keep downcased strings for comparison.
7374 Suggested by Helmut Eller.
7375
7376 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
7377
7378 Sync with Tramp 2.0.50.
7379
7380 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
7381 XEmacs case; not necessary anymore.
7382 (tramp-user-regexp): Allow "@" as part of user name.
7383 (tramp-handle-set-visited-file-modtime)
7384 (tramp-handle-insert-file-contents)
7385 (tramp-handle-write-region): No special handling for
7386 `last-coding-system-used, because this is done in
7387 `tramp-accept-process-output' now.
7388 (tramp-accept-process-output): New defun.
7389 (tramp-process-one-action, tramp-process-one-multi-action)
7390 (tramp-wait-for-regexp, tramp-wait-for-output)
7391 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
7392 Howells <dhowells@redhat.com>.
7393 (clear-visited-file-modtime): Defadvice removed. The check for
7394 unset buffer's modtime does not need to be based on
7395 `tramp-buffer-file-attributes'. Suggested by RMS.
7396 (tramp-message): Insert "\n" if not being at beginning of line.
7397 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
7398 sequence with same logic.
7399 (tramp-completion-handle-expand-file-name): Discard call of
7400 `tramp-drop-volume-letter'. It is not necessary, and there have
7401 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
7402 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
7403 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
7404 should always be visible.
7405 (tramp-handle-insert-directory, tramp-setup-complete)
7406 (tramp-set-process-query-on-exit-flag)
7407 (tramp-append-tramp-buffers): Pacify byte-compiler.
7408 (tramp-bug): Delete non-existing variables from list.
7409 Apply `tramp-load-report-modules' as pre-hook.
7410 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
7411 `shell-prompt-pattern' because of non-7bit characters.
7412 Reported by Sebastian Luque <sluque@mun.ca>.
7413 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
7414 (tramp-match-string-list): Remove function.
7415 (tramp-wait-for-regexp): Remove call of that function.
7416 Suggested by Kim F. Storm <storm@cua.dk>.
7417 (tramp-set-auto-save-file-modes): Use octal integer code #o600
7418 instead of octal character code ?\600. The latter resulted in a
7419 syntax error with XEmacs.
7420
7421 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
7422 XEmacs case; not necessary anymore.
7423 (tramp-smb-handle-write-region): No special handling for
7424 `last-coding-system-used, because this is done in
7425 `tramp-accept-process-output' now.
7426 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
7427
7428 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
7429
7430 * wid-edit.el (widget-choice-value-create):
7431 Unconditionally respect user choice. Set :explicit-choice back to nil
7432 when no longer needed.
7433 (widget-choice-action): Unconditionally respect user choice.
7434 Eliminate :explicit-choice-value.
7435
7436 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
7437
7438 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
7439 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
7440 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
7441 running new function `toggle-indicate-empty-lines'.
7442 Rename "Customize" item to "Customize fringe".
7443 Rename "Indicators" item to "Buffer boundaries" and change help echo.
7444 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
7445 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
7446 Delete "Empty lines only" item.
7447 (menu-bar-showhide-fringe-ind-customize): New function.
7448 (menu-bar-showhide-fringe-ind-mixed)
7449 (menu-bar-showhide-fringe-ind-box)
7450 (menu-bar-showhide-fringe-ind-right)
7451 (menu-bar-showhide-fringe-ind-left)
7452 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
7453 instead of `fringe-indicators'.
7454
7455 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
7456
7457 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
7458 Change the date of last update.
7459
7460 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
7461
7462 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
7463 (viper-exec-yank, viper-put-back): Don't display modification msg
7464 if in the minibuffer.
7465
7466 * viper-init.el (viper-replace-overlay-cursor-color)
7467 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
7468 Make variables frame local.
7469
7470 * viper-util.el (viper-append-filter-alist): Use append instead of
7471 nconc.
7472
7473 * viper.el (viper-vi-state-mode-list)
7474 (viper-emacs-state-mode-list): Move help-mode and
7475 completion-list-mode from the first list to the second.
7476 (viper-mode): Docstring.
7477 (viper-go-away, viper-non-hook-settings): Don't localize
7478 minor-mode-alist in newer Emacsen. Add advice to
7479 set-cursor-color. Don't bind "\C-c\\".
7480
7481 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
7482
7483 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
7484 (scheme-macro-expand-command): New user options.
7485 (scheme-trace-procedure, scheme-expand-current-form): New commands.
7486 (scheme-form-at-point, scheme-start-file)
7487 (scheme-interactively-start-process): New functions.
7488 (scheme-get-process): New function, extracted from `scheme-proc'.
7489 (run-scheme): Call `scheme-start-file' to get start file, and pass
7490 it to `make-comint'.
7491 (switch-to-scheme, scheme-proc):
7492 Call `scheme-interactively-start-process' if no Scheme buffer/process
7493 is available.
7494
7495 2005-08-06 Juri Linkov <juri@jurta.org>
7496
7497 * progmodes/compile.el (compilation-mode-font-lock-keywords):
7498 Use `compilation-text-face', `compilation-info-text-face' and
7499 `compilation-error-text-face' instead of `font-lock-keyword-face'.
7500 (compilation-error): New face.
7501 (compilation-error-file-name): Inherit from
7502 `compilation-error' instead of `font-lock-warning-face'.
7503 (compilation-warning-file-name): Inherit from
7504 `compilation-warning' instead of `font-lock-warning-face'.
7505 (compilation-info, compilation-error-file-name)
7506 (compilation-warning-file-name, compilation-info-file-name)
7507 (compilation-line-number, compilation-column-number): Doc fix.
7508 (compilation-error-text-face, compilation-warning-text-face)
7509 (compilation-info-text-face): New face variables.
7510 (compilation-line-face, compilation-column-face)
7511 (compilation-enter-directory-face)
7512 (compilation-leave-directory-face): Doc fix.
7513 (compilation-text-face): New function.
7514
7515 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
7516 instead of 1 to display binary file names as info file links.
7517 (grep-error-face): Use `compilation-error-face' instead of
7518 `font-lock-keyword-face'.
7519 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
7520 and `compilation-warning-text-face' instead of
7521 `font-lock-keyword-face'. Use `compilation-error-text-face'
7522 instead of `grep-error-face'.
7523
7524 2005-08-05 Kenichi Handa <handa@m17n.org>
7525
7526 * international/code-pages.el: Add autoload cookies for all coding
7527 systems.
7528
7529 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
7530
7531 * cus-start.el (all): Put undo.c where it alphabetically belongs.
7532
7533 2005-08-04 Juri Linkov <juri@jurta.org>
7534
7535 * progmodes/compile.el (compilation-mode-map):
7536 * progmodes/grep.el (grep-mode-map):
7537 Bind TAB to `compilation-next-error' and [backtab] to
7538 `compilation-previous-error'.
7539
7540 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
7541 matching line numbers, column numbers and their ranges with regexp
7542 matching only line numbers.
7543 (grep-context-face): New face variable.
7544 (grep-mode-font-lock-keywords): Use it.
7545
7546 * faces.el (read-face-name): Delete duplicate faces.
7547
7548 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
7549
7550 * thumbs.el (thumbs-find-image): Don't make variables
7551 automatically buffer local.
7552 (thumbs-current-tmp-filename, thumbs-current-image-filename)
7553 (thumbs-image-num): Make automatically buffer local.
7554 (thumbs-show-thumbs-list): Use `make-local-variable', not
7555 `make-variable-buffer-local'.
7556 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
7557
7558 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
7559 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
7560 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
7561 (bother, bye, canyou, chatlst, continue, deathlst, describe)
7562 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
7563 (feelings-about, foullst, found, hello, history, howareyoulst)
7564 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
7565 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
7566 (neglst, obj, object, owner, please, problems, qlist)
7567 (random-adjective, relation, remlst, repetitive-shortness)
7568 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
7569 (shortlst, something, sportslst, stallmanlst, states, subj)
7570 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
7571 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
7572 Defvar at compile time.
7573
7574 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
7575 not `make-variable-buffer-local'.
7576
7577 2005-08-02 Kim F. Storm <storm@cua.dk>
7578
7579 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
7580 rectangle overlay in selected window.
7581
7582 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
7583
7584 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
7585 instead of display group. Make `indicate-buffer-boundaries'
7586 customizable through Custom.
7587
7588 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
7589
7590 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
7591 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
7592 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
7593 (gdb-put-string): Fix typos in docstrings.
7594
7595 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
7596
7597 Update copyright notices of files in progmodes directory for
7598 release of Emacs 22.1.
7599
7600 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
7601
7602 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
7603 Don't barf if the GUD buffer has been killed.
7604
7605 2005-08-01 Kim F. Storm <storm@cua.dk>
7606
7607 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
7608
7609 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
7610
7611 * simple.el (next-error-follow-minor-mode):
7612 make-variable-buffer-local -> make-local-variable.
7613
7614 * emacs-lisp/cl-extra.el: Require CL also when compiling.
7615
7616 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
7617 (byte-compile-form-make-variable-buffer-local): New functions to warn
7618 about misuses of make-variable-buffer-local where make-local-variable
7619 was meant.
7620
7621 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
7622
7623 * bs.el (bs-attributes-list): Doc fix.
7624 (bs): Update url-link.
7625
7626 * desktop.el (desktop-save-buffer): Fix typos in docstring.
7627 (desktop-load-default): Simplify.
7628
7629 * ibuffer.el (ibuffer-columnize-and-insert-list)
7630 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
7631 (ibuffer-unmark-all, ibuffer-toggle-marks)
7632 (ibuffer-unmark-forward, ibuffer-unmark-backward)
7633 (ibuffer-compile-make-format-form, ibuffer-format-column)
7634 (ibuffer-current-buffers-with-marks)
7635 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
7636 (ibuffer): Doc fix.
7637 (ibuffer-mode): Fix typo in docstring.
7638 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
7639 with `define-obsolete-variable-alias'.
7640 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
7641
7642 2005-07-29 Kenichi Handa <handa@m17n.org>
7643
7644 * international/mule-cmds.el (select-message-coding-system):
7645 Be sure to use LF for end-of-line. If no coding system is decided,
7646 return iso-8859-1-unix.
7647
7648 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
7649
7650 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
7651 (ange-ftp-pending-error-line): New vars.
7652 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
7653 to handle the non-fatal no-route-to-host messages.
7654 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
7655
7656 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
7657
7658 * isearch.el (isearch-mode-map, isearch-other-meta-char)
7659 (isearch-quote-char, isearch-printing-char)
7660 (isearch-text-char-description): "?\ " -> "?\s".
7661 (isearch-lazy-highlight-cleanup)
7662 (isearch-lazy-highlight-initial-delay)
7663 (isearch-lazy-highlight-interval)
7664 (isearch-lazy-highlight-max-at-a-time)
7665 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
7666 Declare with define-obsolete-*-alias macros.
7667 (isearch-forward): Fix typo in docstring.
7668 (search-invisible, search-ring-yank-pointer)
7669 (regexp-search-ring-yank-pointer): Doc fixes.
7670
7671 * recentf.el (recentf-menu-append-commands-p): Declare with
7672 `define-obsolete-variable-alias'.
7673 (recentf-max-saved-items, recentf-menu-filter)
7674 (recentf-arrange-by-rule-subfilter): Doc fixes.
7675 (recentf-menu-append-commands-flag)
7676 (recentf-initialize-file-name-history, recentf-expand-file-name)
7677 (recentf-clear-data): Fix typos in docstrings.
7678
7679 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
7680
7681 * progmodes/gdb-ui.el: Smarten comments.
7682 (gdb-info-breakpoints-custom): Use nowarn when finding file.
7683
7684 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
7685
7686 * term/apollo.el (terminal-init-apollo): New function containing
7687 all former top level forms in the file.
7688 * term/bobcat.el (terminal-init-bobcat):
7689 * term/cygwin.el (terminal-init-cygwin):
7690 * term/iris-ansi.el (terminal-init-iris-ansi):
7691 * term/linux.el (terminal-init-linux):
7692 * term/news.el (terminal-init-news):
7693 * term/rxvt.el (terminal-init-rxvt):
7694 * term/sun.el (terminal-init-sun):
7695 * term/tvi970.el (terminal-init-tvi970):
7696 * term/vt100.el (terminal-init-vt100):
7697 * term/vt102.el (terminal-init-vt102):
7698 * term/vt125.el (terminal-init-vt125):
7699 * term/vt200.el (terminal-init-vt200):
7700 * term/vt201.el (terminal-init-vt201):
7701 * term/vt220.el (terminal-init-vt220):
7702 * term/vt240.el (terminal-init-vt240):
7703 * term/vt300.el (terminal-init-vt300):
7704 * term/vt320.el (terminal-init-vt320):
7705 * term/vt400.el (terminal-init-vt400):
7706 * term/vt420.el (terminal-init-vt420):
7707 * term/wyse50.el (terminal-init-wyse50):
7708 * term/xterm.el (terminal-init-xterm): Likewise.
7709
7710 * term/README: Describe the terminal-init-* functionality.
7711
7712 * startup.el (command-line): After loading the terminal initialization
7713 file call the corresponding terminal initialization function.
7714
7715 2005-07-27 Kenichi Handa <handa@m17n.org>
7716
7717 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
7718 negative.
7719
7720 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
7721 (ps-mule-composition-prologue): Fix for the case that
7722 RelativeCompose is false.
7723
7724 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
7725
7726 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
7727
7728 * descr-text.el (describe-char): Handle the case where the list of
7729 chars is displayed in a separate frame.
7730 Be a bit more discriminating when looking for the char.
7731
7732 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
7733
7734 * bookmark.el (bookmark-automatically-show-annotations)
7735 (bookmark-read-annotation-text-func): Doc fixes.
7736 (bookmark-save): Improve argument/docstring consistency.
7737 (bookmark-get-bookmark, bookmark-get-bookmark-record)
7738 (bookmark-alist-from-buffer)
7739 (bookmark-upgrade-file-format-from-0)
7740 (bookmark-grok-file-format-version)
7741 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
7742 (bookmark-read-annotation-mode)
7743 (bookmark-insert-current-bookmark, bookmark-jump)
7744 (bookmark-exit-hook): Fix typos in docstrings.
7745 (bookmark-exit-hooks): Define as obsolete alias.
7746 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
7747 not `bookmark-exit-hooks'. Fix docstring.
7748 (bookmark-bmenu-select): "?\ " -> "?\s".
7749
7750 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
7751
7752 * startup.el (command-line): Fix typo.
7753
7754 2005-07-24 Richard M. Stallman <rms@gnu.org>
7755
7756 * tooltip.el (tooltip-mode): Test emacs-basic-display,
7757 not emacs-quick-startup.
7758
7759 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
7760
7761 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
7762 (reb-next-match, reb-show-subexp): Use `with-selected-window'
7763 instead of `reb-with-current-window'.
7764 (reb-prev-match): Likewise. Also, don't move left if the search
7765 was unsuccessful.
7766 (reb-initialize-buffer): New function.
7767 (re-builder, reb-change-syntax): Use it.
7768
7769 * man.el (Man-goto-page): Make second argument NOERROR optional.
7770
7771 2005-07-23 Richard M. Stallman <rms@gnu.org>
7772
7773 * man.el (Man-bgproc-sentinel): Check here for failure to find
7774 any man page in the output, and report the error here.
7775 (Man-arguments): Make it permanent local.
7776 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
7777 (Man-mode): Pass t for NOERROR.
7778
7779 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
7780 (grep-mode-font-lock-keywords):
7781 Don't use compilation-...-face for messages that are not file names.
7782
7783 * progmodes/compile.el (compilation-mode-font-lock-keywords):
7784 Don't use compilation-...-face for messages that are not file names.
7785
7786 2005-07-22 Juri Linkov <juri@jurta.org>
7787
7788 * startup.el (normal-splash-screen): Update menu name.
7789
7790 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
7791
7792 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
7793
7794 * term/xterm.el: Load term/rxvt if the terminal is actually an
7795 rxvt terminal.
7796 (xterm-rxvt-set-background-mode): Remove, not used anymore.
7797
7798 * term/rxvt.el (function-key-map): Use substitute-key-definition
7799 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
7800
7801 * term/cygwin.el: New file.
7802
7803 2005-07-22 Kim F. Storm <storm@cua.dk>
7804
7805 * image-file.el (insert-image-file, image-file-yank-handler):
7806 Fix last change to maintain a (unique) yank-handler on yanked images.
7807
7808 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
7809
7810 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
7811 of the file size (as in "177B" for 177 bytes). This happens with
7812 "ls -lh" on FreeBSD.
7813
7814 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
7815
7816 * hilit-chg.el (highlight-changes-global-initial-state)
7817 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
7818 (hilit-chg-fixup, highlight-changes-mode):
7819 Fix typos in docstrings.
7820 (highlight-changes-global-modes, highlight-changes-rotate-faces):
7821 Doc fixes.
7822
7823 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
7824
7825 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
7826 mode function using `eval-after-load'.
7827
7828 2005-07-21 Kim F. Storm <storm@cua.dk>
7829
7830 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
7831 included when reporting an emacs crash, and tell about the DEBUG file.
7832
7833 * image-file.el (insert-image-file): Add yank-handler.
7834 (image-file-yank-handler): Yank handler to make unique copies of
7835 images when they are yanked into a buffer next to each other.
7836
7837 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
7838
7839 * comint.el (comint-use-prompt-regexp, comint-send-input)
7840 (comint-source-default, comint-extract-string)
7841 (comint-get-source, comint-word, comint-completion)
7842 (comint-source, comint-prompt-read-only, comint-update-fence):
7843 Fix typos in docstrings.
7844 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
7845 Declare with define-obsolete-*-alias macros.
7846 (comint-previous-matching-input-from-input)
7847 (comint-next-matching-input-from-input)
7848 (comint-previous-matching-input, comint-next-matching-input)
7849 (comint-forward-matching-input):
7850 Improve argument/docstring consistency.
7851
7852 * desktop.el (desktop-clear-preserve-buffers-regexp):
7853 Also preserve the *server* buffer.
7854
7855 * simple.el (clone-indirect-buffer): Doc fix.
7856 (fixup-whitespace, just-one-space)
7857 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
7858 (next-error, next-error-highlight)
7859 (next-error-highlight-no-select, next-error-last-buffer)
7860 (next-error-buffer-p, next-error-find-buffer, next-error)
7861 (previous-error, next-error-no-select, previous-error-no-select)
7862 (open-line, split-line, minibuffer-prompt-width, kill-new)
7863 (binary-overwrite-mode): Fix typos in docstrings.
7864 (set-fill-column): Fix typo in message.
7865
7866 * skeleton.el (skeleton-proxy-new): Doc fix.
7867
7868 * strokes.el (strokes-load-hook): Doc fix.
7869 (strokes-grid-resolution, strokes-get-grid-position)
7870 (strokes-renormalize-to-grid, strokes-read-stroke)
7871 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
7872 (strokes-global-map): Fix typos in docstrings.
7873 (strokes-help): Doc fix. Fix help message and pass it through
7874 `substitute-command-keys'.
7875
7876 * tempo.el (tempo-insert-prompt, tempo-interactive)
7877 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
7878 (tempo-insert-string-functions, tempo-local-tags)
7879 (tempo-define-template, tempo-insert-template)
7880 (tempo-insert-prompt-compat, tempo-is-user-element)
7881 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
7882 Fix typos in docstrings.
7883
7884 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
7885 (vcursor-key-bindings, vcursor-use-vcursor-map)
7886 (vcursor-find-window, vcursor-scroll-down)
7887 (vcursor-disable, vcursor-beginning-of-buffer)
7888 (vcursor-end-of-buffer): Fix typos in docstrings.
7889 (vcursor-relative-move, vcursor-get-char-count):
7890 Improve argument/docstring consistency.
7891
7892 * version.el: "?\ " -> "?\s".
7893
7894 * wid-edit.el (widget-default-create, widget-after-change)
7895 (widget-default-format-handler, widget-checklist-add-item)
7896 (widget-radio-add-item, widget-choose, widget-specify-secret)
7897 (widget-field-value-create, widget-field-value-get)
7898 (widget-editable-list-format-handler)
7899 (widget-editable-list-entry-create, widget-group-value-create)
7900 (widget-documentation-link-add)
7901 (widget-documentation-string-value-create): "?\ " -> "?\s".
7902 (widget-convert-text): Doc fix.
7903 (widget-narrow-to-field, widget-field-find)
7904 (widget-url-link-action, widget-emacs-library-link-action)
7905 (widget-color-notify): Fix typos in docstrings.
7906
7907 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
7908 (x-select-text, set-w32-system-coding-system)
7909 (w32-add-charset-info): Fix typos in docstrings.
7910
7911 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
7912 (cua-enable-cua-keys, cua-use-hyper-key)
7913 (cua-virtual-rectangle-edges): Fix typos in docstrings.
7914 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
7915
7916 * net/tramp.el (tramp-handle-load): Fix typo in error message.
7917
7918 * emacs-lisp/re-builder.el (regexp-builder): Declare with
7919 `defalias' instead of faking it.
7920
7921 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
7922 (eshell-ls-missing, eshell-ls-dired-initial-args)
7923 (eshell-ls-use-in-dired): Fix typos in docstrings.
7924
7925 2005-07-20 Kim F. Storm <storm@cua.dk>
7926
7927 * emulation/cua-base.el (cua-mode): Improve doc string.
7928
7929 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
7930
7931 * abbrev.el (expand-region-abbrevs): Doc fix.
7932 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
7933 Improve argument/docstring consistency.
7934
7935 * arc-mode.el (archive-get-descr, archive-alternate-display):
7936 Doc fixes.
7937 (archive-l-e): Improve argument/docstring consistency.
7938 (archive-tmpdir, archive-unixdate, archive-unixtime)
7939 (archive-chmod-entry): Fix typos in docstrings.
7940 (archive-unflag, archive-unflag-backwards)
7941 (archive-unmark-all-files): "?\ " -> "?\s".
7942
7943 * buff-menu.el (Buffer-menu-unmark): Doc fix.
7944 (Buffer-menu-not-modified, Buffer-menu-execute)
7945 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
7946 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
7947
7948 * composite.el (compose-string, encode-composition-rule)
7949 (compose-last-chars): Fix typos in docstrings.
7950
7951 * desktop.el (desktop-enable, desktop-basefilename):
7952 Declare with `define-obsolete-variable-alias'.
7953 (desktop-internal-v2s): Don't quote keywords.
7954 (desktop-clear): "?\ " -> "?\s".
7955
7956 * dired.el (dired-align-file, dired-flag-backup-files)
7957 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
7958 (dired-listing-switches, dired-ls-F-marks-symlinks)
7959 (dired-dwim-target, dired-load-hook, dired-mode-hook)
7960 (dired-directory, dired-faces, dired, dired-revert)
7961 (dired-mode, dired-summary, dired-view-file)
7962 (dired-copy-filename-as-kill, dired-delete-file)
7963 (dired-no-confirm, dired-unmark-all-marks)
7964 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
7965 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
7966 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
7967 Fix typos in message strings.
7968
7969 * dired-x.el (virtual-dired): Declare with `defalias'.
7970 (dired-mark-unmarked-files, dired-local-variables-file)
7971 (dired-omit-here-always): Doc fix.
7972 (dired-omit-mode, dired-find-subdir)
7973 (dired-enable-local-variables, dired-clean-up-buffers-too)
7974 (dired-extra-startup, dired-mark-extension, dired-jump)
7975 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
7976 (dired-smart-shell-command, dired-guess-shell-alist-user)
7977 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
7978 (dired-x-bind-find-file, dired-x-submit-report):
7979 Fix typos in docstrings.
7980 (dired-mark-unmarked-files): "?\ " -> "?\s".
7981
7982 * dirtrack.el (dirtrack-list): Fix typos in docstring.
7983
7984 * faces.el (describe-face): "?\ " -> "?\s".
7985 (read-all-face-attributes, read-face-font, modify-face)
7986 (face-attr-construct, italic): Fix typos in docstrings.
7987 (frame-update-face-colors): Declare with
7988 `define-obsolete-function-alias'.
7989
7990 * files.el (find-file-noselect, recode-file-name): Doc fixes.
7991 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
7992 (magic-mode-alist, buffer-file-numbers-unique)
7993 (write-file-functions, get-free-disk-space):
7994 Fix typos in docstrings.
7995 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
7996 (write-contents-hooks, write-file-hooks):
7997 Declare with `define-obsolete-variable-alias'.
7998
7999 * forms-d2.el (arch-rj): Fix typo in docstrings.
8000 (arch-tocol): Likewise. "?\ " -> "?\s".
8001
8002 * frame.el (set-frame-font, cursor-in-non-selected-windows):
8003 Fix typo in docstring.
8004 (set-screen-width, set-screen-height): Delete redundant info in
8005 doctrings.
8006 (new-frame, screen-height, screen-width): Declare with
8007 `define-obsolete-function-alias'.
8008 (delete-frame-hook, blink-cursor): Declare with
8009 `define-obsolete-variable-alias'.
8010
8011 * paths.el (prune-directory-list): Fix typos in docstring.
8012
8013 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
8014 (cvs-prefix-get): Fix typos in docstrings.
8015
8016 * ps-print.el (ps-extend-face-list, ps-extend-face)
8017 (ps-print-background-image): Fix typos in docstrings.
8018 (ps-default-fg, ps-default-bg): Doc fixes.
8019
8020 * s-region.el (s-region-bind): Doc fix.
8021 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
8022
8023 * textmodes/org.el (org-table-formula-substitute-names)
8024 (org-table-get-vertical-vector): Doc fixes.
8025 (org-table-recalculate): Remove unused argument to `message'.
8026
8027 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
8028
8029 * textmodes/org.el (org-table-column-names)
8030 (org-table-column-name-regexp)
8031 (org-table-named-field-locations): New variables.
8032 (org-archive-subtree): Protect `this-command' when calling
8033 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
8034 the kill buffer.
8035 (org-complete): Remove fixed-formula completion.
8036 (org-edit-formulas-map): New variable.
8037 (org-table-edit-formulas): New command.
8038 (org-finish-edit-formulas, org-abort-edit-formulas)
8039 (org-show-variable, org-table-get-vertical-vector): New functions.
8040 (org-table-maybe-eval-formula): Handle `:=' fields.
8041 (org-table-get-stored-formulas, org-table-store-formulas)
8042 (org-table-get-formula, org-table-modify-formulas)
8043 (org-table-replace-in-formulas): Handle named field formulas.
8044 (org-table-get-specials): Store locations of named fields.
8045
8046 2005-07-19 Juri Linkov <juri@jurta.org>
8047
8048 * progmodes/grep.el (grep-regexp-alist)
8049 (grep-mode-font-lock-keywords, grep-process-setup):
8050 Use default GNU grep match color "01;31m" instead of "01;41m".
8051 (grep-regexp-alist, grep-mode-font-lock-keywords):
8052 Use `\\[[0-9]*m' instead of `\\[00m'.
8053 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
8054 sgr_start where its handling is more important. Use the real
8055 length of sgr_start instead of constant 8.
8056 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
8057 specially. Delete all remaining escape sequences.
8058 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
8059 (grep-regexp-alist): Make hyperlink only for binary file name
8060 instead of the whole line.
8061 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
8062 (grep-mode): Add autoload.
8063
8064 * emacs-lisp/find-func.el (find-function-regexp):
8065 Add `define-compilation-mode'.
8066
8067 2005-07-19 Juri Linkov <juri@jurta.org>
8068
8069 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
8070 (compare-windows-sync-string-size, compare-windows-recenter)
8071 (compare-windows-highlight, compare-windows): Add version 22.1.
8072 (compare-windows) <defface>: Inherit from lazy-highlight instead
8073 of duplicating its default value.
8074
8075 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
8076 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
8077
8078 * descr-text.el (describe-char): Create link buttons for `charset'
8079 and `code point'. Add the current input method name with a link
8080 button to `to input' field. Print face names of display table
8081 characters in `The display table entry is displayed by' section
8082 instead of printing face-id in the `display' field.
8083 Guess hardcoded faces and create a link button for them.
8084 Skip empty fields when calculating max-width.
8085 Treat `widget-create' specially while inserting strings from the
8086 collected field list.
8087 (describe-char-after): Made obsolete in version 22.1, not 21.5.
8088
8089 * diff-mode.el (diff-file-header): Change foreground color from
8090 yellow to green on light backgrounds.
8091 (diff-context): Inherit from `shadow' only for color/grayscale
8092 with more than 88 colors.
8093 (diff-indicator-removed, diff-indicator-added)
8094 (diff-indicator-changed): New faces.
8095 (diff-font-lock-keywords): Use new faces. Regroup rules.
8096 Add "^---$" for `normal' diff format. Fontify `#' lines with
8097 font-lock-comment-delimiter-face and font-lock-comment-face.
8098 Add `#' to ^[^...] in the rule for `diff-context-face'.
8099
8100 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
8101 a button-like box. Inherit from `highlight' on low colors.
8102 (shadow): Use shades of gray only for color/grayscale with
8103 more than 88 colors. Use green for light backgrounds with
8104 8 colors, and yellow for dark backgrounds with 8 colors.
8105
8106 * font-lock.el (font-lock-regexp-grouping-backslash):
8107 Don't inherit from escape-glyph (use bold for all cases).
8108
8109 * info.el (info-xref-visited): Use light foreground color `violet'
8110 for dark backgrounds instead of dark color `magenta3'.
8111 (info-title-1): Use `yellow' color for dark backgrounds.
8112
8113 * isearch.el (isearch): Use not-too-dark magenta3 instead of
8114 too-light magenta2.
8115
8116 * replace.el (match): Use slightly more light RoyalBlue3 instead
8117 of dark RoyalBlue4.
8118
8119 * wid-edit.el (widget-inactive): Inherit from `shadow'.
8120
8121 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
8122
8123 * novice.el (disabled-command-hook): Declare it with
8124 `define-obsolete-variable-alias'.
8125
8126 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
8127 (desktop-buffer-misc-functions, desktop-buffer-handlers)
8128 (desktop-load-default): Add release to obsolescence info.
8129 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
8130 (desktop-append-buffer-args, desktop-read):
8131 Fix typos in docstrings.
8132 (desktop-kill): Fix typo in message.
8133 (desktop-save): Doc fix.
8134
8135 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
8136
8137 * viper-cmd.el (viper-escape-to-state): Bug fix.
8138 (viper-envelop-ESC-key): Change the definition of fast
8139 keysequence so it'll work with keyboard macros.
8140
8141 * ediff.el (ediff-patch-buffer): Change the docstring.
8142
8143 2005-07-19 Kenichi Handa <handa@m17n.org>
8144
8145 * international/mule-cmds.el (select-safe-coding-system): Try to
8146 use an auto-coding (if any) before anything else. If the found
8147 auto-coding is invalid, show a warning message.
8148
8149 * international/mule.el (find-auto-coding): New function created
8150 by modifying the body of set-auto-coding.
8151 (set-auto-coding): Use find-auto-coding to find a coding.
8152
8153 2005-07-18 Richard M. Stallman <rms@gnu.org>
8154
8155 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
8156 not isearch-mode-end-hook-error.
8157 (allout-before-change-protect): Fix error message.
8158
8159 2005-07-18 Juri Linkov <juri@jurta.org>
8160
8161 * allout.el (allout-mode):
8162 * calculator.el (calculator-copy):
8163 * custom.el (custom-known-themes):
8164 * dired.el (dired-desktop-buffer-misc-data)
8165 (dired-restore-desktop-buffer):
8166 * dired-x.el (dired-omit-marker-char):
8167 * files.el (basic-save-buffer):
8168 * font-core.el (font-lock-mode):
8169 * calendar/calendar.el (calendar-goto-hebrew-date)
8170 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
8171 (calendar-goto-persian-date):
8172 * language/ethio-util.el (ethio-sera-to-fidel-region):
8173 * textmodes/picture.el (picture-mode):
8174 Delete duplicate duplicate words.
8175
8176 2005-07-18 Juri Linkov <juri@jurta.org>
8177
8178 * isearch.el (isearch-mode-map): Remove key bindings for regexp
8179 chars * ? } |.
8180 (isearch-fallback): Don't call `isearch-process-search-char'.
8181 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
8182 (isearch-process-search-char): Call `isearch-fallback' for regexp
8183 chars * ? } |.
8184 (isearch-return-char): Make obsolete with `make-obsolete' instead
8185 of simply documenting it as obsolete in the docstring.
8186 (isearch-fallback): Refill docstring.
8187
8188 * international/isearch-x.el
8189 (isearch-process-search-multibyte-characters): Remove unneeded
8190 `concat'. Add intermediate values to `junk-hist' instead of
8191 `minibuffer-history'. Test the length of `str'.
8192
8193 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
8194
8195 * allout.el (allout-resolve-xref): Fix typos in error strings.
8196 (allout-before-change-protect): Remove unneeded `concat'.
8197
8198 * array.el (array-mode, array-reconfigure-rows)
8199 (untabify-backward): Fix typos in docstrings.
8200 (array-reconfigure-rows): Use `insert-buffer-substring', not
8201 `insert-buffer'.
8202
8203 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
8204 * progmodes/ada-mode.el (ada-make-body):
8205 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
8206
8207 * dired.el (dired-log):
8208 * tar-mode.el (tar-subfile-save-buffer):
8209 * play/zone.el (zone-pgm-stress-destress):
8210 Use `insert-buffer-substring', not `insert-buffer'.
8211
8212 2005-07-17 Simon Josefsson <jas@extundo.com>
8213
8214 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
8215
8216 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
8217
8218 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
8219 Add plain auth method.
8220 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
8221
8222 2005-07-17 Kim F. Storm <storm@cua.dk>
8223
8224 * ido.el (dired-other-window): Add ido property.
8225
8226 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
8227
8228 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
8229 Fix typo in docstring.
8230 (byte-compile-interactive-only-functions): Add `insert-buffer' and
8231 `insert-file-literally'.
8232
8233 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
8234 info and delete redundant message. Doc fix.
8235 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
8236 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
8237
8238 2005-07-16 Richard M. Stallman <rms@gnu.org>
8239
8240 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
8241 (byte-compile-and): Use byte-compile-and-recursion.
8242 (byte-compile-or-recursion): New function.
8243 (byte-compile-or): Use that.
8244 (byte-compile-if): Guard the else-clause too.
8245 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
8246
8247 * isearch.el (isearch-mode-end-hook-quit): New variable.
8248 (isearch-done): Bind it.
8249 (isearch-mode-end-hook): Doc fix.
8250
8251 * allout.el (allout-isearch-did-quit): Variable deleted.
8252 (allout-real-isearch-abort): Function name no longer used.
8253 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
8254 (allout-isearch-rectification): isearch-mode always exists.
8255 Don't set allout-isearch-did-quit.
8256 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
8257 allout-isearch-did-quit.
8258 (allout-enwrap-isearch): Just add the hook.
8259 (allout-isearch-abort): Function deleted.
8260 (allout-pre-command-business): Avoid warning.
8261
8262 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
8263 Correctly avoid warnings.
8264 (pascal-outline): Likewise.
8265
8266 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
8267
8268 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
8269
8270 * play/tetris.el (tetris-mode): Avoid warning.
8271
8272 * play/snake.el (snake-mode): Avoid warning.
8273
8274 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
8275 (gamegrid-set-display-table): Avoid warning.
8276 (gamegrid-set-timer): Likewise.
8277 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
8278 (gamegrid-add-score-with-update-game-score-1): Take FILE
8279 as argument.
8280 (gamegrid-add-score-with-update-game-score): Pass that argument.
8281 Rename have-shared-game-dir to gamegrid-shared-game-dir.
8282
8283 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
8284
8285 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
8286 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
8287
8288 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
8289 and insert-file.
8290
8291 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
8292 (sc-ask): Avoid warnings.
8293
8294 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
8295 (eshell-hist-initialize): Use that var the natural way.
8296
8297 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
8298
8299 * emacs-lisp/re-builder.el (reb-cook-regexp):
8300 Avoid warning calling lre-compile-string.
8301 (reb-color-display-p): Avoid warning.
8302
8303 * calculator.el (calculator-last-input): Guard uses
8304 of event-key and key-press-event-p.
8305 (event-key, key-press-event-p): Delete definitions.
8306
8307 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
8308 (find-gc-source-directory, find-gc-subrs-callers)
8309 (find-gc-noreturn-list, find-gc-source-files)
8310 (find-gc-subrs-called): Vars renamed and defvar'd.
8311
8312 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
8313 (checkdoc-overlay-put, checkdoc-delete-overlay)
8314 (checkdoc-overlay-start, checkdoc-overlay-end)
8315 (checkdoc-mode-line-update, checkdoc-char=):
8316 Define such that compiler knows they are defined.
8317 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
8318 (checkdoc-read-event): Delete. Use read-event directly.
8319
8320 * whitespace.el (whitespace-make-overlay)
8321 (whitespace-overlay-put, whitespace-delete-overlay)
8322 (whitespace-overlay-start, whitespace-overlay-end):
8323 Define such that compiler knows they are defined.
8324 (whitespace): Move conditional inside.
8325
8326 * tempo.el (tempo-insert-template): Suppress warning.
8327
8328 * ediff-diff.el (longlines-mode): Add defvar.
8329
8330 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
8331
8332 * server.el: Bind "C-x #" in a way that works even if C-x is
8333 redefined to a command key, not a prefix key.
8334
8335 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
8336
8337 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
8338 cl-make-type-test till execution time.
8339
8340 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
8341
8342 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
8343 arg ARG and use it.
8344
8345 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
8346
8347 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
8348
8349 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
8350
8351 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
8352 a defcustom with two :set or :type keywords.
8353
8354 2005-07-15 Richard M. Stallman <rms@gnu.org>
8355
8356 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
8357 Don't give ^M comment-end syntax.
8358
8359 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
8360
8361 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
8362 Don't consider gdbmi (gdb-mi.el has its own update functions).
8363 (gdb-var-delete): Make it work for gdbmi as well.
8364 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
8365
8366 * progmodes/gud.el (etags, sdb): Only require etags when needed.
8367 (gud-speedbar-menu-items): Correct logic for enabling items.
8368
8369 2005-07-15 Kim F. Storm <storm@cua.dk>
8370
8371 * ido.el: Fix commentary.
8372 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
8373 Use with-no-warnings around ffap-guesser.
8374 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
8375 Let bind minibuffer-completing-file-name to t.
8376
8377 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
8378
8379 * startup.el (site-run-file, keyboard-type): Doc fixes.
8380 (command-line): Check for "--basic-display" argument; also for
8381 "--quick", not "--bare-bones" (which was renamed).
8382 (fancy-splash-text): Add missing item "Getting New Versions".
8383 (normal-splash-screen): Fix typos and improve consistency with
8384 `fancy-splash-text'. Update copyright year.
8385
8386 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
8387 valid binding for `help-char'.
8388
8389 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
8390
8391 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
8392
8393 * term.el (term-mode): Disable cua-mode for term buffers.
8394
8395 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
8396
8397 * add-log.el (add-log-mailing-address, change-log-merge):
8398 Doc fixes.
8399 (change-log-get-method-definition): Fix typo in docstring.
8400
8401 2005-07-14 Kim F. Storm <storm@cua.dk>
8402
8403 * emulation/cua-base.el:
8404 (cua--pre-command-handler-1, cua--pre-command-handler)
8405 (cua--post-command-handler-1, cua--post-command-handler):
8406 Split in two. Check (buffer local) value of cua-mode.
8407 (cua-selection-mode): New command.
8408
8409 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
8410
8411 * custom.el (custom-initialize-safe-set)
8412 (custom-initialize-safe-default): Doc fixes.
8413
8414 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
8415 and simplify :init-value again.
8416
8417 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
8418 and simplify :init-value again. Delete autoload.
8419
8420 * startup.el (command-line): Use `custom-reevaluate-setting' again
8421 for tooltip-mode.
8422
8423 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
8424 a defcustom with two :initialize keywords.
8425
8426 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
8427
8428 * allout.el (my-mark-marker, allout-isearch-prior-pos)
8429 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
8430 (allout-post-command-business, allout-flag-region)
8431 (isearch-reenable-font-lock, allout-yank)
8432 (allout-insert-latex-header, allout-insert-latex-trailer)
8433 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
8434 (allout-latex-verb-quote): Fix typos in docstrings.
8435 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
8436 (allout-unprotected, allout-prefix-data):
8437 Improve argument/docstring consistency.
8438 (allout-chart-subtree): Fix argument spec.
8439 (allout-open-topic): Rename `use_sib_bullet' argument to
8440 `use-sib-bullet'. Doc fix.
8441
8442 * whitespace.el (whitespace-check-buffer-leading)
8443 (whitespace-check-buffer-trailing)
8444 (whitespace-check-buffer-indent)
8445 (whitespace-check-buffer-spacetab)
8446 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
8447 (whitespace-check-leading-whitespace)
8448 (whitespace-check-trailing-whitespace)
8449 (whitespace-check-spacetab-whitespace)
8450 (whitespace-check-indent-whitespace)
8451 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
8452 (whitespace-modes): Fix typos in docstrings.
8453 (defgroup, defcustom): Doc fixes.
8454
8455 * winner.el (winner-mode, winner-boring-buffers)
8456 (winner-pending-undo-ring): Doc fixes.
8457 (winner-ring): Remove unneeded `progn'.
8458 (winner-equal): `defsubst' it.
8459 (winner-redo): Fix message.
8460
8461 2005-07-13 Kim F. Storm <storm@cua.dk>
8462
8463 * simple.el (line-move-1): Always use vertical-motion to
8464 do the last (or only) line move to ensure some movement.
8465 Undo 2005-06-23 change--don't check for overlays.
8466
8467 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8468
8469 * term/mac-win.el (ccl-encode-mac-roman-font)
8470 (ccl-encode-mac-centraleurroman-font)
8471 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
8472 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
8473 Change charset-id boundary of dimension to ?\xef.
8474 (mac-char-fontspec-list): New constant.
8475 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
8476 argument. Nil uses itself as family in font-spec. Previous
8477 behavior for nil is now provided by non-nil non-string argument.
8478 All callers changed. Add font-specs for Mac fonts to
8479 "fontset-default" unless iso8859-1 fonts are installed.
8480
8481 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
8482
8483 * progmodes/sh-script.el (sh-get-indent-info): Only indent
8484 a continuation line if the \ is preceded by SPC or TAB.
8485 (sh-get-indent-info): Simplify.
8486 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
8487 Use with-current-buffer.
8488
8489 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
8490 when the matched text is empty.
8491
8492 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
8493
8494 * startup.el (command-line): Revert to previous handling of
8495 tooltip-mode. Explain in comment why the complexity is needed.
8496
8497 * tooltip.el (tooltip-mode): Revert to previous implementation of
8498 its defcustom.
8499
8500 * frame.el (blink-cursor-mode): Revert to previous implementation
8501 of its defcustom. Update comment.
8502
8503 2005-07-12 Lars Hansen <larsh@soem.dk>
8504
8505 * desktop.el: Update e-mail address.
8506
8507 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8508
8509 * term/mac-win.el (mac-services-mail-selection)
8510 (mac-services-mail-to): New functions.
8511 (mac-application-menu-map): Bind them.
8512
8513 2005-07-12 wulei <milton@wulei.net> (tiny change)
8514
8515 * progmodes/gdb-ui.el: Add note about buffering with Windows.
8516
8517 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
8518
8519 * custom.el (custom-reevaluate-setting): Doc fix.
8520
8521 2005-07-11 Jay Belanger <belanger@truman.edu>
8522
8523 * calc/calc.el (calc-embedded-announce-formula-alist)
8524 (calc-embedded-open-close-plain-alist)
8525 (calc-embedded-open-close-mode-alist): Add checks for additional
8526 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
8527
8528 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
8529
8530 * custom.el (custom-enable-theme): Don't add theme to
8531 `custom-enabled-themes' with `push' because there is no
8532 setf-method for `delq'.
8533
8534 2005-07-11 Richard M. Stallman <rms@gnu.org>
8535
8536 * custom.el (custom-declare-variable): Doc fix.
8537
8538 * dired-aux.el (dired-compare-directories): Remove "." and ".."
8539 from the alists.
8540
8541 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
8542 Do nothing if edebug-active.
8543
8544 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
8545 (edebug-display): Do it here instead.
8546
8547 2005-07-10 Richard M. Stallman <rms@gnu.org>
8548
8549 * cus-face.el (custom-theme-set-faces): Make it work.
8550 (custom-reset-faces): Doc fix.
8551 (custom-theme-reset-internal-face, custom-theme-face-value):
8552 Functions deleted.
8553
8554 * custom.el (custom-push-theme): Maintain list of the settings
8555 of a given theme in its theme-settings property.
8556 Maintain position of old settings in the theme-value
8557 or theme-face property.
8558 (custom-enabled-themes): New variable.
8559 (custom-theme-enabled-p): New function.
8560 (provide-theme): Update custom-enabled-themes.
8561 Disable and reenable the `user' theme.
8562 (require-theme): Doc fix.
8563 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
8564 (custom-theme-value, custom-theme-variable-value): Likewise.
8565 (custom-theme-reset-internal): Likewise.
8566 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
8567 (custom-enable-theme, custom-disable-theme): New functions.
8568 (custom-variable-theme-value, custom-face-theme-value): Likewise.
8569 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
8570 (custom-theme-reset-variables): Simplify.
8571 (deftheme, custom-declare-theme, custom-make-theme-feature):
8572 Definitions moved.
8573
8574 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
8575
8576 * longlines.el (longlines-show-region)
8577 (longlines-unshow-hard-newlines): Recognize hard newlines by
8578 non-nil hard property, instead of t.
8579
8580 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
8581
8582 * viper-cmd.el (viper--key-maps): New variable.
8583 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
8584 emulation-mode-map-alists.
8585 (viper-envelop-ESC-key): Use viper-subseq.
8586 (viper-search-forward/backward/next): Disable debug-on-error.
8587
8588 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
8589 (viper-ESC-key): New defcustoms.
8590
8591 * viper-macs.el (ex-map-read-args): Use viper-subseq.
8592
8593 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
8594 (viper-subseq): Copy of subseq from cl.el.
8595
8596 * viper.el (viper-go-away, viper-set-hooks): Use
8597 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
8598
8599 * viper-mous.el (viper-current-frame-saved): Use defvar.
8600
8601 * viper-init.el: Get rid of -face in face names.
8602
8603 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
8604 Make it work with longlines mode
8605
8606 * ediff-mult.el (ediff-meta-mode-hook): New variable.
8607
8608 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
8609
8610 * ediff-init.el: Get rid of -face in face names.
8611
8612 2005-07-10 Richard M. Stallman <rms@gnu.org>
8613
8614 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
8615 and with-timeout-unsuspend.
8616
8617 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
8618 and with-timeout-unsuspend.
8619
8620 * emacs-lisp/timer.el (with-timeout-timers): New variable.
8621 (with-timeout): Bind that variable to record timers.
8622 (with-timeout-suspend, with-timeout-unsuspend): New functions.
8623
8624 * emacs-lisp/debug.el (debug-help-follow): New function.
8625 (debugger-mode-map): Use that instead of help-follow.
8626 (debugger-setup-buffer): Use eval-buffer-list
8627 to handle eval-buffer frames.
8628
8629 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
8630
8631 * timezone.el (timezone-parse-date): Change first regexp
8632 so it will not mistakenly match dates with no time zone.
8633
8634 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
8635
8636 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
8637
8638 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
8639
8640 * custom.el (custom-initialize-safe-set)
8641 (custom-initialize-safe-default): New functions.
8642
8643 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
8644 and simplify :init-value.
8645
8646 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
8647 and simplify :init-value. Delete obsolete comment.
8648
8649 * startup.el (command-line): Use `custom-reevaluate-setting' to
8650 handle `tooltip-mode'. Delete obsolete comment.
8651
8652 * files.el (set-visited-file-name): Avoid calling
8653 `file-name-nondirectory' with a nil argument.
8654
8655 2005-07-09 Richard M. Stallman <rms@gnu.org>
8656
8657 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
8658 was called with nil for the buffer, handle the read position right.
8659 Handle read position for eval-region, too.
8660
8661 2005-07-09 Juri Linkov <juri@jurta.org>
8662
8663 * fringe.el (fringe-mode): Add period in docstring.
8664 (fringe-query-style): Build prompt depending on `all-frames' arg.
8665
8666 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
8667 to not create links to unrelated functions in the Help buffer.
8668
8669 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
8670 Doc fix.
8671
8672 * simple.el (next-error-hook): New variable.
8673 (next-error): Use it. Doc fix.
8674
8675 * textmodes/ispell.el (ispell-command-loop): Add current
8676 dictionary name and program name to mode-line-format.
8677 (ispell-region, ispell-process-line): Add current dictionary name
8678 and program name to messages.
8679
8680 2005-07-08 Jay Belanger <belanger@truman.edu>
8681
8682 * calc/calc.el (calc-embedded-announce-formula-alist)
8683 (calc-embedded-open-close-formula-alist)
8684 (calc-embedded-open-close-word-alist)
8685 (calc-embedded-open-close-plain-alist)
8686 (calc-embedded-open-close-new-formula-alist)
8687 (calc-embedded-open-close-mode-alist)
8688 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
8689 (calc-embedded-mode-hook): New variables.
8690
8691 * calc/calc-embed.el (calc-embedded-firsttime)
8692 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
8693 New variables.
8694 (calc-do-embedded): Use calc-embedded-firsttime,
8695 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
8696 determine whether or not to run hooks.
8697 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
8698 calc-embedded-firsttime-formula appropriately.
8699 Set calc-embedded delimiter variables according to mode.
8700
8701 2005-07-08 Richard M. Stallman <rms@gnu.org>
8702
8703 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
8704 Check for "emacs", etc., as entire symbol, not just as word.
8705 (checkdoc-file-comments-engine): Use regexp-quote on FN.
8706
8707 * files.el (set-visited-file-name): Report the error
8708 for "empty filename" earlier.
8709 (kill-some-buffers): Ignore buffers already dead.
8710
8711 * fringe.el (fringe-mode): Doc fix.
8712
8713 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
8714 Check for (featurep 'xemacs) and turn off warnings in what it guards.
8715 Use unwind-protect to ensure byte-compile-unresolved-functions
8716 is updated.
8717
8718 * whitespace.el (whitespace-buffer-leading-cleanup):
8719 Simplify w/ skip-chars-forward.
8720 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
8721
8722 * mail/rmail.el (rmail-only-expunge): Fix paren error.
8723 Unconditionally try to leave point at the same old place.
8724
8725 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
8726
8727 * comint.el (comint-postoutput-scroll-to-bottom)
8728 (comint-show-maximum-output): Take scroll-margin into consideration.
8729
8730 2005-07-08 Kim F. Storm <storm@cua.dk>
8731
8732 * ido.el (ido-use-filename-at-point): New choice `guess'.
8733 (ido-file-internal): Try ffap-guesser if selected.
8734
8735 * ido.el (ido-before-fallback-functions): New hook.
8736 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
8737 (ido-read-file-name): Run it.
8738
8739 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
8740
8741 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
8742 strings rather than a list of symbols to the completion function.
8743
8744 2005-07-07 Jay Belanger <belanger@truman.edu>
8745
8746 * calc/calc-units.el (math-apply-units): Change the places in
8747 which units are simplified.
8748
8749 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
8750
8751 * cus-edit.el (customize-option, customize-option-other-window):
8752 Make them handle aliases.
8753
8754 * custom.el (custom-variable-p): Make it recursively follow
8755 aliases. Mention that in the docstring.
8756
8757 2005-07-07 Richard M. Stallman <rms@gnu.org>
8758
8759 * cus-start.el (exec-path): Use `directory' instead of `file'.
8760 Fix tag for nil.
8761
8762 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
8763
8764 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
8765 when called non-interactively. Doc fix.
8766
8767 2005-07-07 Lute Kamstra <lute@gnu.org>
8768
8769 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
8770 new address as well.
8771
8772 2005-07-07 Kenichi Handa <handa@m17n.org>
8773
8774 * international/mule.el (make-coding-system):
8775 Describe `ascii-incompatible' property in the docstring.
8776 (set-file-name-coding-system): Signal an error if coding-system is
8777 ascii-incompatible.
8778 (set-keyboard-coding-system): Likewise.
8779
8780 * international/mule-cmds.el (set-default-coding-systems):
8781 Don't set default-file-name-coding-system and
8782 default-keyboard-coding-system if coding-system is ASCII-incompatible.
8783
8784 * international/utf-16.el: Declare that all UTF-16-based coding
8785 systems are ASCII-incompatible.
8786
8787 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
8788
8789 * progmodes/gud.el: Require font-lock for displaying errors.
8790 Used by gdb-ui.el.
8791
8792 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
8793
8794 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
8795 values for the pattern lists which are `read'able but not
8796 `append'able (like symbols).
8797
8798 2005-07-06 Richard M. Stallman <rms@gnu.org>
8799
8800 * progmodes/flymake.el (flymake-float-time): Instead of
8801 with-no-warnings, test for xemacs.
8802 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
8803 to avoid warning.
8804
8805 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
8806
8807 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
8808
8809 2005-07-05 Lute Kamstra <lute@gnu.org>
8810
8811 * battery.el: Add support for Darwin (with much debugging help
8812 from Samuel Lauber <sam124@operamail.com>).
8813 (battery-status-function, battery-echo-area-format)
8814 (battery-mode-line-format): Add support for pmset on Darwin.
8815 (battery-load-low, battery-load-critical): New user options.
8816 (battery-pmset): New function.
8817
8818 2005-07-05 Lute Kamstra <lute@gnu.org>
8819
8820 Update FSF's address in GPL notices.
8821
8822 * textmodes/page-ext.el: Update FSF's address.
8823
8824 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8825
8826 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
8827 filling from using prefix when filling a single-line docstring.
8828
8829 * progmodes/flymake.el: Remove useless eval-when-compile.
8830
8831 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
8832
8833 2005-07-04 Richard M. Stallman <rms@gnu.org>
8834
8835 * textmodes/org.el (org-file-apps-defaults-gnu):
8836 Rename from org-file-apps-defaults-linux.
8837 (org-default-apps): Don't test system-type for `linux'.
8838 (org-file-apps): Doc fix.
8839
8840 2005-07-04 David Ponce <david@dponce.com>
8841
8842 * tree-widget.el: Improve header Commentary section.
8843 (tree-widget) [defgroup]
8844 (tree-widget-image-enable, tree-widget-themes-directory)
8845 (tree-widget-theme, tree-widget-image-properties-emacs)
8846 (tree-widget-image-properties-xemacs, tree-widget-create-image)
8847 (tree-widget-image-formats, tree-widget-control)
8848 (tree-widget-empty-control, tree-widget-leaf-control
8849 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
8850 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
8851 (tree-widget-keep, tree-widget-after-toggle-functions)
8852 (tree-widget-open-node, tree-widget-close-node): Doc fix.
8853 (tree-widget-open-control, tree-widget-close-control): Fix doc and
8854 :help-echo message.
8855 (tree-widget-set-theme): Doc fix. Use `string-equal'.
8856 (tree-widget-image-properties): Doc fix. Clearer implementation.
8857 (tree-widget--cursors): New constant.
8858 (tree-widget-lookup-image): New function split from
8859 `tree-widget-find-image'. Clearer implementation.
8860 (tree-widget-find-image): Use it.
8861 (tree-widget-button-keymap): Use `set-keymap-parent'.
8862 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
8863 Define the sub-widgets here.
8864 (tree-widget-node): Check that :node is not a tree-widget.
8865 (tree-widget-get-super, tree-widget-open-control)
8866 (tree-widget-close-control, tree-widget-empty-control)
8867 (tree-widget-leaf-control, tree-widget-guide)
8868 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
8869 (tree-widget-no-handle, tree-widget-value-delete)
8870 (tree-widget-map): Remove.
8871 (tree-widget-children-value-save): Doc fix. Simplified.
8872 (tree-widget-value-create): Update according to previous changes.
8873
8874 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
8875
8876 * textmodes/org.el: Leading space replaced by TABS.
8877 (org-recalc-marks, org-table-rotate-recalc-marks)
8878 (org-table-get-specials): Treat "^" and "_" marks.
8879 (org-table-justify-field-maybe): Optional argument NEW.
8880 (org-table-eval-formula): Parsing of the format simplified.
8881 New modes C,I. Honor the %= parameter in the current table.
8882 Avoid unnecessary re-align by using the NEW argument to
8883 `org-table-justify-field-maybe'.
8884 (org-calc-default-modes): Default for date-format mimicks org-mode.
8885 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
8886
8887 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
8888
8889 * cus-face.el (custom-theme-set-faces): Make it handle face
8890 aliases whose alias declarations are pre- or autoloaded.
8891
8892 2005-07-04 Juri Linkov <juri@jurta.org>
8893
8894 * faces.el (read-face-name): Put the code for getting a face name
8895 from the buffer before adding the faces from the `face' property.
8896 Use `completing-read-multiple' instead of `completing-read'.
8897 Require `crm'. Add default value and post-process the returned
8898 list of faces.
8899
8900 * emacs-lisp/crm.el (crm-find-current-element)
8901 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
8902
8903 * emacs-lisp/lisp-mode.el (eval-defun-1):
8904 * emacs-lisp/edebug.el (edebug-eval-defun):
8905 Remove unnecessary quotes.
8906
8907 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
8908
8909 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
8910 (prolog-indent-level): Fix typo in docstring.
8911
8912 * info.el (Info-history, Info-history-forward)
8913 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
8914
8915 * add-log.el (add-change-log-entry):
8916 * comint.el (comint-dynamic-list-input-ring)
8917 (comint-dynamic-list-completions):
8918 * dabbrev.el (dabbrev-expand):
8919 * delim-col.el (delimit-columns-rectangle-line):
8920 * diff-mode.el (diff-context->unified, diff-reverse-direction)
8921 (diff-unified->context):
8922 * ediff-init.el (ediff-abbrev-jobname):
8923 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
8924 (ediff-replace-session-activity-marker-in-meta-buffer):
8925 * info.el (Info-summary):
8926 * lpr.el (printify-region):
8927 * printing.el (pr-create-interface):
8928 * ps-print.el (ps-print-quote):
8929 * ses.el (ses-column-widths, ses-print-cell)
8930 (ses-adjust-print-width, ses-center):
8931 * shell.el (shell-file-name-quote-list):
8932 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
8933 (strokes-fill-current-buffer-with-whitespace)
8934 (strokes-xpm-for-stroke, strokes-list-strokes)
8935 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
8936 * term.el (term-dynamic-list-input-ring)
8937 (term-dynamic-list-completions):
8938 * calc/calc.el (math-format-stack-value):
8939 * emacs-lisp/edebug.el (edebug-display-freq-count):
8940 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
8941 (delphi-new-comment-line):
8942 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
8943 * progmodes/executable.el (executable-set-magic):
8944 * progmodes/python.el (inferior-python-mode):
8945 * progmodes/scheme.el (scheme-mode-syntax-table):
8946 * progmodes/sh-script.el (sh-maybe-here-document):
8947 * progmodes/sql.el (sql-copy-column):
8948 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
8949 * textmodes/bibtex.el (bibtex-mode):
8950 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
8951 (sgml-auto-attributes):
8952 * textmodes/table.el (table-insert, table-shorten-cell)
8953 (table--generate-source-scan-lines, table-delete-row)
8954 (*table--cell-delete-char, table--spacify-frame)
8955 (table--horizontally-shift-above-and-below)
8956 (table--cell-insert-char, table--cell-blank-str)
8957 (table--fill-region-strictly):
8958 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
8959 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
8960
8961 * add-log.el (change-log):
8962 * apropos.el (apropos):
8963 * comint.el (comint-completion, comint-source):
8964 * dabbrev.el (dabbrev):
8965 * delim-col.el (columns):
8966 * diff-mode.el (diff-mode):
8967 * ediff.el (ediff):
8968 * ediff-diff.el (ediff-diff):
8969 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
8970 * ediff-mult.el (ediff-mult):
8971 * ediff-ptch.el (ediff-ptch):
8972 * ediff-wind.el (ediff-window):
8973 * facemenu.el (facemenu):
8974 * indent.el (indent):
8975 * info.el (info):
8976 * jka-cmpr-hook.el (compression, jka-compr):
8977 * lpr.el (lpr):
8978 * outline.el (outlines):
8979 * pcmpl-cvs.el (pcmpl-cvs):
8980 * pcmpl-rpm.el (pcmpl-rpm):
8981 * printing.el (printing):
8982 * ps-print.el (postscript, ps-print, ps-print-horizontal)
8983 (ps-print-vertical, ps-print-headers, ps-print-font)
8984 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
8985 (ps-print-background, ps-print-printer, ps-print-page)
8986 (ps-print-miscellany):
8987 * ses.el (ses):
8988 * shell.el (shell, shell-directories, shell-faces):
8989 * startup.el (initialization):
8990 * strokes.el (strokes):
8991 * term.el (term):
8992 * uniquify.el (uniquify):
8993 * w32-vars.el (w32):
8994 * calc/calc.el (calc):
8995 * emacs-lisp/bytecomp.el (bytecomp):
8996 * emacs-lisp/cl-indent.el (lisp-indent):
8997 * emacs-lisp/edebug.el (edebug):
8998 * emacs-lisp/elp.el (elp):
8999 * emacs-lisp/testcover.el (testcover):
9000 * emacs-lisp/trace.el (trace):
9001 * emulation/viper-ex.el (viper-ex):
9002 * emulation/viper-mous.el (viper-mouse):
9003 * mail/mailalias.el (mailalias):
9004 * mail/supercite.el (supercite, supercite-frames)
9005 (supercite-attr, supercite-cite, supercite-hooks):
9006 * net/rcompile.el (remote-compile):
9007 * net/rlogin.el (rlogin):
9008 * obsolete/ooutline.el (outlines):
9009 * progmodes/delphi.el (delphi):
9010 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
9011 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
9012 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
9013 (ebnf-optimization):
9014 * progmodes/etags.el (etags):
9015 * progmodes/executable.el (executable):
9016 * progmodes/idlwave.el (idlwave):
9017 * progmodes/pascal.el (pascal):
9018 * progmodes/prolog.el (prolog):
9019 * progmodes/python.el (python):
9020 * progmodes/scheme.el (scheme):
9021 * progmodes/sh-script.el (sh, sh-script):
9022 * progmodes/sql.el (SQL):
9023 * progmodes/tcl.el (tcl):
9024 * textmodes/bibtex.el (bibtex, bibtex-autokey):
9025 * textmodes/enriched.el (enriched):
9026 * textmodes/makeinfo.el (makeinfo):
9027 * textmodes/sgml-mode.el (sgml):
9028 * textmodes/table.el (table-hooks):
9029 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
9030 * textmodes/texinfo.el (texinfo):
9031 * textmodes/two-column.el (two-column):
9032 Finish `defgroup' description with period.
9033
9034 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
9035 * eshell/esh-var.el (eshell-var):
9036 * progmodes/vhdl-mode.el (vhdl-testbench):
9037 * textmodes/org.el (org): Fix typos in docstrings.
9038
9039 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
9040 consistency.
9041
9042 * progmodes/flymake.el (flymake-find-file): Remove.
9043 (flymake-float-time): Use `with-no-warnings'.
9044 (flymake-check-start-time, flymake-check-was-interrupted)
9045 (flymake-err-info, flymake-is-running, flymake-last-change-time)
9046 (flymake-new-err-info): `defvar' at compile time.
9047
9048 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
9049
9050 * replace.el (occur-hook): Doc fix.
9051 (occur-1): Don't call `occur-hook' if there are no matches.
9052
9053 2005-07-03 Richard M. Stallman <rms@gnu.org>
9054
9055 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
9056 global-map, save the same map.
9057 (global-map): Don't alter it at top level.
9058 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
9059 Then alter it here instead.
9060 (tpu-edt-off): Set global-map to the saved one.
9061
9062 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
9063 All references simplified.
9064 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
9065 (zmacs-regions): Add defvar.
9066 (repeat-complex-command-map): Everything about that deleted.
9067
9068 * textmodes/artist.el (artist-key-is-drawing)
9069 (artist-key-endpoint1, artist-key-poly-point-list)
9070 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
9071 (artist-key-compl-table, artist-rb-save-data)
9072 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
9073 Don't put them in eval-when-compile.
9074 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
9075
9076 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
9077 Use with-no-warnings.
9078
9079 * net/browse-url.el (dos-windows-version): Add defvar.
9080
9081 * mail/supercite.el (filladapt-prefix-table): Add defvar.
9082
9083 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
9084 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
9085 (rmail-new-summary-line-count): Rename from new-summary-line-count.
9086 Add defvar.
9087 (rmail-summary-beginning-of-message): Use with-no-warnings.
9088 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
9089
9090 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
9091 Use with-no-warnings.
9092
9093 * emulation/vi.el (vi-mark-region): Use c-mark-function.
9094 (c-mark-function): Add point-moving-unit property.
9095 (vi-goto-line): Use with-no-warnings.
9096
9097 * emulation/edt.el (edt-last-copied-word): Add defvar.
9098 (zmacs-region-stays): Likewise.
9099 (edt-mark-section-wisely): Use c-mark-function for C.
9100 Use makr-defun for Fortran.
9101 (time-string): defvar deleted.
9102 (edt-display-the-time): Don't set time-string.
9103
9104 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
9105
9106 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
9107 Don't warn when name is not constant
9108 or for defining the group `emacs'.
9109
9110 * tooltip.el (gud-tooltip-mode): Add defvar.
9111
9112 * startup.el (default-frame-background-mode): Add defvar.
9113
9114 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
9115
9116 * info.el (tool-bar-map): Add defvar.
9117
9118 * dired.el (dnd-protocol-alist): Add defvar.
9119
9120 * dired-aux.el (dired-query): Display question with answer, when
9121 the user answers.
9122
9123 * custom.el (custom-add-option): Doc fix.
9124
9125 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
9126
9127 2005-07-03 Eli Zaretskii <eliz@gnu.org>
9128
9129 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
9130 bogus name from the last change.
9131
9132 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
9133
9134 * custom.el (custom-declare-variable): Fix typos in comment.
9135 (custom-known-themes): Doc fix.
9136 (custom-theme-directory): New defcustom.
9137 (require-theme): Make it check `custom-theme-directory'.
9138
9139 * cus-theme.el (custom-new-theme-mode): New function.
9140 (custom-theme-name, custom-theme-variables, custom-theme-faces)
9141 (custom-theme-description): Add compiler defvars.
9142 (customize-create-theme): Add doc to the "*New Custom Theme*"
9143 buffer. Use `custom-new-theme-mode'.
9144 (custom-theme-write): Put the created buffer in emacs-lisp-mode
9145 and save it to the `custom-theme-directory'. Make this the
9146 default directory of the buffer.
9147
9148 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
9149
9150 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
9151 Fix unbalanced parentheses.
9152
9153 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
9154
9155 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
9156 into flymake-mode and delegate to flymake-mode.
9157
9158 * find-file.el (ff-which-function-are-we-in): Clean up.
9159
9160 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
9161
9162 * replace.el (occur-rename-buffer): Fix docstring.
9163
9164 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
9165 (edt-last-copied-word, edt-learn-macro-count)
9166 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
9167 (edt-rect-start-point, edt-user-global-map, rect-start-point)
9168 (time-string, zmacs-region-stays):
9169 * emulation/edt-mapper.el (edt-save-function-key-map)
9170 (EDT-key-name): `defvar' to silence the byte-compiler.
9171
9172 2005-07-02 Martin Rudalics <rudalics@gmx.at> (tiny change)
9173
9174 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
9175 font-lock-regexp-backslash. Doc fix.
9176 (font-lock-regexp-backslash-grouping-construct): Rename from
9177 font-lock-regexp-backslash-construct. Doc fix.
9178 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
9179 grouping constructs.
9180
9181 2005-07-02 Eli Zaretskii <eliz@gnu.org>
9182
9183 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
9184 updating all the prerequisites.
9185
9186 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
9187
9188 * textmodes/org.el (org-agenda-start-on-weekday)
9189 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
9190 (org-agenda-use-time-grid, org-archive-location)
9191 (org-allow-space-in-links, org-usenet-links-prefer-google)
9192 (org-enable-table-editor, org-export-default-language)
9193 (org-export-html-show-new-buffer, org-fill-paragraph)
9194 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
9195 (org-goto-quit, org-occur, org-eval-in-calendar)
9196 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
9197 (org-agenda-diary-entry, org-remember-help)
9198 (org-table-convert-region, org-at-table-p)
9199 (org-table-move-row-down, org-table-move-row-up)
9200 (org-table-copy-region, org-table-toggle-vline-visibility)
9201 (org-table-get-stored-formulas, org-table-get-specials)
9202 (org-recalc-commands, org-table-eval-formula)
9203 (org-table-formula-substitute-names, orgtbl-make-binding)
9204 (org-format-org-table-html, org-format-table-table-html)
9205 (org-format-table-table-html-using-table-generate-source)
9206 (org-customize): Fix typos in docstrings.
9207 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
9208 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
9209 (org-back-to-heading): Doc fixes.
9210 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
9211 (org-agenda-change-all-lines, org-get-header):
9212 Improve argument/docstring consistency.
9213 (orgtbl-error): Fix error message.
9214
9215 * progmodes/flymake.el (flymake-find-possible-master-files)
9216 (flymake-master-file-compare, flymake-get-line-err-count)
9217 (flymake-highlight-line, flymake-gui-warnings-enabled):
9218 Fix typos in docstrings.
9219 (flymake-parse-line, flymake-get-project-include-dirs-function)
9220 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
9221 Doc fixes.
9222 (flymake-get-project-include-dirs-function)
9223 (flymake-make-err-menu-data):
9224 Improve argument/docstring consistency.
9225
9226 2005-07-01 Lute Kamstra <lute@gnu.org>
9227
9228 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
9229 Catch errors with ignore-errors. Use temporary buffer.
9230 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
9231
9232 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
9233 background color faces.
9234 (facemenu-set-foreground, facemenu-set-background):
9235 Use facemenu-set-face-from-menu.
9236 (facemenu-set-face-from-menu): Treat face names that start with
9237 "fg:" or "bg:" as special.
9238 (facemenu-add-new-color): Don't create faces. Simplify.
9239
9240 2005-06-30 Richard M. Stallman <rms@gnu.org>
9241
9242 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
9243 (crm-find-current-element): Likewise.
9244
9245 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
9246
9247 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
9248
9249 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
9250
9251 * arc-mode.el (archive-extract): Make it work as a mouse binding.
9252 (archive-mouse-extract): Make it an obsolete alias.
9253 (archive-mode-map): Don't use archive-mouse-extract any more.
9254 (archive-mode, archive-extract): write-contents-hooks ->
9255 write-contents-functions.
9256 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
9257 first arg.
9258 (archive-rename-entry): Update the call.
9259 (archive-zip-summarize): Remove unused var `method'.
9260 (archive-lzh-summarize): Remove unused var `creator'.
9261
9262 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
9263 dedicated frame upon exit.
9264
9265 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
9266 (archive-zip-extract, archive-zip-expunge)
9267 (archive-zip-update, archive-zip-update-case): Use executable-find.
9268 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
9269 Use restore-buffer-modified-p.
9270 (archive-extract, archive-add-new-member, archive-write-file-member):
9271 Use with-current-buffer.
9272 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
9273
9274 2005-06-30 Andreas Schwab <schwab@suse.de>
9275
9276 * progmodes/gud.el (gud-filter): Remove unneeded progn.
9277
9278 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
9279
9280 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
9281
9282 2005-06-30 Juri Linkov <juri@jurta.org>
9283
9284 * faces.el (vertical-border): Inherit from mode-line-inactive
9285 only on tty.
9286
9287 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
9288
9289 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
9290 example, -NLINES in the `occur' docstring).
9291
9292 * replace.el (occur-1): When no matches are found, do not set the
9293 `buffer-read-only' and modified flags for the occur buffer,
9294 because it is deleted.
9295
9296 * emulation/cua-base.el (cua-check-pending-input)
9297 (cua-repeat-replace-region, cua-mode, cua-debug)
9298 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
9299 Fix typos in docstrings.
9300
9301 * emulation/cua-gmrk.el (cua-toggle-global-mark)
9302 (cua-cut-region-to-global-mark)
9303 (cua--cut-rectangle-to-global-mark):
9304 Remove period from end of messages.
9305
9306 * emulation/cua-rect.el (cua-do-rectangle-padding):
9307 Remove period from end of messages.
9308 (cua--rectangle-seq-format): Fix typo in docstring.
9309 (cua-sequence-rectangle, cua-fill-char-rectangle):
9310 Improve argument/docstring consistency.
9311
9312 2005-06-29 Juri Linkov <juri@jurta.org>
9313
9314 * faces.el (default-frame-background-mode): New internal variable.
9315 (frame-set-background-mode): Use it.
9316
9317 * startup.el (normal-top-level): Set default-frame-background-mode
9318 instead of frame-background-mode. Before setting it, test for its
9319 nil value. Remove tests for frame-background-mode and frame
9320 parameter `reverse'. Add test for "unspecified-fg".
9321
9322 * term/xterm.el (xterm-rxvt-set-background-mode):
9323 * term/rxvt.el (rxvt-set-background-mode):
9324 Set default-frame-background-mode instead of frame-background-mode.
9325
9326 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
9327
9328 * simple.el (set-variable): Warn about obsolete user variables.
9329
9330 * imenu.el (imenu--completion-buffer):
9331 * mouse.el (mouse-buffer-menu-alist):
9332 * msb.el (msb-invisible-buffer-p):
9333 * calendar/diary-lib.el (diary-header-line-format):
9334 * emacs-lisp/pp.el (pp-buffer):
9335 * progmodes/cperl-mode.el (cperl-do-auto-fill):
9336 * textmodes/picture.el (picture-replace-match):
9337 Change space constants followed by a sexp to "?\s ".
9338
9339 * play/decipher.el (decipher-loop-with-breaks):
9340 * textmodes/texinfo.el (texinfo-insert-@item): Change space
9341 constants "protected" from end of line by a comment to "?\s".
9342
9343 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
9344
9345 * font-lock.el (save-buffer-state): Use `declare'.
9346
9347 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
9348 reset the syntax-table to cperl-mode-syntax-table.
9349 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
9350 "foo_print_bar" is not matched as a reserved keyword.
9351
9352 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
9353
9354 * textmodes/org.el (orgtbl-setup): New function, for delayed
9355 setup for the orgtbl commands.
9356 (org-calc-default-modes): New option.
9357 (orgtbl-make-binding): Use `defun' to get better help display.
9358 (org-diary): Call `org-compile-prefix-format'.
9359 (org-table-formula-substitute-names): New function.
9360 (org-agenda-day-view, org-agenda-week-view): New commands.
9361 (org-agenda-toggle-week-view): Command removed.
9362 (org-tbl-menu): Split off from org-org-menu.
9363 (org-mode): Move removal of outline-mode menus to here.
9364 (org-table-formula-debug): New option.
9365 (org-table-insert-row): Keep first field if just "#" or "*".
9366 (org-mode): Paragraph regexps fixed.
9367 (org-table-recalculate-regexp): New constant.
9368 (org-table-justify-field-maybe): Avoid replace if not necessary.
9369 (org-copy-special, org-cut-special): Use `call-interactively'.
9370 (org-table-copy-region): Take region from `interactive' call.
9371 (org-trim): Return string even if no match.
9372 (org-formula): New face.
9373 (org-set-font-lock-defaults): No longer highlight "FIXME".
9374 But highlight formula-related fields in table.
9375 (org-table-p): Use regexp, not fontification.
9376 (org-table-align): Handle white space at end of line.
9377 (org-table-formula-evaluate-inline): New option.
9378 (org-mode): Auto-wrapping in comment lines turned off.
9379 (org-table-copy-down): Evaluate only in copied field, not in
9380 destination.
9381 (org-table-current-formula): Variable removed.
9382 (org-table-store-formulas, org-table-get-stored-formulas)
9383 (org-table-modify-formulas, org-table-replace-in-formulas)
9384 (org-table-maybe-eval-formula): New functions.
9385 (org-table-get-formula): Modify to use stored formulas.
9386 (org-table-insert-column, org-table-delete-column)
9387 (org-table-move-column): Call `org-table-modify-formulas'.
9388 (org-complete): Add completion for keyword formulas.
9389 (orgtbl-mode): Pull orgtbl-mode-map to start of
9390 minor-mode-map-alist.
9391
9392 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
9393
9394 * progmodes/python.el (python-check): Require `compile' before
9395 modifying its variables.
9396
9397 * newcomment.el (comment-indent-default): Don't get fooled by an early
9398 end of buffer.
9399
9400 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9401
9402 * ps-print.el (ps-print-version): Fix version number.
9403
9404 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
9405
9406 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
9407
9408 2005-06-28 Richard M. Stallman <rms@gnu.org>
9409
9410 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
9411 (flyspell-local-mouse-map): Declaration deleted.
9412 (flyspell-mouse-map): Bind only mouse-2.
9413 (flyspell-mode-map): Don't test flyspell-use-local-map.
9414 (flyspell-overlay-keymap-property-name): Var deleted.
9415 (flyspell-mode-on): Don't make local bindings for
9416 flyspell-mouse-map and flyspell-mode-map.
9417 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
9418
9419 * textmodes/ispell.el (ispell-word): Do not ignore short words.
9420
9421 * progmodes/compile.el (compilation-next-error-function):
9422 Don't switch buffers; operate on the current buffer.
9423
9424 * progmodes/compile.el (compilation-error-file-name)
9425 (compilation-warning-file-name, compilation-info-file-name)
9426 (compilation-line-number, compilation-column-number): New faces.
9427 (compilation-error-face, compilation-warning-face)
9428 (compilation-info-face, compilation-line-face)
9429 (compilation-column-face): Use them.
9430
9431 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
9432
9433 * comint.el (comint-password-prompt-regexp): Accept ", try again".
9434
9435 * bindings.el (global-map): Bind insertchar and its variants.
9436
9437 2005-06-27 Richard M. Stallman <rms@gnu.org>
9438
9439 * textmodes/artist.el (artist-text-overwrite)
9440 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
9441
9442 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9443
9444 * ps-print.el: It was not working the page selection for printing.
9445 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
9446 (ps-print-version): New version 6.6.7.
9447 (ps-end-sheet): New fun.
9448 (ps-header-sheet, ps-end-job): Call it.
9449
9450 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
9451
9452 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
9453
9454 2005-06-27 Lute Kamstra <lute@gnu.org>
9455
9456 * facemenu.el (facemenu-unlisted-faces): Add foreground and
9457 background color faces.
9458 (facemenu-get-face): Delete function.
9459 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
9460 (facemenu-add-new-color): Make second argument mandatory.
9461 Create the appropriate face and return it. Simplify.
9462 (facemenu-set-foreground, facemenu-set-background): Don't check if
9463 color is defined. Use return value of facemenu-add-new-color.
9464
9465 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
9466
9467 * progmodes/gud.el (gud-filter): Add missing argument to
9468 with-selected-window.
9469
9470 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
9471
9472 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
9473 a :require to the defcustom.
9474
9475 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
9476 defcustoms corresponding to minor modes.
9477
9478 2005-06-26 David Ponce <david@dponce.com>
9479
9480 * recentf.el: Require tree-widget instead of wid-edit.
9481 (recentf-filename-handler): Fix widget :type.
9482 (recentf-cancel-dialog, recentf-open-more-files)
9483 (recentf-open-files-action): Doc fix.
9484 (recentf-dialog-goto-first): New function.
9485 (recentf-dialog-mode-map): Set parent keymap first.
9486 (recentf-dialog-mode): Define with define-derived-mode.
9487 Don't display continuation lines in dialogs.
9488 (recentf-edit-list): Rename from recentf-edit-selected-items.
9489 (recentf-edit-list-select): Rename from recentf-edit-list-action.
9490 Simplify.
9491 (recentf-edit-list-validate): New function.
9492 (recentf-edit-list): Update accordingly.
9493 (recentf-open-files-item-shift): Remove.
9494 (recentf-open-files-item): Convert menu elements into tree and
9495 link widgets. Don't create the widgets.
9496 (recentf-open-files): Update accordingly.
9497 (recentf-save-list): Untabify.
9498
9499 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
9500
9501 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
9502 (keep-lines): Add INTERACTIVE arg. Never delete lines only
9503 partially contained in the active region. Do not take active
9504 region into account when called from Lisp, unless INTERACTIVE arg
9505 is non-nil. Use `forward-line' instead of `beginning-of-line' to
9506 avoid trouble with fields. Make marker point nowhere when no
9507 longer used. Always return nil. Doc fix.
9508 (flush-lines): Add INTERACTIVE arg. Do not take active region
9509 into account when called from Lisp, unless INTERACTIVE arg is
9510 non-nil. Use `forward-line' instead of `beginning-of-line' to
9511 avoid trouble with fields. Make marker point nowhere when no
9512 longer used. Always return nil. Doc fix.
9513 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
9514 interchangeable. Do not take active region into account when
9515 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
9516 message in echo area when called from Lisp, unless INTERACTIVE arg
9517 is non-nil. Avoid saying "1 occurrences". Do not use markers.
9518 Return the number of matches. Doc fix.
9519 (occur): Doc fix.
9520 (perform-replace): Make comment follow double space convention for
9521 the sake of `outline-minor-mode'.
9522
9523 * faces.el (facep): Doc fix.
9524
9525 2005-06-25 Richard M. Stallman <rms@gnu.org>
9526
9527 * facemenu.el (facemenu-enable-faces-p): New function.
9528 (facemenu-background-menu, facemenu-foreground-menu)
9529 (facemenu-face-menu): Add menu-enable property.
9530
9531 * jka-compr.el (jka-compr-insert-file-contents):
9532 Special handling if cannot find the uncompression program.
9533
9534 * cus-face.el (custom-face-attributes): Add autoload.
9535
9536 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
9537 Bind comment-indent-function locally.
9538
9539 * window.el (save-selected-window): Use save-current-buffer.
9540
9541 * subr.el (with-selected-window): Use save-current-buffer.
9542
9543 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
9544 and with-current-buffer.
9545
9546 2005-06-24 Richard M. Stallman <rms@gnu.org>
9547
9548 * simple.el (line-move-1): Fix previous change.
9549
9550 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
9551
9552 * replace.el (occur-1): Set `buffer-read-only' and the
9553 buffer-modified flag before running `occur-hook' to protect
9554 against unintentional buffer switches that can lead to data loss.
9555
9556 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
9557
9558 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
9559 (gud-gdb-marker-filter): Use font-lock-warning-face for any
9560 initial error.
9561
9562 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
9563 after fresh input.
9564 (gdb-var-create-handler): Put name of expression in quotes.
9565
9566 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
9567
9568 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
9569 elements of RING in order, and without bogus nil elements.
9570
9571 2005-06-23 Richard M. Stallman <rms@gnu.org>
9572
9573 * simple.el (set-variable): Args renamed; doc fix.
9574 (line-move-1): When there are overlays around, use vertical-motion.
9575
9576 * faces.el (escape-glyph): Use brown against light background.
9577 (nobreak-space): Rename from no-break-space.
9578 Fix previous change.
9579
9580 * dired-aux.el (dired-do-copy): Fix arg prompt.
9581
9582 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
9583
9584 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
9585
9586 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
9587 rather than "Distributor".
9588
9589 2005-06-23 Lute Kamstra <lute@gnu.org>
9590
9591 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
9592 (debug-on-entry): Use it. New interactive declaration that uses
9593 function-called-at-point.
9594
9595 2005-06-23 Kim F. Storm <storm@cua.dk>
9596
9597 * subr.el (save-match-data): Add comment about using evaporate arg
9598 to set-match-data.
9599
9600 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
9601
9602 * cus-edit.el (customize-face)
9603 (customize-face-other-window): Handle face aliases.
9604
9605 * faces.el (face-documentation, set-face-attribute)
9606 (face-spec-set): Handle face aliases.
9607
9608 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
9609
9610 * help-mode.el (help-make-xrefs): If a symbol representing a face
9611 name is not followed by the word "face", it could still be a
9612 function or variable name, so don't bypass other checks.
9613
9614 2005-06-22 Juri Linkov <juri@jurta.org>
9615
9616 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
9617 Replace aliased functions with calls where second arg `inherit' is t.
9618
9619 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
9620
9621 * progmodes/gdb-ui.el (gdb-error): New variable.
9622 (gdb-error): New function.
9623 (gdb-annotation-rules): Act on error-begin and error annotations.
9624 (gdb-concat-output): Use font-lock-warning-face for errors.
9625
9626 2005-06-22 Miles Bader <miles@gnu.org>
9627
9628 * bindings.el (propertized-buffer-identification): Use renamed
9629 `Buffer-menu-buffer' face.
9630
9631 * faces.el (vertical-border): Rename from `vertical-divider'.
9632 (escape-glyph): Change dark-background color back to `cyan'.
9633
9634 2005-06-21 Juri Linkov <juri@jurta.org>
9635
9636 * faces.el (face-user-default-spec): Try getting `customized-face'
9637 prior to `saved-face'.
9638 (frame-background-mode): Refill docstring.
9639
9640 * emacs-lisp/lisp-mode.el (eval-defun-1):
9641 * emacs-lisp/edebug.el (edebug-eval-defun):
9642 Set `saved-face' temporarily to nil before calling form.
9643 Set `customized-face' to the new spec after that.
9644
9645 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
9646
9647 * subr.el (1value, lambda, key-substitution-in-progress):
9648 Doc fixes.
9649
9650 * autoinsert.el (auto-insert-alist):
9651 * ses.el (ses-call-printer):
9652 * subr.el (noreturn):
9653 * emacs-lisp/lisp.el (check-parens):
9654 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
9655 * net/browse-url.el (browse-url-mosaic):
9656 * progmodes/cc-defs.el (c-safe-scan-lists):
9657 * progmodes/ebnf-abn.el (ebnf-abn-lex):
9658 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
9659 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
9660 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
9661 * progmodes/ebnf-iso.el (ebnf-iso-lex):
9662 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
9663
9664 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
9665
9666 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
9667
9668 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
9669
9670 * calendar/appt.el (appt-make-list): Activate the package, if
9671 not already active (for backwards compatibility).
9672
9673 2005-06-20 Kim F. Storm <storm@cua.dk>
9674
9675 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
9676
9677 2005-06-20 Miles Bader <miles@gnu.org>
9678
9679 * faces.el (vertical-divider): New face.
9680
9681 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
9682
9683 * simple.el (kill-whole-line): Doc fix.
9684 (next-error-buffer-p, next-error-find-buffer)
9685 (clone-indirect-buffer): Fix typos in docstrings.
9686 (comment-line-break-function): Doc fix: don't say variable
9687 is automatically buffer-local (it isn't).
9688
9689 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
9690
9691 * net/tramp-ftp.el (top):
9692 * net/tramp-smb.el (top):
9693 * net/tramp-util.el (top):
9694 * net/tramp-uu.el (top):
9695 * net/tramp-vc.el (top):
9696 * net/tramp.el (top): Revert copyright years back to original
9697 ones. Tramp has a life outside GNU Emacs.
9698
9699 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
9700
9701 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
9702
9703 2005-06-18 Juri Linkov <juri@jurta.org>
9704
9705 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
9706 end of first regexp to limit the match to the position between
9707 line number and source line with same separator character as used
9708 between file name and line number. In the second regexp limit
9709 mouse-face area to file name and line number by adding new group
9710 for them and referring it in HYPERLINK arg.
9711 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
9712 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
9713 previous line where grep markers may be already removed.
9714
9715 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
9716
9717 * progmodes/ps-mode.el: Update version and maintainer's email address.
9718
9719 2005-06-18 Steve Youngs <steve@xemacs.org>
9720
9721 * net/browse-url.el (browse-url-browser-function)
9722 (browse-url-default-browser): Add firefox.
9723 (browse-url-firefox-program, browse-url-firefox-arguments)
9724 (browse-url-firefox-startup-arguments)
9725 (browse-url-firefox-new-window-is-tab): New defcustoms.
9726 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
9727
9728 2005-06-17 Richard M. Stallman <rms@gnu.org>
9729
9730 * startup.el (command-line): Warn if specified user name has
9731 no home directory.
9732
9733 * term.el (term-get-old-input, term-input-filter, term-input-sender)
9734 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
9735
9736 * longlines.el (longlines-mode, longlines-show-hard-newlines):
9737 Doc fixes.
9738
9739 * faces.el (underline): Try bold if terminal doesn't support underline.
9740
9741 * mail/sendmail.el (mail-setup-with-from): New variable.
9742 (mail-insert-from-field): New function.
9743 (sendmail-send-it): Call it.
9744 (mail-setup): Optionally call it here.
9745
9746 * term/linux.el: Call tty-no-underline.
9747
9748 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
9749
9750 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
9751
9752 2005-06-17 Miles Bader <miles@gnu.org>
9753
9754 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
9755 (ediff-current-diff-C, ediff-current-diff-Ancestor)
9756 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
9757 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
9758 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
9759 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
9760 Remove "-face" suffix from face names.
9761 (ediff-current-diff-face-A, ediff-current-diff-face-B)
9762 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
9763 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
9764 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
9765 (ediff-even-diff-face-A, ediff-even-diff-face-B)
9766 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
9767 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
9768 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
9769 New backward-compatibility aliases for renamed faces.
9770 (ediff-current-diff-face-A, ediff-current-diff-face-B)
9771 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
9772 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
9773 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
9774 (ediff-even-diff-face-A, ediff-even-diff-face-B)
9775 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
9776 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
9777 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
9778 Use renamed ediff faces.
9779
9780 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
9781 Remove "-face" suffix from face names.
9782 (eshell-test-ok-face, eshell-test-failed-face):
9783 New backward-compatibility aliases for renamed faces.
9784 (eshell-run-test): Use renamed eshell-test faces.
9785
9786 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
9787 face name.
9788 (eshell-prompt-face): New backward-compatibility alias for renamed
9789 face.
9790 (eshell-emit-prompt): Use renamed eshell-prompt face.
9791
9792 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
9793 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
9794 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
9795 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
9796 Remove "-face" suffix from face names.
9797 (eshell-ls-directory-face, eshell-ls-symlink-face)
9798 (eshell-ls-executable-face, eshell-ls-readonly-face)
9799 (eshell-ls-unreadable-face, eshell-ls-special-face)
9800 (eshell-ls-missing-face, eshell-ls-archive-face)
9801 (eshell-ls-backup-face, eshell-ls-product-face)
9802 (eshell-ls-clutter-face):
9803 New backward-compatibility aliases for renamed faces.
9804 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
9805
9806 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
9807 Remove "-face" suffix from face name.
9808 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
9809 instead of literal face.
9810
9811 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
9812
9813 * emacs-lisp/warnings.el (display-warning, lwarn)
9814 (warning-minimum-log-level): Doc fixes.
9815 (warning-minimum-level, warning-minimum-log-level):
9816 Add :debug to :type choices.
9817
9818 * progmodes/ada-mode.el (ada-format-paramlist)
9819 (ada-get-indent-case, ada-check-matching-start)
9820 (ada-check-defun-name, ada-goto-matching-decl-start)
9821 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
9822 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
9823 (ada-make-subprogram-body): Follow error conventions.
9824 (ada-case-exception-file, ada-indent-comment-as-code)
9825 (ada-indent-handle-comment-special, ada-indent-renames)
9826 (ada-indent-return, ada-search-directories-internal)
9827 (ada-tab-policy, ada-case-exception-substring)
9828 (ada-other-file-alist, ada-matching-start-re)
9829 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
9830 (ada-imenu-generic-expression, ada-compile-goto-error)
9831 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
9832 (ada-popup-menu, ada-add-extensions, ada-mode)
9833 (ada-region-selected, ada-create-case-exception)
9834 (ada-create-case-exception-substring, ada-after-keyword-p)
9835 (ada-activate-keys-for-case, ada-adjust-case-region)
9836 (ada-adjust-case-buffer, ada-format-paramlist)
9837 (ada-scan-paramlist, ada-insert-paramlist)
9838 (ada-indent-newline-indent)
9839 (ada-indent-newline-indent-conditional)
9840 (ada-justified-indent-current, ada-goto-previous-word)
9841 (ada-indent-current, ada-get-indent-open-paren)
9842 (ada-get-indent-paramlist, ada-get-indent-end)
9843 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
9844 (ada-get-indent-block-start, ada-get-indent-subprog)
9845 (ada-get-indent-noindent, ada-get-indent-label)
9846 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
9847 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
9848 (ada-goto-stmt-end, ada-goto-next-word)
9849 (ada-check-matching-start, ada-check-defun-name)
9850 (ada-goto-matching-decl-start, ada-goto-matching-start)
9851 (ada-goto-matching-end, ada-search-ignore-string-comment)
9852 (ada-in-decl-p, ada-looking-at-semi-or)
9853 (ada-looking-at-semi-private, ada-in-paramlist-p)
9854 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
9855 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
9856 (ada-next-procedure, ada-previous-procedure, ada-next-package)
9857 (ada-previous-package, ada-create-menu)
9858 (ada-fill-comment-paragraph-justify)
9859 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
9860 (ada-other-file-name, ada-last-which-function-line)
9861 (ada-last-which-function-subprog, ada-which-function)
9862 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
9863 (ada-gen-treat-proc, ada-check-emacs-version)
9864 (ada-continuation-indent, ada-align-region-separate):
9865 Fix typos in docstrings.
9866 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
9867
9868 2005-06-16 Lute Kamstra <lute@gnu.org>
9869
9870 * simple.el (fundamental-mode): Run after-change-major-mode-hook
9871 conditionally.
9872
9873 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
9874
9875 * comint.el (comint-replace-by-expanded-filename)
9876 (comint-prompt-regexp, comint-delimiter-argument-list)
9877 (comint-preinput-scroll-to-bottom):
9878 * info.el (Info-hide-cookies-node):
9879 * ls-lisp.el (ls-lisp-classify):
9880 * find-file.el (ff-search-directories, ff-special-constructs)
9881 (ff-find-other-file):
9882 * font-lock.el (font-lock-keywords):
9883 * shell.el (shell-prompt-pattern)
9884 (shell-dynamic-complete-functions, shell-mode)
9885 (shell-delimiter-argument-list):
9886 * term.el (term-replace-by-expanded-filename)
9887 (term-prompt-regexp, term-delimiter-argument-list):
9888 * woman.el (woman-ignore, woman0-if):
9889 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
9890 * emacs-lisp/elint.el (elint-init-env):
9891 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
9892 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
9893 * language/ethio-util.el (ethio-tilde-escape)
9894 (ethio-use-three-dot-question):
9895 * net/zone-mode.el (zone-mode-load-time-setup):
9896 * progmodes/cc-align.el (c-lineup-argcont):
9897 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
9898 * progmodes/cperl-mode.el (cperl-set-style-back):
9899 * progmodes/inf-lisp.el (inferior-lisp-prompt):
9900 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
9901 Fix spellings in docstrings.
9902
9903 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
9904 * progmodes/modula2.el (m2-for): Fix spellings.
9905
9906 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
9907
9908 * simple.el (undo-more): Don't use `format' on `error' arguments.
9909 Improve argument/docstring consistency.
9910 (pending-undo-list): Doc fix.
9911
9912 * smerge-mode.el (smerge-ensure-match):
9913 * emulation/vip.el (vip-ex):
9914 * net/zone-mode.el (zone-mode-update-serial):
9915 * progmodes/idlwave.el (idlwave-complete):
9916 * progmodes/vhdl-mode.el (vhdl-visit-file)
9917 (vhdl-compose-wire-components):
9918 Don't use `format' on `error' arguments.
9919
9920 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
9921 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
9922 (tooltip-help-tips): Fix typos in docstrings.
9923
9924 2005-06-16 David Ponce <david@dponce.com>
9925
9926 * tree-widget.el (tree-widget-value-create): Simplify last change.
9927
9928 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
9929
9930 * ido.el (ido-incomplete-regexp): New variable.
9931 (ido-set-matches-1): Handle invalid-regexp error and set
9932 ido-incomplete-regexp.
9933 (ido-incomplete-regexp): New face.
9934 (ido-completions): Use it.
9935 (ido-complete, ido-exit-minibuffer, ido-completions):
9936 Handle incomplete regexps.
9937 (ido-completions): Add check for complete match when entering a regexp.
9938
9939 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
9940
9941 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
9942
9943 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9944
9945 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
9946 by field delimiters.
9947
9948 2005-06-15 David Ponce <david@dponce.com>
9949
9950 * tree-widget.el: eval-and-compile inlined functions so they will
9951 be available at run-time too.
9952 (tree-widget-super-format-handler)
9953 (tree-widget-format-handler): Remove.
9954 (tree-widget-value-create): Handle the :indent property.
9955
9956 2005-06-15 Miles Bader <miles@gnu.org>
9957
9958 * progmodes/which-func.el (which-func): Only inherit
9959 `font-lock-function-name-face' when that makes sense against the
9960 default mode-line face, otherwise set the face color explicitly.
9961
9962 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
9963 faces instead of (non-existent) variables.
9964
9965 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
9966
9967 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
9968 (iswitchb-get-matched-buffers): Likewise. Simplify.
9969
9970 2005-06-14 Miles Bader <miles@gnu.org>
9971
9972 * progmodes/ld-script.el (ld-script-location-counter):
9973 Remove "-face" suffix from face name.
9974 (ld-script-location-counter-face):
9975 New backward-compatibility alias for renamed face.
9976 (ld-script-location-counter-face): Use renamed face.
9977
9978 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
9979 (cperl-hash): Remove "-face" suffix from face names.
9980 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
9981 New backward-compatibility aliases for renamed faces.
9982 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
9983 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
9984
9985 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
9986 name.
9987 (which-func-face): New backward-compatibility alias for renamed face.
9988 (which-func-format): Use renamed which-func face.
9989
9990 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
9991 (vhdl-function, vhdl-directive, vhdl-reserved-word)
9992 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
9993 names.
9994 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
9995 (vhdl-speedbar-configuration, vhdl-speedbar-package)
9996 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
9997 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
9998 (vhdl-speedbar-architecture-selected)
9999 (vhdl-speedbar-configuration-selected)
10000 (vhdl-speedbar-package-selected)
10001 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
10002 names.
10003 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
10004 Use renamed faces.
10005 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
10006 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
10007 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
10008 Use renamed faces.
10009 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
10010 names.
10011 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
10012 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
10013 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
10014 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
10015 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
10016 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
10017
10018 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
10019 face name.
10020 (sh-heredoc-face): New backward-compatibility alias for renamed face.
10021 (sh-heredoc-face): Use renamed sh-heredoc face.
10022
10023 * progmodes/idlw-help.el (idlwave-help-link):
10024 Remove "-face" suffix from face name.
10025 (idlwave-help-link-face):
10026 New backward-compatibility alias for renamed face.
10027 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
10028
10029 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
10030 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
10031 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
10032 New backward-compatibility aliases for renamed faces.
10033 (idlwave-shell-disabled-breakpoint-face)
10034 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
10035
10036 * progmodes/flymake.el (flymake-errline, flymake-warnline):
10037 Remove "-face" suffix from face names.
10038 (flymake-errline-face, flymake-warnline-face):
10039 New backward-compatibility aliases for renamed faces.
10040 (flymake-highlight-line): Use renamed flymake faces.
10041
10042 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
10043 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
10044 (ebrowse-member-class, ebrowse-progress):
10045 Remove "-face" suffix from face names.
10046 (ebrowse-tree-mark-face, ebrowse-root-class-face)
10047 (ebrowse-file-name-face, ebrowse-default-face)
10048 (ebrowse-member-attribute-face, ebrowse-member-class-face)
10049 (ebrowse-progress-face):
10050 New backward-compatibility aliases for renamed faces.
10051 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
10052 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
10053 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
10054 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
10055
10056 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
10057 antlr-syntax)
10058 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
10059 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
10060 names.
10061 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
10062 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
10063 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
10064 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
10065 backward-compatibility aliases for renamed faces.
10066 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
10067 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
10068 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
10069 remove "font-lock-". Use renamed antlr-mode faces.
10070 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
10071 literal face-names with face variable references.
10072
10073 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
10074 face name.
10075 (Buffer-menu-buffer-face): New backward-compatibility alias for
10076 renamed face.
10077 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
10078
10079 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
10080
10081 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
10082 Eliminate "-face" suffix.
10083 (makefile-targets): Inherit from font-lock-function-name-face and
10084 eliminate "-face" suffix.
10085 (makefile-shell): Remove attributes and eliminate "-face" suffix.
10086 (makefile-*-font-lock-keywords): Append makefile-targets in rule
10087 actions, instead of prepending, to make it less visible.
10088 (makefile-previous-dependency, makefile-match-dependency):
10089 Don't match a target on a continuation line.
10090
10091 * files.el (auto-mode-alist): Put Makefile in gmake mode.
10092
10093 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
10094
10095 * progmodes/gdb-ui.el (menu): Re-order menu items.
10096 (gdb-tooltip-print): Respect tooltip-use-echo-area.
10097
10098 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
10099 Define in tooltip.el.
10100 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
10101 (gud-tooltip-tips): Respect tooltip-use-echo-area and
10102 gud-tooltip-echo-area.
10103
10104 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
10105 backward compatibility and make obsolete.
10106 (tooltip-help-tips): Use tooltip-use-echo-area.
10107 (tooltip-show-help-function): Rename to...
10108 (tooltip-show-help): ...this, because it is a function.
10109 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
10110
10111 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
10112
10113 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
10114 (edebug-print-length, edebug-print-level, edebug-print-circle)
10115 (edebug-modify-breakpoint, edebug-eval-last-sexp)
10116 (edebug-eval-print-last-sexp): Doc fixes.
10117
10118 2005-06-14 Kim F. Storm <storm@cua.dk>
10119
10120 * ido.el (ido-mode): Make a new keymap every time we enable ido,
10121 as the coverage buffer/file/both may change.
10122
10123 2005-06-14 Lute Kamstra <lute@gnu.org>
10124
10125 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
10126 and run-mode-hooks. Simplify.
10127
10128 * mail/rmailedit.el (rmail-edit-mode):
10129 * progmodes/octave-inf.el (inferior-octave-mode):
10130 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
10131
10132 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
10133 and run-mode-hooks.
10134 (recentf-edit-list, recentf-open-files): Don't call
10135 kill-all-local-variables directly.
10136
10137 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
10138
10139 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
10140
10141 * emacs-lisp/byte-run.el (make-obsolete)
10142 (define-obsolete-function-alias): Rename arguments FUNCTION and
10143 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
10144 (make-obsolete-variable, define-obsolete-variable-alias):
10145 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
10146 respectively.
10147
10148 * isearchb.el (isearchb-activate):
10149 * pcvs.el (cvs-mode):
10150 * ses.el (ses-load):
10151 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
10152 * net/tramp.el (tramp-find-file-exists-command)
10153 (tramp-find-shell):
10154 * progmodes/ada-mode.el (ada-create-case-exception)
10155 (ada-create-case-exception-substring, ada-make-subprogram-body):
10156 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
10157 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
10158 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
10159 * textmodes/org.el (org-promote, org-evaluate-time-range)
10160 (org-agenda-next-date-line, org-agenda-previous-date-line)
10161 (org-agenda-error, org-open-at-point, org-table-move-row)
10162 (org-format-table-table-html-using-table-generate-source)
10163 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
10164 * textmodes/reftex.el (reftex-access-scan-info):
10165 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
10166 (reftex-toc-promote-prepare): Follow error conventions.
10167
10168 * diff-mode.el (diff-mode): Fix typo in docstring.
10169
10170 * forms.el (forms--intuit-from-file): Fix reference to
10171 `forms-number-of-fields' in error message.
10172 (forms-print): Fix quoting in error message.
10173
10174 * forms.el (forms-mode):
10175 * emulation/vi.el (vi-goto-insert-state):
10176 * progmodes/flymake.el (flymake-new-err-info)
10177 (flymake-start-syntax-check-for-current-buffer)
10178 (flymake-simple-cleanup):
10179 * eshell/esh-var.el (eshell/export):
10180 * progmodes/gud.el (xdb):
10181 * textmodes/flyspell.el (flyspell-incorrect-hook)
10182 (flyspell-maybe-correct-transposition)
10183 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
10184
10185 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
10186
10187 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
10188 minibuffer prompt.
10189
10190 2005-06-13 Kim F. Storm <storm@cua.dk>
10191
10192 * subr.el (add-to-ordered-list): New defun.
10193
10194 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
10195 add cua--keymap-alist to emulation-mode-map-alists.
10196
10197 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10198
10199 * subr.el (complete-in-turn): New macro.
10200 (dynamic-completion-table, lazy-completion-table): Add debug info.
10201
10202 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
10203 in preference to face aliases.
10204
10205 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
10206 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
10207 Remove unused vars `start' and `firstline'.
10208 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
10209 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
10210
10211 2005-06-13 Eli Zaretskii <eliz@gnu.org>
10212
10213 * cus-start.el (all): Don't complain about missing GTK-related
10214 variables, unless either `gtk' is boundp or this isn't a
10215 `windows-nt' build.
10216
10217 2005-06-13 Lute Kamstra <lute@gnu.org>
10218
10219 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
10220 run-mode-hooks.
10221
10222 * ediff-mult.el (ediff-meta-mode):
10223 * ediff-util.el (ediff-mode): Use run-mode-hooks.
10224
10225 * ledit.el (ledit-mode): Use delay-mode-hooks.
10226
10227 * woman.el (woman-mode-line-format): Delete constant.
10228 (woman-mode-map): Initialize it properly.
10229 (woman-mode): Set mode-class property to special.
10230 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
10231 Set major-mode and mode-name. Don't set mode-line-format directly.
10232 (Man-getpage-in-background): Don't reference woman-mode-line-format.
10233
10234 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
10235 string argument obsolete.
10236
10237 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
10238
10239 * textmodes/org.el (org-CUA-compatible): New option.
10240 (org-disputed-keys): New variable.
10241 (org-key): New function.
10242 (orgtbl-make-binding): Add docstring to the created function.
10243 (org-mode): Set paragraph start/separate regexps.
10244 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
10245 (org-archive-location, org-archive-mark-done)
10246 (org-archive-stamp-time): New options.
10247 (org-archive-subtree): New command.
10248 (org-fill-paragraph): New function.
10249 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
10250 (org-fake-empty-table-line): Function removed.
10251 (org-format-org-table-html): Do not create empty table lines at
10252 separator lines. Improved table header treatment.
10253 (org-link-format): New option.
10254 (org-make-link): New function.
10255 (org-insert-link, org-store-link): Use org-make-link.
10256 (org-open-file): Quote file name for shell command, to allow
10257 spaces in file names.
10258 (org-link-regexp): Fix bug with mailto link.
10259 (org-link-maybe-angles-regexp, org-protected-link-regexp):
10260 New constants.
10261 (org-export-as-html): Deal with the optional angles around a link.
10262 Better treatment of file: links.
10263 (org-open-at-point): Replace @{ and @} with < and >.
10264 (org-run-mode-hooks): Function removed.
10265 (org-agenda-mode): No longer use `org-run-mode-hooks'.
10266
10267 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
10268
10269 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
10270 MI command -data-list-register-values.
10271 (gdb-post-prompt): Indent properly.
10272
10273 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
10274
10275 * hilit-chg.el (highlight-changes-colors): Rename from
10276 `highlight-changes-colours'.
10277 (highlight-changes-colours): Keep as obsolete alias.
10278 (highlight-changes-face-list): Doc fix.
10279 (hilit-chg-make-list): Use `highlight-changes-colors'.
10280
10281 2005-06-12 Mark A. Hershberger <mah@everybody.org>
10282
10283 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
10284 defun-prompt-regexp.
10285
10286 2005-06-12 Eli Zaretskii <eliz@gnu.org>
10287
10288 * loadup.el: Don't say we are dumping under 2 names on windows-nt
10289 and cygwin.
10290
10291 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
10292 Don't use an old loaddefs.el, as in Makefile.in.
10293
10294 2005-06-12 Lute Kamstra <lute@gnu.org>
10295
10296 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
10297
10298 * man.el (Man-mode-map): Initialize it properly.
10299 (Man-mode): Set mode-class property to special.
10300
10301 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
10302
10303 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
10304
10305 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
10306 A newline is needed in the docstring there.
10307
10308 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
10309 Doc fixes.
10310
10311 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10312
10313 * printing.el: Doc fix. The menubar is no more changed when printing
10314 is loaded, it only changes when pr-menu-bind or pr-update-menus is
10315 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
10316 (pr-version): New version number (6.8.4).
10317 (pr-menu-bind): New command.
10318 (pr-update-menus): Docstring and code fix.
10319 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
10320 Docstring fix.
10321 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
10322 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
10323
10324 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
10325
10326 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
10327 "Returns" to "return", document useful return values, etc.
10328
10329 2005-06-11 Alan Mackenzie <acm@muc.de>
10330
10331 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
10332 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
10333 (adaptive-file-function): Minor amendment to doc-string.
10334
10335 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
10336
10337 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
10338 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
10339 Fix :type--it is `integer', not `string'.
10340
10341 * faces.el (modeline-highlight): Rename from (the erroneous)
10342 `modeline-higilight'.
10343
10344 2005-06-11 Lute Kamstra <lute@gnu.org>
10345
10346 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
10347 lisp-interaction-mode-map but make it the parent.
10348 (edebug-eval-mode): Use define-derived-mode.
10349
10350 2005-06-11 Andreas Schwab <schwab@suse.de>
10351
10352 * bindings.el: Add binding of `ESC functionkey' for every
10353 `M-functionkey'.
10354 * hexl.el (hexl-mode-map): Likewise.
10355
10356 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
10357
10358 * progmodes/compile.el (compilation-error-regexp-alist-alist)
10359 [msft]: update regexp for newer msft compilers.
10360
10361 2005-06-10 Mark A. Hershberger <mah@everybody.org>
10362
10363 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
10364 ATTLIST portions of included DTDs.
10365 (xml-parse-dtd): Eliminate use of inefficient match-data.
10366
10367 2005-06-10 Miles Bader <miles@gnu.org>
10368
10369 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
10370 (mpuz-text): Remove "-face" suffix from face names.
10371 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
10372 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
10373 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
10374
10375 * play/gomoku.el (gomoku-O, gomoku-X):
10376 Remove "-face" suffix from face names.
10377 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
10378 New backward-compatibility aliases for renamed faces.
10379 (gomoku-font-lock-keywords): Use renamed gomoku faces.
10380
10381 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
10382
10383 * thumbs.el: Fixes for changes of 2005-06-09.
10384 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
10385 as a directory.
10386 (thumbs-thumbname): Remove directory separator from format string;
10387 `thumbs-thumbsdir' now returns a valid directory name.
10388 (thumbs-temp-dir): New defsubst.
10389 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
10390 Use it.
10391
10392 * cus-edit.el (minibuffer):
10393 * files.el (make-backup-file-name-function):
10394 * filesets.el (filesets-external-viewers):
10395 * hilit-chg.el (highlight-changes-colours)
10396 (highlight-changes-face-list, highlight-changes-rotate-faces):
10397 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
10398 * kmacro.el (kmacro-call-macro):
10399 * log-edit.el (log-edit-changelog-full-paragraphs):
10400 * mouse.el (mouse-1-click-follows-link):
10401 * skeleton.el (skeleton-autowrap):
10402 * subr.el (insert-for-yank-1):
10403 * tempo.el (tempo-insert-region):
10404 * terminal.el (terminal-emulator):
10405 * time.el (display-time-mail-face):
10406 * vc.el (vc-annotate):
10407 * vcursor.el (vcursor-copy-line):
10408 * woman.el (woman-bold-headings, woman-ignore)
10409 (woman-default-faces, woman-monochrome-faces):
10410 * calendar/todo-mode.el (todo-insert-threshold):
10411 * emulation/pc-select.el (pc-select-selection-keys-only)
10412 (pc-selection-mode):
10413 * emulation/vip.el (vip-find-char-forward):
10414 * emulation/viper-cmd.el (viper-find-char-forward):
10415 * international/mule-cmds.el
10416 (select-safe-coding-system-accept-default-p)
10417 (input-method-exit-on-invalid-key):
10418 * international/mule-diag.el (describe-coding-system):
10419 * international/ucs-tables.el (unify-8859-on-encoding-mode):
10420 * net/browse-url.el (browse-url-xterm-program):
10421 * obsolete/lazy-lock.el (lazy-lock-mode):
10422 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
10423 (cperl-mode):
10424 * progmodes/cpp.el (cpp-face-light-name-list)
10425 (cpp-face-dark-name-list):
10426 * progmodes/delphi.el (delphi-newline-always-indents):
10427 Fix spellings in docstrings.
10428
10429 * ido.el (ido-mode, ido-file-extensions-order)
10430 (ido-default-file-method, ido-default-buffer-method)
10431 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
10432 (ido-decorations, ido-read-file-name-as-directory-commands)
10433 (ido-read-file-name-non-ido, ido-work-directory-list)
10434 (ido-ignore-item-temp-list, ido-current-directory)
10435 (ido-magic-forward-char, ido-enter-find-file)
10436 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
10437 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
10438
10439 2005-06-10 Lute Kamstra <lute@gnu.org>
10440
10441 * play/dunnet.el (dun-mode): Use define-derived-mode.
10442 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
10443 obsolete alias.
10444
10445 * play/doctor.el (doctor-mode-map): Remove defvar.
10446 (doctor-mode): Use define-derived-mode.
10447
10448 * mail/mspools.el (mspools-mode):
10449 * net/eudc-hotlist.el (eudc-hotlist-mode):
10450 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
10451
10452 2005-06-10 Miles Bader <miles@gnu.org>
10453
10454 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
10455 Remove "-face" suffix from face names.
10456 (flyspell-incorrect-face, flyspell-duplicate-face):
10457 New backward-compatibility aliases for renamed faces.
10458 (flyspell-mode-on, make-flyspell-overlay)
10459 (flyspell-highlight-incorrect-region)
10460 (flyspell-highlight-duplicate-region)
10461 (flyspell-display-next-corrections)
10462 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
10463
10464 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
10465 from face name.
10466 (texinfo-heading-face): New backward-compatibility alias for
10467 renamed face.
10468 (texinfo-heading-face): Use renamed texinfo-heading face.
10469
10470 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
10471 suffix from face names.
10472 (tex-math-face, tex-verbatim-face):
10473 New backward-compatibility aliases for renamed faces.
10474 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
10475 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
10476 literal face name.
10477
10478 * textmodes/table.el (table-cell): Remove "-face" suffix from face
10479 name.
10480 (table-cell-face): New backward-compatibility alias for renamed face.
10481 (table--put-cell-face-property, table--update-cell-face):
10482 Use renamed table-cell face.
10483
10484 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
10485 from face name.
10486 (sgml-namespace-face): New backward-compatibility alias for
10487 renamed face.
10488 (sgml-namespace-face): Use renamed sgml-namespace face.
10489
10490 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
10491 (org-level-4, org-level-5, org-level-6, org-level-7)
10492 (org-level-8, org-warning, org-headline-done)
10493 (org-deadline-announce, org-scheduled-today)
10494 (org-scheduled-previously, org-link, org-done, org-table)
10495 (org-time-grid): Remove "-face" suffix from face names.
10496 (org-level-1-face, org-level-2-face, org-level-3-face)
10497 (org-level-4-face, org-level-5-face, org-level-6-face)
10498 (org-level-7-face, org-level-8-face, org-warning-face)
10499 (org-headline-done-face, org-deadline-announce-face)
10500 (org-scheduled-today-face, org-scheduled-previously-face)
10501 (org-link-face, org-done-face, org-table-face)
10502 (org-time-grid-face):
10503 New backward-compatibility aliases for renamed faces.
10504 (org-level-faces, org-set-font-lock-defaults, org-timeline)
10505 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
10506 (org-agenda-get-timestamps, org-agenda-get-scheduled)
10507 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
10508
10509 * emulation/viper-init.el (viper-search, viper-replace-overlay)
10510 (viper-minibuffer-emacs, viper-minibuffer-insert)
10511 (viper-minibuffer-vi): Remove "-face" suffix from face names.
10512 (viper-search-face, viper-replace-overlay-face)
10513 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
10514 (viper-minibuffer-vi-face):
10515 New backward-compatibility aliases for renamed faces.
10516 (viper-search-face, viper-replace-overlay-face)
10517 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
10518 (viper-minibuffer-vi-face): Use renamed viper faces.
10519
10520 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
10521 Remove "-face" suffix from face names.
10522 (testcover-nohits-face, testcover-1value-face):
10523 New backward-compatibility aliases for renamed faces.
10524 (testcover-mark): Use renamed testcover faces.
10525
10526 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
10527 face name.
10528 (diary-button-face): New backward-compatibility alias for renamed face.
10529 (diary-entry): Use renamed diary-button face.
10530
10531 * calendar/calendar.el (diary, calendar-today, holiday)
10532 (mark-visible-calendar-date): Remove "-face" suffix from face names.
10533 (diary-face, calendar-today-face, holiday-face):
10534 New backward-compatibility aliases for renamed faces.
10535 (eval-after-load "facemenu", diary-entry-marker)
10536 (calendar-today-marker, calendar-holiday-marker, diary-face):
10537 Use renamed calendar faces.
10538
10539 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
10540 (compare-windows-face): New backward-compatibility alias for
10541 renamed face.
10542 (compare-windows-highlight): Use renamed compare-windows face.
10543
10544 * strokes.el (strokes-char): Remove "-face" suffix from face name.
10545 (strokes-char-face): New backward-compatibility alias for renamed face.
10546 (strokes-encode-buffer): Use renamed strokes-char face.
10547
10548 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
10549 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
10550 Remove "-face" suffix from face names.
10551 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
10552 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
10553 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
10554 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
10555 Use renamed pcvs faces.
10556 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
10557 * pcvs-defs.el (cvs-mode-map): Likewise.
10558 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
10559
10560 * info.el (info-title-1, info-title-2, info-title-3)
10561 (info-title-4): Remove "-face" suffix from and downcase face names.
10562 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
10563 (Info-title-4-face):
10564 New backward-compatibility aliases for renamed faces.
10565 (Info-fontify-node): Use renamed info faces.
10566
10567 * hilit-chg.el (highlight-changes, highlight-changes-delete):
10568 Remove "-face" suffix from face names.
10569 (highlight-changes-face, highlight-changes-delete-face):
10570 New backward-compatibility aliases for renamed faces.
10571 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
10572 (hilit-chg-make-list): Use renamed highlight-changes faces.
10573
10574 * generic-x.el (show-tabs-tab, show-tabs-space):
10575 Remove "-face" suffix from face names.
10576 (show-tabs-tab-face, show-tabs-space-face):
10577 New backward-compatibility aliases for renamed faces.
10578 (show-tabs-generic-mode-font-lock-defaults-1)
10579 (show-tabs-generic-mode-font-lock-defaults-2):
10580 Use renamed show-tabs faces.
10581
10582 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
10583 (smerge-markers): Remove "-face" suffix from face names.
10584 (smerge-mine-face, smerge-other-face, smerge-base-face)
10585 (smerge-markers-face):
10586 New backward-compatibility aliases for renamed faces.
10587 (smerge-mine-face, smerge-other-face, smerge-base-face)
10588 (smerge-markers-face): Use renamed smerge faces.
10589
10590 * log-view.el (log-view-file, log-view-message): Remove "-face"
10591 suffix from face names.
10592 (log-view-file-face, log-view-message-face):
10593 New backward-compatibility aliases for renamed faces.
10594 (log-view-file-face, log-view-message-face): Use renamed log-view
10595 faces.
10596
10597 * paren.el (show-paren-match, show-paren-mismatch):
10598 Remove "-face" suffix from face names.
10599 (show-paren-match-face, show-paren-mismatch-face):
10600 New backward-compatibility aliases for renamed faces.
10601 (show-paren-function): Use renamed show-paren faces.
10602
10603 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
10604 (ruler-mode-margins, ruler-mode-fringes)
10605 (ruler-mode-column-number, ruler-mode-fill-column)
10606 (ruler-mode-comment-column, ruler-mode-goal-column)
10607 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
10608 suffix from face names.
10609 (ruler-mode-default-face, ruler-mode-pad-face)
10610 (ruler-mode-margins-face, ruler-mode-fringes-face)
10611 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
10612 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
10613 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
10614 New backward-compatibility aliases for renamed faces.
10615 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
10616 (ruler-mode-column-number, ruler-mode-fill-column)
10617 (ruler-mode-comment-column, ruler-mode-goal-column)
10618 (ruler-mode-tab-stop, ruler-mode-current-column)
10619 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
10620 faces.
10621
10622 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
10623 face name.
10624 (whitespace-highlight-the-space): Use renamed face.
10625 (whitespace-highlight-face): New backward-compatibility alias for
10626 renamed face.
10627
10628 * woman.el (woman-italic, woman-bold, woman-unknown)
10629 (woman-addition, woman-symbol-face):
10630 Remove "-face" suffix from face names.
10631 (woman-italic-face, woman-bold-face, woman-unknown-face)
10632 (woman-addition-face):
10633 New backward-compatibility aliases for renamed faces.
10634 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
10635 (woman-decode-region, woman-replace-match)
10636 (woman-display-extended-fonts, woman-special-characters)
10637 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
10638 Use renamed woman faces.
10639
10640 * longlines.el (longlines-visible-face): Face removed.
10641
10642 * diff-mode.el (diff-header, diff-file-header, diff-index)
10643 (diff-hunk-header, diff-removed, diff-added, diff-changed)
10644 (diff-function, diff-context, diff-nonexistent): Remove "-face"
10645 suffix from face names.
10646 (diff-header-face, diff-file-header-face, diff-index-face)
10647 (diff-hunk-header-face, diff-removed-face, diff-added-face)
10648 (diff-changed-face, diff-function-face, diff-context-face)
10649 (diff-nonexistent-face): New backward-compatibility aliases for
10650 renamed faces.
10651 (diff-header-face, diff-file-header-face)
10652 (diff-index, diff-index-face, diff-hunk-header)
10653 (diff-hunk-header-face, diff-removed, diff-removed-face)
10654 (diff-added, diff-added-face, diff-changed-face, diff-function)
10655 (diff-function-face, diff-context-face, diff-nonexistent)
10656 (diff-nonexistent-face): Use renamed diff-mode faces.
10657
10658 * progmodes/compile.el (compilation-warning-face)
10659 (compilation-info-face): Remove "-face" suffix from face names.
10660 (compilation-warning-face, compilation-info-face):
10661 New backward-compatibility aliases for renamed faces.
10662 (compilation-warning-face, compilation-info-face):
10663 Use renamed compilation faces.
10664
10665 * add-log.el (change-log-date, change-log-name)
10666 (change-log-email, change-log-file, change-log-list)
10667 (change-log-conditionals, change-log-function)
10668 (change-log-acknowledgement): Remove "-face" suffix from face names.
10669 (change-log-date-face, change-log-name-face)
10670 (change-log-email-face, change-log-file-face)
10671 (change-log-list-face, change-log-conditionals-face)
10672 (change-log-function-face, change-log-acknowledgement-face):
10673 New backward-compatibility aliases for renamed faces.
10674 (change-log-font-lock-keywords): Use renamed change-log faces.
10675
10676 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
10677 (custom-set, custom-changed, custom-saved, custom-button)
10678 (custom-button-pressed, custom-documentation, custom-state)
10679 (custom-comment, custom-comment-tag, custom-variable-tag)
10680 (custom-variable-button, custom-face-tag, custom-group-tag-1)
10681 (custom-group-tag): Remove "-face" suffix from face names.
10682 (custom-magic-alist, custom-magic-value-create)
10683 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
10684 (custom-invalid-face, custom-rogue-face, custom-modified-face)
10685 (custom-set-face, custom-changed-face, custom-saved-face)
10686 (custom-button-face, custom-button-pressed-face)
10687 (custom-documentation-face, custom-state-face)
10688 (custom-comment-face, custom-comment-tag-face)
10689 (custom-variable-tag-face, custom-variable-button-face)
10690 (custom-face-tag-face, custom-group-tag-face-1)
10691 (custom-group-tag-face):
10692 New backward-compatibility aliases for renamed faces.
10693
10694 * wid-edit.el (widget-documentation, widget-button)
10695 (widget-field, widget-single-line-field, widget-inactive)
10696 (widget-button-pressed): "-face" suffix removed from face names.
10697 (widget-documentation-face, widget-button-face)
10698 (widget-field-face, widget-single-line-field-face)
10699 (widget-inactive-face, widget-button-pressed-face):
10700 New backward-compatibility aliases for renamed faces.
10701 (widget-documentation-face, widget-button-face)
10702 (widget-button-pressed-face, widget-specify-field)
10703 (widget-specify-inactive): Use renamed widget faces.
10704
10705 2005-06-10 Kenichi Handa <handa@m17n.org>
10706
10707 * term/x-win.el (x-clipboard-yank): Remove condition-case
10708 wrapping.
10709
10710 2005-06-11 Kenichi Handa <handa@m17n.org>
10711
10712 * add-log.el (change-log-font-lock-keywords): Make the regexp for
10713 date lines stricter.
10714
10715 2005-06-10 Zhang Wei <id.brep@gmail.com> (tiny change)
10716
10717 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
10718 of x-get-selection.
10719
10720 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
10721
10722 * comint.el (comint-mode, comint-snapshot-last-prompt):
10723 * frame.el (frame-current-scroll-bars):
10724 * term.el (term-mode, term-check-proc, term-input-sender)
10725 (term-simple-send, term-extract-string, term-word)
10726 (term-match-partial-filename):
10727 * window.el (window-current-scroll-bars):
10728 * emulation/cua-base.el (cua-normal-cursor-color)
10729 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
10730 (cua-global-mark-cursor-color):
10731 * mail/undigest.el (rmail-forward-separator-regex):
10732 Fix typos in docstrings.
10733
10734 * comint.el (comint-check-proc, make-comint-in-buffer)
10735 (comint-source-default): Doc fixes.
10736
10737 * term.el (term-send-string): Improve argument/docstring consistency.
10738
10739 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
10740
10741 * comint.el (comint-send-input): Bind `inhibit-read-only' around
10742 call to `delete-region'.
10743 (comint-mode-hook): Do not enable Font Lock by default.
10744
10745 2005-06-09 Lute Kamstra <lute@gnu.org>
10746
10747 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
10748 could be void.
10749
10750 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
10751
10752 * emacs-lisp/debug.el (debugger-will-be-back): New var.
10753 (debug): Use it.
10754 (debugger-step-through, debugger-continue, debugger-jump)
10755 (debugger-return-value): Set it when needed.
10756 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
10757 Use inhibit-read-only.
10758
10759 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
10760
10761 * window.el (shrink-window-if-larger-than-buffer)
10762 (window-size-fixed): Fix typo in docstring.
10763
10764 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
10765 thumbnails directory on loading.
10766 (thumbs-conversion-program): Use `eq' to check the system type,
10767 not `equal'.
10768 (thumbs-temp-dir): Initialize to `temporary-file-directory',
10769 not "/tmp". Fix docstring.
10770 (thumbs-thumbsdir): New function to return the thumbnails
10771 directory, creating it if needed.
10772 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
10773 (thumbs-temp-file): Delete variable and make it into a function.
10774 (thumbs-resize-image, thumbs-modify-image): Use it.
10775 (thumbs-kill-buffer): Simplify.
10776 (thumbs-gensym): Defalias or duplicate CL `gensym'.
10777 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
10778 docstrings.
10779
10780 2005-06-09 Kim F. Storm <storm@cua.dk>
10781
10782 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
10783 set-match-data to free markers in match-data.
10784
10785 * replace.el (replace-match-data): Pass RESEAT arg `t' to
10786 match-data to unchain markers in match-data.
10787
10788 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
10789
10790 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
10791 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
10792 unnecessary now.
10793
10794 2005-06-08 Richard M. Stallman <rms@gnu.org>
10795
10796 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
10797 give the variable a doc string that doesn't say don't set it directly.
10798
10799 * textmodes/ispell.el (ispell-check-version):
10800 Use match-string-no-properties.
10801 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
10802 (ispell-buffer-local-words): Likewise.
10803
10804 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
10805 except on terminals with enough colors to really display it.
10806 (makefile-dependency-regex): Delete spurious `bb'.
10807
10808 * faces.el (escape-glyph): Use blue once again in last case.
10809 (no-break-space): Redefine so that it isn't invisible on a tty.
10810
10811 2005-06-08 Kim F. Storm <storm@cua.dk>
10812
10813 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
10814 also when reading directory name.
10815
10816 2005-06-08 Lute Kamstra <lute@gnu.org>
10817
10818 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
10819 (flyspell-mode-line-string): Remove autoload cookie.
10820 (flyspell-mode): Remove defvar.
10821
10822 2005-06-07 Lute Kamstra <lute@gnu.org>
10823
10824 * textmodes/org.el (org-run-mode-hooks): New function.
10825 (org-agenda-mode): Use it.
10826
10827 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
10828
10829 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
10830
10831 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
10832
10833 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
10834
10835 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
10836
10837 * font-lock.el (font-lock-add-keywords): Doc fix.
10838
10839 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
10840
10841 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
10842 (tex-compile-default): In the absence of any history, use the order in
10843 tex-compile-alist to choose the preferred command.
10844 (tex-compile-commands): Reorder a bit.
10845
10846 * textmodes/flyspell.el (flyspell-auto-correct-binding)
10847 (flyspell-incorrect-face, flyspell-duplicate-face):
10848 Use (X)Emacs-agnostic code.
10849 (flyspell-mode-map): Don't overwrite at each load. Remove code
10850 redundant with the subsequent add-minor-mode. Merge Emacs and
10851 XEmacs code.
10852 (flyspell-word): Minor simplification.
10853 (flyspell-math-tex-command-p): Quieten the byte-compiler.
10854 (flyspell-external-point-words): Remove unused vars `size' and `start'.
10855 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
10856 Merge the corresponding Emacs code.
10857 (flyspell-correct-word, flyspell-xemacs-popup):
10858 Use flyspell-do-correct.
10859
10860 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
10861 a dedicated window.
10862
10863 * international/latexenc.el (latexenc-find-file-coding-system):
10864 Undo part of last patch, to turn off a compiler warning.
10865
10866 2005-06-06 Juri Linkov <juri@jurta.org>
10867
10868 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
10869 Rename `tmm-inactive-face' to `tmm-inactive'.
10870
10871 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
10872
10873 * iswitchb.el: Rename faces.
10874
10875 2005-06-06 Kim F. Storm <storm@cua.dk>
10876
10877 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
10878 (cua-global-mark): Remove -face suffix from face names.
10879
10880 * emulation/cua-gmrk.el (cua--init-global-mark):
10881 Remove cua-global-mark face setup.
10882
10883 2005-06-06 Richard M. Stallman <rms@gnu.org>
10884
10885 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
10886 just like other allowed characters.
10887 (makefile-match-dependency): Exclude leading and training whitespace
10888 from the range of regexp subexp 1.
10889 (makefile-macroassign-regex): Don't try to match the body,
10890 just the name of the macro being defined.
10891
10892 * info.el (Info-read-node-name-2): New function.
10893 (Info-read-node-name-1): Use that.
10894 Add a completion-base-size-function property.
10895
10896 * simple.el (completion-setup-function): Look for
10897 completion-base-size-function property of minibuffer-completion-table.
10898
10899 * files.el (locate-file-completion): Doc fix.
10900
10901 * printing.el: Don't call pr-update-menus; user must do that.
10902
10903 * emacs-lisp/debug.el (debugger-window): New variable.
10904 (debug): Use debugger-window if it is set and still alive.
10905 Record debugger-window for next entry.
10906
10907 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
10908
10909 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
10910
10911 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
10912 (hack-one-local-variable, hack-local-variables)
10913 (hack-local-variables-prop-line): Pass that arg.
10914
10915 2005-06-06 Kim F. Storm <storm@cua.dk>
10916
10917 * ido.el (ido-first-match, ido-only-match, ido-subdir)
10918 (ido-indicator): Remove -face suffix from face names.
10919
10920 2005-06-06 Juri Linkov <juri@jurta.org>
10921
10922 * font-lock.el (font-lock-regexp-backslash)
10923 (font-lock-regexp-backslash-construct): New faces.
10924 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
10925 after `('. Add `while-no-input' to control structures.
10926
10927 * faces.el (no-break-space, shadow): New faces.
10928 (escape-glyph): Use less loud colors pink2 and red4.
10929
10930 * diff-mode.el (diff-context-face)
10931 * dired.el (dired-ignored)
10932 * rfn-eshadow.el (file-name-shadow)
10933 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
10934
10935 * info.el (Info-title-1-face): Use green instead of yellow because
10936 bold yellow is not readable on light backgrounds.
10937
10938 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
10939 before selecting the desired mode to not spend time fontifying
10940 old contents.
10941
10942 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
10943
10944 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
10945 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
10946
10947 * ps-print.el (ps-default-fg, ps-default-bg):
10948 Fix typos in docstrings.
10949
10950 * isearchb.el (isearchb): Don't pass a spurious second argument to
10951 `iswitchb-completions'.
10952
10953 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
10954
10955 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
10956 to preserve point.
10957 (gdb-find-file-hook): Add doc string.
10958
10959 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
10960 C dereferenced pointer expression.
10961 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
10962
10963 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
10964
10965 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
10966 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
10967 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
10968 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
10969 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
10970 Make background transparent.
10971
10972 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
10973
10974 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
10975 (font-lock-remove-keywords): Doc fix.
10976 (font-lock-mode-major-mode): Compiler defvar.
10977 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
10978
10979 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
10980 (font-lock-mode): Update `font-lock-mode-major-mode'.
10981 (font-lock-set-defaults): Compiler defvar.
10982 (font-lock-default-function): Take `font-lock-mode-major-mode'
10983 into account.
10984
10985 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
10986 keep track of which major mode it enabled the minor mode for.
10987 Use find-file-hook again. Update docstring.
10988
10989 * simple.el (eval-expression-print-level)
10990 (eval-expression-print-length, eval-expression-debug-on-error):
10991 Doc fixes.
10992
10993 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
10994
10995 * iswitchb.el (iswitchb-single-match-face)
10996 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
10997 (iswitchb-invalid-regexp-face): New faces.
10998 (iswitchb-completions): Use them.
10999 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
11000 now marked as an obsolete alias.
11001 (iswitchb-read-buffer): Remove check for bound font variables.
11002 (iswitchb-invalid-regexp): New free variable.
11003 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
11004 set iswitchb-invalid-regexp.
11005 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
11006 invalid regexps.
11007 (iswitchb-completions): Add check for complete match when entering
11008 a regexp.
11009 (iswitchb-completions): Remove require-match argument.
11010 (iswitchb-exhibit): Fix caller.
11011 (iswitchb-common-match-inserted): New variable.
11012 (iswitchb-complete, iswitchb-completion-help): Use it.
11013
11014 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
11015
11016 * url-http.el (url-http-chunked-encoding-after-change-function):
11017 Use `url-http-debug' instead of `message'.
11018
11019 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
11020
11021 * url-http.el (url-http-parse-headers): Pass redirected URL as a
11022 callback argument.
11023
11024 2005-06-04 Kim F. Storm <storm@cua.dk>
11025
11026 * simple.el (line-move): Only call sit-for when moving backwards.
11027
11028 * ido.el (ido-make-merged-file-list-1): New defun split from
11029 ido-make-merged-file-list.
11030 (ido-make-merged-file-list): Bind throw-on-input around call to
11031 ido-make-merged-file-list-1. Return input-pending-p if
11032 interrupted by more input available.
11033 (ido-read-internal): Handle input-pending-p return value from
11034 ido-make-merged-file-list.
11035
11036 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
11037
11038 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
11039 compatibility code.
11040
11041 * international/latexenc.el (latexenc-find-file-coding-system):
11042 Don't inherit the EOL part of the coding-system from the
11043 tex-main buffer. Fit within 80 columns.
11044
11045 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
11046
11047 * tmm.el (tmm-inactive-face): New face.
11048 (tmm-remove-inactive-mouse-face): New function.
11049 (tmm-prompt, tmm-add-one-shortcut)
11050 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
11051 but not selectable.
11052
11053 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
11054
11055 * faces.el (face-equal): Improve argument/docstring consistency.
11056
11057 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
11058
11059 * progmodes/make-mode.el (makefile-targets-face)
11060 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
11061 (makefile-bsdmake-dependency-regex)
11062 (makefile-makepp-rule-action-regex)
11063 (makefile-bsdmake-rule-action-regex): New constants.
11064 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
11065
11066 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11067 Allow (...) within `...' for makepp messages.
11068
11069 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
11070
11071 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
11072
11073 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
11074 "." files are deleted from all file lists before comparison.
11075
11076 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
11077 (viper-ESC-key): Made them customizable.
11078
11079 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
11080
11081 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
11082
11083 * autorevert.el (auto-revert-buffers): Use save-match-data.
11084
11085 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
11086
11087 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
11088 menu items with a nil command binding.
11089
11090 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
11091
11092 * emacs-lisp/cl-macs.el (defsetf):
11093 Improve argument/docstring consistency.
11094
11095 * faces.el (list-faces-display): Improve the formatting by
11096 computing the maximum length required for any face-name (reworked
11097 patch of 1999-01-11, accidentally deleted on 1999-07-21).
11098 (internal-find-face): Remove redundant info in docstring.
11099
11100 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
11101
11102 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
11103 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
11104 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
11105 (gdb-assembler-custom): Improve regexps.
11106 (def-gdb-auto-update-handler): Use window point to preserve point.
11107
11108 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
11109
11110 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
11111
11112 2005-05-31 Jay Belanger <belanger@truman.edu>
11113
11114 * calc/calc-embed.el (calc-embedded-word): Change argument passed
11115 to calc-embedded.
11116 (calc-embedded-make-info): Have plain prefix argument select
11117 entire line.
11118
11119 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
11120
11121 * faces.el (list-faces-display): Signal error if passed a regexp
11122 that matches no face name.
11123
11124 * simple.el (filter-buffer-substring): Fix typo in docstring.
11125
11126 2005-05-31 Richard M. Stallman <rms@gnu.org>
11127
11128 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
11129 (vhdl-emacs-21): Doc fix.
11130 (vhdl-mode): Unconditionally set comment-padding.
11131 (vhdl-fixup-whitespace-region): Insert spaces only where
11132 there are none.
11133 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
11134
11135 2005-05-30 John Wiegley <johnw@newartisans.com>
11136
11137 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
11138 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
11139 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
11140 `directory-sep-char' to ?/, and all uses of `string-to-int' to
11141 `string-to-number'.
11142
11143 2005-05-30 Jay Belanger <belanger@truman.edu>
11144
11145 * calc/calc.el (calc-bug-address): Fix docstring.
11146 (calc-window-hook, calc-trail-window-hook): New variables.
11147 (calc-trail-display): Restore use of calc-trail-window-hook.
11148 (calc): Restore use of calc-window-hook.
11149
11150 2005-05-31 Masatake YAMATO <jet@gyve.org>
11151
11152 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
11153
11154 * help-fns.el (help-C-file-name): Add autoload mark for
11155 `find-function-noselect'.
11156
11157 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11158
11159 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
11160 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
11161
11162 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
11163
11164 * calendar/diary-lib.el (mark-included-diary-files): Only kill
11165 included diary buffer if it was not already being visited.
11166 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
11167
11168 * calendar/icalendar.el (top-level): Do not require 'appt.
11169
11170 * mail/supercite.el (sc-select-attribution): Only use a list
11171 element from sc-attrib-selection-list if it returns a string.
11172 Reported by Davide G. M. Salvetti <salve@debian.org>.
11173
11174 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
11175
11176 * thumbs.el (thumbs-thumbname): The resulting thumbname now
11177 includes a hash value to improve its uniqueness, and has a ".jpg"
11178 extension. Also, it is now a valid filename on all systems.
11179 (thumbs-make-thumb): Use `let', not `let*'.
11180 (thumbs-show-thumbs-list): Check for JPEG availability.
11181
11182 2005-05-30 Richard M. Stallman <rms@gnu.org>
11183
11184 * filesets.el (filesets-menu-ensure-use-cached):
11185 Prevent warning when emacs-version>= is undefined.
11186
11187 * printing.el (pr-interactive-n-up): Use string-to-number.
11188
11189 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
11190
11191 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
11192 Warn only when name to be defined is quoted.
11193
11194 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
11195
11196 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
11197 Make regexp more robust.
11198 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
11199 Force regeneration of disassembly.
11200
11201 2005-05-29 Jay Belanger <belanger@truman.edu>
11202
11203 * calc/calc.el (calc-user-invocation): Check if
11204 calc-invocation-macro is non-nil.
11205
11206 2005-05-29 Juri Linkov <juri@jurta.org>
11207
11208 * add-log.el (change-log-font-lock-keywords):
11209 Add `+' to e-mail regexp to accept mail address with keywords.
11210
11211 * man.el (Man-name-regexp): Add `:' to accept qualified names.
11212
11213 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
11214
11215 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
11216
11217 * ielm.el (inferior-emacs-lisp-mode): Ditto.
11218
11219 2005-05-29 Richard M. Stallman <rms@gnu.org>
11220
11221 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
11222 Undo the change that moves to end of the current word.
11223
11224 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
11225
11226 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
11227 Throw error when count <= 0 to ensure input is a number.
11228 (gdb-read-memory-custom): Pick up address from buffer.
11229 (gdb-memory-mode): Allow user to increment and decrement
11230 memory address from header line.
11231
11232 2005-05-29 Richard M. Stallman <rms@gnu.org>
11233
11234 * flyspell.el (flyspell-version): Function deleted.
11235 (flyspell-auto-correct-previous-hook): Doc fix.
11236
11237 * jit-lock.el (jit-lock-function, jit-lock-after-change):
11238 Do nothing if memory is full.
11239
11240 * font-lock.el (font-lock-fontify-syntactically-region):
11241 Pass t for GREEDY to looking-back.
11242
11243 * saveplace.el (save-place-alist-to-file): Write the file
11244 using write-region.
11245
11246 * subr.el (looking-back): New argument GREEDY.
11247
11248 * progmodes/compile.el (compilation-start): Set the mode
11249 before inserting the initial text.
11250
11251 * progmodes/which-func.el (which-func-update-1): Turn the mode
11252 off in case of error by setting which-func-mode.
11253
11254 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
11255
11256 * flyspell.el (flyspell-auto-correct-previous-word):
11257 Narrow down to what's on the screen, and recenter overlays
11258 at the end of the next word.
11259
11260 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
11261
11262 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
11263 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
11264 (flyspell-abbrev-p): Default to nil.
11265 (flyspell-use-global-abbrev-table-p): Doc fix.
11266 (flyspell-large-region): Allow nil as value.
11267 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
11268
11269 (mail-mode-flyspell-verify): More robust handling
11270 of `mail-header-separator'. More efficient signature detection.
11271 Allow for regexp metacharacters in message-header-separator.
11272 Adding `To' not to be checked in mail-mode-flyspell-verify.
11273
11274 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
11275 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
11276 Bind flyspell-auto-correct-binding.
11277 Bind C-. and C-, .
11278 (flyspell-mode-map): Likewise.
11279 (flyspell-mode): Doc fix.
11280 (flyspell-accept-buffer-local-defs): Preserve current buffer.
11281 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
11282 (flyspell-word-cache-result): New var, always local.
11283 (flyspell-check-pre-word-p): Doc fix.
11284 (flyspell-check-changed-word-p): Handle spc like newline.
11285 (flyspell-post-command-hook): Set flyspell-word-cache-result.
11286 (flyspell-word-search-backward, flyspell-word-search-forward):
11287 New functions.
11288 (flyspell-word): Return t if nothing to check.
11289 When parsing TeX code, check for after } or \.
11290 Use flyspell-word-search-backward to find previous word.
11291 Return nil if duplicated word.
11292 For word already checked, return same value as last time.
11293 Set flyspell-word-cache-result after checking.
11294 Don't clobber the return value.
11295 (flyspell-get-word): Major rewrite.
11296 (flyspell-external-point-words): New locals pword, pcount.
11297 Fix size used in progress message.
11298 Find the proper corresponding word in flyspell-large-region-buffer.
11299 (flyspell-region): Check for flyspell-large-region = nil.
11300 (flyspell-highlight-incorrect-region): Clean up overlays in region.
11301 (flyspell-auto-correct-word): Check that WORD is a cons.
11302 (flyspell-correct-word): Likewise.
11303
11304 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
11305
11306 * progmodes/make-mode.el (makefile-rule-action-regex)
11307 (makefile-macroassign-regex, makefile-makepp-mode)
11308 (makefile-bsdmake-mode): Continuation lines may be empty.
11309 Reported by Joshua Varner.
11310 (makefile-makepp-font-lock-keywords): Add $(stem).
11311
11312 2005-05-28 Karl Berry <karl@gnu.org>
11313
11314 * textmodes/tex-mode.el: Now that tex-send-command calls
11315 shell-quote-argument (2005-03-31 change), remove all calls to
11316 shell-quote-argument; they all end up invoking tex-send-command.
11317 The double quoting loses on filenames with non-safe characters,
11318 such as "@". Reported by Frederik Fouvry.
11319
11320 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
11321
11322 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
11323 about preserving point.
11324
11325 2005-05-27 Jay Belanger <belanger@truman.edu>
11326
11327 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
11328 Info-goto-node.
11329
11330 * calc/calc-embed.el (calc-embed-arg): New variable.
11331 (calc-do-embedded-activate, calc-embedded-activate-formula)
11332 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
11333 variable by new variable.
11334 (calc-embedded-make-info): Replace undeclared variable by new
11335 variable. When selecting region with positive prefix
11336 argument, use end of previous line instead of beginning of line.
11337
11338 * calc/calc-aent.el (calc-arg-values): Declare it.
11339
11340 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
11341 Declare them.
11342
11343 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
11344
11345 * calc/calc.el (calc-alg-map): Declare it.
11346
11347 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
11348
11349 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
11350
11351 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
11352 (gdb-registers-buffer, toggle-gdb-all-registers):
11353 Toggle display of floating point registers.
11354 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
11355
11356 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
11357 (toggle-gud-tooltip-dereference):
11358 Rename from gud-toggle-tooltip-dereference.
11359
11360 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
11361
11362 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
11363
11364 2005-05-27 Jay Belanger <belanger@truman.edu>
11365
11366 * calc/calc-prog.el (calc-kbd-report): Remove.
11367 (calc-kbd-query): Rewrite.
11368
11369 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
11370
11371 * image.el (image-library-alist): Move to image.c.
11372 (image-type-available-p): Doc fix.
11373
11374 2005-05-27 Lute Kamstra <lute@gnu.org>
11375
11376 * calc/calc.el (calc):
11377 * outline.el (outline-1, outline-2, outline-3, outline-4)
11378 (outline-5, outline-6, outline-7, outline-8):
11379 * textmodes/dns-mode.el (dns-mode):
11380 * textmodes/sgml-mode.el (sgml-namespace-face):
11381 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
11382 (tex-verbatim-face, tex-use-reftex):
11383 * textmodes/texinfo.el (texinfo-heading-face):
11384 Specify customization group.
11385
11386 * longlines.el: Don't require easy-mmode.
11387 (longlines-visible-face): Specify customization group.
11388
11389 2005-05-27 Kenichi Handa <handa@m17n.org>
11390
11391 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
11392 encoding table of windows-1251.
11393
11394 * international/ucs-tables.el (ucs-set-table-for-input):
11395 If translation-table-for-input of a coding system is a symbol, get
11396 its translation-table property.
11397
11398 * international/code-pages.el: Don't register a coding system into
11399 non-iso-charset-alist more than once.
11400 (cp-make-coding-system): Likewise.
11401
11402 2005-05-26 John Wiegley <johnw@newartisans.com>
11403
11404 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
11405 `eshell-resume-eval' is wrapped in a list, it indicates that the
11406 command was run asynchronously. In that case, unwrap the value
11407 before checking the delimiter value.
11408
11409 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
11410 character before a space at the end of a line is \, assume the space
11411 is part of the last argument rather than a final argument separator.
11412
11413 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
11414 is in use, and the target is `t' or `nil' (which are the most common
11415 values), don't assume that the symbol target is a buffer.
11416
11417 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
11418
11419 * calendar/calendar.el (calendar-mode-line-format):
11420 Use mode-line-highlight as mouse-face.
11421
11422 * time.el (display-time-string-forms, display-time-update):
11423 Use mode-line-highlight as mouse-face.
11424
11425 2005-05-26 Jay Belanger <belanger@truman.edu>
11426
11427 * calc/calc.el (calc-language-alist): Remove extra defvar.
11428
11429 2005-05-26 Lute Kamstra <lute@gnu.org>
11430
11431 * arc-mode.el (archive-mode):
11432 * bookmark.el (bookmark-read-annotation-mode)
11433 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
11434 * bs.el (bs-mode):
11435 * calc/calc-yank.el (calc-edit-mode):
11436 * calc/calc.el (calc-mode, calc-trail-mode):
11437 * calculator.el (calculator-mode):
11438 * chistory.el (command-history-mode):
11439 * comint.el:
11440 * cus-edit.el (custom-mode):
11441 * descr-text.el (describe-text-mode):
11442 * ebuff-menu.el (Electric-buffer-menu-mode):
11443 * ediff-util.el (ediff-mode):
11444 * emacs-lisp/re-builder.el (reb-mode):
11445 * emulation/vi.el (vi-mode-setup):
11446 * emulation/ws-mode.el (wordstar-mode):
11447 * eshell/esh-mode.el (eshell-mode):
11448 * forms.el (forms-mode):
11449 * help-mode.el (help-mode):
11450 * hexl.el (hexl-mode):
11451 * ibuffer.el (ibuffer-mode):
11452 * ielm.el (inferior-emacs-lisp-mode):
11453 * info.el (Info-mode, Info-edit-mode):
11454 * international/swedish.el:
11455 * ledit.el (ledit-from-lisp-mode):
11456 * locate.el (locate-mode):
11457 * mail/rmail.el (rmail-mode):
11458 * mail/rmailedit.el (rmail-edit-mode):
11459 * mail/rmailsum.el (rmail-summary-mode):
11460 * mail/supercite.el (sc-electric-mode):
11461 * net/eudc.el (eudc-mode):
11462 * net/quickurl.el (quickurl-list-mode):
11463 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
11464 * obsolete/ooutline.el (outline-mode):
11465 * obsolete/options.el (Edit-options-mode):
11466 * obsolete/rnews.el (news-mode):
11467 * obsolete/rnewspost.el (news-reply-mode):
11468 * play/5x5.el (5x5-mode):
11469 * play/decipher.el (decipher-mode, decipher-stats-mode):
11470 * play/gomoku.el (gomoku-mode):
11471 * play/snake.el (snake-mode):
11472 * play/solitaire.el (solitaire-mode):
11473 * play/tetris.el (tetris-mode):
11474 * progmodes/ada-mode.el (ada-mode):
11475 * progmodes/antlr-mode.el (antlr-mode):
11476 * progmodes/autoconf.el (autoconf-mode):
11477 * progmodes/dcl-mode.el (dcl-mode):
11478 * progmodes/delphi.el (delphi-mode):
11479 * progmodes/ebrowse.el (ebrowse-tree-mode)
11480 (ebrowse-electric-list-mode, ebrowse-member-mode)
11481 (ebrowse-electric-position-mode):
11482 * progmodes/f90.el (f90-mode):
11483 * progmodes/fortran.el (fortran-mode):
11484 * progmodes/icon.el (icon-mode):
11485 * progmodes/idlw-help.el (idlwave-help-mode):
11486 * progmodes/idlw-shell.el (idlwave-shell-mode):
11487 * progmodes/idlwave.el (idlwave-mode):
11488 * progmodes/inf-lisp.el (inferior-lisp-mode):
11489 * progmodes/m4-mode.el (m4-mode):
11490 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
11491 * progmodes/modula2.el (modula-2-mode):
11492 * progmodes/octave-inf.el (inferior-octave-mode):
11493 * progmodes/octave-mod.el (octave-mode):
11494 * progmodes/pascal.el (pascal-mode):
11495 * progmodes/sh-script.el (sh-mode):
11496 * progmodes/sql.el (sql-mode, sql-interactive-mode):
11497 * progmodes/vhdl-mode.el (vhdl-mode):
11498 * progmodes/xscheme.el (scheme-interaction-mode):
11499 * replace.el (occur-mode):
11500 * ses.el (ses-mode):
11501 * simple.el (completion-list-mode):
11502 * skeleton.el:
11503 * speedbar.el (speedbar-mode):
11504 * term.el (term-mode):
11505 * terminal.el (terminal-edit-mode):
11506 * textmodes/reftex-index.el (reftex-index-mode)
11507 (reftex-index-phrases-mode):
11508 * textmodes/reftex-sel.el (reftex-select-label-mode)
11509 (reftex-select-bib-mode):
11510 * textmodes/reftex-toc.el (reftex-toc-mode):
11511 * wdired.el (wdired-change-to-wdired-mode):
11512 * wid-browse.el (widget-browse-mode):
11513 Use run-mode-hooks.
11514
11515 * array.el (array-mode):
11516 * calendar/todo-mode.el (todo-mode):
11517 * man.el (Man-mode):
11518 * play/landmark.el (lm-mode):
11519 * play/mpuz.el (mpuz-mode):
11520 Use kill-all-local-variables and run-mode-hooks.
11521
11522 * subr.el (delay-mode-hooks): Specify indentation.
11523
11524 2005-05-26 Mark A. Hershberger <mah@everybody.org>
11525
11526 * xml.el (xml-substitute-special): Don't die for undefined xml
11527 entities.
11528
11529 2005-05-26 Jay Belanger <belanger@truman.edu>
11530
11531 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
11532 of nil.
11533
11534 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
11535
11536 * progmodes/gdb-ui.el (gdb-frame-address):
11537 Rename from gdb-current-address.
11538 (gdb-previous-frame-address): Rename from gdb-previous-address.
11539 (gdb-selected-frame): Rename from gdb-current-frame.
11540 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
11541 (gdb-frame-number): Rename from gdb-current-stack-level.
11542 (gdb-ann3): Match new mode-name for disassembly buffer.
11543 Extend initialization of variables.
11544 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
11545 (gdb-memory-mode): Use mouse-face in header line.
11546 (gdb-assembler-buffer-name): Call it disassembly and give frame
11547 in mode line.
11548 (gdb-source-spec-regexp, gdb-assembler-custom)
11549 (gdb-invalidate-assembler, gdb-frame-handler):
11550 Make robust to leading zeroes in address format.
11551
11552 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
11553
11554 * textmodes/org.el (org-mode): Use `define-derived-mode' to
11555 define `org-mode'.
11556 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
11557
11558 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
11559
11560 * log-edit.el (log-edit-changelog-entries): Distinguish between
11561 filenames like xfns.c and fns.c.
11562
11563 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
11564
11565 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
11566 point after reverting.
11567 (Buffer-menu-make-sort-button): Handle the case where
11568 `Buffer-menu-use-header-line' is nil.
11569
11570 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
11571
11572 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
11573 New funcs. In minibuffer-local-completion-map bind `]', `/'
11574 and `:' to them.
11575
11576 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11577
11578 * startup.el (normal-top-level): Allow modification of load-path while
11579 we're iterating over it.
11580
11581 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
11582
11583 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
11584 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
11585 (thumbs-resize-interactive, thumbs-insert-image)
11586 (thumbs-insert-thumb, thumbs-dired-show-marked)
11587 (thumbs-find-image-at-point, thumbs-delete-images)
11588 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
11589 (thumbs-increment-image-size, thumbs-decrement-image-size):
11590 Fix typos in docstrings.
11591
11592 2005-05-24 Andre Spiegel <spiegel@gnu.org>
11593
11594 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
11595 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
11596 (cperl-mode): Use them.
11597
11598 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
11599
11600 * window.el (quit-window, shrink-window-if-larger-than-buffer):
11601 Doc fixes.
11602
11603 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
11604
11605 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
11606 Bind C-d to gdb-inferior-io-eof.
11607
11608 * dired.el (dired-dnd-popup-notice): Use message-box.
11609
11610 2005-05-23 Masatake YAMATO <jet@gyve.org>
11611
11612 * bindings.el (mode-line-major-mode-keymap):
11613 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
11614
11615 * faces.el (mode-line-highlight): New face.
11616
11617 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
11618 as mouse-face.
11619
11620 * bindings.el (top-level, help-echo, mode-line-modified)
11621 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
11622 as mouse-face.
11623
11624 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
11625
11626 * progmodes/cc-engine.el (c-guess-basic-syntax):
11627 Remove spurious call to `zerop'.
11628
11629 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
11630
11631 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
11632
11633 CC Mode update to 5.30.10:
11634
11635 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
11636 could go past the limit in decoration level 2, thereby causing
11637 errors during interactive fontification.
11638
11639 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
11640 the file is evaluated interactively.
11641
11642 * cc-engine.el (c-guess-basic-syntax): Handle operator
11643 declarations somewhat better in C++.
11644
11645 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
11646 make use of `run-mode-hooks' which has been added in Emacs 21.1.
11647 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
11648 (awk-mode): Use it.
11649 (make-local-hook): Suppress warning about obsoleteness.
11650
11651 * cc-engine.el, cc-align.el, cc-cmds.el
11652 (c-append-backslashes-forward, c-delete-backslashes-forward)
11653 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
11654 Compensate for return value from `forward-line' when it has moved
11655 but not to a different line due to eob.
11656
11657 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
11658 `objc-method-intro' and `objc-method-args-cont'.
11659
11660 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
11661
11662 CC Mode update to 5.30.10:
11663
11664 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
11665 in the copyright statement. Incidentally, change "along with GNU
11666 Emacs" to "along with this program" where it occurs.
11667
11668 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
11669 so that it is interactive, hence can be found by M-x awk-mode
11670 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
11671 <gmorris+emacs@ast.cam.ac.uk>.
11672
11673 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
11674 Mode's regexps.
11675
11676 2005-05-23 Kevin Ryde <user42@zip.com.au>
11677
11678 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
11679 c-parse-state, to avoid a lisp error (on bad code).
11680
11681 2005-05-23 Lute Kamstra <lute@gnu.org>
11682
11683 * subr.el (font-lock-defaults): Remove defvar as it's already
11684 defined in font-core.el.
11685
11686 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
11687
11688 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
11689
11690 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
11691 more general and work when GDB variable "print pretty" is on,
11692 as with Emacs, for example.
11693
11694 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
11695
11696 * font-core.el: Update comment.
11697
11698 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
11699 Use `after-change-major-mode-hook' instead of `find-file-hook'.
11700
11701 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
11702
11703 2005-05-22 Eli Zaretskii <eliz@gnu.org>
11704
11705 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
11706 and `yank-handler' in the doc strings.
11707
11708 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
11709
11710 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
11711
11712 2005-05-22 Richard M. Stallman <rms@gnu.org>
11713
11714 * help.el (describe-key): Move print-help-return-message call
11715 out of conditional.
11716
11717 * progmodes/etags.el (list-tags): Use with-no-warnings.
11718
11719 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
11720 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
11721 (starttls-extra-args, starttls-extra-arguments): Add defvars.
11722
11723 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
11724
11725 * language/viet-util.el (viet-viscii-nonascii-translation-table):
11726 Add defvar.
11727
11728 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
11729 Use defvar, not defconst.
11730
11731 * hexl.el (hexl-follow-line): Use with-no-warnings.
11732
11733 * emulation/tpu-extras.el: Use write-file-functions instead of
11734 write-file-hooks.
11735
11736 * dired.el (dired-font-lock-keywords): Fontify files with junk
11737 extensions even if marked by -F.
11738
11739 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
11740
11741 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
11742 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
11743 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
11744 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
11745 (concatenate, list-length, get*, getf, cl-remprop):
11746 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
11747 (etypecase, progv, lexical-let, lexical-let*)
11748 (multiple-value-bind, multiple-value-setq, shiftf):
11749 Improve argument/docstring consistency.
11750
11751 * subr.el (focus-frame, unfocus-frame):
11752 Revert deletion on 2005-05-01.
11753
11754 2005-05-22 Andre Spiegel <spiegel@gnu.org>
11755
11756 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
11757 doesn't exist.
11758
11759 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
11760 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
11761
11762 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
11763
11764 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
11765 already deleted variables: auto-fill-hook, blink-paren-hook,
11766 lisp-indent-hook, inhibit-local-variables, unread-command-event,
11767 suspend-hooks, comment-indent-hook, meta-flag,
11768 before-change-function, after-change-function,
11769 font-lock-doc-string-face.
11770
11771 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
11772
11773 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
11774
11775 2005-05-21 Eli Zaretskii <eliz@gnu.org>
11776
11777 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
11778 rmail-dont-reply-to.
11779
11780 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
11781
11782 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
11783 literal blank when splitting new-header-values.
11784
11785 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
11786
11787 * calendar/cal-menu.el (cal-menu-update): Add separator as a
11788 string so that tmm doesn't create a completion entry for it.
11789
11790 * textmodes/table.el (table-disable-menu): Ditto.
11791
11792 2005-05-21 Richard M. Stallman <rms@gnu.org>
11793
11794 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
11795
11796 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
11797
11798 * net/rcompile.el (remote-compile): Use compilation-start.
11799
11800 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
11801
11802 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
11803
11804 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
11805 Default to makefile-bsdmake-mode on BSD systems.
11806
11807 * imenu.el (imenu-generic-expression, imenu--generic-function'):
11808 REGEXP may also be a search function now. The part of doc-string
11809 for describing the structure was 95% identical to that of
11810 `imenu--generic-function'. Unify it there.
11811
11812 * progmodes/make-mode.el (makefile-imenu-generic-expression):
11813 Use function to find dependencies, because regexp alone is so complex,
11814 it easily goes into an endless loop.
11815 (makefile-makepp-mode): Also add submenu for Perl functions
11816 defined in the makefile.
11817 (makefile-bsdmake-mode): Special imenu-generic-expression no
11818 longer needed, due to function call.
11819 (makefile-match-dependency): Take BOUND into account when checking
11820 if we're through.
11821
11822 2005-05-20 Jay Belanger <belanger@truman.edu>
11823
11824 * calc/calc-units.el (calc-invalidate-units-table):
11825 Use inhibit-read-only.
11826 (math-build-units-table-buffer): Use view-mode.
11827
11828 2005-05-20 David Kastrup <dak@gnu.org>
11829
11830 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
11831 easy-menu-add is not a nop on Emacs; and clarify when to call it.
11832
11833 2005-05-20 Lute Kamstra <lute@gnu.org>
11834
11835 * diff-mode.el (diff-header-face, diff-file-header-face)
11836 (diff-index-face, diff-hunk-header-face, diff-removed-face)
11837 (diff-added-face, diff-changed-face, diff-function-face)
11838 (diff-context-face, diff-nonexistent-face): Put them in the
11839 diff-mode customization group.
11840
11841 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
11842
11843 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
11844
11845 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
11846
11847 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
11848 Minor regexp-optimization.
11849
11850 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
11851
11852 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
11853 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
11854 (org-agenda-add-time-grid-maybe): New function.
11855 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
11856 (org-table-create): `dotimes' instead of `mapcar'.
11857 (org-xor): Simplify implementation.
11858 (org-agenda): `inhibit-redisplay' turned on.
11859 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
11860 a consistent line after a state change.
11861 (org-agenda-remove-times-when-in-prefix): New option.
11862 (org-prefix-has-time): New variable.
11863 (org-parse-time-string): Optional argument NODEFAULT.
11864 (org-format-agenda-item): Parse items for time-of-day
11865 specifications and move these into the prefix if possible.
11866 (org-agenda-priority): Get current heading, not previous heading
11867 during agenda remote editing.
11868
11869 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
11870
11871 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
11872 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
11873 (remove-duplicates, delete-duplicates, substitute)
11874 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
11875 (nsubstitute-if-not, find, find-if, find-if-not, position)
11876 (position-if, position-if-not, count, count-if, count-if-not)
11877 (mismatch, search, sort*, stable-sort, merge, member*)
11878 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
11879 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
11880 (intersection, nintersection, set-difference, nset-difference)
11881 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
11882 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
11883 (nsublis, tree-equal): Improve argument/docstring consistency.
11884
11885 * subr.el (send-string, send-region):
11886 Remove obsolescence declaration.
11887 (window-dot, set-window-dot, read-input, show-buffer)
11888 (eval-current-buffer, string-to-int):
11889 Add release number to obsolescence declarations.
11890
11891 2005-05-19 Kim F. Storm <storm@cua.dk>
11892
11893 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
11894 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
11895
11896 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
11897
11898 * faces.el (list-faces-display): Make back button respect optional
11899 regexp arg.
11900
11901 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
11902
11903 * calculator.el (calculator-radix-grouping-mode)
11904 (calculator-radix-grouping-digits, calculator-displayer)
11905 (calculator-radix-grouping-separator, calculator-copy-displayer):
11906 * dabbrev.el (dabbrev-search-these-buffers-only):
11907 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
11908 (diff-advance-after-apply-hunk, diff-mode-hook)
11909 (diff-minor-mode-prefix):
11910 * imenu.el (imenu-use-popup-menu):
11911 * jit-lock.el (jit-lock-context-time):
11912 * newcomment.el (comment-fill-column, comment-column)
11913 (comment-style, comment-padding, comment-multi-line)
11914 (comment-empty-lines, comment-auto-fill-only-comments):
11915 * reveal.el (reveal-around-mark):
11916 * uniquify.el (uniquify-buffer-name-style)
11917 (uniquify-after-kill-buffer-p)
11918 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
11919 (uniquify-min-dir-content, uniquify-separator)
11920 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
11921 * w32-vars.el (w32-fixed-font-alist):
11922 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
11923 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
11924 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
11925 * progmodes/perl-mode.el (perl-indent-level)
11926 (perl-continued-statement-offset, perl-continued-brace-offset)
11927 (perl-brace-offset, perl-brace-imaginary-offset)
11928 (perl-label-offset, perl-indent-continued-arguments)
11929 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
11930 * progmodes/tcl.el (tcl-indent-level)
11931 (tcl-continued-indent-level, tcl-auto-newline)
11932 (tcl-tab-always-indent, tcl-electric-hash-style)
11933 (tcl-help-directory-list, tcl-use-smart-word-finder)
11934 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
11935 (inferior-tcl-source-command):
11936 * textmodes/fill.el (enable-kinsoku):
11937 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
11938 * textmodes/table.el (table-yank-handler):
11939 Specify missing group (and type, if simple) in defcustom.
11940
11941 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
11942
11943 * progmodes/compile.el (compilation-finish-function): Fix defvar.
11944
11945 2005-05-19 Richard M. Stallman <rms@gnu.org>
11946
11947 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
11948
11949 * subr.el (event-basic-type): Don't get an error.
11950 (left-fringe-p): Function deleted.
11951
11952 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
11953 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
11954
11955 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
11956 in recursive copy.
11957
11958 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
11959
11960 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
11961
11962 * emacs-lisp/bytecomp.el
11963 (byte-compile-file-form-custom-declare-variable): Call
11964 byte-compile-nogroup-warn if appropriate.
11965
11966 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
11967 (compilation-set-window): Don't call left-fringe-p; do it directly.
11968
11969 2005-05-19 Jay Belanger <belanger@truman.edu>
11970
11971 * calc/calc-graph.el (calc-graph-format-data): Make sure
11972 var-PlotRejects is bound before trying to check its value.
11973
11974 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
11975
11976 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
11977 definition of this variable from reftex-global.el to reftex.el,
11978 because it is needed in the menu.
11979
11980 2005-05-19 Lute Kamstra <lute@gnu.org>
11981
11982 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
11983 years are fixed. Don't insert a space after a dash.
11984
11985 2005-05-19 Kim F. Storm <storm@cua.dk>
11986
11987 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
11988
11989 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
11990
11991 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
11992 strings, because (eq ... ?\\) is fairly frequent.
11993
11994 * progmodes/make-mode.el (makefile-add-this-line-targets):
11995 Simplify and integrate into `makefile-pickup-targets'.
11996 (makefile-add-this-line-macro): Simplify and integrate into
11997 `makefile-pickup-macros.
11998 (makefile-pickup-filenames-as-targets): Simplify.
11999 (makefile-previous-dependency, makefile-match-dependency):
12000 Don't stumble over `::'.
12001
12002 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
12003
12004 * subr.el (post-command-idle-hook, post-command-idle-delay):
12005 Remove obsoletion of post-command-idle-hook and
12006 post-command-idle-delay.
12007
12008 * faces.el (list-faces-display): Provide button when describe-face
12009 is called to take user back to the list of faces.
12010
12011 * help-fns.el (describe-variable): Remove hyperlinks in a
12012 variable's value as these are quite frequently inappropriate.
12013
12014 * follow.el (follow-submit-feedback, follow-mode):
12015 Remove references to post-command-idle-hook.
12016
12017 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
12018
12019 * progmodes/make-mode.el (makefile-previous-dependency)
12020 (makefile-match-dependency): Check for := (and in bsd mode also
12021 !=) to give a better result, even when font-lock is not on.
12022
12023 2005-05-18 Jay Belanger <belanger@truman.edu>
12024
12025 * calc/calc-help.el (calc-s-prefix-help):
12026 Add `calc-copy-special-constant' to help string.
12027
12028 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
12029
12030 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
12031
12032 2005-05-18 Jay Belanger <belanger@truman.edu>
12033
12034 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
12035 in linear factors are in proper order.
12036
12037 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
12038
12039 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
12040 Support for jurabib.
12041
12042 * textmodes/reftex.el (featurep): Define aliases for overlay
12043 commands, for XEmacs compatibility, and use these aliases in
12044 overlay initializations.
12045 (reftex-highlight): Use `reftex-move-overlay'.
12046 (reftex-unhighlight): Use `reftex-delete-overlay'.
12047 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
12048 (reftex-access-search-path): Use `reftex-uniquify' instead of
12049 `reftex-uniq'
12050
12051 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
12052 `before-string' property modification enables for Emacs as well.
12053 (reftex-select-item): Use `reftex-delete-overlay'.
12054 (reftex-select-mark): Use `reftex-make-overlay' and
12055 `reftex-overlay-put'.
12056 (reftex-select-unmark): Use `reftex-delete-overlay' and
12057 `reftex-overlay-put'.
12058
12059 2005-05-18 Lute Kamstra <lute@gnu.org>
12060
12061 * emacs-lisp/lisp.el (check-parens): Fix docstring.
12062
12063 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
12064
12065 * add-log.el (add-change-log-entry):
12066 * array.el (array-make-template, array-reconfigure-rows)
12067 (array-init-max-row, array-init-max-column)
12068 (array-init-columns-per-line, array-init-field-width):
12069 * replace.el (replace-match-maybe-edit, perform-replace):
12070 * textmodes/spell.el (spell-region):
12071 Replace `read-input' by `read-string'.
12072
12073 * forms.el (forms-mode):
12074 * finder.el (finder-compile-keywords):
12075 * shadowfile.el (shadow-read-files):
12076 Replace `eval-current-buffer' by `eval-buffer'.
12077
12078 * terminal.el (te-pass-through):
12079 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
12080 (ange-ftp-raw-send-cmd):
12081 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
12082 (send-process-next-char, telnet-initial-filter, telnet):
12083 Replace `send-string' by `process-send-string'.
12084
12085 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
12086 (prolog-consult-region): Replace `send-string' by
12087 `process-send-string'; replace `send-region' by `process-send-region'.
12088
12089 * progmodes/delphi.el (delphi-log-msg):
12090 Replace `set-window-dot' by `set-window-point'.
12091
12092 * subr.el (window-dot, set-window-dot, read-input, send-string)
12093 (send-region, show-buffer, eval-current-buffer):
12094 Make really obsolete, as the comment says.
12095
12096 2005-05-17 Kim F. Storm <storm@cua.dk>
12097
12098 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
12099 (cua--init-keymaps): Bind C-return instead of S-return to set
12100 rectangle mark.
12101
12102 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
12103 instead of S-return to toggle/clear rectangle mark.
12104
12105 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
12106
12107 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
12108 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
12109 Also fontify plain strings assigned to variables, mostly so that a
12110 colon has a face and is thus not taken as a dependency separator.
12111 (makefile-previous-dependency): Inline the new matcher, because it
12112 is too complex to work in both directions.
12113 (makefile-match-dependency): Eliminate `backward' arg (see above).
12114 Completely reimplemented so as to not sometimes go into an endless
12115 loop. It should also be more efficient, because first it only
12116 searches for `:', instead of applying the very complex regexp.
12117 (makefile-mode): Cancel `font-lock-support-mode', because blocks
12118 to be fontified in one piece can be too long for JIT.
12119 Makefiles are never *that* big.
12120
12121 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
12122
12123 * dired.el (dired-mode): Simplify.
12124
12125 2005-05-17 Lute Kamstra <lute@gnu.org>
12126
12127 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
12128 defcustom for the mode hook variable.
12129
12130 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
12131 Emacs Lisp Reference Manual.
12132
12133 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
12134
12135 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
12136 (evenp, list*):
12137 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
12138 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
12139
12140 * net/tramp-smb.el (tramp-smb-open-connection):
12141 Pass `tramp-chunksize' as fifth (required) argument.
12142
12143 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
12144
12145 * font-lock.el (lisp-font-lock-keywords-1):
12146 Set `font-lock-negation-char-face' for [^...] char group.
12147 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
12148
12149 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
12150 a var, and refine it to mask one more level of nested vars.
12151 (makefile-rule-action-regex): Turn it into a var, and refine it so
12152 it recognizes backslashed continuation lines as belonging to the
12153 same command.
12154 (makefile-macroassign-regex): Refine it so it recognizes
12155 backslashed continuation lines as belonging to the same command.
12156 (makefile-var-use-regex): Don't look at the next char, because it
12157 might be the same one to be skipped by the initial [^$], leading
12158 to an overlooked variable use.
12159 (makefile-make-font-lock-keywords): Remove two parameters, which
12160 are now variables that some of the modes set locally.
12161 Handle dependency and rule action matching through functions, because
12162 regexps alone match too often. Dependency matching now comes
12163 last, so it can check, whether a colon already matched something else.
12164 (makefile-mode): Inform that font-lock improves makefile parsing
12165 capabilities.
12166 (makefile-match-dependency, makefile-match-action): New functions.
12167
12168 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
12169
12170 * emacs-lisp/cl-extra.el (equalp): Doc fix.
12171
12172 * align.el (align-regexp):
12173 * ansi-color.el (ansi-color-get-face):
12174 * array.el (array-reconfigure-rows, array-init-max-row)
12175 (array-init-max-column, array-init-columns-per-line)
12176 (array-init-field-width):
12177 * dired-aux.el (dired-trample-file-versions):
12178 * dired-x.el (dired-mark-sexp):
12179 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
12180 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
12181 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
12182 * faces.el (face-read-integer):
12183 * files.el (backup-extract-version, insert-directory):
12184 * hexl.el (hexl-insert-decimal-char):
12185 * server.el (server-process-filter):
12186 * shell.el (shell-extract-num):
12187 * startup.el (command-line-1):
12188 * term.el (term-command-hook):
12189 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
12190 (time-stamp-do-number):
12191 * time.el (display-time-update):
12192 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
12193 (timezone-fix-time):
12194 * vms-patch.el (vms-suspend-resume-hook):
12195 * calendar/appt.el (appt-convert-time):
12196 * calendar/cal-bahai.el (mark-bahai-diary-entries):
12197 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
12198 * calendar/cal-islam.el (mark-islamic-diary-entries):
12199 * calendar/calendar.el (calendar-cursor-to-date)
12200 (calendar-star-date):
12201 * calendar/diary-lib.el (diary-attrtype-convert)
12202 (mark-diary-entries, diary-entry-time):
12203 * calendar/solar.el (solar-get-number):
12204 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
12205 * emacs-lisp/re-builder.el (reb-display-subexp):
12206 * emulation/edt.el (edt-set-scroll-margins):
12207 * emulation/tpu-extras.el (tpu-set-scroll-margins):
12208 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
12209 (vip-get-ex-count):
12210 * emulation/viper-ex.el (viper-get-ex-token)
12211 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
12212 * international/fontset.el (fontset-plain-name):
12213 * mail/feedmail.el (feedmail-look-at-queue-directory):
12214 * mail/mailalias.el (mail-get-names):
12215 * mail/rmail.el (rmail-convert-to-babyl-format):
12216 * mail/rmailsum.el (rmail-make-basic-summary-line)
12217 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
12218 (rmail-summary-goto-msg):
12219 * mail/smtpmail.el (smtpmail-read-response):
12220 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
12221 (ange-ftp-vms-add-file-entry):
12222 * play/gametree.el (gametree-looking-at-ply)
12223 (gametree-current-branch-score):
12224 * progmodes/ada-xref.el (ada-prj-find-prj-file)
12225 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
12226 * progmodes/cperl-mode.el (condition-case):
12227 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
12228 (ebrowse-set-member-buffer-column-width)
12229 (ebrowse-select-1st-to-9nth):
12230 * progmodes/etags.el (etags-snarf-tag):
12231 * progmodes/flymake.el (flymake-parse-line):
12232 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
12233 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
12234 (idlwave-shell-menu-def):
12235 * progmodes/ps-mode.el (ps-run-goto-error):
12236 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
12237 (vhdl-speedbar-contract-level):
12238 * term/mac-win.el (x-handle-numeric-switch):
12239 * term/sun-mouse.el (sun-get-frame-data):
12240 * term/w32-win.el (x-handle-numeric-switch):
12241 * term/x-win.el (x-handle-numeric-switch):
12242 * textmodes/ispell.el (ispell-parse-output):
12243 * textmodes/nroff-mode.el (nroff-outline-level):
12244 * textmodes/reftex-cite.el (reftex-bib-sort-year)
12245 (reftex-bib-sort-year-reverse, reftex-format-citation):
12246 * textmodes/reftex-parse.el (reftex-init-section-numbers)
12247 (reftex-section-number):
12248 * textmodes/texinfmt.el (texinfo-paragraphindent):
12249 Replace `string-to-int' by `string-to-number'.
12250
12251 * international/latexenc.el: Add page marker to force the "Local
12252 Variables:" string out of the last page.
12253
12254 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
12255
12256 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
12257 tooltip-change-major-mode.
12258 (gud-tooltip-print-command): Remove case where gud-minor-mode
12259 is gdb ("--fullname").
12260 (gud-tooltip-tips): Turn GUD tooltips off for this case and
12261 explain to user.
12262
12263 2005-05-16 Jay Belanger <belanger@truman.edu>
12264
12265 * calc/calc-store.el (calc-copy-special-constant): New function.
12266
12267 * calc/calc-ext.el (calc-init-extensions): Add binding for
12268 `calc-copy-special-constant'.
12269
12270 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
12271 for the `calc-copy-special-constant' command.
12272
12273 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
12274
12275 * subr.el (left-fringe-p): New function.
12276
12277 * progmodes/compile.el (compilation-setup): Set local value of
12278 overlay-arrow-string to "" always.
12279 (compilation-set-window): Left fringe then don't scroll.
12280 No left fringe then no arrow and scroll message to top.
12281 (compilation-context-lines): Adjust doc string accordingly.
12282
12283 2005-05-16 Kim F. Storm <storm@cua.dk>
12284
12285 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
12286 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
12287 (ido-wide-find-dir-or-delete-dir): New command for M-d.
12288 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
12289 (ido-read-file-name): Handle commands with ido property value
12290 equal to find-file as reading a file name, to allow C-d to enter dired.
12291 (ibuffer-find-file): Add ido property with value find-file.
12292
12293 2005-05-15 Kim F. Storm <storm@cua.dk>
12294
12295 * subr.el (open-network-stream-nowait): Remove.
12296 (open-network-stream-server): Remove.
12297
12298 2005-05-15 Richard M. Stallman <rms@gnu.org>
12299
12300 * faces.el (describe-face): Output a definition link button.
12301
12302 * help-mode.el (help-face-def): New button type.
12303
12304 * emacs-lisp/copyright.el (copyright-fix-years):
12305 Match properly if the first year is 2-digit.
12306 Don't mess up the whitespace after the years by filling.
12307
12308 * dired-aux.el (dired-mark-confirm):
12309 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
12310
12311 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
12312 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
12313 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
12314
12315 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
12316 Set font-lock-comment-start-skip.
12317
12318 * font-lock.el (font-lock-comment-start-skip): New variable.
12319 (font-lock-comment-end-skip): New variable.
12320 (font-lock-fontify-syntactically-region): Use them if non-nil.
12321
12322 2005-05-15 Jay Belanger <belanger@truman.edu>
12323
12324 * calc/calc-store.el (calc-store-value): Return a string rather
12325 than display it as a message.
12326 Use calc-var-name for variable name.
12327 (calc-store-into): Add the result of calc-store-value to message.
12328 (calc-copy-variable): Add a message.
12329 (calc-store-exchange): Improve error messages.
12330 (calc-store-binary, calc-store-map): Don't reset the values of
12331 special constants.
12332
12333 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
12334
12335 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
12336 manual to docstring.
12337
12338 * files.el (hack-local-variables-confirm): Add STRING argument.
12339 Make the function handle non file visiting buffers correctly.
12340 (hack-local-variables-prop-line, hack-local-variables)
12341 (hack-one-local-variable): Use STRING arg of
12342 `hack-local-variables-confirm'.
12343
12344 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
12345
12346 Sync with Tramp 2.0.49.
12347
12348 * net/tramp.el (tramp-handle-dired-call-process)
12349 (tramp-handle-insert-directory):`insert-buffer' cannot be used
12350 because the contents of the Tramp buffer is changed before
12351 insertion (`expand-file' and alike).
12352 (tramp-handle-insert-directory): If `localname' has an empty
12353 nondirectory name, it must not be quoted.
12354 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
12355 variable `tramp-chunksize'. Change callees.
12356 (tramp-open-connection-setup-interactive-shell): Check remote host
12357 for buggy `send-process-string' implementation.
12358 Set `tramp-chunksize' if found. Reported by Michael Kifer
12359 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
12360 (tramp-handle-shell-command): `insert-buffer' cannot be used
12361 because the contents of the Tramp buffer is changed before
12362 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
12363 <frederic.bothamy@free.fr>.
12364 (tramp-set-auto-save): Actions should be done for Tramp file name
12365 handler only. Ange-FTP has its own auto-save mechanism.
12366 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
12367 (tramp-set-auto-save-file-modes): Set file modes of
12368 `buffer-auto-save-file-name' to ?\600 as fallback solution.
12369 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
12370 (tramp-bug): Remove obsolete variable.
12371 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
12372 for presence of `mml-mode'. Make it running for older Emacsen as well.
12373
12374 2005-05-14 John Paul Wallington <jpw@pobox.com>
12375
12376 * ibuf-ext.el (define-ibuffer-filter filename):
12377 If `dired-directory' is a list, use its car.
12378
12379 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
12380
12381 * ibuffer.el (define-ibuffer-column filename):
12382 If `dired-directory' is a list, use its car.
12383
12384 2005-05-14 Richard M. Stallman <rms@gnu.org>
12385
12386 * subr.el (symbol-file): Doc fix.
12387
12388 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
12389 (byte-compile-form): Call byte-compile-nogroup-warn.
12390 (byte-compile-warning-types): Doc fix.
12391
12392 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
12393
12394 * progmodes/cc-engine.el (c-literal-faces):
12395 Add font-lock-comment-delimiter-face.
12396
12397 * net/net-utils.el (dig): Use with-no-warnings.
12398
12399 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
12400 (sc-recite-frame-alist, sc-default-cite-frame)
12401 (sc-default-uncite-frame, sc-default-recite-frame)
12402 (sc-attrib-selection-list, sc-rewrite-header-list):
12403 Mark as risky-local-variable.
12404
12405 * international/ogonek.el (ogonek-jak, ogonek-how):
12406 Don't use beginning-of-buffer.
12407
12408 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
12409
12410 * calendar/solar.el (solar-data-list): Move definition up.
12411
12412 * dnd.el (dnd-protocol-alist): Add autoload.
12413
12414 * progmodes/sh-script.el: Many doc usage fixes.
12415 (sh-indent-after-do): Change default to match common styles.
12416
12417 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
12418
12419 * files.el (interpreter-mode-alist)
12420 (auto-mode-interpreter-regexp): Doc fixes.
12421
12422 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
12423
12424 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
12425
12426 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
12427
12428 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12429
12430 * dired.el (dired-mode): make-variable-buffer-local =>
12431 make-local-variable.
12432
12433 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12434
12435 * term/mac-win.el (mac-select-convert-to-string): Try coding
12436 systems in mac-script-code-coding-systems if specified one cannot
12437 encode string for `com.apple.traditional-mac-plain-text'.
12438
12439 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
12440
12441 * progmodes/make-mode.el (makefile-targets-face)
12442 (makefile-shell-face, makefile-makepp-perl-face): New faces.
12443 (makefile-dependency-regex): Fix it to not make the colon in
12444 $(var:a=b) special.
12445 (makefile-rule-action-regex): New regexp for highlighting embedded
12446 Shell strings.
12447 (makefile-macroassign-regex): Handle != for highlighting as
12448 embedded Shell strings.
12449 (makefile-var-use-regex): New const.
12450 (makefile-statements, makefile-automake-statements)
12451 (makefile-gmake-statements, makefile-makepp-statements)
12452 (makefile-bsdmake-statements): New consts.
12453 (makefile-make-font-lock-keywords): New function.
12454 (makefile-automake-font-lock-keywords)
12455 (makefile-gmake-font-lock-keywords)
12456 (makefile-makepp-font-lock-keywords)
12457 (makefile-bsdmake-font-lock-keywords): New consts.
12458 (makefile-mode-map): Add switchers between the various submodes.
12459 (makefile-mode): Document the availability of the variants.
12460 (makefile-automake-mode, makefile-gmake-mode)
12461 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
12462
12463 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
12464 new variants of makefile-mode.
12465
12466 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
12467
12468 * font-lock.el (font-lock-comment-delimiter-face): Fix up
12469 the inheritance.
12470
12471 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
12472
12473 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
12474 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
12475
12476 * files.el (normal-mode): Extend the scope of the
12477 `enable-local-variables' binding to include the `set-auto-mode' call.
12478 (magic-mode-alist): Doc fix.
12479
12480 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
12481
12482 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
12483 font-lock-comment-face rather than copying its setting.
12484
12485 2005-05-12 Andreas Schwab <schwab@suse.de>
12486
12487 * eshell/esh-mode.el (eshell-send-input): Doc fix.
12488
12489 2005-05-12 Lute Kamstra <lute@gnu.org>
12490
12491 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
12492 defcustom for the mode hook variable. Delete the last argument.
12493 * generic-x.el: Fix callers of define-generic-mode.
12494 (generic-x-modes): Delete group.
12495 (show-tabs-tab-face, show-tabs-space-face): Put them in the
12496 generic-x customization group.
12497
12498 2005-05-12 Kim F. Storm <storm@cua.dk>
12499
12500 * font-lock.el (font-lock-negation-char-face): Default to "off".
12501
12502 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
12503 font-lock-negation-char-face to ! in !=.
12504
12505 2005-05-12 Masatake YAMATO <jet@gyve.org>
12506
12507 * add-log.el (find-change-log): Fix typos in the docstring
12508 of function.
12509
12510 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
12511
12512 * international/latexenc.el (latexenc-find-file-coding-system):
12513 Avoid `re-search-forward' when looking for input encoding because
12514 of speed and safety. Better regular expressions for recognizing
12515 input encoding. Limit a search for TeX-master/tex-main-file to
12516 the local variable section.
12517
12518 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
12519
12520 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
12521 syntax of $ to "'" (quote).
12522
12523 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
12524
12525 * dnd.el (dnd-protocol-alist): Improve custom type.
12526
12527 * dired.el (dired-dnd-protocol-alist): New variable.
12528 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
12529 `dired-mode-hook' to the end.
12530
12531 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
12532
12533 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
12534 comment-end if comment-start-skip is not set.
12535 Obey the font-lock-comment-delimiter-face variables.
12536
12537 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
12538
12539 * files.el (executable-find): Move from executable.el. Use
12540 locate-file.
12541 * progmodes/executable.el (executable-find): Move to files.el.
12542
12543 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
12544 when trying to ensure forward progress.
12545
12546 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
12547
12548 * mouse-sel.el (mouse-sel-follow-link-p): New function.
12549 (mouse-select, mouse-select-internal, mouse-extend-internal):
12550 Use it to implement mouse-1-click-follows-link functionality.
12551
12552 2005-05-11 Richard M. Stallman <rms@gnu.org>
12553
12554 * font-lock.el (font-lock-fontify-syntactically-region):
12555 Use font-lock-comment-delimiter-face for comment delimiters.
12556
12557 2005-05-10 Jay Belanger <belanger@truman.edu>
12558
12559 * calc/calc-help.el (calc-m-prefix-help): Add mention of
12560 preserving embedded modes.
12561
12562 2005-05-10 Richard M. Stallman <rms@gnu.org>
12563
12564 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
12565
12566 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
12567 Move from ada-stmt.el.
12568 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
12569
12570 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
12571 Move to ada-mode.el.
12572 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
12573
12574 * cus-edit.el (custom-file): Call file-chase-links.
12575
12576 * files.el (read-directory-name): Fix previous change.
12577 (hack-local-variables-confirm): New function.
12578 (hack-local-variables-prop-line, hack-local-variables)
12579 (hack-one-local-variable): Use it.
12580
12581 2005-05-10 Lute Kamstra <lute@gnu.org>
12582
12583 * font-lock.el (font-lock-keywords-alist)
12584 (font-lock-removed-keywords-alist): Clarify docstrings.
12585
12586 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
12587
12588 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
12589 (gdb-source-info): Check for preprocessor info.
12590 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
12591 a macro for a function.
12592 (gdb-info-breakpoints-custom): Try to find file again if not already
12593 found (user might have used GDB dir command).
12594 (gdb-get-location): Update gdb-location-alist correctly for change
12595 to gdb-info-breakpoints-custom.
12596
12597 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
12598 (gud-tooltip-print-command): Add gdbmi case.
12599 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
12600 preprocessor info.
12601
12602 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
12603
12604 * startup.el (fancy-splash-insert): Fix typo in doc string.
12605
12606 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
12607
12608 * obsolete/float.el (string-to-float):
12609 * obsolete/hilit19.el (hilit-add-pattern):
12610 * obsolete/rnews.el (news-parse-range, news-select-message)
12611 (news-get-pruned-list-of-files): Replace `string-to-int' by
12612 `string-to-number'.
12613
12614 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
12615 `find-file-not-found-hooks'; use `add-hook'.
12616 (uncompress-while-visiting): Set `write-file-functions', not
12617 `write-file-hooks'; use `add-hook'.
12618
12619 2005-05-09 Kim F. Storm <storm@cua.dk>
12620
12621 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
12622 (cua-paste): Handle clipboard action.
12623 (cua--init-keymaps): Remap clipboard-kill-region and
12624 clipboard-kill-ring-save.
12625
12626 2005-05-08 Eli Zaretskii <eliz@gnu.org>
12627
12628 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
12629 Improve commentary.
12630
12631 * simple.el (next-error-overlay-arrow-position): Revert the change
12632 made on 2005-04-30.
12633
12634 2005-05-07 Jay Belanger <belanger@truman.edu>
12635
12636 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
12637 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
12638 `calc-sel-reselect'.
12639
12640 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
12641 Calc is in embedded mode.
12642
12643 2005-05-07 Eli Zaretskii <eliz@gnu.org>
12644
12645 * progmodes/compile.el (compilation-setup):
12646 Set overlay-arrow-string to an empty string on text terminals.
12647
12648 * textmodes/ispell.el (ispell-program-name): Try looking for
12649 "aspell" along exec-path, and if found, use it as the default
12650 speller program.
12651
12652 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
12653
12654 * international/mule.el (sgml-xml-auto-coding-function):
12655 Recognize encoding='FOO' in single quotes as well as in double quotes.
12656
12657 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
12658
12659 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
12660 as well as `interactive', so that defmacro* would recognize
12661 `declare' forms.
12662
12663 2005-05-07 Eli Zaretskii <eliz@gnu.org>
12664
12665 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
12666 Explain more about the LIGHTER arg's usage in the doc string.
12667 Add commentary to clarify what the code does. Fix the regexp that
12668 strips whitespace from LIGHTER. Quote LIGHTER before using it,
12669 since it could have characters special to regular expressions.
12670
12671 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
12672
12673 * replace.el (occur-1): Bind inhibit-read-only so that
12674 erase-buffer doesn't barf on read-only text properties (likewise
12675 for add-text-properties in occur-engine). Mark buffer as unmodified.
12676 (occur-engine): Don't set buffer-read-only here.
12677
12678 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12679
12680 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
12681 list-buffers-directory. This caused the *cvs-commit* buffer to be
12682 sometimes mistakenly reused as a *cvs* buffer.
12683
12684 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
12685
12686 * tooltip.el: Move code for GUD tooltips into gud.el.
12687 (require): CL no longer needed to compile case.
12688 (tooltip-mode): Do not toggle functions for GUD tooltips.
12689 (tooltip-gud-tips-p): Remove. Replace with minor mode
12690 gud-tooltip-mode in gud.el.
12691 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
12692 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
12693 tooltip-gud prefix with gud-tooltip and obsolete.
12694 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
12695 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
12696 (tooltip-mouse-motion): Mouse movement functions/variable.
12697 Rename in gud.el by adding gud prefix.
12698 (tooltip-gud-original-filter, tooltip-gud-dereference)
12699 (tooltip-gud-event, tooltip-toggle-gud-tips)
12700 (tooltip-gud-process-output, tooltip-gud-print-command)
12701 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
12702 gud.el by replacing tooltip-gud prefix with gud-tooltip.
12703 (gdb-tooltip-print): Move to gdb-ui.el.
12704
12705 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
12706 (require): CL needed to compile case.
12707 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
12708 tooltip-gud-tips-p. Make it a minor-mode.
12709 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
12710 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
12711 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
12712 (gud-tooltip-change-major-mode)
12713 (gud-tooltip-activate-mouse-motions-if-enabled)
12714 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
12715 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
12716 (gud-tooltip-original-filter, gud-tooltip-dereference)
12717 (gud-tooltip-event, tooltip-toggle-gud-tips)
12718 (gud-tooltip-process-output, gud-tooltip-print-command)
12719 (gud-tooltip-tips): Move from tooltip.el.
12720
12721 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
12722 (gdb-cpp-define-alist-flags): Doc fix.
12723 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
12724 gud-tooltip-mode is t.
12725
12726 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12727
12728 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
12729 evaporate if their text is deleted.
12730 (goto-address-at-point): Make it work as a mouse binding as well.
12731 (goto-address-at-mouse): Obsolete it. Update users.
12732
12733 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
12734
12735 * calendar/appt.el (top-level): No longer activate on load.
12736
12737 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
12738
12739 * calendar/cal-bahai.el (mark-bahai-diary-entries):
12740 * net/webjump.el (webjump):
12741 * progmodes/idlw-help.el (idlwave-do-context-help1)
12742 (idlwave-highlight-linked-completions):
12743 * textmodes/po.el (po-find-file-coding-system-guts):
12744 Replace `assoc-ignore-case' by `assoc-string'.
12745
12746 2005-05-06 Eli Zaretskii <eliz@gnu.org>
12747
12748 * files.el (locate-file): Doc fix.
12749
12750 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
12751 Remove the redundant test for ms-dos.
12752
12753 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
12754 look for the preprocessor with exec-suffixes. If not found in
12755 standard places, look in exec-path. Remove most of the tests that
12756 used system-type.
12757
12758 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
12759
12760 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
12761
12762 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
12763 file-name clash with jka-compr.el on 8+3 filesystems.
12764
12765 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12766
12767 * term/mac-win.el: Don't define or bind scroll bar functions if
12768 x-toolkit-scroll-bars is t.
12769 (x-select-text, x-get-selection-value): Clear
12770 x-last-selected-text-clipboard if x-select-enable-clipboard is
12771 nil.
12772 (PRIMARY): Put mac-scrap-name property.
12773 (mac-select-convert-to-file-url): New function.
12774 (public.file-url): New selection target type. Add to
12775 selection-converter-alist.
12776 (x-get-selection, x-selection-value): Handle it.
12777 (x-cut-buffer-or-selection-value): New alias.
12778
12779 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12780
12781 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
12782 entry to avoid calling bibtex-find-entry with arg global
12783 being t. Remove arg key.
12784 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
12785 (bibtex-copy-summary-as-kill): Change accordingly.
12786
12787 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
12788
12789 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
12790 (org-agenda-date-later): Use with-current-buffer.
12791
12792 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
12793
12794 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
12795 (define-obsolete-variable-alias): Doc Fixes.
12796
12797 2005-05-06 Kim F. Storm <storm@cua.dk>
12798
12799 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
12800 vertical-motion when selective-display is active.
12801
12802 * ido.el (ido-setup-hook): New hook.
12803 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
12804 (ido-input-stack): New var.
12805 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
12806 ido-next-work-file binding to M-O.
12807 Bind M-f to ido-wide-find-file-or-pop-dir.
12808 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
12809 (ido-read-internal): Run ido-setup-hook.
12810 Catch quit in read-file-name and read-string to cancel edit.
12811 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
12812 Automatically pop-all when completing a directory name (RET).
12813 (ido-file-internal): Add with-no-warnings around ffap and dired code.
12814 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
12815 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
12816 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
12817 New functions for M-b/M-f to move among the directory components.
12818 (ido-make-merged-file-list): Catch quit to cancel merge.
12819 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
12820 (ido-completion-help): No warnings for ido-completion-buffer-full.
12821
12822 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
12823
12824 * font-lock.el (font-lock-negation-char-face): New face and variable.
12825 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
12826 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
12827 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
12828 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
12829
12830 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
12831
12832 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
12833 Fix typo in docstring.
12834
12835 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
12836 (ebrowse-print-statistics-line)
12837 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
12838
12839 * term/w32-win.el (image-library-alist): Add additional name for
12840 Xpm library.
12841
12842 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
12843
12844 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
12845 use gcc instead of cpp.
12846
12847 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
12848 (gdb-create-define-alist): Use it.
12849 (gdb-cpp-define-alist-program): Update for MS-DOS.
12850
12851 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
12852
12853 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
12854
12855 2005-05-04 Richard M. Stallman <rms@gnu.org>
12856
12857 * help.el (describe-key): No error when UNTRANSLATED is nil.
12858
12859 * simple.el (line-move-1): Fix previous change to signal errors
12860 appropriately.
12861
12862 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
12863
12864 * calendar/icalendar.el (icalendar-version): Now at 0.12.
12865 (icalendar-duration-correction): Remove.
12866 (icalendar--get-event-properties): Split result at commas.
12867 (icalendar--decode-isoduration): New optional argument
12868 DURATION-CORRECTION.
12869 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
12870 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
12871 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
12872 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
12873 (icalendar--convert-anniversary-to-ical): New functions, extracted
12874 from icalendar-export-region, with bug fixes.
12875 (icalendar-export-region): Use the above functions.
12876 (icalendar-import-buffer): Check before saving diary file.
12877 (icalendar--convert-recurring-to-diary)
12878 (icalendar--convert-non-recurring-all-day-to-diary)
12879 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
12880 extracted from icalendar--convert-ical-to-diary, with bug fixes.
12881 (icalendar--convert-ical-to-diary): Use the above functions.
12882
12883 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
12884
12885 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
12886 Remove these recent additions.
12887 (c-mode): Restore to before 2005-04-28.
12888
12889 * progmodes/cc-vars.el (cc-define-list-program): Remove this
12890 recent addition.
12891
12892 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
12893 (gdb-define-alist): New variables.
12894 (gdb-create-define-alist): New function.
12895 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
12896 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
12897 with string-to-number.
12898 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
12899
12900 * progmodes/gud.el: Replace string-to-int with string-to-number.
12901 (gud-find-file): Handle gdb-define-alist.
12902
12903 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
12904
12905 2005-05-02 Jay Belanger <belanger@truman.edu>
12906
12907 * calc/calc-aent.el (math-read-token):
12908 * calc/calc-bin.el (calc-word-size):
12909 * calc/calc-ext.el (calc-read-number-fancy):
12910 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
12911 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
12912 * calc/calc-frac.el (calc-over-notation):
12913 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
12914 (calc-graph-num-points, calc-graph-init):
12915 * calc/calc-prog.el (calc-read-parse-table-part)
12916 (calc-edit-macro-repeats):
12917 * calc/calc-yank.el (calc-do-grab-rectangle):
12918 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
12919 Replace `string-to-int' by `string-to-number'.
12920
12921 2005-05-02 Kim F. Storm <storm@cua.dk>
12922
12923 * kmacro.el: Use executing-kbd-macro-index variable.
12924
12925 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
12926
12927 * net/rlogin.el (rlogin-parse-words): Delete func.
12928 (rlogin): Use split-string, not rlogin-parse-words.
12929 Also, if there are option-like elements in the parsed args,
12930 take the host to be the first arg immediately following them.
12931 Suggested by Michael Mauger.
12932
12933 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
12934
12935 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
12936
12937 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
12938
12939 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
12940 (cc-mode-cpp-program): Rename to cc-define-list-program and
12941 move to cc-vars.el.
12942
12943 * progmodes/cc-vars.el (cc-define-list-program):
12944 Change to "gcc -E -dM -". Make customizable.
12945
12946 2005-05-02 Kim F. Storm <storm@cua.dk>
12947
12948 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
12949
12950 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
12951
12952 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
12953
12954 * international/mule-util.el (truncate-string): Remove alias and
12955 obsolete declaration.
12956
12957 * international/mule-cmds.el (update-iso-coding-systems):
12958 Remove alias and obsolete declaration.
12959
12960 * international/mule.el (coding-system-parent): Remove alias and
12961 obsolete declaration.
12962
12963 * subr.el (define-function, sref): Remove aliases and obsolete
12964 declarations.
12965 (chars-in-region): Remove obsolete declaration.
12966
12967 2005-05-01 Richard M. Stallman <rms@gnu.org>
12968
12969 * info.el (Info-mode): Set widen-automatically to nil, locally.
12970
12971 * simple.el (widen-automatically): New variable.
12972 (pop-global-mark): Obey widen-automatically.
12973
12974 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
12975
12976 * term/xterm.el (function-key-map): Call substitute-key-definition
12977 before the keymap size is increased by a lot of define-key calls.
12978
12979 2005-05-01 Richard M. Stallman <rms@gnu.org>
12980
12981 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
12982 Rename ARG to ELEMENT. Doc fix.
12983
12984 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
12985
12986 * allout.el (allout-exposure): Remove macro and obsolete declaration.
12987 Remove references to allout-exposure/change to allout-new-exposure.
12988
12989 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
12990 bytecode symbols.
12991
12992 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
12993 (compiled-function-p, focus-frame, unfocus-frame):
12994 Remove aliases and obsolete declarations.
12995 Back out inadvertent changes from previous commit.
12996
12997 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
12998
12999 * files.el (require-final-newline): Make Custom tags consistent
13000 with mode-require-final-newline.
13001 (mode-require-final-newline): Doc fix.
13002
13003 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
13004
13005 * international/latexenc.el (latexenc-find-file-coding-system):
13006 Fix regular expressions.
13007
13008 2005-05-01 David Kastrup <dak@gnu.org>
13009
13010 * international/latexenc.el (latexenc-find-file-coding-system):
13011 Fix regular expressions.
13012
13013 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
13014
13015 * subr.el (string-to-int): Make obsolete.
13016
13017 2005-04-30 Richard M. Stallman <rms@gnu.org>
13018
13019 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
13020
13021 * loadup.el: load jka-comp-hook.
13022
13023 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
13024 (jka-compr-handler): Add autoload. `put' calls moved
13025 to jka-comp-hook.el.
13026 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
13027 (jka-compr-inhibit): Autoload.
13028
13029 * jka-comp-hook.el: New file.
13030 Enable the mode by default.
13031
13032 * files.el (backup-buffer-copy): Use copy-file instead
13033 of write-region, and put back the 'excl.
13034
13035 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
13036
13037 * progmodes/flymake.el (flymake-split-string)
13038 (flymake-split-string, flymake-log, flymake-pid-to-names)
13039 (flymake-reg-names, flymake-get-source-buffer-name)
13040 (flymake-unreg-names, flymake-add-line-err-info)
13041 (flymake-add-err-info): Clarify docstrings.
13042 (flymake-popup-menu, flymake-make-emacs-menu)
13043 (flymake-make-xemacs-menu): Add docstrings.
13044 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
13045 Set variables directly throughout.
13046
13047 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
13048
13049 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
13050 exists. Initialize cc-define-alist.
13051 (c-mode): Add cc-create-define-alist locally to after-save-hook.
13052 If there is no file (Macroexpansion) don't create an alist.
13053
13054 2005-04-29 Sam Steingold <sds@gnu.org>
13055
13056 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
13057 (cc-create-define-alist): Use it instead of the hard-coded string.
13058
13059 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
13060
13061 * international/mule-conf.el (file-coding-system-alist): Fix regexp
13062 for latexenc.
13063
13064 2005-04-29 Lute Kamstra <lute@gnu.org>
13065
13066 * emacs-lisp/generic.el: Improve commentary section.
13067 (define-generic-mode): Improve docstring.
13068
13069 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
13070
13071 * textmodes/org.el (many places): Change to quiet the byte compiler.
13072 (org-prefix-format-compiled): New variable.
13073 (org-compile-prefix-format): New function.
13074 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
13075 (org-agenda-prefix-format,org-timeline-prefix-format): New options.
13076 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
13077 (org-get-entries-from-diary): Use `org-get-time-of-day' for
13078 consistency with entries from `org-mode' files.
13079 (org-get-time-of-day): Fix bug with partial matches early in a line.
13080 (org-non-link-chars): New constant.
13081 (org-link-regexp): Respect `org-non-link-chars'.
13082 (org-agenda-day-view): Remove command.
13083 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
13084 (org-follow-bbdb-link, org-store-link): Search also company field.
13085 (org-highlight-overlay): New variable.
13086 (org-highlight, org-unhighlight): New functions.
13087 (org-agenda-mode): Add pre-command-hook to remove highlight.
13088 (org-evaluate-time-range): Behavior depends upon whether time stamp
13089 contains a time or not.
13090 (org-show-subtree, org-show-entry): New functions.
13091 (org-agenda-cleanup-fancy-diary): Remove empty lines.
13092
13093 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
13094
13095 * comint.el (comint-output-filter-functions): Add autoload cookie.
13096
13097 2005-04-28 Kim F. Storm <storm@cua.dk>
13098
13099 * ido.el (ido-everywhere): Fix last change.
13100
13101 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
13102
13103 * international/latexenc.el: New file.
13104 * international/mule-conf.el (file-coding-system-alist): For .tex,
13105 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
13106
13107 2005-04-28 Lute Kamstra <lute@gnu.org>
13108
13109 * font-lock.el (font-lock-add-keywords)
13110 (font-lock-remove-keywords): Clarify docstring.
13111 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
13112 Don't start docstrings with a `*'.
13113 (font-lock-update-removed-keyword-alist): Give it a docstring.
13114
13115 * generic-x.el: Update commentary section.
13116 Only require font-lock when compiling.
13117 Define all modes conditionally.
13118 Place all generic modes in the generic-x-modes customization group.
13119 (generic-x-modes): New customization group.
13120 (generic-default-modes, generic-mswindows-modes)
13121 (generic-unix-modes, generic-other-modes): New constants.
13122 (generic-define-mswindows-modes, generic-define-unix-modes):
13123 Update docstrings. Make them obsolete.
13124 (generic-extras-enable-list): New default value. Update docstring.
13125 Improve :type. Change :set function.
13126 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
13127 Fix docstring.
13128
13129 * emacs-lisp/generic.el (generic-mode-internal):
13130 Simplify font-lock-defaults.
13131 (define-generic-mode): Fix docstring.
13132
13133 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
13134
13135 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
13136 font-lock-face property to highlight matches.
13137
13138 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
13139
13140 * progmodes/cc-mode.el (cc-create-define-alist): New function.
13141 (cc-define-alist): New variable.
13142 (c-mode): Make it local and initialize it.
13143
13144 * progmodes/gdb-ui.el (gdb-active-process): New variable.
13145 (gdb-exited): New function.
13146 (gdb-annotation-rules): Use it.
13147 (gdb-starting): Set gdb-active-process to t.
13148 (gdb-stopping): Amend doc string.
13149 (gdb-reset): Set gdb-active-process to nil.
13150
13151 * tooltip.el (tooltip-gud-tips): Show the associated #define
13152 directives when a C program under GDB is not executing.
13153
13154 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
13155
13156 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
13157 font-lock-fontify-syntactic-keywords.
13158
13159 * font-lock.el (font-lock-default-fontify-region): Don't force
13160 parse-sexp-lookup-properties to nil.
13161
13162 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
13163
13164 * man.el (man-mode-syntax-table): Set up `:' to have
13165 word-constituent syntax.
13166
13167 2005-04-27 Lute Kamstra <lute@gnu.org>
13168
13169 * novice.el (disable-command): Don't add spurious newlines to the
13170 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
13171
13172 2005-04-26 Jay Belanger <belanger@truman.edu>
13173
13174 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
13175 than one window before deleting window.
13176
13177 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
13178
13179 * shell.el (shell-prompt-pattern): Doc fix.
13180 (shell-mode): Set paragraph-separate buffer locally to "\\'".
13181
13182 * comint.el (comint-prompt-regexp, comint-get-old-input)
13183 (comint-use-prompt-regexp)
13184 (comint-use-prompt-regexp-instead-of-fields)
13185 (comint-replace-by-expanded-history, comint-send-input)
13186 (comint-output-filter, comint-get-old-input-default)
13187 (comint-line-beginning-position, comint-bol, comint-show-output)
13188 (comint-backward-matching-input, comint-forward-matching-input)
13189 (comint-next-prompt, comint-previous-prompt):
13190 Rename `comint-use-prompt-regexp-instead-of-fields' to
13191 `comint-use-prompt-regexp'. Keep old name as alias and declare
13192 obsolete.
13193 (comint-use-prompt-regexp): Shorten first line of doc string.
13194
13195 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
13196 Set paragraph-separate buffer locally to "\\'".
13197
13198 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
13199 Adapt to above name change.
13200
13201 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
13202 (smbclient-prompt-regexp): Ditto.
13203
13204 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
13205
13206 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
13207
13208 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
13209 gdb-location-list.
13210 Break lines that are over 80 characters wide.
13211
13212 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
13213
13214 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
13215 New fun and var, to preserve compatibility.
13216
13217 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
13218
13219 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
13220
13221 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
13222 name to file-newer-than-file-p.
13223
13224 2005-04-26 Richard M. Stallman <rms@gnu.org>
13225
13226 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
13227
13228 * progmodes/python.el (python-mode):
13229 Use new name eldoc-documentation-function.
13230
13231 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
13232
13233 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
13234 (eldoc-documentation-function):
13235 Rename from eldoc-print-current-symbol-info-function. Calls changed.
13236
13237 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
13238
13239 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
13240
13241 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
13242
13243 * term/xterm.el (function-key-map): Fix strings for
13244 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
13245 {C,S,A,C-S}-{f1-f12}.
13246
13247 2005-04-26 Kenichi Handa <handa@m17n.org>
13248
13249 * international/mule-cmds.el (select-safe-coding-system):
13250 Fix previous change.
13251
13252 2005-04-26 Lute Kamstra <lute@gnu.org>
13253
13254 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
13255
13256 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
13257 (font-lock-comment-delimiter-face): Ditto.
13258
13259 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
13260
13261 2005-04-25 Jay Belanger <belanger@truman.edu>
13262
13263 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
13264 to t while inserting information; use help-mode.
13265
13266 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
13267
13268 * term.el (ansi-term-color-vector): Use the xterm colors.
13269 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
13270
13271 2005-04-25 Lute Kamstra <lute@gnu.org>
13272
13273 * font-core.el (font-lock-defaults): Fix docstring.
13274
13275 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
13276
13277 2005-04-25 Kenichi Handa <handa@m17n.org>
13278
13279 * international/mule-cmds.el (select-safe-coding-system):
13280 Don't check consistency with coding: spec, etc if raw-text or
13281 no-conversion was found to be safe.
13282
13283 2005-04-24 Richard M. Stallman <rms@gnu.org>
13284
13285 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
13286 citation markers at start of each line.
13287
13288 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
13289 citation markers at start of each line.
13290
13291 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
13292
13293 * files.el (mode-require-final-newline): Fix previous change.
13294 (require-final-newline): Fix type label.
13295
13296 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
13297
13298 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
13299 statement in buffer (broken by 2004-11-24 change).
13300
13301 2005-04-24 Kim F. Storm <storm@cua.dk>
13302
13303 * ido.el (ido-everywhere): Save and restore old read-buffer-function
13304 and read-file-name-function values. Don't overwrite existing
13305 non-nil values if ido-mode is enabled without ido-everywhere.
13306
13307 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
13308
13309 * files.el (mode-require-final-newline): Minor doc fix.
13310
13311 2005-04-24 Eli Zaretskii <eliz@gnu.org>
13312
13313 * subr.el (syntax-after): Doc fix.
13314 (syntax-class): If argument is nil, return nil. Mask off upper 16
13315 bits, not 8 bits.
13316
13317 * files.el (mode-require-final-newline): Doc fix.
13318 (backup-buffer-copy): Fix last change.
13319
13320 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13321
13322 * term/mac-win.el: Require select. Set selection-coding-system to
13323 mac-system-coding-system. Call menu-bar-enable-clipboard.
13324 (x-last-selected-text-clipboard, x-last-selected-text-primary)
13325 (x-select-enable-clipboard): New variables.
13326 (x-select-text, x-get-selection, x-selection-value)
13327 (x-get-selection-value, mac-select-convert-to-string)
13328 (mac-services-open-file, mac-services-open-selection)
13329 (mac-services-insert-text): New functions.
13330 (CLIPBOARD, FIND): Put mac-scrap-name property.
13331 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
13332 (public.tiff): Put mac-ostype property.
13333 (selection-converter-alist): Add entries for them.
13334 (mac-application-menu-map): New keymap.
13335 (interprogram-cut-function, interprogram-paste-function): Set to
13336 x-select-text and x-get-selection-value, respectively.
13337 (split-window-keep-point): Set to t.
13338
13339 2005-04-23 Richard M. Stallman <rms@gnu.org>
13340
13341 * files.el (read-directory-name): Always pass non-nil
13342 DEFAULT-FILENAME arg to read-file-name.
13343 (backup-buffer-copy, basic-save-buffer-2): Take care against
13344 writing thru an unexpected existing symlink.
13345 (revert-buffer): In indirect buffer, revert the base buffer.
13346 (magic-mode-alist): Doc fix.
13347 (buffer-stale-function): Doc fix.
13348 (minibuffer-with-setup-hook): Avoid warning.
13349 (mode-require-final-newline): Doc and custom fix.
13350
13351 * follow.el (follow-end-of-buffer): Use with-no-warnings.
13352
13353 * font-lock.el (font-lock-comment-face): On terminals with few colors,
13354 use the default appearance.
13355 (font-lock-comment-delimiter-face): New face, new variable.
13356
13357 * imenu.el (imenu--generic-function): The official position of a
13358 definition is the start of the line that BEG is in.
13359
13360 * midnight.el (midnight-timer): Move defvar up.
13361
13362 * mouse.el (mouse-drag-region-1): Delete some debugging code.
13363
13364 * saveplace.el (save-place-to-alist): Use with-no-warnings.
13365
13366 * startup.el (command-line): Use with-no-warnings.
13367
13368 * window.el (window-size-fixed): New defvar.
13369
13370 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
13371
13372 * mail/rmail.el (rmail-font-lock-keywords):
13373 Use font-lock-comment-delimiter-face.
13374
13375 * mail/sendmail.el (mail-font-lock-keywords):
13376 Use font-lock-comment-delimiter-face.
13377
13378 * progmodes/compile.el (next-error-highlight-timer): New defvar.
13379
13380 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
13381
13382 * progmodes/compile.el (compilation-mode-font-lock-keywords):
13383 Specify t for LAXMATCH when matching directories.
13384 Save match data around compilation-compat-error-properties form.
13385
13386 2005-04-23 David Kastrup <dak@gnu.org>
13387
13388 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
13389 Mention that the autoloaded aliases should be kept for AUCTeX.
13390
13391 2005-04-23 Andreas Schwab <schwab@suse.de>
13392
13393 * isearch.el (isearch-forward): Doc fix.
13394
13395 2005-04-23 Eli Zaretskii <eliz@gnu.org>
13396
13397 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
13398 (jit-lock-stealth-nice): Change default value to 0.5.
13399
13400 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
13401
13402 * abbrev.el (write-abbrev-file): Write table entries in
13403 alphabetical order by table name.
13404
13405 2005-04-22 Kim F. Storm <storm@cua.dk>
13406
13407 * ido.el (ido-read-internal): Fix `list' completion.
13408
13409 2005-04-22 Kenichi Handa <handa@m17n.org>
13410
13411 * recentf.el (recentf-save-file-coding-system): New variable.
13412 (recentf-save-list): Encode the file by
13413 recentf-save-file-coding-system and add coding: tag.
13414
13415 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
13416
13417 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
13418
13419 2005-04-21 Lute Kamstra <lute@gnu.org>
13420
13421 * loadhist.el (unload-feature): Don't remove a function from hooks
13422 if it is about to be restored to an autoload . Remove functions
13423 that will become unbound from auto-mode-alist. Simplify the code.
13424
13425 * subr.el (assq-delete-all): New implementation that is linear,
13426 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
13427 (rassq-delete-all): New function.
13428
13429 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
13430 Add size-indication-mode.
13431
13432 2005-04-21 Kenichi Handa <handa@m17n.org>
13433
13434 * international/mule-cmds.el: Add autoload for widget-value in
13435 eval-when-compile.
13436
13437 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
13438
13439 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
13440 Add tooltip-mode.
13441
13442 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
13443
13444 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
13445
13446 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
13447 (inferior-lisp-filter-regexp, inferior-lisp-program)
13448 (inferior-lisp-load-command, inferior-lisp-prompt)
13449 (inferior-lisp-mode-hook, lisp-source-modes)
13450 (inferior-lisp-load-hook): defvar->defcustom.
13451 (inferior-lisp-program, inferior-lisp-prompt)
13452 (inferior-lisp-load-hook): Doc fixes.
13453 (inferior-lisp-install-letter-bindings): Small change in
13454 introductory comment.
13455
13456 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
13457
13458 * vc.el (vc-annotate-color-map): Change some colors so that text
13459 using them as foreground is readable on both white and black
13460 backgrounds.
13461
13462 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
13463
13464 * international/mule-conf.el (translation-table-for-input):
13465 Remove redundant declaration.
13466
13467 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
13468
13469 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
13470
13471 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
13472 (tooltip-toggle-gud-tips): New function.
13473
13474 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13475
13476 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
13477 right angle brackets.
13478
13479 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
13480
13481 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
13482
13483 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
13484
13485 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
13486 Remove. Update callers to use expand-file-name instead.
13487
13488 * subr.el (syntax-class): New function.
13489
13490 * simple.el (blink-matching-open): Use it.
13491
13492 * paren.el (show-paren-function): Use it to recognize parens that are
13493 also used in 2-char comment markers.
13494
13495 2005-04-19 Lute Kamstra <lute@gnu.org>
13496
13497 * loadhist.el (unload-feature): Update for new format of
13498 load-history. Simplify the code.
13499
13500 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13501
13502 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
13503 (mac-add-charset-info): New function. Initialize variable
13504 mac-charset-info-alist using it.
13505 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
13506 for translation.
13507 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
13508 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
13509 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
13510 New CCL programs.
13511
13512 2005-04-19 Kim F. Storm <storm@cua.dk>
13513
13514 * simple.el (next-buffer, prev-buffer, next-error)
13515 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
13516 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
13517
13518 * bindings.el (next-buffer, prev-buffer, next-error)
13519 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
13520 (clone-indirect-buffer-other-window): Move bindings from simple.el.
13521 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
13522 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
13523
13524 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
13525
13526 * isearch.el (isearch-edit-string): Make the search-ring available for
13527 minibuffer history commands.
13528 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
13529 the default history commands now work just as well.
13530 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
13531
13532 2005-04-18 Kim F. Storm <storm@cua.dk>
13533
13534 * emulation/cua-base.el (cua--pre-command-handler): Add more
13535 elaborate check for shift modifier on non-window systems.
13536
13537 2005-04-18 Lars Hansen <larsh@math.ku.dk>
13538
13539 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
13540
13541 2005-04-18 Kim F. Storm <storm@cua.dk>
13542
13543 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
13544 and make it optional. Don't test tooltip-gud-echo-area here.
13545 (tooltip-gud-process-output, gdb-tooltip-print):
13546 Pass tooltip-gud-echo-area to tooltip-show.
13547 (tooltip-help-tips): Remove second optional arg to tooltip-show.
13548
13549 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13550
13551 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
13552 `display-graphic-p' may not be bound yet.
13553
13554 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
13555
13556 * startup.el (command-line): No longer enable Xterm Mouse mode by
13557 default in terminals compatible with xterm.
13558
13559 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
13560
13561 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
13562
13563 * tooltip.el (tooltip-gud-echo-area): Rename from
13564 tooltip-use-echo-area.
13565 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
13566 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
13567 area independently of where help tooltips are displayed.
13568
13569 2005-04-17 David Kastrup <dak@gnu.org>
13570
13571 * cus-theme.el (custom-theme-write-variables): Quote variables
13572 where necessary.
13573
13574 2005-04-17 Richard M. Stallman <rms@gnu.org>
13575
13576 * simple.el (yank-excluded-properties): Add follow-link to value.
13577
13578 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
13579
13580 * startup.el (fancy-splash-max-time): Just 30 seconds.
13581 (fancy-splash-delay): Just 7.
13582 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
13583
13584 * loadhist.el (unload-feature): Update for new format of load-history.
13585 Simplify the code.
13586
13587 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
13588 (rmail-font-lock-keywords): Don't fontify the text of a citation.
13589
13590 * mail/sendmail.el (mail-font-lock-keywords):
13591 Don't fontify subject text.
13592 Don't fontify the text of a citation.
13593
13594 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
13595
13596 * comint.el (comint-output-filter): Run comint-output-filter-functions
13597 with point where the user had it.
13598
13599 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
13600
13601 * international/ucs-tables.el (ucs-set-table-for-input):
13602 Disable when using unify-on-decoding.
13603
13604 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
13605
13606 * emulation/cua-base.el (cua-global-mark-face): Add special case
13607 for displays supporting a high number of colors.
13608
13609 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
13610
13611 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
13612
13613 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
13614
13615 * filesets.el (filesets-add-buffer): If user supplies a name of a
13616 non-existing fileset, create a new fileset.
13617
13618 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
13619
13620 * textmodes/org.el (org-up-heading-all): Fix bug with
13621 `outline-up-heading-all'.
13622
13623 2005-04-16 Andreas Schwab <schwab@suse.de>
13624
13625 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
13626 /etc/permissions.d/* and /etc/aliases.d/*.
13627
13628 2005-04-16 Kenichi Handa <handa@m17n.org>
13629
13630 * international/code-pages.el (cp-make-coding-system):
13631 Set `translation-table-for-input' property value to the symbol
13632 ucs-mule-to-mule-unicode, not to that value.
13633 (pt154): Escape guillemet by `\'.
13634
13635 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
13636
13637 * loadup.el: Load tooltip if x-show-tip is fboundp.
13638
13639 * startup.el (command-line): Add comment.
13640
13641 * tooltip.el (tooltip-mode): Specify correct standard value for
13642 Custom in init-value.
13643
13644 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
13645
13646 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
13647 possible.
13648
13649 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
13650
13651 * textmodes/org.el (org-agenda-date-prompt): Rename from
13652 `org-agenda-date-today'.
13653 (org-evaluate-time-range): Insert at point instead of directly
13654 after time range.
13655 (org-first-headline-recenter, org-subtree-end-visible-p)
13656 (org-optimize-window-after-visibility-change): New functions
13657 (org-agenda-post-command-hook): Don't allow point at end of line,
13658 to make sure it always hits the text properties.
13659 (org-agenda-next-date-line, org-agenda-previous-date-line):
13660 New commands.
13661 (org-set-regexps-and-options): Category may contain white space.
13662 (org-agenda-get-deadlines, org-agenda-get-scheduled):
13663 Improve marker positions.
13664 (org-agenda-new-marker): Argument POS made optional.
13665 (org-agenda-get-timestamps): Deadlines which are done are listed
13666 in org-done-face now.
13667 (org-agenda-get-todos, org-agenda-get-timestamps)
13668 (org-agenda-get-deadlines, org-agenda-get-scheduled):
13669 Set `undone-face' and `done-face' properties.
13670 (org-last-todo-state-is-todo): New variable.
13671 (org-todo): Set `org-last-todo-state-is-todo'.
13672 (org-agenda-todo): Change face according to
13673 `org-last-todo-state-is-todo'. And change other lines referring to
13674 the same entry.
13675 (org-calendar-goto-agenda): New command.
13676 (org-calendar-to-agenda-key): New option.
13677 (org-startup-folded): New allowed value `content'.
13678 (org-set-regexps-and-options): Accept new value `content' for
13679 `org-startup-folded'.
13680 (org-get-current-options): Handle new value `content' for
13681 `org-startup-folded'.
13682 (org-insert-todo-heading): New command.
13683 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
13684 interactively in empty file and option
13685 `org-insert-mode-line-in-empty-file' has been set.
13686 (org-agenda-todo,org-agenda-priority): Modify to use
13687 `org-agenda-change-all-lines'.
13688 (org-warning-face): Change color on dark background
13689
13690 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13691
13692 * international/mule-cmds.el (set-locale-environment): On Mac OS,
13693 use preferences AppleLocale and AppleLanguages, and variable
13694 mac-system-locale for default locale. On Mac OS Classic, use
13695 mac-system-coding-system for default coding systems.
13696
13697 * term/mac-win.el: Don't set file-name-coding-system.
13698 Decode variables system-name, emacs-build-system, user-login-name, and
13699 user-full-name by mac-system-coding-system on Mac OS Classic.
13700 (mac-system-coding-system): New variable.
13701
13702 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
13703
13704 * startup.el (command-line): Handle `xterm-mouse-mode' before
13705 reading init file.
13706
13707 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
13708
13709 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
13710
13711 * progmodes/sh-script.el (sh-here-document-word): Make it a
13712 defcustom. Doc fix.
13713 (sh-add): Bash uses $(( )) for arithmetic.
13714 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
13715 (sh-maybe-here-document): Remove quotes and leading whitespace
13716 from heredoc word when closing. Indent heredoc with tabs if word
13717 starts with "-".
13718
13719 2005-04-13 Richard M. Stallman <rms@gnu.org>
13720
13721 * simple.el (undo): Fix previous change.
13722
13723 * custom.el (defface): Doc fix.
13724
13725 2005-04-13 Lute Kamstra <lute@gnu.org>
13726
13727 * Makefile.in (DONTCOMPILE): Remove list.
13728 (compile, compile-always): Don't use DONTCOMPILE.
13729 (update-authors): Load the library in which batch-update-authors
13730 is defined.
13731 * makefile.w32-in (DONTCOMPILE): Remove list.
13732 (compile, compile-always): Fix comments.
13733 (update-authors): Load the library in which batch-update-authors
13734 is defined.
13735
13736 * generic-x.el (generic-mode-ini-file-find-file-hook):
13737 Rename to ini-generic-mode-find-file-hook.
13738 Keep generic-mode-ini-file-find-file-hook as an alias.
13739 (ini-generic-mode-find-file-hook): Rename from
13740 generic-mode-ini-file-find-file-hook. Fix docstring.
13741 (ini-generic-mode): Docstring change.
13742 (bat-generic-mode-run-as-comint): Silence the byte compiler.
13743
13744 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
13745 called from lisp.
13746
13747 * generic.el: Move to the emacs-lisp subdir.
13748
13749 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
13750
13751 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
13752 and C-S- function and cursor motion keys.
13753
13754 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
13755
13756 * startup.el (command-line): Enable Xterm Mouse mode by default.
13757 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
13758 for Custom. No longer show "Mouse" in mode line when enabled.
13759 Doc fix.
13760
13761 2005-04-12 Kim F. Storm <storm@cua.dk>
13762
13763 * emulation/cua-base.el (cua-rectangle-face)
13764 (cua-rectangle-noselect-face): Define face attributes here.
13765
13766 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
13767
13768 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13769
13770 * startup.el (command-line): Turn off blinking cursor if
13771 cursorBlink in resources is off or false.
13772
13773 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13774
13775 * term/mac-win.el (dnd): Require dnd.
13776 (mac-drag-n-drop): Call dnd-handle-one-url.
13777 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
13778 (kTextEncodingISOLatin2): Remove constants.
13779 (mac-script-code-coding-systems): New constant.
13780 (mac-handle-language-change): New function.
13781 (special-event-map): Bind it to `language-change' event.
13782 (mac-centraleurroman, mac-cyrillic): New coding systems.
13783 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
13784 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
13785 and mac-cyrillic-encoder to encode-mac-centraleurroman and
13786 encode-mac-cyrillic, respectively.
13787
13788 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
13789
13790 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
13791 Don't set overlay-arrow-string to "=>" as this is done
13792 globally in C now.
13793
13794 2005-04-12 Lute Kamstra <lute@gnu.org>
13795
13796 * generic-x.el (rc-generic-mode, rul-generic-mode):
13797 Fix auto-mode-alist entries.
13798 (etc-fstab-generic-mode): Tweak fontification.
13799
13800 * generic.el (generic-make-keywords-list): Fix docstring.
13801 (generic-mode-internal): Simplify generic-font-lock-keywords.
13802
13803 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
13804
13805 * whitespace.el (whitespace-buffer-leading)
13806 (whitespace-buffer-trailing): Revert the incorrect test inversion.
13807 However, fix the highlight area for the leading and
13808 trailing whitespaces to show space.
13809
13810 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
13811
13812 * whitespace.el (whitespace-version): Bump to 3.5
13813
13814 (whitespace-buffer-leading, whitespace-buffer-trailing):
13815 Invert sense of the test to highlight the whitespace.
13816
13817 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
13818
13819 * progmodes/gud.el (gud-display-line): GUD uses its own
13820 overlay arrow now so don't set overlay-arrow-string.
13821 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
13822
13823 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
13824
13825 * term.el (term-ansi-current-bold, term-ansi-current-underline)
13826 (term-ansi-current-reverse, term-ansi-current-invisible)
13827 (term-ansi-face-already-done): Change to boolean.
13828 (term-reset-terminal, term-handle-colors-array): Handle the above
13829 vars accordingly.
13830 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
13831 (term-emulate-terminal): Use the new name.
13832
13833 * faces.el (secondary-selection): Use yellow1, not yellow.
13834 (trailing-whitespace): Use red1, not red.
13835
13836 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13837
13838 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
13839 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
13840 (dired-dnd-handle-file): Call dnd-get-local-file-uri
13841
13842 * cus-edit.el (dnd): New group.
13843
13844 * term/w32-win.el (dnd): Require dnd
13845 (w32-drag-n-drop): Call dnd-handle-one-url.
13846
13847 * x-dnd.el: Require dnd.
13848 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
13849 Call dnd-handle-one-url.
13850 (x-dnd-types-alist, x-dnd-insert-utf8-text)
13851 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
13852 to dnd-insert-text.
13853 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
13854 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
13855 (x-dnd-get-local-file-name, x-dnd-open-local-file)
13856 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
13857
13858 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
13859
13860 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
13861
13862 * wdired.el: Doc fixes.
13863 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
13864 (wdired-use-dired-vertical-movement): Rename from
13865 wdired-always-move-to-filename-beginning.
13866 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
13867 (wdired-change-to-wdired-mode): Change mode name.
13868 (wdired-newline): Delete.
13869
13870 2005-04-11 Richard M. Stallman <rms@gnu.org>
13871
13872 * whitespace.el (whitespace-highlight-the-space):
13873 Don't call whitespace-unhighlight-the-space here.
13874
13875 * simple.el (undo): Record t in undo-equiv-table
13876 for the redo record made by an undo-in-region.
13877
13878 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
13879
13880 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
13881 (gdb-frame-inferior-io-buffer): New Functions to control
13882 display of separate IO buffer.
13883 (menu): Add them to menu-bar.
13884 (gdb-display-buffer): Check for buffer another frame.
13885 Protect GUD buffer.
13886 (gdb-setup-windows): Create IO buffer if not already there.
13887 (gdb-memory-mode): Remove purecopy noops.
13888
13889 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
13890
13891 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
13892 and pass to self-insert-command.
13893
13894 2005-04-11 Lute Kamstra <lute@gnu.org>
13895
13896 * generic.el: Commentary section cleanup.
13897 (generic): Delete.
13898 (generic-use-find-file-hook, generic-lines-to-scan)
13899 (generic-find-file-regexp, generic-ignore-files-regexp)
13900 (default-generic-mode, generic-mode-find-file-hook)
13901 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
13902 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
13903 (generic-use-find-file-hook, generic-lines-to-scan)
13904 (generic-find-file-regexp, generic-ignore-files-regexp)
13905 (default-generic-mode, generic-mode-find-file-hook)
13906 (generic-mode-ini-file-find-file-hook): Move from generic.el.
13907
13908 2005-04-10 Karl Fogel <kfogel@red-bean.com>
13909
13910 * bookmark.el (bookmark-write-file): Catch errors writing file.
13911 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
13912
13913 2005-04-10 Richard M. Stallman <rms@gnu.org>
13914
13915 * startup.el (fancy-splash-tail): Update copyright year.
13916 (command-line): Split part of -Q into -D.
13917 (emacs-basic-display): New defvar.
13918 (fancy-splash-text): Correct name of menu item.
13919
13920 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
13921
13922 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
13923 lines in one node.
13924
13925 * comint.el (comint-send-input): New arg ARTIFICIAL.
13926 Callers in this file changed.
13927
13928 * abbrev.el (define-abbrevs): Read system abbrevs properly.
13929
13930 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
13931
13932 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
13933
13934 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
13935 `ldap-search-internal'.
13936
13937 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
13938
13939 * files.el (set-auto-mode-1): Use line-end-position.
13940
13941 * international/latin-1.el:
13942 * international/latin-2.el:
13943 * international/latin-3.el:
13944 * international/latin-4.el:
13945 * international/latin-5.el:
13946 * international/latin-8.el:
13947 * international/latin-9.el: Give punctuation syntax to NBSP.
13948
13949 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
13950 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
13951 Use char-classes to accept non-ascii letters, accepted in some recent
13952 bibtex implementations.
13953
13954 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
13955
13956 * custom.el (custom-set-minor-mode): Any non-nil value for the
13957 variable should enable the mode when set through Custom.
13958
13959 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
13960
13961 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
13962 TAB binding so tab-always-indent is obeyed.
13963 (vhdl-minibuffer-local-map): Move initialization into declaration.
13964 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
13965 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
13966 (vhdl-hooked-abbrev): Avoid test for XEmacs.
13967 (vhdl-current-line): Use line-beginning-position.
13968 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
13969 with-output-to-temp-buffer, so the current position can be recorded.
13970
13971 2005-04-10 Masatake YAMATO <jet@gyve.org>
13972
13973 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13974 Add regexp for gcov.
13975
13976 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
13977
13978 * calendar/time-date.el (time-to-seconds, seconds-to-time)
13979 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
13980 syntax which Emacs 20 doesn't support.
13981
13982 2005-04-09 Richard M. Stallman <rms@gnu.org>
13983
13984 * help.el (describe-key-briefly, describe-key):
13985 Replace strings as event types with "(any string)".
13986
13987 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
13988
13989 * arc-mode.el (archive-mode-map): Move initialization into
13990 the declaration. Override *all* bindings of `undo'.
13991 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
13992
13993 2005-04-09 Jay Belanger <belanger@truman.edu>
13994
13995 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
13996
13997 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
13998
13999 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
14000 (xterm-register-default-colors): Update color values computation
14001 to match xterm-200.
14002
14003 2005-04-09 Kenichi Handa <handa@m17n.org>
14004
14005 * international/code-pages.el (iso-latin-7): Fix the map.
14006
14007 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
14008
14009 * emacs-lisp/lisp.el (defun-prompt-regexp)
14010 (parens-require-spaces, buffer-end, end-of-defun)
14011 (insert-parentheses): Doc fixes.
14012
14013 2005-04-08 Kim F. Storm <storm@cua.dk>
14014
14015 * comint.el (comint-highlight-prompt): Fix face spec.
14016 * hi-lock.el (hi-green): Likewise.
14017
14018 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
14019
14020 * cus-edit.el (custom-modified-face):
14021 * comint.el (comint-highlight-input): Fix previous changes.
14022 * term.el (term-handle-ansi-escape): Add a comment.
14023
14024 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
14025
14026 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
14027 in the buffer and in whitespace-highlighted-space.
14028 (whitespace-unhighlight-the-space): Simplify.
14029 (whitespace-buffer): Simplify.
14030
14031 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
14032
14033 * textmodes/table.el (table-cell-face): Add special case for
14034 displays supporting a high number of colors.
14035 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
14036 (vhdl-font-lock-reserved-words-face)
14037 (vhdl-speedbar-architecture-face)
14038 (vhdl-speedbar-instantiation-face)
14039 (vhdl-speedbar-architecture-selected-face)
14040 (vhdl-speedbar-instantiation-selected-face): Likewise.
14041 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
14042 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
14043 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
14044 (ebrowse-root-class-face, ebrowse-member-attribute-face)
14045 (ebrowse-progress-face): Likewise.
14046 * progmodes/compile.el (compilation-info-face): Likewise.
14047 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
14048 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
14049 * calendar/calendar.el (diary-face): Likewise.
14050 * woman.el (woman-italic-face, woman-bold-face)
14051 (woman-unknown-face): Likewise.
14052 * wid-edit.el (widget-button-pressed-face): Likewise.
14053 * whitespace.el (whitespace-highlight-face): Likewise.
14054 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
14055 * pcvs-info.el (cvs-marked-face): Likewise.
14056 * info.el (info-xref): Likewise.
14057 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
14058 * hilit-chg.el (highlight-changes-face)
14059 (highlight-changes-delete-face): Likewise.
14060 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
14061 (hi-red-b): Likewise.
14062 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
14063 * font-lock.el (font-lock-keyword-face)
14064 (font-lock-function-name-face, font-lock-warning-face): Likewise.
14065 * cus-edit.el (custom-invalid-face, custom-modified-face)
14066 (custom-set-face, custom-changed-face, custom-variable-tag-face)
14067 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
14068 * comint.el (comint-highlight-prompt): Likewise.
14069
14070 2005-04-08 Lute Kamstra <lute@gnu.org>
14071
14072 * font-lock.el (font-lock-keywords): Docstring fixes.
14073
14074 2005-04-08 Kenichi Handa <handa@m17n.org>
14075
14076 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
14077 chars are more than a limit, print " and more..." at the tail.
14078
14079 2005-04-08 Kim F. Storm <storm@cua.dk>
14080
14081 * emacs-lisp/authors.el (authors-aliases): Update list.
14082 (authors-ignored-files): New list.
14083 (authors-fixed-entries): Fix typo.
14084 (authors-renamed-files-alist): Update list.
14085 (authors-add): Check authors-ignored-files.
14086
14087 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
14088
14089 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
14090 optional, to ensure backward compatibility.
14091
14092 2005-04-08 Stephen Eglen <stephen@gnu.org>
14093
14094 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
14095
14096 2005-04-08 Kim F. Storm <storm@cua.dk>
14097
14098 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
14099
14100 * mouse.el (mouse-on-link-p): Doc fix.
14101
14102 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
14103
14104 * ielm.el (ielm-prompt-read-only): Doc fix.
14105
14106 * comint.el (comint-prompt-read-only): Doc fix.
14107
14108 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
14109
14110 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
14111 ensure dired always handles wildcards passed to ffap.
14112 (find-file-at-point): Use it.
14113 (ffap-dired-wildcards): Doc fix.
14114
14115 2005-04-07 Juri Linkov <juri@jurta.org>
14116
14117 * simple.el (next-error-overlay-arrow-position): New defvar.
14118 Put "=>" on its property `overlay-arrow-string'. Add it to
14119 `overlay-arrow-variable-list'.
14120
14121 * progmodes/compile.el (compilation-setup):
14122 Set `next-error-overlay-arrow-position' to nil. Also set it to
14123 nil in the local hook `kill-buffer-hook'. Make local variable
14124 `overlay-arrow-string' and set it to "=>".
14125 (compilation-goto-locus): Set BOL position to
14126 `next-error-overlay-arrow-position' instead of
14127 `overlay-arrow-position'.
14128
14129 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
14130 locally instead of adding it to the global hook.
14131 (Info-kill-buffer): Move up.
14132
14133 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
14134
14135 * term/xterm.el (xterm-standard-colors): Update color values from
14136 xterm-200.
14137
14138 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
14139
14140 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
14141
14142 * fast-lock.el:
14143 * lazy-lock.el: Move them to the obsolete subdir.
14144
14145 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
14146
14147 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
14148 (wdired-add-replace-advice): Remove.
14149 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
14150
14151 2005-04-06 Kim F. Storm <storm@cua.dk>
14152
14153 * startup.el (command-line): Add --bare-bones alias for -Q.
14154
14155 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14156
14157 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
14158 create the startup fontset if a font specification ends with
14159 `mac-roman'.
14160
14161 2005-04-06 Lute Kamstra <lute@gnu.org>
14162
14163 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
14164 change.
14165
14166 * emacs-lisp/copyright.el (copyright-update-year): Replace the
14167 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
14168
14169 2005-04-05 Lute Kamstra <lute@gnu.org>
14170
14171 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
14172 (define-generic-mode): Ditto. Fix debug declaration.
14173
14174 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
14175 Put them in the generic-x group.
14176
14177 * calendar/timeclock.el (timeclock): Doc fix.
14178
14179 * generic.el (define-generic-mode): Don't use custom-current-group.
14180 Document default :group value.
14181 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
14182 (define-global-minor-mode): Don't use custom-current-group.
14183
14184 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
14185
14186 * startup.el (command-line-1): Display startup-echo-area-message
14187 when fancy splash screen is in use.
14188
14189 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
14190 (sh-escaped-newline): New face.
14191 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
14192 newline, and use sh-escaped-newline face.
14193
14194 * progmodes/tcl.el (tcl-escaped-newline): New face.
14195 (tcl-builtin-list): New variable.
14196 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
14197 newlines. Fix keywords subexpression number.
14198
14199 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
14200
14201 * textmodes/org.el (org-diary-default-entry): Fix call to
14202 `add-to-diary-entry'.
14203
14204 2005-04-05 Kim F. Storm <storm@cua.dk>
14205
14206 * ediff-init.el: Use (featurep 'xemacs).
14207
14208 2005-04-05 David Ponce <david@dponce.com>
14209
14210 * cus-edit.el (face): Derive from symbol widget. Display sample
14211 of the current face on the fly.
14212 (widget-face-sample-face-get, widget-face-notify): New functions.
14213 (widget-face-value-create): Remove.
14214
14215 * wid-edit.el (widget-field-end): Temporarily remove field
14216 narrowing before to call `get-char-property'.
14217
14218 2005-04-04 Jay Belanger <belanger@truman.edu>
14219
14220 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
14221 (math-read-subscripts): New variable.
14222 (math-read-preprocess-string): Process subscripts.
14223
14224 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
14225
14226 * comint.el (comint-prompt-read-only): Doc fix.
14227
14228 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
14229 `-1'. Doc fix.
14230
14231 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
14232
14233 * textmodes/org.el (org-insert-mode-line-in-empty-file):
14234 Change default value to nil.
14235
14236 2005-04-04 Lute Kamstra <lute@gnu.org>
14237
14238 * autorevert.el (auto-revert-mode): Specify :group.
14239 * battery.el (display-battery-mode): Specify :group.
14240 * diff-mode.el (diff-minor-mode): Specify :group.
14241 * font-core.el (font-lock-mode): Specify :group.
14242 * hl-line.el (hl-line-mode): Specify :group.
14243 * iimage.el (iimage): New customization group.
14244 (iimage-mode): Specify :group.
14245 * longlines.el (longlines-mode): Specify :group.
14246 * master.el: Don't require easy-mmode.
14247 (master): New customization group.
14248 (master-mode): Specify :group.
14249 * msb.el (msb-mode): Specify :group.
14250 * reveal.el (reveal-mode): Specify :group.
14251 * simple.el (next-error-follow-minor-mode): Specify :group.
14252 * smerge-mode.el (smerge-mode): Specify :group.
14253 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
14254 * emulation/cua-base.el (cua-mode): Specify :group.
14255 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
14256 * language/thai-util.el (thai-auto-composition-mode)
14257 (thai-word-mode): Specify :group.
14258 * mail/supercite.el (sc-minor-mode): Specify :group.
14259 * progmodes/cwarn.el (cwarn-mode): Specify :group.
14260 * progmodes/flymake.el (flymake-mode): Specify :group.
14261 * progmodes/glasses.el (glasses-mode): Specify :group.
14262 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
14263 * textmodes/enriched.el (enriched-mode): Specify :group.
14264 * textmodes/refill.el (refill-mode): Specify :group.
14265
14266 * add-log.el (change-log-font-lock-keywords): Names in
14267 parenthesized lists can contain spaces.
14268
14269 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
14270
14271 * startup.el (fancy-splash-text): Shorten default text of
14272 "Emacs Tutorial" line. Also, if the current language env
14273 indicates an available tutorial file other than TUTORIAL,
14274 extract its title and append it to the line in parentheses.
14275 (fancy-splash-insert): If arg is a thunk, funcall it.
14276
14277 2005-04-04 Jay Belanger <belanger@truman.edu>
14278
14279 * calc.el (calc-language-alist): Add tags to customization type.
14280
14281 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
14282
14283 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
14284 Doc fix.
14285
14286 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
14287
14288 * add-log.el (change-log-font-lock-keywords): The manual
14289 describing a Change Log entry, says: (...) "Aside from these
14290 header lines, every line in the change log starts with a space or
14291 a tab.". The font-lock was not highlighting lines started with
14292 spaces, added support for it.
14293
14294 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14295
14296 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
14297 (bibtex-generate-url-list): Update docstring accordingly. Put the
14298 complex example in the docstring.
14299 (bibtex-font-lock-url): Use pop.
14300
14301 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
14302
14303 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
14304
14305 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
14306
14307 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
14308
14309 * filesets.el (filesets-set-default): Doc fix.
14310
14311 2005-04-03 Lute Kamstra <lute@gnu.org>
14312
14313 * generic.el (define-generic-mode): Add argument to specify
14314 keywords for defcustom.
14315 (default-generic-mode): Specify :group.
14316
14317 * generic-x.el: Specify :group for all generic modes.
14318
14319 * desktop.el (desktop-no-desktop-file-hook)
14320 (desktop-after-read-hook): Doc fix.
14321
14322 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
14323
14324 * simple.el (visible-mode): Use explicit :group keyword.
14325 This changes the group of `visible-mode-hook' from paren-blinking
14326 to editing-basics.
14327
14328 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
14329
14330 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
14331 mailbox specifications as well as URLs.
14332 (rmail-insert-inbox-text): Remove unused conditional branches.
14333
14334 2005-04-01 Jay Belanger <belanger@truman.edu>
14335
14336 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
14337 (calc-gnuplot-print-command): Move definitions to calc.el.
14338
14339 * calc/calc-embed.el (calc-embedded-announce-formula)
14340 (calc-embedded-open-formula, calc-embedded-close-formula)
14341 (calc-embedded-open-word, calc-embedded-close-word)
14342 (calc-embedded-open-plain, calc-embedded-close-plain)
14343 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
14344 (calc-embedded-open-mode, calc-embedded-close-mode):
14345 Move definitions to calc.el.
14346
14347 * calc/calc.el (calc-settings-file, calc-language-alist):
14348 Make customizable.
14349 (calc-embedded-announce-formula, calc-embedded-open-formula)
14350 (calc-embedded-close-formula, calc-embedded-open-word)
14351 (calc-embedded-close-word, calc-embedded-open-plain)
14352 (calc-embedded-close-plain, calc-embedded-open-new-formula)
14353 (calc-embedded-close-new-formula, calc-embedded-open-mode)
14354 (calc-embedded-close-mode, calc-gnuplot-name)
14355 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
14356 from other files and make customizable.
14357
14358 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
14359
14360 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
14361 Use buffer-live-p.
14362 (cvs-mode-run): Don't call cvs-update-header here.
14363 (cvs-run-process): Call cvs-update-header.
14364 Use process properties for cvs-postprocess and cvs-buffer so that
14365 the sentinel can behave better if the temp buffer is killed.
14366 Use a pipe rather than a tty, to better handle unexpected prompts.
14367 (cvs-sentinel): Rewrite. Call cvs-update-header.
14368
14369 2005-04-01 Andre Spiegel <spiegel@gnu.org>
14370
14371 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
14372 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
14373
14374 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
14375
14376 * generic.el (define-generic-mode): Add indentation rule.
14377
14378 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
14379
14380 * files.el (mode-require-final-newline): Make Custom correctly
14381 report a nil value and allow to set it to nil via Custom.
14382 Doc fix.
14383
14384 2005-04-01 Kenichi Handa <handa@m17n.org>
14385
14386 * international/characters.el: Enable the correct case setting for
14387 dotless-i and dotted-I.
14388
14389 2005-04-01 Kim F. Storm <storm@cua.dk>
14390
14391 * ido.el (ido-file-internal): Fall back to non-ido command if
14392 initial directory is on slow ftp (or tramp) host.
14393
14394 2005-03-31 Richard M. Stallman <rms@gnu.org>
14395
14396 * emacs-lisp/autoload.el (make-autoload):
14397 Handle define-global-minor-mode.
14398
14399 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
14400 Rename from easy-mmode-define-global-mode.
14401 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
14402
14403 * progmodes/scheme.el (scheme-mode-syntax-table):
14404 Update syntax of | and # for two-character comment syntax.
14405
14406 2005-03-31 Lute Kamstra <lute@gnu.org>
14407
14408 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
14409 (define-minor-mode): Call custom-current-group at load-time.
14410
14411 * generic.el (define-generic-mode): Add debug declaration.
14412 Add defcustom for the mode hook.
14413 (generic-mode-internal): Use run-mode-hooks.
14414
14415 2005-03-31 Kim F. Storm <storm@cua.dk>
14416
14417 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
14418 (mouse-fixup-help-message): New defun called by show_help_echo
14419 to fixup mouse-2 prefix in help messages when applicable.
14420
14421 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
14422
14423 2005-03-31 Kenichi Handa <handa@m17n.org>
14424
14425 * language/thai-word.el (thai-find-word-ends): Pay attention to
14426 the case that we reach the end of buffer.
14427
14428 * textmodes/fill.el (fill-text-properties-at): New function.
14429 (fill-newline): Use fill-text-properties-at instead of
14430 text-properties-at.
14431
14432 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
14433
14434 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
14435 not comint-quote-filename.
14436
14437 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
14438
14439 * help-fns.el (help-with-tutorial): Revert last change.
14440
14441 2005-03-31 Kim F. Storm <storm@cua.dk>
14442
14443 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
14444
14445 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
14446
14447 * calendar/cal-china.el: Update reference to "Calendrical
14448 Calculations" book; there's a new edition.
14449 * calendar/cal-coptic.el: Likewise.
14450 * calendar/cal-french.el: Likewise.
14451 * calendar/cal-hebrew.el: Likewise.
14452 * calendar/cal-islam.el: Likewise.
14453 * calendar/cal-iso.el: Likewise.
14454 * calendar/cal-julian.el: Likewise.
14455 * calendar/cal-mayan.el: Likewise.
14456 * calendar/cal-persia.el: Likewise.
14457 * calendar/calendar.el: Likewise.
14458 * calendar/holidays.el: Likewise.
14459 * calendar/lunar.el: Likewise.
14460 * calendar/solar.el: Likewise.
14461
14462 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
14463 white space from doc string.
14464
14465 2005-03-30 Jay Belanger <belanger@truman.edu>
14466
14467 * calc/calc-help.el (calc-full-help): Remove email address.
14468
14469 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
14470
14471 * help-fns.el (help-with-tutorial): Delete title line.
14472
14473 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
14474
14475 * calendar/cal-x.el (calendar-one-frame-setup)
14476 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
14477 rather than 'symbol for set-window-dedicated-p.
14478
14479 * calendar/appt.el (appt-buffer-name): Make it a constant.
14480 (appt-add): Doc fix.
14481
14482 * filesets.el (filesets-menu-path, filesets-menu-before)
14483 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
14484 (filesets-menu-cache-file): Use directory ~/.emacs.d.
14485 (filesets-add-submenu): Delete and use add-submenu instead.
14486
14487 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
14488
14489 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
14490 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
14491 (org-diary-default-entry): New function.
14492 (org-get-entries-from-diary): Better parsing of diary entries.
14493 (org-agenda-check-no-diary): New function.
14494 ("diary-lib"): Advice to function `add-to-diary-list', to allow
14495 linking to diary entries.
14496 (org-agenda-execute-calendar-command): New function.
14497 (org-agenda): Improve visible section in window.
14498 Use `org-fit-agenda-window'.
14499 (org-fit-agenda-window): New option.
14500 (org-move-subtree-down): Better handling of empty lines
14501 at end of subtree.
14502 (org-cycle): Numeric prefix is interpreted now as show-subtree N
14503 levels up.
14504 (org-fontify-done-headline): New option.
14505 (org-headline-done-face): New face.
14506 (org-set-font-lock-defaults): Use `org-headline-done-face'.
14507 (org-table-copy-down): Rename from `org-table-copy-from-above'.
14508 When current field is non-empty, it is copied to next row.
14509 (org-table-copy-from-above): Fix bug which made it
14510 impossible to copy fields containing only a single non-white character.
14511
14512 2005-03-30 Kim F. Storm <storm@cua.dk>
14513
14514 * kmacro.el (kmacro-end-macro): Isearch may store this command
14515 into the macro -- so ignore it when executing keyboard macro.
14516
14517 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
14518
14519 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
14520
14521 2005-03-29 Kenichi Handa <handa@m17n.org>
14522
14523 * language/thai.el ("Thai"): Set setup-function and exit-function
14524 for Thai language environment.
14525
14526 * language/thai-util.el: Require thai-word.
14527 (thai-word-mode-map): New variable.
14528 (thai-word-mode): New minor mode.
14529 (setup-thai-language-environment-internal): New function.
14530 (exit-thai-language-environment-internal): New function.
14531
14532 * language/thai-word.el (thai-word-table): Declare it by defvar,
14533 use dolist to initialize it.
14534 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
14535 (thai-fill-find-break-point): New functions.
14536
14537 2005-03-29 Richard M. Stallman <rms@gnu.org>
14538
14539 * simple.el (idle-update-delay): Move definition up.
14540 (set-mark): Doc fix.
14541
14542 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
14543
14544 * longlines.el: New file.
14545
14546 * simple.el (buffer-substring-filters): New variable.
14547 (filter-buffer-substring): New function.
14548 (kill-region, copy-region-as-kill): Use it.
14549
14550 * register.el (copy-to-register, append-to-register)
14551 (prepend-to-register): Use filter-buffer-substring.
14552
14553 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
14554
14555 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
14556 (gud-filter-pending-text): Move in front of gdb.
14557 (gud-overlay-arrow-position): New variable.
14558 (gud-sentinel, gud-display-line): Use it in place of
14559 overlay-arrow-position.
14560
14561 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
14562
14563 * progmodes/fortran.el (fortran-if-indent): Doc fix.
14564 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
14565 (fortran-font-lock-keywords-4): New variable.
14566 (fortran-blocks-re, fortran-end-block-re)
14567 (fortran-start-block-re): New constants, for hideshow.
14568 (hs-special-modes-alist): Add a Fortran entry.
14569 (fortran-mode-map): Bind fortran-end-of-block,
14570 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
14571 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
14572 (fortran-looking-at-if-then, fortran-end-of-block)
14573 (fortran-beginning-of-block): New functions, for hideshow.
14574
14575 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
14576 Doc fix. Tweak regexp.
14577 (f90-beginning-of-block): Push mark first.
14578
14579 2005-03-29 Jay Belanger <belanger@truman.edu>
14580
14581 * calc/calc.el: Update copyright date.
14582 (calc-version): Increase to 2.1.
14583 (calc-version-date): Remove.
14584
14585 * calc/calc-help.el: Update copyright date.
14586 (calc-full-help): Remove reference to calc-version-date.
14587 Update copyright date.
14588
14589 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
14590
14591 * vc.el (vc-do-command): Use a pipe for async processes, so password
14592 prompts don't show up at places where the user can't reply.
14593
14594 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
14595
14596 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
14597 on the file name we pass to the inferior shell.
14598
14599 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
14600
14601 * progmodes/which-func.el (which-function): Be robust in the face of an
14602 imenu--make-index-alist failure.
14603
14604 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
14605
14606 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
14607
14608 * progmodes/python.el (python-preoutput-filter): Fix last change.
14609
14610 2005-03-29 Lute Kamstra <lute@gnu.org>
14611
14612 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
14613 functions and compiled macros.
14614 (debug-convert-byte-code): Handle macros too.
14615 (debug-on-entry-1): Don't signal an error when trying to clear a
14616 function that is not set to debug on entry.
14617
14618 2005-03-29 Jay Belanger <belanger@truman.edu>
14619
14620 * calc/calc-lang.el: Add functions to math-function-table
14621 properties of tex and math.
14622
14623 2005-03-29 Kenichi Handa <handa@m17n.org>
14624
14625 * ps-mule.el (ps-mule-plot-string): Translate characters by
14626 ps-print-translation-table.
14627 (ps-mule-begin-job): Call find-charset-region/string with
14628 ps-print-translation-table.
14629 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
14630
14631 * ps-print.el (ps-print-translation-table): New variable.
14632 (ps-plot-region): Translate characters by ps-print-translation-table.
14633
14634 2005-03-29 Juri Linkov <juri@jurta.org>
14635
14636 * simple.el (next-error-highlight-timer): New variable.
14637
14638 * progmodes/compile.el (compilation-goto-locus):
14639 Use `next-error-highlight-timer' instead of `sit-for'.
14640
14641 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
14642
14643 * mail/supercite.el (sc-mail-field): Use assoc-string.
14644 (sc-get-address): Simplify regexps.
14645
14646 * files.el (minibuffer-with-setup-hook): New macro.
14647 (find-file-read-args): Use it to avoid let-binding
14648 minibuffer-with-setup-hook (which breaks turning on/off
14649 file-name-shadow-mode while in the prompt).
14650
14651 * complete.el (PC-read-include-file-name-internal):
14652 Use test-completion.
14653
14654 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
14655
14656 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
14657
14658 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
14659
14660 * window.el (window-buffer-height): Use count-screen-lines.
14661
14662 * progmodes/python.el (python-preoutput-leftover): New var.
14663 (python-preoutput-filter): Use it.
14664 (python-send-receive): Loop until all the result has been received.
14665
14666 2005-03-28 Juri Linkov <juri@jurta.org>
14667
14668 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
14669
14670 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
14671 "Recover Crashed Session".
14672 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
14673 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
14674 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
14675 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
14676 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
14677 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
14678 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
14679 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
14680
14681 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
14682 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
14683 Ediff Sessions", "Toggle use of separate control buffer frame",
14684 "Use separate frame for Ediff control buffer".
14685
14686 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
14687 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
14688 "Rename Bookmark", "Delete Bookmark".
14689
14690 * info.el (Info-mode-menu): Remove ellipsis from "Index".
14691 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
14692 Add `:active Info-index-alternatives' to "Next Matching Item".
14693
14694 * wdired.el (wdired-change-to-wdired-mode):
14695 Mention `wdired-abort-changes' key in the initial message.
14696
14697 * international/mule.el (auto-coding-alist): Associate non-ascii
14698 image filename extensions with `no-conversion'.
14699
14700 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
14701
14702 * international/iso-acc.el:
14703 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
14704
14705 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
14706
14707 * textmodes/sgml-mode.el (html-mode): Doc update.
14708
14709 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
14710
14711 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
14712
14713 * term.el (term-move-columns): Fix face after extending a line.
14714 (term-insert-spaces): Likewise.
14715 (term-reset-terminal): Fix off by one error.
14716
14717 2005-03-26 Eli Zaretskii <eliz@gnu.org>
14718
14719 * international/mule.el (auto-coding-alist): Add .xpi files.
14720
14721 * files.el (auto-mode-alist): Add .xpi files.
14722
14723 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
14724
14725 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
14726
14727 2005-03-26 Eli Zaretskii <eliz@gnu.org>
14728
14729 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
14730
14731 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
14732
14733 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
14734 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
14735
14736 * calendar/cal-move.el (calendar-beginning-of-year): Move the
14737 cursor to Jan 1 when needed.
14738 (calendar-end-of-year): Fix -/+ typo.
14739 Reported by Chong Yidong <cyd@stupidchicken.com>.
14740
14741 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
14742
14743 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
14744
14745 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
14746 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
14747
14748 2005-03-25 Richard M. Stallman <rms@gnu.org>
14749
14750 * filesets.el (filesets-init): Add autoload.
14751
14752 * mail/mailalias.el (mail-directory): Doc fix.
14753
14754 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
14755
14756 * mail/mailalias.el (mail-directory-process): Do nothing if
14757 mail-directory-process is an atom.
14758 (mail-get-names): Ignore mail-directory-names if it is an atom.
14759 (mail-directory-process defvar): Doc fix.
14760 (mail-names): Doc fix.
14761
14762 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
14763
14764 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
14765
14766 2005-03-26 Kenichi Handa <handa@m17n.org>
14767
14768 * international/mule-util.el (detect-coding-with-priority):
14769 Call update-coding-systems-internal before detect-coding-region.
14770
14771 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
14772
14773 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
14774 (gdb-frames-mode-map): Add follow-link property.
14775
14776 2005-03-25 Jay Belanger <belanger@truman.edu>
14777
14778 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
14779 for variables.
14780
14781 2005-03-25 Juri Linkov <juri@jurta.org>
14782
14783 * image-mode.el: Optimize image filename extension regexps in
14784 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
14785 in `auto-mode-alist'.
14786 (image-mode): Add `image-toggle-display-text' to local hook
14787 `change-major-mode-hook'. Display the image as an image by
14788 default. Set `cursor-type' and `truncate-lines' if the image
14789 is already displayed. Take into account the current mode (image
14790 or text) in message.
14791 (image-minor-mode): New minor mode.
14792 (image-mode-maybe, image-toggle-display-text): New functions.
14793 (image-toggle-display): Use called-interactively-p.
14794 Let-bind `inhibit-read-only' to t.
14795
14796 * image-mode.el (image-minor-mode): Set `cursor-type' and
14797 `truncate-lines' if the image is already displayed. Add turning
14798 image-minor-mode off to `change-major-mode-hook'. Add message.
14799 Call `image-toggle-display-text' after turning image-minor-mode off.
14800
14801 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
14802
14803 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
14804 Terminal.app, use utf-8.
14805 (set-display-table-and-terminal-coding-system): Add coding-system arg.
14806 (set-locale-environment): Use it.
14807
14808 * term/xterm.el: Undo last change, better done in mule-cmds.el.
14809
14810 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
14811
14812 * progmodes/python.el (python-close-block-statement-p)
14813 (python-outdent-p, python-current-defun): Use symbol-end.
14814
14815 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
14816
14817 * files.el (save-some-buffers): Doc fix.
14818
14819 2005-03-25 Werner Lemberg <wl@gnu.org>
14820
14821 * complete.el, thumbs.el: Replace `legal' with `valid'.
14822 * calendar/calendar.el: Replace `legal' with `valid'.
14823 * emacs-lisp/advice.el: Replace `legal' with `valid'.
14824 * mail/supercite.el: Replace `legal' with `valid'.
14825 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
14826 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
14827 Replace `legal' with `valid'.
14828 * textmodes/reftex-vars.el, textmodes/reftex.el:
14829 Replace `legal' with `valid'.
14830
14831 2005-03-25 Werner Lemberg <wl@gnu.org>
14832
14833 * calc/calc-forms.el, calc/calc-sel.el:
14834 * midnight.el, vc-cvs.el:
14835 * emacs-lisp/cl-macs.el:
14836 * emulation/vip.el:
14837 * eshell/esh-io.el, eshell/esh-var.el:
14838 * mail/supercite.el:
14839 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
14840 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
14841 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
14842 * progmodes/sh-script.el, progmodes/xscheme.el:
14843 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
14844 * textmodes/reftex-index.el, textmodes/reftex-parse.el
14845 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
14846 * textmodes/reftex.el, textmodes/org.el:
14847 Replace `illegal' with `invalid'.
14848
14849 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
14850
14851 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
14852 (flymake-find-buildfile, flymake-find-possible-master-files)
14853 (flymake-check-include, flymake-parse-line): Replace loops over the
14854 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
14855
14856 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
14857 Substitute file-name-as-directory in the rest of the file.
14858 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
14859 (flymake-replace-region): Remove unused arg `buffer'.
14860 (flymake-check-patch-master-file-buffer): Update calls to it.
14861 (flymake-add-err-info): Remove unused var `count'.
14862 (flymake-mode): Use define-minor-mode.
14863
14864 * progmodes/flymake.el: Use with-current-buffer.
14865 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
14866 flymake-replace-regexp-in-string, flymake-line-beginning-position)
14867 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
14868 Avoid testing for `xemacs'.
14869 (flymake-nop): Move.
14870 (flymake-region-has-flymake-overlays): Return the computed value.
14871 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
14872 Remove unused var `endline'.
14873 (flymake-get-line-count): Remove unused function.
14874 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
14875
14876 * emulation/vi.el:
14877 * generic.el:
14878 * hilit-chg.el (global-highlight-changes):
14879 * hi-lock.el (hi-lock-mode):
14880 * follow.el: find-file-hooks -> find-file-hook.
14881
14882 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
14883
14884 2005-03-24 Juri Linkov <juri@jurta.org>
14885
14886 * dired.el (dired-mode-map): Add menu item "Compare directories"
14887 for dired-compare-directories.
14888
14889 * dired-aux.el (dired-compare-directories): Add autoload cookie.
14890 Doc fix. Replace `read-file-name' with `read-directory-name'.
14891
14892 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
14893
14894 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
14895
14896 2005-03-24 Jay Belanger <belanger@truman.edu>
14897
14898 * calc/calc-embed.el (calc-embedded-mode-change): Save all
14899 relevant mode settings in calc-embedded-original-modes when modes
14900 are permanently changed.
14901
14902 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
14903
14904 * autoinsert.el: find-file-hooks -> find-file-hook.
14905
14906 2005-03-24 Lute Kamstra <lute@gnu.org>
14907
14908 * generic.el (generic-font-lock-defaults): Make it obsolete.
14909 (generic-font-lock-keywords): New variable to replace
14910 generic-font-lock-defaults.
14911 (generic-mode-set-font-lock): Delete it.
14912 (generic-mode-internal): Don't call generic-mode-set-font-lock.
14913 (generic-bracket-support): Add docstring.
14914
14915 * generic-x.el: Rename generic-font-lock-defaults to
14916 generic-font-lock-keywords throughout.
14917 (mailagent-rules-setup-function): Delete it.
14918 (mailagent-rules-generic-mode): Use anonymous function instead.
14919 (show-tabs-generic-mode-font-lock-defaults-1)
14920 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
14921 Quote faces.
14922 (show-tabs-tab-face, show-tabs-space-face): Specify background,
14923 not foreground.
14924
14925 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
14926 Recognize define-generic-mode.
14927
14928 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
14929
14930 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
14931 if there's no completion table.
14932
14933 2005-03-23 Miles Bader <miles@gnu.org>
14934
14935 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
14936 Remove tty-specific variants, as they're no longer needed.
14937
14938 2005-03-23 Lute Kamstra <lute@gnu.org>
14939
14940 * generic-x.el: Code cleanup: make args constant whenever possible.
14941 (installshield-statement-keyword-list)
14942 (installshield-system-functions-list)
14943 (installshield-system-variables-list, installshield-types-list)
14944 (installshield-funarg-constants-list): Make them constants.
14945
14946 * generic.el (generic-make-keywords-list): Add autoload cookie.
14947
14948 * calendar/time-date.el: Add comment on time value formats.
14949 Don't require parse-time.
14950 (with-decoded-time-value): New macro.
14951 (encode-time-value): New function.
14952 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
14953 (days-to-time): Return a valid time value when arg is huge.
14954 (time-since): Use time-subtract.
14955 (time-to-number-of-days): Use time-to-seconds.
14956
14957 2005-03-23 David Ponce <david@dponce.com>
14958
14959 * recentf.el: (recentf-keep): New option.
14960 (recentf-menu-action): Default to `find-file'.
14961 (recentf-keep-non-readable-files-flag)
14962 (recentf-keep-non-readable-files-p)
14963 (recentf-file-readable-p, recentf-find-file)
14964 (recentf-cleanup-remote): Remove.
14965 (recentf-include-p): More robust.
14966 (recentf-keep-p): New function.
14967 (recentf-remove-if-non-kept): Rename from
14968 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
14969 All callers updated.
14970 (recentf-menu-items-for-commands): Fix help string.
14971 (recentf-track-closed-file): Update. Doc fix.
14972 (recentf-cleanup): Update. Count removed files. Doc fix.
14973
14974 2005-03-23 Kim F. Storm <storm@cua.dk>
14975
14976 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
14977 Don't inherit from fringe face (now happens automatically).
14978
14979 2005-03-22 Kim F. Storm <storm@cua.dk>
14980
14981 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
14982 position values.
14983
14984 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
14985
14986 * menu-bar.el (showhide-date-time): Remove.
14987 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
14988 (menu-bar-make-mm-toggle): Simplify.
14989
14990 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
14991
14992 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
14993 Accept qualified variable and function names.
14994
14995 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
14996
14997 * bindings.el (completion-ignored-extensions):
14998 Remove ".lis" for `vax-vms'.
14999
15000 2005-03-22 Andreas Schwab <schwab@suse.de>
15001
15002 * generic-x.el: Revert last change.
15003 * ldefs-boot.el: Update.
15004
15005 2005-03-22 Jay Belanger <belanger@truman.edu>
15006
15007 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
15008 (calc-embedded-save-original-modes)
15009 (calc-embedded-restore-original-modes): New functions.
15010 (calc-do-embedded): Save original modes when entering embedded mode
15011 and restore when leaving embedded mode.
15012 (calc-embedded-modes-change): Change the value of
15013 calc-embedded-original-modes to reflect permanent changes.
15014
15015 2005-03-22 Lute Kamstra <lute@gnu.org>
15016
15017 * generic-x.el: Require generic again.
15018
15019 2005-03-22 Miles Bader <miles@gnu.org>
15020
15021 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
15022 Tweak details to look good on both ttys and bitmap displays, light
15023 or dark background, etc.
15024
15025 2005-03-21 Kim F. Storm <storm@cua.dk>
15026
15027 * tooltip.el (tooltip-show-help-function): Check car and cdr of
15028 mouse position.
15029
15030 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
15031
15032 * icomplete.el: Don't forcibly turn on the mode upon load.
15033 (icomplete-mode): Use define-minor-mode.
15034 (icomplete-eoinput): Default to nil.
15035 (icomplete-minibuffer-setup): Remove autoload.
15036 (icomplete-tidy): Simplify.
15037 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
15038 in the initial state or if the user has modified the field.
15039 Fix handling of icomplete-max-delay-chars.
15040 Remove code that handles the oddball case where
15041 minibuffer-completion-table is an integer.
15042 Wrap icomplete-completions in while-no-input in case building
15043 completions takes more time than expected.
15044 (icomplete-completions): Simplify.
15045
15046 2005-03-21 Richard M. Stallman <rms@gnu.org>
15047
15048 * jka-compr.el (jka-compr-really-do-compress):
15049 Make variable buffer-local.
15050
15051 * image-mode.el: Handle .xpm files too.
15052 (image-toggle-display): Preserve modification flag.
15053
15054 * help.el (where-is): Don't mention aliases with no key bindings.
15055
15056 2005-03-21 Lute Kamstra <lute@gnu.org>
15057
15058 * generic.el: Fix commentary section. Don't require cl for
15059 compilation.
15060 (generic-mode-list): Add autoload cookie.
15061 (generic-use-find-file-hook, generic-lines-to-scan)
15062 (generic-find-file-regexp, generic-ignore-files-regexp)
15063 (generic-mode, generic-mode-find-file-hook)
15064 (generic-mode-ini-file-find-file-hook): Fix docstrings.
15065 (define-generic-mode): Make it a defmacro. Fix docstring.
15066 (generic-mode-internal): Code cleanup. Add autoload cookie.
15067 (generic-mode-set-comments): Code cleanup.
15068 * generic-x.el: Don't prevent compilation. Don't require generic.
15069 Follow coding conventions. Minor code cleanup.
15070 (etc-fstab-generic-mode): Add some keywords.
15071 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
15072 define-generic-mode like a function declaration.
15073
15074 2005-03-21 Jay Belanger <belanger@truman.edu>
15075
15076 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
15077 changing modes.
15078
15079 2005-03-21 Sam Steingold <sds@gnu.org>
15080
15081 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
15082
15083 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
15084
15085 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
15086 Add underscore to "f$ lexicals" regexp.
15087
15088 2005-03-20 Juri Linkov <juri@jurta.org>
15089
15090 * subr.el (progress-reporter-do-update): When `min-value' is equal
15091 to `max-value', set `percentage' to 0 and prevent division by zero.
15092
15093 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
15094
15095 Sync with Tramp 2.0.48.
15096
15097 * net/tramp.el (all): Change all addresses to .gnu.org.
15098 (tramp-append-tramp-buffers): New defun.
15099 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
15100 Catch `dont-send' signal.
15101 (tramp-set-auto-save-file-modes): Set always permissions, because
15102 there might be an old auto-saved file belonging to another
15103 original file. This could be a security threat. Reported by
15104 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
15105 Check for Emacs 21.3.50 removed.
15106
15107 * net/tramp-smb.el (all): Remove debug construct for
15108 `with-parsed-tramp-file-name'.
15109 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
15110 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
15111 No error message if DIRECTORY or FILENAME doesn't exist.
15112 (tramp-smb-open-connection): Check existence of
15113 `tramp-smb-program'.
15114
15115 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
15116
15117 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
15118 Properly handle the case where the `m' or `s' command's argument is not
15119 yet terminated.
15120 (perl-indent-new-calculate): New function.
15121 (perl-indent-line): Use it.
15122
15123 2005-03-20 Miles Bader <miles@gnu.org>
15124
15125 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
15126 in text-mode too. Change to new face names.
15127 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
15128 Add `:weight bold' attribute.
15129 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
15130
15131 2005-03-19 Juri Linkov <juri@jurta.org>
15132
15133 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
15134
15135 * international/mule.el (auto-coding-alist): Sync with
15136 `auto-mode-alist' by adding upper case archive file extensions
15137 and adding ear/war to jar extension.
15138
15139 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
15140
15141 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
15142 running, restart it.
15143
15144 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
15145
15146 * finder.el (finder-current-item): Throw an error on an empty line.
15147
15148 * man.el (Man-follow-manual-reference): If current-word returns
15149 nil, use "".
15150
15151 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
15152
15153 * simple.el (goto-line): Doc fix.
15154
15155 2005-03-19 Aaron Hawley <Aaron.Hawley@uvm.edu> (tiny change)
15156
15157 * files.el (save-buffer): Doc fix.
15158
15159 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
15160
15161 * recentf.el (recentf-cleanup-remote): New variable.
15162 (recentf-cleanup): Use it to conditionally check availability of
15163 remote files.
15164
15165 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
15166
15167 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
15168 function names.
15169
15170 2005-03-19 Eli Zaretskii <eliz@gnu.org>
15171
15172 * language/thai-word.el: New file.
15173
15174 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
15175
15176 * files.el (backup-buffer): If the file's directory is not
15177 writable, use copy instead of move to backup the file.
15178
15179 2005-03-19 Eli Zaretskii <eliz@gnu.org>
15180
15181 * obsolete/keyswap.el: Moved to obsolete/ from term/.
15182
15183 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15184
15185 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
15186 Use functionp instead of symbolp and fboundp. Reported by Drkm
15187 <darkman_spam@yahoo.fr>.
15188 (ps-print-version): New version 6.6.6.
15189
15190 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
15191
15192 * textmodes/table.el (table--line-column-position): New idiom.
15193 (table--row-column-insertion-point-p): New function to test
15194 validity of row and column insertion operation at a location.
15195 (table-global-menu, table-cell-menu): Use above functions for
15196 deterministic test operation.
15197 (table--editable-cell-p): Behave in deterministic fashion.
15198
15199 2005-03-18 Juri Linkov <juri@jurta.org>
15200
15201 * isearch.el (isearch-lazy-highlight-new-loop):
15202 Make arguments beg and end optional.
15203 (isearch-update): Remove optional arguments nil from
15204 isearch-lazy-highlight-new-loop.
15205 (isearch-lazy-highlight-search): Let-bind case-fold-search to
15206 isearch-lazy-highlight-case-fold-search instead of
15207 isearch-case-fold-search, and let-bind isearch-regexp to
15208 isearch-lazy-highlight-regexp.
15209 Use isearch-lazy-highlight-last-string instead of isearch-string.
15210
15211 * replace.el (perform-replace): Remove bindings of global
15212 variables isearch-string, isearch-regexp, isearch-case-fold-search.
15213 Add three new arguments to `replace-highlight'.
15214 (replace-highlight): Add arguments string, regexp, case-fold.
15215 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
15216 to allow isearch-lazy-highlight-new-loop to use these values
15217 to set corresponding isearch-lazy-highlight-* internal
15218 variables whose values lazy highlighting will use regardless of
15219 changes to global variables isearch-string, isearch-regexp,
15220 isearch-case-fold-search during lazy highlighting loop.
15221 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
15222 to `lazy-highlight-cleanup'.
15223
15224 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
15225 (ispell-highlight-face): Set default face to `isearch' when
15226 lazy highlighting is enabled.
15227 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
15228 priority to 1. Add lazy highlighting.
15229 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
15230 from `isearch-dehighlight'.
15231
15232 2005-03-18 David Ponce <david@dponce.com>
15233
15234 * files.el (hack-local-variables): Do a case-insensitive search
15235 for End.
15236
15237 2005-03-18 Juri Linkov <juri@jurta.org>
15238
15239 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
15240 `isearch-lazy-highlight-cleanup', add alias to old name and
15241 declare obsolete. Add release numbers to other obsolete vars.
15242 (isearch-done, isearch-lazy-highlight-new-loop):
15243 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
15244 (lazy-highlight-cleanup) <variable>: Doc fix.
15245 (isearch-lazy-highlight-update): Rename obsolete
15246 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
15247
15248 2005-03-18 Kenichi Handa <handa@m17n.org>
15249
15250 * language/thai-util.el: Fix categorization of Thai characters in
15251 thai-category-table.
15252 (thai-composition-pattern): Adjust it for the above change.
15253 (thai-self-insert-command, thai-compose-syllable): New functions.
15254 (thai-compose-region): Use thai-compose-syllable.
15255 (thai-compose-string): Likewise.
15256 (thai-composition-function): Likewise.
15257 (thai-auto-composition): New function.
15258 (thai-auto-composition-mode): New minor mode.
15259
15260 * language/thai.el: Fix patterns to be registered in
15261 composition-function-table.
15262
15263 * international/quail.el (quail-input-method): Locally bind
15264 inhibit-modification-hooks to t.
15265
15266 2005-03-17 Richard M. Stallman <rms@gnu.org>
15267
15268 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
15269 (perl-mode): Use run-mode-hooks.
15270
15271 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
15272 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
15273 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
15274
15275 * mail/sendmail.el (sendmail-send-it): Reenable the code
15276 to compute resend-to-address and use it.
15277
15278 * tar-mode.el (tar-mode): Turn off undo unconditionally.
15279
15280 * image-mode.el: New file.
15281
15282 * image.el (insert-sliced-image): Add autoload cookie.
15283
15284 * font-lock.el (font-lock-lines-before): New user option.
15285 (font-lock-after-change-function): Obey it.
15286
15287 * bindings.el (esc-map): Make M-g a prefix.
15288 Bind M-g g and M-g M-g to goto-line.
15289
15290 * faces.el (face-id): Doc fix.
15291
15292 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
15293
15294 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
15295 (rmail-show-message): Use rmail-unknown-mail-followup-to.
15296 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
15297
15298 * mail/sendmail.el (mail-yank-ignored-headers)
15299 (mail-font-lock-keywords, mail-mode-fill-paragraph):
15300 Add Mail-Followup-To and Mail-Reply-To headers.
15301 (mail-citation-hook): Add autoload cookie.
15302 (mail-mode): Doc fix.
15303 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
15304 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
15305 (mail-mode-fill-paragraph): Handle those headers.
15306 (mail-mailing-lists): New variable.
15307 (mail-mail-reply-to, mail-mail-followup-to): New functions.
15308
15309 2005-03-17 Juri Linkov <juri@jurta.org>
15310
15311 * isearch.el (isearch-fallback): Check for `(car previous)'
15312 before calling `isearch-other-end-state'.
15313
15314 2005-03-17 Kim F. Storm <storm@cua.dk>
15315
15316 * simple.el (move-beginning-of-line): Move to beginning of buffer
15317 line, as well as beginning of screen line.
15318
15319 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
15320
15321 * calendar/diary-lib.el (mark-diary-entries): Use new optional
15322 argument REDRAW rather than calendar-redrawing variable.
15323 * calendar/calendar.el (calendar-redrawing): Delete.
15324 (redraw-calendar): Do not bind calendar-redrawing.
15325
15326 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
15327
15328 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
15329 diary-file buffer.
15330
15331 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
15332
15333 * help.el (describe-mode): Allow a :minor-mode-function property to
15334 specify a different minor mode toggle function than the variable.
15335 * simple.el (auto-fill-function):
15336 * subr.el (add-minor-mode): Use it.
15337
15338 2005-03-16 Kenichi Handa <handa@m17n.org>
15339
15340 * language/ethio-util.el (sera-being-called-by-w3): New variable.
15341 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
15342 (ethio-fidel-to-sera-buffer): Likewise.
15343
15344 2005-03-16 Juri Linkov <juri@jurta.org>
15345
15346 * emacs-lisp/find-func.el (find-function-regexp):
15347 Add defun-emitting macro `menu-bar-make-toggle'.
15348
15349 * isearch.el: Put `isearch-scroll' property to
15350 `split-window-horizontally'.
15351
15352 * info.el: Update error messages for `debug-ignored-errors'.
15353 (Info-isearch-search): Doc fix.
15354 (Info-find-node): Move up code to go into info buffer before
15355 recording the node to the history.
15356 (Info-fontify-node): Fontify titles only if the next line
15357 has two or more `*', `=', `-', `.'.
15358 Display "go to this node" for empty (match-string 3).
15359
15360 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15361
15362 * term/mac-win.el: Add mouse pointer shape constants.
15363
15364 2005-03-15 Kim F. Storm <storm@cua.dk>
15365
15366 * simple.el (move-beginning-of-line): Use vertical-motion.
15367
15368 2005-03-15 Juri Linkov <juri@jurta.org>
15369
15370 * isearch.el (isearch-error): New variable.
15371 (isearch-invalid-regexp, isearch-within-brackets): Remove.
15372 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
15373 (isearch-within-brackets-state): Remove.
15374 (isearch-case-fold-search-state, isearch-pop-fun-state):
15375 Decrease frame index.
15376 (isearch-mode, isearch-top-state, isearch-push-state)
15377 (isearch-edit-string, isearch-abort, isearch-search-and-update)
15378 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
15379 (isearch-search, isearch-lazy-highlight-new-loop):
15380 Replace `isearch-invalid-regexp' with `isearch-error'.
15381 Remove `isearch-within-brackets'.
15382 (isearch-search): Add `search-failed' handler to `condition-case'.
15383 (isearch-lazy-highlight-search): Add `condition-case' to catch
15384 errors and allow `isearch-lazy-highlight-update' to try
15385 highlighting from the beginning of the window.
15386 (isearch-repeat): Move up code to set isearch-wrapped to t
15387 before calling isearch-wrap-function.
15388
15389 * info.el (Info-isearch-initial-node): New internal variable.
15390 (Info-search): Signal an error in isearch mode when search leaves
15391 the initial node. Signal an error when `bound' is non-nil and
15392 nothing was found in the current subfile.
15393 (Info-isearch-search): Remove `condition-case'.
15394 (Info-isearch-wrap): Don't wrap when search failed during leaving
15395 the initial node. If `Info-isearch-search' is nil, wrap around
15396 the current node.
15397 (Info-isearch-start): New fun.
15398 (Info-mode): Add buffer-local hook `Info-isearch-start' to
15399 `isearch-mode-hook'.
15400
15401 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15402
15403 * simple.el (normal-erase-is-backspace): Set default to t if
15404 running on Mac.
15405
15406 * term/mac-win.el (function-key-map): Sync with x-win.el.
15407
15408 2005-03-15 Kenichi Handa <handa@m17n.org>
15409
15410 * international/mule-cmds.el (locale-language-names): Modify the
15411 format of elements and add more entries.
15412 (locale-preferred-coding-systems): Add more entries.
15413 (set-locale-environment): Adjust for the change of
15414 locale-language-names.
15415
15416 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
15417
15418 * pcvs.el (smerge-ediff): Remove bogus autoload.
15419
15420 2005-03-14 Lute Kamstra <lute@gnu.org>
15421
15422 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
15423 Ignore a `*' at the beginning of a line.
15424
15425 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
15426 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
15427 subr.el.
15428 (dont-compile, eval-when-compile, eval-and-compile): Use declare
15429 to specify indentation.
15430
15431 * generic.el (define-generic-mode): Let generic-mode-list be a
15432 list of strings; test membership with equal.
15433
15434 2005-03-14 Kim F. Storm <storm@cua.dk>
15435
15436 * simple.el (next-line, previous-line): Add optional try-vscroll
15437 arg to recognize interactive use. Pass it on to line-move.
15438 (line-move): Don't perform auto-window-vscroll when defining or
15439 executing keyboard macro to ensure consistent behavior.
15440
15441 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
15442
15443 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
15444
15445 2005-03-13 Lute Kamstra <lute@gnu.org>
15446
15447 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
15448 debugger-setup-buffer so that backtrace marks the frames set to
15449 debug-on-exit and we don't have to do it manually. Set an extra
15450 debug-on-exit for macro's.
15451 (debugger-setup-buffer): Don't mark the top frame manually.
15452
15453 2005-03-12 Lute Kamstra <lute@gnu.org>
15454
15455 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
15456 lisp-indent-function throughout.
15457 (with-no-warnings): Set lisp-indent-function property.
15458
15459 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
15460
15461 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
15462 Add entry for backslash.
15463
15464 2005-03-12 Juri Linkov <juri@jurta.org>
15465
15466 * info.el (Info-search): Four fixes for backward search.
15467
15468 2005-03-11 Jay Belanger <belanger@truman.edu>
15469
15470 * calc/calc.el (calc-language-alist): New variable.
15471 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
15472 (calc-embedded-find-modes): Use calc-language-alist instead of
15473 calc-embedded-language-alist.
15474
15475 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
15476
15477 * calendar/calendar.el (calendar-redrawing): New internal
15478 variable.
15479 (redraw-calendar): Remove bogus save-excursion from previous
15480 change. Bind calendar-redrawing to t for mark-diary-entries.
15481 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
15482 calendar if that is why we were called.
15483
15484 2005-03-11 Kenichi Handa <handa@m17n.org>
15485
15486 * international/mule.el (make-coding-system): Set property
15487 coding-system-define-form to nil.
15488 (define-coding-system-alias): Likewise.
15489
15490 2005-03-11 Kenichi Handa <handa@m17n.org>
15491
15492 These changes are suggested by Dave Love <fx@gnu.org>.
15493
15494 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
15495 coding: tag.
15496 (adaptive-fill-regexp): Add more bullets.
15497 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
15498 regexps.
15499
15500 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
15501
15502 * help.el (describe-mode): Properly handle non-trivial lighters.
15503 Don't ignore minor modes that are not listed in minor-mode-list.
15504
15505 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
15506 feature ON when the user requests to turn it OFF.
15507
15508 2005-03-10 Lute Kamstra <lute@gnu.org>
15509
15510 * emacs-lisp/debug.el (debug-entry-code): Delete it.
15511 (implement-debug-on-entry): New function to replace debug-entry-code.
15512 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
15513 second argument as the 2005-03-07 change makes it obsolete.
15514 (debug-on-entry, cancel-debug-on-entry): Update call to
15515 debug-on-entry-1.
15516 (debug, debugger-setup-buffer): Comment update.
15517 (debugger-frame-number): Update to work with implement-debug-on-entry.
15518
15519 2005-03-10 Jay Belanger <belanger@truman.edu>
15520
15521 * calc/calc-embed.el (math-ms-args): Declare it.
15522 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
15523 math-ms-args.
15524 (calc-embedded-subst): Use math-multi-subst-rec to substitute
15525 variables.
15526
15527 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
15528
15529 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
15530 Use message-box.
15531
15532 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
15533 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
15534 (tooltip-gud-tips): Simplify.
15535 (tooltip-gud-tips-p): Remove superfluous :set.
15536 (tooltip-gud-modes): Add fortran-mode.
15537 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
15538
15539 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
15540
15541 2005-03-09 Kim F. Storm <storm@cua.dk>
15542
15543 * play/animate.el (animate-place-char): Use forward-line instead
15544 of next-line to improve performance.
15545
15546 2005-03-09 Simon Josefsson <jas@extundo.com>
15547
15548 * net/browse-url.el (browse-url-default-browser): Doc fix.
15549
15550 2005-03-09 Miles Bader <miles@gnu.org>
15551
15552 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
15553 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
15554
15555 2005-03-09 Kenichi Handa <handa@m17n.org>
15556
15557 * international/latin-1.el: Set case and syntax for 255 only if
15558 set-case-syntax-set-multibyte is nil.
15559
15560 * textmodes/ispell.el (ispell-insert-word): New function.
15561 (ispell-word): Use ispell-insert-word to insert a new word.
15562 (ispell-process-line): Likewise.
15563 (ispell-complete-word): Likewise.
15564
15565 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
15566
15567 * calendar/calendar.el (redraw-calendar): Preserve point.
15568 Reported by Matt Hodges <MPHodges@member.fsf.org>.
15569 (calendar-week-start-day): Move after definition of
15570 redraw-calendar. Delete buffer test, since redraw-calendar has
15571 that now.
15572
15573 * calendar/diary-lib.el (mark-diary-entries): Only call
15574 redraw-calendar in the first of any recursive calls.
15575 Reported by Alan Shutko <ats@acm.org>.
15576
15577 2005-03-08 Juri Linkov <juri@jurta.org>
15578
15579 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
15580 (html-horizontal-rule, html-line, html-image, html-checkboxes)
15581 (html-radio-buttons): Add a space before the trailing `/>' where
15582 sgml-xml-mode is non-nil.
15583 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
15584 the subsequent tag of the empty XML tag.
15585 (html-href-anchor): Don't set initial input to "http:".
15586 (html-image): Ask for the image URL and set point inside alt="".
15587 (html-name-anchor): Duplicate the name in the `id' attribute when
15588 sgml-xml-mode is non-nil.
15589 (html-paragraph): Remove \n before <p>.
15590 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
15591 instead of `checked' when sgml-xml-mode is non-nil.
15592
15593 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
15594 Remove 1 space before #RRGGBB to not truncate it on terminal
15595 windows w/o fringes. Remove 1 space between bg and fg examples
15596 to get more space.
15597 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
15598 avoid byte-compile warnings.
15599
15600 * image-file.el (image-file-handler): Put `safe-magic' property to
15601 `image-file-handler'.
15602
15603 * info.el (Info-isearch-search): Emulate word search in
15604 isearching through multiple Info nodes with Info-search.
15605 (Info-isearch-wrap): Allow isearch-word.
15606
15607 2005-03-08 Lute Kamstra <lute@gnu.org>
15608
15609 * emacs-lisp/debug.el (debugger-step-through): Make sure that
15610 stepping into the debugger's code is not possible.
15611 (debugger-jumping-flag): Docstring update.
15612
15613 2005-03-08 Jay Belanger <belanger@truman.edu>
15614
15615 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
15616 embedded mode begins.
15617 (calc-embedded-language-alist): New variable.
15618 (calc-embedded-find-modes): Use calc-embedded-language-alist to
15619 set default language mode.
15620
15621 2005-03-08 Kenichi Handa <handa@m17n.org>
15622
15623 * international/ccl.el (define-ccl-program): Fix docstring about
15624 extra 256 bytes assured for the output buffer.
15625
15626 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
15627 Fix BUFFER_MAGNIFICATION to 2.
15628 (ccl-encode-mule-utf-16be-with-signature): Likewise.
15629
15630 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
15631
15632 * align.el (align-rules-list): Added an alignment rule for CSS
15633 declarations (applies to css-mode and html-mode buffers).
15634
15635 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
15636
15637 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
15638
15639 2005-03-07 Kim F. Storm <storm@cua.dk>
15640
15641 * simple.el (move-beginning-of-line): New command.
15642
15643 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
15644
15645 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
15646
15647 * emulation/cua-base.el: Put CUA move property on move-end-of-line
15648 and move-beginning-of-line.
15649
15650 * apropos.el (apropos-print): Omit command from M-x ... RET.
15651
15652 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
15653
15654 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
15655 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
15656
15657 2005-03-06 Richard M. Stallman <rms@gnu.org>
15658
15659 * bindings.el (esc-map): Bind M-g to goto-line.
15660
15661 * facemenu.el (global-map): Bind M-o, not M-g.
15662
15663 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15664
15665 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
15666 "Open Directory" as for "Open File".
15667
15668 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
15669
15670 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
15671 (push-mark-command): Run activate-mark-hook.
15672
15673 2005-03-06 Richard M. Stallman <rms@gnu.org>
15674
15675 * help-mode.el (help-mode-finish): Don't alter the element
15676 in view-return-to-alist if there already is one.
15677
15678 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
15679 make sure the current buffer is the expected one.
15680
15681 * novice.el (disabled-command-function): Output in *Disabled Command*.
15682 Explicitly ignore non-keyboard events, and explicitly handle C-g.
15683
15684 * textmodes/flyspell.el (flyspell-large-region):
15685 Pass args differently for aspell.
15686
15687 * files.el (mode-require-final-newline): Doc fix.
15688
15689 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
15690
15691 * progmodes/which-func.el (which-function):
15692 Specify NOERROR when calling imenu--make-index-alist.
15693
15694 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
15695
15696 * simple.el (normal-erase-is-backspace): Define default value.
15697
15698 * custom.el (custom-theme-set-variables): Remove unused var
15699 `immediate'.
15700 (custom-reevaluate-setting): Simple function to handle variables
15701 that are defined before their default value can really be
15702 computed.
15703
15704 * startup.el (command-line): Use it for temporary-file-directory,
15705 small-emporary-file-directory, auto-save-file-name-transforms,
15706 blink-cursor-mode, and normal-erase-is-backspace.
15707
15708 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
15709 progress, even with buggy anchored keywords.
15710
15711 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
15712
15713 * simple.el (goto-line): Remove unbalanced final parenthesis.
15714
15715 2005-03-05 Richard M. Stallman <rms@gnu.org>
15716
15717 * simple.el (goto-line): Use a number at point as the default.
15718 With C-u as arg, switch buffers.
15719
15720 2005-03-05 Juri Linkov <juri@jurta.org>
15721
15722 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
15723 with `no-blinking-cursor'.
15724
15725 * startup.el (no-blinking-cursor): New defvar.
15726 (command-line): Add `--no-blinking-cursor' to longopts.
15727 Set `no-blinking-cursor' to t for command line arguments
15728 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
15729 with `no-blinking-cursor' in the condition for calling
15730 `blink-cursor-mode'.
15731
15732 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
15733
15734 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
15735 (menu-bar-options-save): Add blink-cursor-mode.
15736 (menu-bar-options-menu): Add blink-cursor-mode.
15737
15738 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
15739
15740 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
15741 (icalendar-export-file, icalendar-export-region)
15742 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
15743 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
15744
15745 2005-03-04 Lute Kamstra <lute@gnu.org>
15746
15747 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
15748 (debug-function-list): Ditto.
15749
15750 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
15751
15752 * textmodes/texinfmt.el (texinfo-append-refill):
15753 Redefine the types of line to which @refill
15754 is not appended by replacing a search for `@refill\\|@bye' with
15755 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
15756 itemize@refill' bug and the unfilled long lines bug.
15757 (texinfmt-version): Update number and date.
15758
15759 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
15760
15761 * international/code-pages.el (windows-1250, windows-125[2-8])
15762 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
15763
15764 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
15765
15766 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
15767 bound yet.
15768
15769 2005-03-02 Romain Francoise <romain@orebokech.com>
15770
15771 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
15772 buffer after removing limits.
15773 (ibuffer-pop-filter): Ditto.
15774 Update copyright.
15775
15776 2005-03-02 Miles Bader <miles@gnu.org>
15777
15778 * button.el (make-text-button): If the user doesn't specify a
15779 type, use the default. Rewrite to use `add-text-properties' and
15780 plist functions.
15781
15782 2005-03-01 Lute Kamstra <lute@gnu.org>
15783
15784 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
15785 (debugger-jumping-flag): New var.
15786 (debug-entry-code): Use it.
15787 (debugger-jump): Use debugger-jumping-flag and add
15788 debugger-reenable to post-command-hook.
15789 (debugger-reenable): Use debugger-jumping-flag and remove itself
15790 from post-command-hook.
15791 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
15792 debugger-reenable.
15793
15794 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
15795
15796 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
15797 inclusion of "itemize\\|", which may be unnecessary, is certainly
15798 inelegant, and stops refilling in itemize lists when formatting
15799 Japanese Texinfo files to Info.
15800 Update copyright to 2005.
15801
15802 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
15803
15804 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
15805 of an error if GDB can't find the source file.
15806
15807 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
15808
15809 * calendar/calendar.el (redraw-calendar): Work from any buffer,
15810 not just the calendar.
15811
15812 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
15813 first.
15814 (diary-redraw-calendar): New function.
15815 (make-diary-entry): Add diary-redraw-calendar to local
15816 write-contents-functions. Turn off selective display before
15817 inserting in diary.
15818
15819 2005-03-01 Kim F. Storm <storm@cua.dk>
15820
15821 * emacs-lisp/copyright.el (copyright-fix-years): New command.
15822
15823 2005-03-01 Lute Kamstra <lute@gnu.org>
15824
15825 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
15826 that debug-entry-code can be safely removed from a function while
15827 this code is being evaluated. Revert the 2005-02-27 change as the
15828 new implementation no longer requires it. Make sure that a
15829 function body containing just a string is not mistaken for a docstring.
15830 (debug): Skip one more frame in case of debug on entry.
15831 (debugger-setup-buffer): Delete one more frame line in case of
15832 debug on entry.
15833 (debugger-frame-number): Update to use the new text introduced by
15834 the 1999-11-03 change. Skip one more frame in case of debug on entry.
15835
15836 2005-02-28 Kim F. Storm <storm@cua.dk>
15837
15838 * double.el (double-translate-key): Call force-window-update after
15839 read-event to avoid crash in redisplay.
15840
15841 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
15842
15843 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
15844 (debug): Use it. Move the inhibit-trace earlier.
15845 (debug-entry-code): New const.
15846 (debug-on-entry-1): Use it.
15847
15848 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
15849
15850 * international/utf-16.el (ccl-encode-mule-utf-16le):
15851 Fix BUFFER_MAGNIFICATION to 2.
15852 (ccl-encode-mule-utf-16be): Likewise.
15853
15854 2005-02-28 Kenichi Handa <handa@m17n.org>
15855
15856 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
15857 Fix BUFFER_MAGNIFICATION to 4.
15858 (ccl-encode-mule-utf-16be-with-signature): Likewise.
15859
15860 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
15861
15862 * speedbar.el (speedbar-update-flag): Doc fix.
15863 (speedbar-show-info-under-mouse): Give set-mouse-position the right
15864 argument.
15865
15866 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
15867
15868 * reveal.el (reveal-post-command): Don't try to reveal overlays which
15869 have a non-nil `invisible' property but are actually visible.
15870
15871 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
15872 for perldoc sections.
15873 (perl-outline-regexp, perl-outline-level): New var and function.
15874 (perl-mode): Use them.
15875
15876 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
15877
15878 * calendar/diary-lib.el (diary-remind): Discard any mark portion
15879 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
15880
15881 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
15882
15883 * cus-edit.el: Comment change.
15884 (custom-buffer-create-internal): Slightly reword text at top of
15885 Custom buffers. Mention there that saving an option edits the
15886 init file. Add link to Emacs manual node on `custom-file'.
15887 (custom-magic-alist): Rewrite individual State messages to use
15888 capitalized keywords. Doc fix.
15889
15890 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
15891
15892 * calendar/calendar.el (calendar-buffer): Move above
15893 calendar-week-start-day.
15894 (calendar-week-start-day): Doc fix. Add :set function.
15895 (calendar-minimum-window-height): New variable.
15896 (generate-calendar-window): Only resize window if selected-window
15897 is displaying the calendar buffer. Use new variable
15898 calendar-minimum-window-height.
15899 (generate-calendar): Reword error message.
15900 (calendar-mode-map): Bind DEL to scroll-other-window-down.
15901
15902 2005-02-27 Andreas Schwab <schwab@suse.de>
15903
15904 * vc.el (vc-do-command): Don't run command asynchronously when
15905 operating in a remote directory.
15906
15907 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
15908 change from sync with Tramp 2.0.47.
15909
15910 2005-02-27 Richard M. Stallman <rms@gnu.org>
15911
15912 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
15913
15914 * textmodes/flyspell.el (flyspell-mode-on):
15915 Call ispell-change-dictionary only if necessary.
15916
15917 * emacs-lisp/re-builder.el (regexp-builder): New function.
15918
15919 * register.el (describe-register-1): Explicitly handle
15920 yank-excluded-properties = t.
15921
15922 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
15923 (custom-magic-alist): Change the status descriptions again.
15924 (face widget-type): Total rewrite based on `restricted-sexp'
15925 to eliminate the confusing double hiding levels.
15926
15927 * emacs-lisp/debug.el (debug-on-entry-1):
15928 If function body is empty, add nil as body form.
15929
15930 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
15931
15932 * emacs-lisp/trace.el (inhibit-trace): New var.
15933 (trace-make-advice): Use it.
15934
15935 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
15936
15937 2005-02-26 Kim F. Storm <storm@cua.dk>
15938
15939 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
15940 (mouse-on-link-p, mouse-drag-region-1): Use it.
15941
15942 2005-02-25 Lute Kamstra <lute@gnu.org>
15943
15944 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
15945
15946 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
15947
15948 * frame.el (blink-cursor-mode): Add :group keyword.
15949
15950 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
15951
15952 * calendar/icalendar.el (icalendar--decode-isodatetime):
15953 New optional argument DAY-SHIFT.
15954 (icalendar-export-region): Fix coding-system-for-write.
15955 (icalendar--convert-ical-to-diary): Shift end-day of all-day
15956 events by one.
15957
15958 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
15959
15960 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
15961
15962 2005-02-24 Kim F. Storm <storm@cua.dk>
15963
15964 * international/iso-acc.el (iso-accents-compose): Fix crash
15965 during redisplay. Call force-window-update after read-event
15966 and delete-region to signal that window is not accurate.
15967
15968 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
15969
15970 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
15971 Remove unused and inexistent var `inhibit-trace'.
15972 (debugger-mode): Use run-mode-hooks.
15973 (debugger-list-functions): Add buttons; setup xref stack.
15974
15975 2005-02-23 Richard M. Stallman <rms@gnu.org>
15976
15977 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
15978 appointment says it was explicitly made.
15979 (appt-add): Set the 3rd element.
15980 (appt-make-list): Preserve explicit appointments.
15981
15982 * subr.el (find-tag-default): Catch errors in forward-sexp.
15983
15984 2005-02-23 Juri Linkov <juri@jurta.org>
15985
15986 * info.el (Info-isearch-search): New defcustom.
15987 (Info-isearch-search): Call the default isearch function
15988 when Info-isearch-search is nil.
15989 (Info-isearch-wrap): Use variable Info-isearch-search.
15990
15991 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
15992
15993 * cus-edit.el: Comment change.
15994
15995 2005-02-22 Kim F. Storm <storm@cua.dk>
15996
15997 * progmodes/hideif.el (hide-ifdef-use-define-alist):
15998 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
15999
16000 2005-02-22 Simon Josefsson <jas@extundo.com>
16001
16002 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
16003 New variable.
16004 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
16005 Oskarsson" <myrkraverk@users.sourceforget.net>.
16006
16007 2005-02-22 Kim F. Storm <storm@cua.dk>
16008
16009 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
16010 check that window of that event is the selected window.
16011 (mouse-drag-region-1): Compare mouse event window to selected
16012 window before setting point.
16013
16014 * tooltip.el (tooltip-show-help-function): Pass event to
16015 mouse-on-link-p so it can check selected window.
16016
16017 2005-02-22 Kenichi Handa <handa@m17n.org>
16018
16019 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
16020 (ps-mule-show-warning): New function.
16021 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
16022 characters are found.
16023
16024 * ps-print.el (ps-header-footer-string): Return a list of header
16025 and footer strings.
16026
16027 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
16028
16029 * pcvs.el (cvs-retrieve-revision): Fix thinko.
16030
16031 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
16032
16033 * frame.el (blink-cursor-mode): Use define-minor-mode.
16034
16035 * term/mac-win.el (function-key-map): Use char-names more consistently.
16036 (file-name-coding-system): Only set it for MacOS-9. The other case is
16037 already handled in mule-cmds.el (where it also works when mac-win.el
16038 is not used).
16039
16040 2005-02-21 Kenichi Handa <handa@m17n.org>
16041
16042 * international/mule.el (ctext-pre-write-conversion): Always use
16043 " *code-converting-work*" buffer for work.
16044
16045 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
16046
16047 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
16048
16049 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
16050
16051 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
16052
16053 * ses.el (undo-more): Restore defadvice, but only the part that
16054 allows changes outside the restricted area of the buffer.
16055
16056 2005-02-20 Kim F. Storm <storm@cua.dk>
16057
16058 * simple.el (line-move): Add fourth optional arg try-vscroll which
16059 must be set to perform auto-window-vscroll.
16060 When moving backwards and doing auto-window-vscroll, automatically
16061 vscroll to the last part of lines which are taller than the window.
16062 (next-line, previous-line): Set try-vscroll arg on line-move.
16063
16064 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
16065
16066 * replace.el (query-replace, query-replace-regexp)
16067 (replace-string, replace-regexp): When operating on region, make
16068 the minibuffer prompt say so.
16069
16070 * isearch.el (isearch-forward): Document isearch-query-replace and
16071 isearch-query-replace-regexp keybindings.
16072
16073 2005-02-19 Jay Belanger <belanger@truman.edu>
16074
16075 * calc/calc-aent.el (math-read-token): Add local variable.
16076
16077 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
16078 (calc-edit-top): Move declaration to earlier in file.
16079 (calc-edit-macro-repeats): Add local variables.
16080
16081 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
16082 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
16083 calcFunc-tanh.
16084 Adjust integration rule for calcFunc-tan.
16085
16086 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
16087
16088 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
16089 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
16090 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
16091 (viper-skip-separators): Bug fix.
16092 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
16093 particular major mode.
16094 (viper-del-backward-char-in-replace): Don't put deleted char on the
16095 kill ring.
16096
16097 * viper-ex.el (viper-color-display-p): New function.
16098 (viper-has-face-support-p): Use viper-color-display-p.
16099
16100 * viper-keym.el (viper-gnus-modifier-map): New keymap.
16101
16102 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
16103
16104 * viper-util.el (viper-glob-unix-files): Fix shell status check.
16105 (viper-file-remote-p): Make equivalent to file-remote-p.
16106
16107 * viper.el (viper-major-mode-modifier-list):
16108 Use viper-gnus-modifier-map.
16109
16110 2005-02-19 David Kastrup <dak@gnu.org>
16111
16112 * subr.el (subregexp-context-p): Fix garbled doc string by adding
16113 quoting.
16114
16115 2005-02-19 Jay Belanger <belanger@truman.edu>
16116
16117 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
16118 Remove extra definitions.
16119 (calc-coth): New function.
16120 (calcFunc-cot): Fix `let'.
16121
16122 2005-02-19 Eli Zaretskii <eliz@gnu.org>
16123
16124 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
16125 the reasons we use "type pc" in these faces.
16126
16127 * button.el (button): Ditto.
16128
16129 2005-02-19 Michael Mauger <mmaug@yahoo.com>
16130
16131 * replace.el (query-replace-read-from): Set the value of
16132 query-replace-from-history-variable to handle the case of an empty
16133 string entered to accept the suggested default.
16134
16135 * net/tramp.el (tramp-file-name-for-operation):
16136 Use dired-call-process instead of dired-call-process-command.
16137
16138 2005-02-19 Jay Belanger <belanger@truman.edu>
16139
16140 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
16141 (math-div-non-trig): New variables.
16142 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
16143 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
16144 (math-combine-prod, math-div-symb-fancy): Add simplifications for
16145 trig expressions.
16146
16147 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
16148
16149 * progmodes/gdb-ui.el (gdb-var-update-handler)
16150 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
16151 for watch expressions,
16152 (gdb-var-create-handler): Don't set speedbar-update-flag.
16153 (gdb-post-prompt): Simplify test for speedbar.
16154
16155 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
16156
16157 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
16158 (ediff-set-fine-overlays-in-one-buffer,ediff-goto-word): Make sure
16159 we use the syntax table of the correct buffer.
16160 (ediff-same-file-contents,ediff-same-contents): Enhancements thanks to
16161 Felix Gatzemeier.
16162
16163 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
16164 (ediff-file-remote-p): Make synonymous with file-remote-p.
16165 In all deffaces ediff-*-face-*, use min-colors.
16166
16167 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
16168 ediff-recurse-to-subdirectories.
16169 (ediff-mark-if-equal): Check that the arguments are strings, use
16170 ediff-same-contents (after to Felix Gatzemeier).
16171
16172 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
16173 nil.
16174
16175 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
16176
16177 * log-view.el (log-view-message-re): Fix up Subversion regexp.
16178
16179 2005-02-18 David Kastrup <dak@gnu.org>
16180
16181 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
16182 use `mark-active' when defined.
16183
16184 2005-02-18 Kenichi Handa <handa@m17n.org>
16185
16186 * ps-print.el (ps-font-info-database): New entry
16187 ZapfChancery-MediumItalic with correct font name. Fix font name
16188 of the entry Zapf-Chancery-MediumItalic.
16189
16190 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
16191
16192 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
16193
16194 2005-02-16 Kim F. Storm <storm@cua.dk>
16195
16196 * ido.el (ido-fallback-command): Pass user input to fallback command.
16197
16198 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
16199
16200 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
16201 (gdb-find-file-hook): Add server prefix.
16202
16203 2005-02-16 Richard M. Stallman <rms@gnu.org>
16204
16205 * replace.el (perform-replace): Pass new args to replace-highlight.
16206 (replace-highlight): Take region args,
16207 and pass them to isearch-lazy-highlight-new-loop.
16208
16209 * novice.el (disabled-command-hook): Autoload the defalias
16210 and the make-obsolete-variable call.
16211
16212 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
16213
16214 * isearch.el (isearch-lazy-highlight-start-limit)
16215 (isearch-lazy-highlight-end-limit): New variables limit
16216 the region for highlighting.
16217 (isearch-lazy-highlight-new-loop): New args BEG and END.
16218 (isearch-lazy-highlight-search): Use the new vars.
16219 (isearch-lazy-highlight-update): Likewise.
16220
16221 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
16222
16223 * cus-start.el (all): Use default-boundp.
16224
16225 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
16226
16227 * menu-bar.el (menu-bar-select-frame): Handle current frame.
16228
16229 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
16230
16231 * autorevert.el (auto-revert-stop-on-user-input)
16232 (auto-revert-verbose): Doc fixes.
16233
16234 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
16235
16236 * international/mule-cmds.el (set-locale-environment): Remove call
16237 to set-selection-coding-system on Windows.
16238
16239 2005-02-15 Jay Belanger <belanger@truman.edu>
16240
16241 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
16242 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
16243 calcFunc-coth.
16244 (math-simplify-sqrt): Add simplifications.
16245
16246 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
16247 to list.
16248
16249 * calc/calc-ext.el: Add functions to autoloads.
16250
16251 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
16252 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
16253 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
16254 (math-csc-raw, math-cot-raw): New functions.
16255
16256 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
16257
16258 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
16259 the variable name in a message.
16260
16261 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
16262 calcFunc-csc, calcFunc-cot.
16263
16264 * calc/calcalg2.el: Add derivative and integration rules for
16265 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
16266 calcFunc-csch, calcFunc-coth.
16267 (math-do-integral-methods): Add to checks for when to use
16268 substitutions.
16269
16270 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
16271
16272 2005-02-15 Lute Kamstra <lute@gnu.org>
16273
16274 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
16275 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
16276 <monnier@iro.umontreal.ca>
16277 (lisp-outline-level): Improve efficiency. Suggested by David
16278 Kastrup <dak@gnu.org>.
16279
16280 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
16281
16282 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
16283 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
16284 (gdb-set-gud-minor-mode-existing-buffers): New functions.
16285 (gdb-find-file-hook): New hook. Add it to find-file-hook.
16286 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
16287
16288 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
16289
16290 * cus-start.el (all): Comment change.
16291
16292 2005-02-14 Lute Kamstra <lute@gnu.org>
16293
16294 * cus-start.el (all): Check if symbol is void.
16295
16296 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
16297
16298 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
16299 optional argument to \cite.
16300
16301 2005-02-14 Richard M. Stallman <rms@gnu.org>
16302
16303 * cus-edit.el (custom-buffer-create-internal): Update help message.
16304 (custom-magic-alist): Update help messages.
16305
16306 * cus-start.el (all): Allow a var to specify a standard value.
16307
16308 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
16309
16310 * custom.el (custom-theme-set-variables): Handle variable aliases.
16311
16312 * frame.el (blink-cursor-timer): Doc fix.
16313 (blink-cursor): Make it an alias for `blink-cursor-mode' and
16314 declare obsolete.
16315 (blink-cursor-mode): Define with defcustom and use correct
16316 standard expression in that defcustom.
16317 * startup.el (command-line): Adapt to above changes in frame.el.
16318
16319 2005-02-11 Lute Kamstra <lute@gnu.org>
16320
16321 * apropos.el (apropos-score-doc): Prevent division by zero.
16322
16323 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
16324
16325 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
16326 (icalendar--get-event-property-attributes)
16327 (icalendar--get-event-properties)
16328 (icalendar--datetime-to-diary-date): New functions.
16329 (icalendar--split-value): Doc fix.
16330 (icalendar--datetime-to-noneuropean-date)
16331 (icalendar--datetime-to-european-date): New optional argument
16332 SEPARATOR. Return result as a string instead of a list.
16333 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
16334 (icalendar--convert-string-for-export): Rename arg S to STRING.
16335 (icalendar-export-region): Doc fix. Change name of error buffer.
16336 Save output buffer.
16337 (icalendar-import-file): Add blank at end of prompt.
16338 (icalendar-import-buffer): Doc fix. Do not switch to error
16339 buffer. Indicate status in return value.
16340 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
16341 buffer. Save output buffer. Handle exception from recurrence
16342 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
16343 events. Fix problems with weekly all-day events.
16344
16345 2005-02-10 Richard M. Stallman <rms@gnu.org>
16346
16347 * simple.el (eval-expression-print-format):
16348 Avoid warning about edebug-active.
16349
16350 * help.el (help-for-help-internal): Rename from help-for-help.
16351 (help-for-help): Define with defalias.
16352
16353 * font-core.el (font-lock-default-function): Use with-no-warnings.
16354
16355 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
16356
16357 * custom.el (defface): Doc fix.
16358
16359 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
16360
16361 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
16362 width 0" to prevent word wrapping problems.
16363
16364 2005-02-09 Kim F. Storm <storm@cua.dk>
16365
16366 * ido.el (ido-file-extensions-order): New defcustom.
16367 (ido-file-extension-lessp, ido-file-extension-aux)
16368 (ido-file-extension-order): New advanced file ordering.
16369 (ido-file-lessp): New simple file ordering.
16370 (ido-sort-list): Remove.
16371 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
16372 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
16373
16374 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
16375
16376 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
16377 that some versions of grep produce.
16378 (grep-mode-font-lock-keywords): Likewise.
16379
16380 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
16381
16382 * progmodes/gdb-ui.el (gdb-location-list): New variable.
16383 (gdb-cdir): Delete.
16384 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
16385 (gdb-source-info): Treat case when source file is in another
16386 directory properly.
16387 (gdb-get-location): New function.
16388
16389 2005-02-07 Jay Belanger <belanger@truman.edu>
16390
16391 * calc/calc-prog.el (calc-write-parse-table-part)
16392 (calc-fix-token-name): Fix a check for language type.
16393
16394 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
16395
16396 2005-02-07 Andre Spiegel <spiegel@gnu.org>
16397
16398 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
16399 as directory not writable.
16400
16401 2005-02-07 Kim F. Storm <storm@cua.dk>
16402
16403 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
16404 (cua--standard-movement-commands): Remove list.
16405 Instead, set CUA property value to move for movement commands.
16406 (cua-movement-commands): Remove. Users must set CUA prop instead.
16407 (cua--pre-command-handler): Check CUA property.
16408 (cua--init-keymaps): Don't remap undo commands.
16409 (cua-mode): Don't call cua--rectangle-on-off.
16410
16411 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
16412 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
16413 (cua--rect-undo-set-point): New var.
16414 (cua--rectangle-undo-boundary): Setup undo apply entry.
16415 (cua--rect-undo-handler): New function for rectangle undo.
16416 (cua--rect-start-position, cua--rect-end-position): Add.
16417 (cua--rectangle-post-command): Call cua--rectangle-set-corners
16418 for restored rectangle. Set point if cua--rect-undo-set-point.
16419
16420 2005-02-06 Jay Belanger <belanger@truman.edu>
16421
16422 * calc/calc-lang.el (calc-tex-language): Display more information
16423 in messages.
16424
16425 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
16426 in TeX mode.
16427
16428 2005-02-06 Richard M. Stallman <rms@gnu.org>
16429
16430 * emacs-lisp/lisp.el (buffer-end): Doc fix.
16431
16432 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
16433
16434 * net/ldap.el (ldap-search-internal): Support attributes with
16435 optional descriptions separated by a semi-colon, as in
16436 "userCertificate;binary".
16437
16438 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16439
16440 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
16441 isn't a cons (i.e. the version is 0).
16442
16443 2005-02-05 Eli Zaretskii <eliz@gnu.org>
16444
16445 * help.el (help-for-help): Doc fix.
16446
16447 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
16448
16449 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
16450 GDB-Windows on the menu-bar as this works better.
16451
16452 2005-02-04 Jay Belanger <belanger@truman.edu>
16453
16454 * calc/calc-embed.el (calc-embedded-update): Don't put in
16455 unnecessary newlines. Adjust the end of formula marker.
16456
16457 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
16458 (math-latex-parse-two-args): New function.
16459
16460 2005-02-03 Lute Kamstra <lute@gnu.org>
16461
16462 * help-fns.el (help-with-tutorial): Make sure that users cannot
16463 remove the entire text of the tutorial by means of `undo'.
16464
16465 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
16466
16467 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
16468 in recent changes, where the ispell process was repeatedly
16469 killed & restarted.
16470
16471 * international/mule-cmds.el (set-locale-environment): Set file-name
16472 coding system to utf-8 on Darwin systems.
16473 (set-default-coding-systems): Don't set default-file-name-coding-system
16474 on Darwin systems.
16475
16476 2005-02-03 Richard M. Stallman <rms@gnu.org>
16477
16478 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
16479
16480 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
16481
16482 * faces.el (list-faces-display): Add optional argument.
16483
16484 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
16485
16486 * font-core.el (font-lock-default-function): Handle the rare case where
16487 only font-lock-keywords is set.
16488
16489 2005-02-02 Kenichi Handa <handa@m17n.org>
16490
16491 * international/characters.el: Cancel previous change for
16492 I-WITH-DOT-ABOVE and DOTLESS-i.
16493
16494 * international/latin-5.el: Cancel previous change.
16495
16496 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
16497
16498 * progmodes/gud.el: Correction to syntax in gud-menu-map.
16499
16500 2005-02-02 Kenichi Handa <handa@m17n.org>
16501
16502 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
16503 DOTLESS-i.
16504
16505 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
16506 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
16507
16508 * case-table.el (get-upcase-table): New function.
16509 (copy-case-table): Copy upcaes table too if non-nil.
16510 (set-case-syntax-delims): Maintain upcase table too.
16511 (set-case-syntax-pair): Likewise.
16512 (set-upcase-syntax, set-downcase-syntax): New functions.
16513 (set-case-syntax): Maintain upcase table too.
16514
16515 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
16516
16517 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
16518
16519 * progmodes/gud.el (gud-goto-info): New function.
16520 (gud-tool-bar-map): Use correct icon.
16521
16522 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
16523
16524 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
16525 When delegating, order args in the funcall correctly.
16526
16527 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
16528
16529 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
16530
16531 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
16532
16533 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
16534 buffer not visiting a file.
16535
16536 2005-01-31 Jay Belanger <belanger@truman.edu>
16537
16538 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
16539 bound on the line with the formula.
16540
16541 2005-01-31 Kim F. Storm <storm@cua.dk>
16542
16543 * ses.el (ses-create-cell-variable-range)
16544 (ses-destroy-cell-variable-range, ses-reset-header-string)
16545 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
16546 (ses-insert-row): Fix format of apply undo entries.
16547
16548 2005-01-31 Jay Belanger <belanger@truman.edu>
16549
16550 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
16551 parts.
16552
16553 * calc/calc-embed.el (calc-embedded-open-formula)
16554 (calc-embedded-close-formula): Ignore matrix environments.
16555
16556 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
16557 TeX mode.
16558
16559 * calc/calc-lang.el (math-function-table, math-oper-table)
16560 (math-variable-table): Adjust the LaTeX portions.
16561
16562 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
16563 (math-latex-ignore-words): New constant.
16564
16565 2005-01-31 Richard M. Stallman <rms@gnu.org>
16566
16567 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
16568 (ispell-local-dictionary): Doc fix.
16569 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
16570 Don't reinitialize at run time. Don't defcustom.
16571 All uses changed to append ispell-local-dictionary-alist,
16572 or check it first.
16573 (ispell-current-dictionary): New variable for dictionary in use.
16574 (ispell-dictionary): Now used only for global default.
16575 (ispell-start-process): Set ispell-current-dictionary,
16576 not ispell-dictionary.
16577 (ispell-change-dictionary): Use this only for setting
16578 user preferences.
16579 (ispell-internal-change-dictionary): New function
16580 to change the current dictionary in use.
16581 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
16582 Use ispell-current-dictionary.
16583 Handle ispell-local-dictionary-overridden.
16584 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
16585
16586 2005-01-31 Jay Belanger <belanger@truman.edu>
16587
16588 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
16589
16590 * calc/calc-ext.el: Add calc-latex-language to autoloads.
16591 (calc-mode-map): Add calc-latex-language.
16592
16593 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
16594 (math-latex-print-frac): New functions.
16595 (math-oper-table, math-function-table, math-variable-table)
16596 (math-complex-format, math-input-filter): Add latex properties.
16597 (calc-set-language): Set math-expr-special-function-mapping.
16598
16599 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
16600 (calc-write-parse-table-part): Add LaTeX support.
16601
16602 * calc/calc.el (calc-language): Adjust docstring.
16603 (calc-set-mode-line): Add LaTeX support.
16604 (math-expr-special-function-mapping): New variable.
16605 (math-tex-ignore-words): Add to list.
16606
16607 * calc/calccomp.el (math-compose-expr, math-compose-rows):
16608 Add LaTeX support.
16609 (math-compose-expr): Add support for special functions.
16610
16611 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
16612
16613 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
16614
16615 * progmodes/gdb-ui.el (gdb-memory-address)
16616 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
16617 (gdb-memory-mode-map, gdb-memory-format-keymap)
16618 (gdb-memory-format-menu, gdb-memory-unit-keymap)
16619 (gdb-memory-unit-menu): New variables for a buffer
16620 that lets the user examine program memory.
16621 (gdb-memory-set-address, gdb-memory-set-repeat-count)
16622 (gdb-memory-format-binary, gdb-memory-format-octal)
16623 (gdb-memory-format-unsigned, gdb-memory-format-signed)
16624 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
16625 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
16626 (gdb-memory-unit-word, gdb-memory-unit-halfword)
16627 (gdb-memory-unit-byte, gdb-memory-unit-menu)
16628 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
16629 (gdb-memory-mode, gdb-memory-buffer-name)
16630 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
16631 New functions for above buffer.
16632
16633 2005-01-30 Richard M. Stallman <rms@gnu.org>
16634
16635 * cus-edit.el (custom-bury-buffer): Function deleted.
16636 (custom-buffer-done-function): Option deleted.
16637 (custom-buffer-done-kill): New (replacement option.
16638 (Custom-buffer-done): Call quit-window.
16639 (custom-buffer-create-internal): Update for above changes.
16640
16641 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
16642
16643 * simple.el (undo-ask-before-discard): New var.
16644 (undo-outer-limit-truncate): Implement it.
16645 (undo-extra-outer-limit): Doc update.
16646
16647 2005-01-29 Richard M. Stallman <rms@gnu.org>
16648
16649 * ses.el (undo-more): Delete defadvice.
16650 (ses-begin-change): Doc fix.
16651
16652 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
16653 instead of rebinding C-x u and C-_.
16654
16655 * files.el (normal-backup-enable-predicate): Return nil for files
16656 in /tmp, regardless of temporary-file-directory.
16657
16658 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
16659
16660 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
16661 (open-rectangle, delete-whitespace-rectangle-line)
16662 (clear-rectangle-line): If FILL, pass t instead of FILL
16663 for move-to-column's 2nd arg.
16664
16665 * simple.el (undo): Fix the test for continuing a series of undos.
16666 (undo-more): Set pending-undo-list to t when we reach end.
16667 (pending-undo-list): Move up defvar.
16668
16669 * wid-edit.el (widget-button-click):
16670 Shorten the range of the track-mouse binding.
16671
16672 * comint.el (comint-insert-input): Undo previous changes;
16673 use last-input-event in interactive spec.
16674
16675 2005-01-29 Eli Zaretskii <eliz@gnu.org>
16676
16677 * progmodes/compile.el (compilation-start): Bind buffer-read-only
16678 to nil before invoking call-process. Reset buffer's modified flag
16679 after fontifying it in the no-async branch.
16680
16681 * wid-edit.el (widget-specify-button): If mouse pointer shape
16682 cannot be changed, use mouse face instead.
16683
16684 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
16685
16686 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
16687 (gdb-goto-breakpoint): Make breakpoint handling work on template
16688 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
16689 (gdb-assembler-custom): Update to recognize breakpoint information
16690 added on 2005-01-19.
16691
16692 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
16693
16694 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
16695 (dsssl-mode): Use define-derived-mode.
16696 (scheme-mode-initialize): Remove.
16697 (scheme-mode): Use run-mode-hooks.
16698
16699 * cus-edit.el (customize-group-other-window)
16700 (custom-buffer-create-other-window): Don't override special-display-*.
16701 (custom-mode-map): Make it dense.
16702
16703 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
16704 sets the default value.
16705
16706 2005-01-28 Eli Zaretskii <eliz@gnu.org>
16707
16708 * descr-text.el: Add more keywords.
16709
16710 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
16711
16712 * speedbar.el: Avoid unnecessary use of locate-library.
16713
16714 * international/mule-cmds.el (standard-display-european-internal):
16715 Don't fiddle with latin-1 non-break space any more since it's now
16716 special cased in the C code.
16717 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
16718
16719 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
16720
16721 * cus-start.el (all): Add `undo-outer-limit'.
16722
16723 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16724
16725 * textmodes/bibtex.el (bibtex-format-entry):
16726 Use `bibtex-empty-field-re' only on the text of fields, not on entire
16727 field lines.
16728 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
16729 not on part of a buffer.
16730
16731 2005-01-25 Lute Kamstra <lute@gnu.org>
16732
16733 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
16734 nonempty field text strings like "{letters\\macro{}more letters}".
16735 Clarify docstring.
16736 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
16737 (bibtex-entry-offset, bibtex-parse-association)
16738 (bibtex-parse-field-name): Fix typos in docstrings.
16739 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
16740
16741 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
16742
16743 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
16744 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
16745 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
16746 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
16747
16748 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
16749 isearch minor mode.
16750
16751 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
16752
16753 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
16754
16755 2005-01-24 Lute Kamstra <lute@gnu.org>
16756
16757 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
16758 CASECHARS and NOT-CASECHARS regular expressions of the
16759 "nederlands" and "nederlands8" dictionaries to prevent a "Range
16760 striding over charsets" error.
16761
16762 2005-01-24 Jay Belanger <belanger@truman.edu>
16763
16764 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
16765 display variable name.
16766
16767 2005-01-24 Kenichi Handa <handa@m17n.org>
16768
16769 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
16770 Fix setting of the element of encoded-kbd-iso2022-invocations.
16771
16772 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
16773
16774 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
16775 (gdb-threads-select): Change to also accept mouse events.
16776 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
16777 (gdb-threads-mouse-select): Delete.
16778
16779 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
16780
16781 * files.el (insert-directory): Take care of empty directory,
16782 listed without -a switch.
16783
16784 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
16785
16786 * textmodes/refill.el (refill-post-command-function):
16787 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
16788 to the list of functions that we should be careful not to undo.
16789 (refill-late-fill-paragraph-function): Remove.
16790 (refill-saved-state): New var.
16791 (refill-mode): Use it to save fill-paragraph-function.
16792 Save also the value of auto-fill-function.
16793
16794 * term/w32-win.el: Simplify code.
16795
16796 2005-01-23 Kim F. Storm <storm@cua.dk>
16797
16798 * simple.el (line-move): Adapt to new return value from
16799 pos-visible-in-window-p.
16800
16801 * simple.el (line-move): Fix last change. Check partial
16802 visibility at point rather than at window-start.
16803
16804 2005-01-22 Jason Rumney <jasonr@gnu.org>
16805
16806 * term/w32-win.el (xw-defined-colors): Remove debug-message.
16807
16808 2005-01-22 David Kastrup <dak@gnu.org>
16809
16810 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
16811
16812 2005-01-22 Eli Zaretskii <eliz@gnu.org>
16813
16814 * type-break.el (type-break-mode): Add a test for
16815 type-break-file-name being non-nil.
16816
16817 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
16818
16819 * net/eudc.el (top level): Call (message "") via progn, so that
16820 eudc-options-file is loaded.
16821
16822 2005-01-22 Kim F. Storm <storm@cua.dk>
16823
16824 * simple.el (line-move-1): Rename from line-move.
16825 (line-move): New function that adjusts vscroll for partially
16826 visible rows, and calls line-move-1 otherwise.
16827
16828 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
16829
16830 * pcomplete.el: Define pcomplete-read-event instead of read-event,
16831 since it's not a complete read-event implementation
16832
16833 2005-01-20 Jay Belanger <belanger@truman.edu>
16834
16835 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
16836 for called function.
16837
16838 2005-01-20 Steven Tamm <steventamm@mac.com>
16839
16840 * term/mac-win.el (process-connection-type): Remove.
16841 Controlled now by s/darwin.h:PTY_ITERATION.
16842
16843 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
16844
16845 * window.el (handle-select-window): Don't switch window when we're
16846 in the minibuffer.
16847
16848 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
16849
16850 * subr.el (dotimes-with-progress-reporter): New macro.
16851
16852 * ses.el (ses-dotimes-msg): Remove macro.
16853 Use `dotimes-with-progress-reporter' instead.
16854
16855 2005-01-19 Steven Tamm <steventamm@mac.com>
16856
16857 * term/mac-win.el (process-connection-type): Use new
16858 operating-system-release variable to use ptys on Darwin 7 (OS X
16859 10.3) when using carbon build.
16860
16861 2005-01-19 Jay Belanger <belanger@truman.edu>
16862
16863 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
16864 flags if the last command was a tab or M-tab.
16865
16866 * calc/calc-prog.el (calc-user-define-edit): Put original formula
16867 in formula editing buffer.
16868
16869 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
16870
16871 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
16872 breakpoint image symbol in margin.
16873
16874 2005-01-19 Jay Belanger <belanger@truman.edu>
16875
16876 * calc/calc-prog.el (calc-execute-kbd-macro):
16877 Ignore calc-keep-arg-flag.
16878
16879 2005-01-19 Kenichi Handa <handa@m17n.org>
16880
16881 * textmodes/ispell.el (ispell-looking-at): New function.
16882 (ispell-process-line): Use ispell-looking-at to compare the ispell
16883 output and the buffer contents.
16884
16885 2005-01-18 Jay Belanger <belanger@truman.edu>
16886
16887 * calc/calc.el (calc-display-raw): Fix docstring.
16888
16889 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
16890
16891 * simple.el (blink-matching-open): Strip extra info from syntax.
16892
16893 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
16894 funny chars in the end-of-here-doc marker.
16895
16896 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
16897
16898 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
16899 that enable/disabled state of breakpoints is shown correctly in
16900 fringe and on ttys.
16901 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
16902 Add breakpoint information as text properties.
16903 (gdb-mouse-toggle-breakpoint):
16904 Rename to gdb-mouse-set-clear-breakpoint.
16905 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
16906 breakpoints in the margin.
16907 (gdb-remove-strings): Simplify.
16908
16909 2005-01-17 Jay Belanger <belanger@truman.edu>
16910
16911 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
16912 erasing buffer.
16913
16914 2005-01-17 Richard M. Stallman <rms@gnu.org>
16915
16916 * progmodes/grep.el (grep-find): Copy from `grep' the condition
16917 for calling grep-compute-defaults.
16918
16919 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
16920 if buffer is empty.
16921
16922 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
16923
16924 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
16925
16926 * hilit-chg.el (highlight-changes-mode): Don't autoload.
16927
16928 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
16929 non-preloaded variables.
16930
16931 2005-01-17 Steven Tamm <steventamm@mac.com>
16932
16933 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
16934 tex-shell cause to force interactivity when using pipes.
16935
16936 2005-01-17 Kim F. Storm <storm@cua.dk>
16937
16938 * simple.el (just-one-space): Make arg optional.
16939
16940 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
16941
16942 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
16943 posn-at-x-y to t to access left-margin.
16944
16945 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
16946
16947 Sync with Tramp 2.0.47.
16948
16949 * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
16950 catching keep-date problems in cp/scp operations.
16951 (tramp-handle-copy-file): Don't call `set-file-modes'
16952 unconditionally. Specialized functions should know better what is
16953 necessary. This improves performance a little bit, and the
16954 functions could catch errors with `cp -p' and `scp -p'.
16955 (tramp-do-copy-or-rename-file-via-buffer)
16956 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
16957 when appropriate.
16958 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
16959 Call `set-file-modes' when appropriate.
16960 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
16961 Johnsson <isak@hypergene.com>
16962 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
16963 of both Tramp buffer and debug buffer. Reported by Joakim Verona
16964 <joakim@verona.se>
16965 (tramp-file-name-for-operation): Mark `shell-command' as magic for
16966 Emacs only.
16967
16968 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
16969 `find-file-hooks' and `dired-mode-hook'.
16970 (tramp-minor-mode-map): Respective map. Add remapping for
16971 `compile' and `recompile'.
16972 (tramp-remap-command, tramp-recompile): New defuns.
16973 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
16974 in buffer "*Compilation*". Call the commands asynchronously.
16975
16976 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
16977 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
16978 `shell-command', because it isn't magic in XEmacs. Reported by
16979 Adrian Aichner <adrian@xemacs.org>.
16980
16981 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
16982 `substitute-in-file-name.
16983 (tramp-smb-handle-substitute-in-file-name): New defun.
16984 (tramp-smb-advice-PC-do-completion): Delete advice.
16985
16986 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
16987
16988 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
16989 Fix error in deleting region.
16990
16991 2005-01-15 Richard M. Stallman <rms@gnu.org>
16992
16993 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
16994 In non-temp buffer, switch syntax table temporarily.
16995
16996 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
16997
16998 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
16999
17000 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
17001
17002 * imenu.el (imenu--split-menu): Copy menulist before sorting.
17003 (imenu--generic-function): Use START, not BEG, as pos of definition.
17004
17005 * simple.el (just-one-space): Argument specifies number of spaces.
17006
17007 * simple.el (eval-expression-print-format): Avoid warning
17008 about edebug-active.
17009
17010 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (Tiny change)
17011
17012 * progmodes/sh-script.el: Code copied from make-mode.el
17013 with small changes,
17014 (sh-mode-map): Bind C-c C-\.
17015 (sh-backslash-column, sh-backslash-align): New variables.
17016 (sh-backslash-region, sh-append-backslash): New functions.
17017
17018 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
17019
17020 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
17021 (rmail-pop-password, rmail-pop-password-required): Move to
17022 rmail-obsolete group.
17023 (rmail-set-pop-password): Rename to rmail-set-remote-password.
17024 All callers updated.
17025 (rmail-get-pop-password): Rename to rmail-get-remote-password.
17026 Take an argument specifying whether it is POP or IMAP mailbox we
17027 are using. All callers updated.
17028 (rmail-pop-password-error): Rename to
17029 rmail-remote-password-error. Added mailutils-specific error message.
17030 (rmail-movemail-search-path)
17031 (rmail-movemail-variant-in-use): New variables.
17032 (rmail-remote-password, rmail-remote-password-required):
17033 New customization variables.
17034 (rmail-probe,rmail-autodetect, rmail-movemail-variant-p): New funs.
17035 (rmail-parse-url): New function.
17036 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
17037 with GNU mailutils movemail.
17038
17039 2005-01-15 Kevin Ryde <user42@zip.com.au>
17040
17041 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
17042 suffix to space, $ or '$, to correctly position point when going
17043 to @table style constants like DBL_MAX.
17044
17045 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
17046
17047 * type-break.el (type-break-mode, type-break-file-time)
17048 (type-break-file-keystroke-count, type-break-choose-file):
17049 Don't store data in or load data from the file if type-break-file-name
17050 is nil.
17051 (type-break-file-name): Doc update as per the above.
17052
17053 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
17054
17055 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
17056 lookup-key might return nil; handle that.
17057
17058 2005-01-15 Alan Mackenzie <acm@muc.de>
17059
17060 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
17061 rather than the element found, thus enabling the tree to be setcar'd.
17062
17063 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
17064
17065 * textmodes/org.el (org-show-following-heading): New option.
17066 (org-show-hierarchy-above): Use `org-show-following-heading'.
17067 (org-cycle): Documentation fix.
17068
17069 * textmodes/org.el (orgtbl-optimized): New option
17070 (orgtbl-mode): New command, a minor mode.
17071 (orgtbl-mode-map): New variable.
17072 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
17073 (orgtbl-error, orgtbl-self-insert-command)
17074 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
17075
17076 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
17077 a local variable in each org-mode buffer.
17078
17079 * textmodes/org.el (org-set-regexps-and-options): Rename from
17080 `org-set-regexps'. Added checking for STARTUP keyword.
17081 (org-get-current-options): Add STARTUP options.
17082 (org-table-insert-row): Make mode intelligent about when
17083 realignment is needed.
17084 (org-self-insert-command, org-delete-backward-char, org-delete-char):
17085 New commands.
17086 (org-enable-table-editor): New default value `optimized'.
17087 (org-table-blank-field): Support blanking regions if active.
17088
17089 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
17090
17091 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
17092 if the year is not given.
17093
17094 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
17095 Add new escapes %m and %M, fixed bug with %F by adding
17096 save-match-data.
17097 (reftex-reference): Remove ?. from list of spaces.
17098 (reftex-label-info): Add automatic label prefix recognition.
17099
17100 * textmodes/reftex-index.el (reftex-index-next-phrase):
17101 Add slave parameter to call of `reftex-index-this-phrase'.
17102 (reftex-index-this-phrase): New optional argument.
17103 (reftex-index-region-phrases): Add slave parameter to call of
17104 `reftex-index-this-phrase'.
17105 (reftex-display-index): New argument redo.
17106 (reftex-index-rescan): Add 'redo to arguments of
17107 `reftex-display-index'.
17108 (reftex-index-Rescan, reftex-index-revert)
17109 (reftex-index-switch-index-tag): Add 'redo to arguments of
17110 `reftex-display-index'.
17111 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
17112 indexing. Fix bug with matching is there is a quote before or
17113 after the word.
17114
17115 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
17116 Fix bug when collecting citation keys in lines with comments.
17117 (reftex-citation): Prefix argument no longer rescans the document,
17118 but forces prompting for optional arguments of cite macros.
17119 (reftex-do-citation): Prompting for optional arguments implemented.
17120
17121 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
17122 Add optional arguments to most cite commands.
17123 (reftex-cite-cleanup-optional-args): New option
17124 (reftex-cite-prompt-optional-args): New option.
17125 (reftex-trust-label-prefix): New option.
17126
17127 * textmodes/reftex-toc.el (reftex-toc-find-section):
17128 Add push-mark before changing the position in the buffer.
17129
17130 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
17131 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
17132
17133 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
17134
17135 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
17136 more carefully.
17137
17138 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
17139
17140 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
17141 (sgml-mode): Use it.
17142 (sgml-get-context): Better keep track of implicitly closed tags.
17143
17144 2005-01-13 Kenichi Handa <handa@m17n.org>
17145
17146 * textmodes/ispell.el: These changes are to fix misalignment error
17147 caused by equivalent characters of different Emacs charsets.
17148 (ispell-unified-chars-table): New variable.
17149 (ispell-get-decoded-string): New function.
17150 (ispell-get-casechars, ispell-get-not-casechars)
17151 (ispell-get-otherchars): Call ispell-get-decoded-string.
17152
17153 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
17154
17155 * custom.el (custom-declare-variable): Just put symbol instead
17156 of (defvar . symbol) in `current-load-list'.
17157
17158 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
17159
17160 * emacs-lisp/elint.el: Fixed typo in Commentary section.
17161
17162 2005-01-12 Jay Belanger <belanger@truman.edu>
17163
17164 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
17165 to create a Calc summary.
17166
17167 2005-01-12 Kim F. Storm <storm@cua.dk>
17168
17169 * mouse.el (mouse-on-link-p): Change functionality and doc
17170 string to comply with latest description in lisp ref.
17171
17172 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
17173
17174 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
17175 Enable mouse clicks on mode-line, header-line and margin.
17176 (event-type): Give mouse event symbols an 'event-kind property
17177 with value 'mouse-click.
17178
17179 2005-01-12 Juri Linkov <juri@jurta.org>
17180
17181 * facemenu.el (list-colors-display): Add new arg buffer-name.
17182 Use it. Fix docstring. Replace code for identifying duplicate
17183 colors by the name with call to `list-colors-duplicates' which
17184 identifies duplicate colors by the value unless the color
17185 is one of special Windows colors. Set truncate-lines to t.
17186 Print sorted duplicate color names on each line. Indent to 22
17187 \(the longest color name in rgb.txt) instead of 20. Optimize.
17188 (list-colors-duplicates): New function.
17189 (facemenu-color-name-equal): Delete function.
17190
17191 * facemenu.el (list-colors-print): New function created from code
17192 in list-colors-display. Print #RRGGBB at the window right edge.
17193 (list-colors-display): When temp-buffer-show-function is not
17194 defined, call list-colors-print from temp-buffer-show-hook
17195 to get the right value of window-width in list-colors-print
17196 after the buffer is displayed.
17197
17198 * simple.el (pop-mark): Move deactivate-mark out of conditional
17199 part to deactivate the active mark regardless of the state of the
17200 mark ring.
17201
17202 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
17203 variables line in desktop files.
17204
17205 2005-01-12 Juri Linkov <juri@jurta.org>
17206
17207 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
17208 Bring together isearch highlight related options.
17209 (lazy-highlight): Replace group `replace' by `matching'.
17210 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
17211 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
17212 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
17213 and declare them obsolete.
17214 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
17215 (isearch-faces): Remove defgroup.
17216 (isearch-overlay, isearch-highlight, isearch-dehighlight):
17217 Move isearch highlighting code closer to lazy highlighting code.
17218
17219 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
17220 (query-replace-highlight, query-replace-lazy-highlight)
17221 (query-replace): Move definitions to the beginning of the file.
17222
17223 2005-01-11 Juri Linkov <juri@jurta.org>
17224
17225 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
17226 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
17227 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
17228
17229 * info.el (Info-history-forward): New variable.
17230 (Info-select-node): Reset Info-history-forward to nil.
17231 (Info-last): Turn into defalias.
17232 (Info-history-back): Rename from Info-last.
17233 Add current node to Info-history-forward.
17234 (Info-history-forward): New fun.
17235 (Info-mode-map): Replace Info-last by Info-history-back.
17236 Bind Info-history-forward to "r".
17237 (Info-mode-menu): Replace Info-last by Info-history-back.
17238 Fix menu item text. Add menu item for Info-history-forward.
17239 (info-tool-bar-map): Replace Info-last by Info-history-back.
17240 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
17241 for Info-history-forward.
17242 (Info-mode): Replace Info-last by Info-history-back in docstring.
17243 Add local variable Info-history-forward.
17244 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
17245
17246 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
17247
17248 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
17249 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
17250 Ignore select-window events rather than fiddle with
17251 mouse-autoselect-window.
17252
17253 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
17254
17255 * type-break.el (type-break-mode): Fix previous change.
17256
17257 2005-01-10 Jay Belanger <belanger@truman.edu>
17258
17259 * calc/calc-ext.el (calc-reset): Reset when inside embedded
17260 calculator; only reset when point is inside a calculator.
17261 Don't adjust the window height if the window takes up the whole height
17262 of the frame.
17263
17264 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
17265
17266 * ebuff-menu.el (Electric-buffer-menu-mode):
17267 Preserve value of buffer-local var header-line-format.
17268
17269 2005-01-09 Jay Belanger <belanger@truman.edu>
17270
17271 * calc/calc.el (calc-mode-var-list-restore-saved-values):
17272 Make sure settings file exists before accessing it.
17273
17274 * calc/calc-embed.el (calc-embedded-subst):
17275 Replace math-multi-subst-rec, which is only supposed to be called
17276 by math-multi-subst, by math-multi-subst.
17277
17278 2005-01-09 Andre Spiegel <spiegel@gnu.org>
17279
17280 * vc.el (vc-allow-async-revert): New user option.
17281 (vc-disable-async-diff): New internal variable.
17282 (vc-revert-buffer): Use them to disable asynchronous diff.
17283
17284 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
17285 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
17286 asynchronously if vc-disable-async-diff is t.
17287
17288 2005-01-09 Jay Belanger <belanger@truman.edu>
17289
17290 * calc/calc.el (defcalcmodevar): New macro.
17291 (calc-mode-var-list-restore-default-values)
17292 (calc-mode-var-list-restore-saved-values): New functions.
17293 (calc-mode-var-list): Use defcalcmodevar to define it.
17294 (calc-always-load-extensions, calc-line-numbering)
17295 (calc-line-breaking, calc-display-just, calc-display-origin)
17296 (calc-number-radix, calc-leading-zeros, calc-group-digits)
17297 (calc-group-char, calc-point-char, calc-frac-format)
17298 (calc-prefer-frac, calc-hms-format, calc-date-format)
17299 (calc-float-format, calc-full-float-format, calc-complex-format)
17300 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
17301 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
17302 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
17303 (calc-matrix-brackets, calc-language, calc-language-option)
17304 (calc-left-label, calc-right-label, calc-word-size)
17305 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
17306 (calc-display-raw, calc-internal-prec, calc-angle-mode)
17307 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
17308 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
17309 (calc-window-height, calc-display-trail, calc-show-selections)
17310 (calc-use-selections, calc-assoc-selections)
17311 (calc-display-working-message, calc-auto-why, calc-timing)
17312 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
17313 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
17314 (calc-gnuplot-default-device, calc-gnuplot-default-output)
17315 (calc-gnuplot-print-device, calc-gnuplot-print-output)
17316 (calc-gnuplot-geometry, calc-graph-default-resolution)
17317 (calc-graph-default-resolution-3d, calc-invocation-macro)
17318 (calc-show-banner): Use defcalcmodevar to declare them and set
17319 their default values.
17320
17321 * calc/calc-ext.el (calc-reset): Restore saved values of variables
17322 instead of default values (but restore default values if there is
17323 an argument of 0).
17324
17325 2005-01-09 David Kastrup <dak@gnu.org>
17326
17327 * desktop.el (desktop-restore-eager): Fix typo in type.
17328
17329 2005-01-08 Richard M. Stallman <rms@gnu.org>
17330
17331 * cus-edit.el (customize): Delete :link.
17332
17333 2005-01-08 Jay Belanger <belanger@truman.edu>
17334
17335 * calc/calc.el (calc-mode): Remove the extension from the
17336 `calc-settings-file' file name when loading it.
17337
17338 2005-01-08 Kim F. Storm <storm@cua.dk>
17339
17340 * info.el (Info-mode-map, Info-next-link-keymap)
17341 (Info-prev-link-keymap, Info-up-link-keymap):
17342 Map follow-link to mouse-face.
17343 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
17344
17345 2005-01-08 Jay Belanger <belanger@truman.edu>
17346
17347 * calc/calc.el (calc-settings-file): Change default value.
17348 Suggested by cgw in a comment in calc-mode.el.
17349
17350 * calc/calc-mode.el (calc-settings-file-name):
17351 Compare calc-settings-file to user-init-file instead of ~/.emacs.
17352 Replace ~/.emacs in a prompt by calc-settings-file.
17353
17354 2005-01-07 Lars Hansen <larsh@math.ku.dk>
17355
17356 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
17357 (desktop-lazy-idle-delay): New customizable variables.
17358 (desktop-buffer-args-list): New variable.
17359 (desktop-append-buffer-args): New function.
17360 (desktop-save): Call desktop-append-buffer-args for some buffers.
17361 (desktop-lazy-create-buffer): New function.
17362 (desktop-idle-create-buffers): New function.
17363 (desktop-read): Add message about buffers to restore lazily.
17364 (desktop-lazy-abort): New command.
17365 (desktop-clear): Call desktop-lazy-abort.
17366 (desktop-lazy-complete): New command.
17367
17368 2005-01-06 Richard M. Stallman <rms@gnu.org>
17369
17370 * emacs-lisp/find-func.el (find-face-definition):
17371 Rename from find-face.
17372
17373 2005-01-06 Kim F. Storm <storm@cua.dk>
17374
17375 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
17376
17377 * man.el (Man-xref-man-page, Man-xref-header-file)
17378 (Man-xref-normal-file): Add follow-link property.
17379
17380 2005-01-06 Jay Belanger <belanger@truman.edu>
17381
17382 * calc/calc-units.el: Make sure the proper macro definitions are
17383 available when compiling.
17384
17385 2005-01-06 Juri Linkov <juri@jurta.org>
17386
17387 * isearch.el (isearch-lazy-highlight-update):
17388 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
17389
17390 2005-01-06 Miles Bader <miles@gnu.org>
17391
17392 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
17393 (isearch-lazy-highlight-face): Use new name.
17394
17395 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
17396
17397 * uniquify.el (uniquify-rationalize-file-buffer-names):
17398 Re-add an interactive spec.
17399 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
17400 to the same name.
17401
17402 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
17403 (isearch-update, isearch-done): Adjust calls accordingly.
17404
17405 2005-01-05 Richard M. Stallman <rms@gnu.org>
17406
17407 * custom.el (custom-set-variables, custom-theme-set-variables):
17408 Clarify documentation.
17409
17410 * emacs-lisp/find-func.el (find-variable)
17411 (find-variable-other-window, find-variable-other-frame):
17412 Fix the TYPE args to find-function-read and find-function-do-it.
17413 (find-function): Doc fix.
17414 (find-function-at-point): Replace function-at-point alias.
17415
17416 2005-01-04 Richard M. Stallman <rms@gnu.org>
17417
17418 * cus-face.el (custom-declare-face):
17419 Record defface in current-load-list.
17420
17421 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
17422
17423 * emacs-lisp/find-func.el: Doc fixes.
17424 (find-face-regexp): New variable.
17425 (find-function-regexp-alist): New variable.
17426 (find-function-C-source): Third arg is now TYPE.
17427 (find-function-search-for-symbol): Handle general TYPE.
17428 (find-function-read, find-function-do-it): Handle general TYPE.
17429 (find-definition-noselect, find-face): New functions.
17430 (function-at-point): Alias deleted.
17431
17432 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
17433
17434 * battery.el (display-battery-mode): Rename from display-battery.
17435 Handle the case where it gets turned off.
17436
17437 2005-01-04 Richard M. Stallman <rms@gnu.org>
17438
17439 * cus-edit.el (customize): Make :link point to user doc.
17440
17441 * man.el (Man-fontify-manpage): Turn off undo generation.
17442
17443 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
17444
17445 2005-01-04 Andreas Schwab <schwab@suse.de>
17446
17447 * files.el (insert-directory): Only look for error lines in
17448 inserted text. Don't move too far after processing --dired markers.
17449
17450 2005-01-04 Richard M. Stallman <rms@gnu.org>
17451
17452 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
17453 Don't expand if the character is @, period, dash, etc.
17454 (define-mail-abbrev): Quote names that contain problem characters.
17455
17456 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
17457
17458 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
17459
17460 2005-01-03 Richard M. Stallman <rms@gnu.org>
17461
17462 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
17463 (query-replace-highlight, query-replace-lazy-highlight)
17464 (query-replace): Definitions moved up. Doc fix.
17465
17466 2005-01-03 Richard M. Stallman <rms@gnu.org>
17467
17468 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
17469 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
17470 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
17471 (lazy-highlight-face): Rename from isearch-lazy-...
17472 Change all references to them.
17473
17474 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
17475
17476 * cus-edit.el (custom-file): Doc fix for defcustom.
17477 (custom-file): The function no longer sets the variable
17478 `custom-file' to its return value.
17479
17480 * startup.el (command-line): No longer load `custom-file'.
17481
17482 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
17483
17484 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
17485
17486 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
17487 Don't confuse module-prefixed identifiers for labels.
17488 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
17489
17490 2005-01-02 Richard M. Stallman <rms@gnu.org>
17491
17492 * files.el (basic-save-buffer-1): Fix previous change.
17493
17494 * loadhist.el (file-loadhist-lookup): New function.
17495 (file-provides, file-requires): Use it.
17496
17497 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
17498 instead of calculating the right size.
17499
17500 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
17501
17502 * vc-svn.el (vc-svn-diff): Stay local if possible.
17503
17504 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
17505
17506 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
17507
17508 * files.el (hack-local-variables): Fix last change.
17509
17510 2005-01-02 Jay Belanger <belanger@truman.edu>
17511
17512 * calc/calc-yank.el (calc-edit-top): New variable.
17513 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
17514 object. Change header properties.
17515 (calc-edit-finish, calc-edit-finish-stack-object)
17516 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
17517 edited object.
17518 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
17519 for the beginning of the edited object.
17520 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
17521 for the beginning of the edited object.
17522 * calc/calc-prog.el (calc-edit-macro-finish-edit)
17523 (calc-finish-formula-edit, calc-macro-repeats)
17524 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
17525 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
17526 beginning of the edited object.
17527 (calc-user-define-edit): Change the header for editing macros.
17528 Remove unnecessary variable.
17529
17530 2005-01-01 Jay Belanger <belanger@truman.edu>
17531
17532 * calc/calc-yank.el (calc-edit-mode): Change default header.
17533 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
17534 * calc/calc-store.el (calc-edit-variable): Change title to match new
17535 header.
17536 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
17537 mode to match new header.
17538 (calc-user-define-edit): Change titles to include names of commands.
17539 (calc-finish-formula-edit): Adjust to handle new header.
17540 (calc-finish-macro-edit): Remove.
17541 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
17542 (calc-edit-macro-command, calc-edit-macro-command-type)
17543 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
17544 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
17545 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
17546 (calc-edit-macro-finish-edit): New functions.
17547 (calc-user-define-edit): Use new functions to edit named calc macros.
17548
17549 2005-01-01 Stefan <monnier@iro.umontreal.ca>
17550
17551 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
17552
17553 * ses.el (copy-region-as-kill): Deactivate mark.
17554
17555 2005-01-01 Richard M. Stallman <rms@gnu.org>
17556
17557 * replace.el (occur-1): If the output buffer is also an input,
17558 don't kill it, rename it.
17559
17560 * faces.el (set-face-background, set-face-foreground): Doc fix.
17561
17562 * cus-face.el (custom-face-attributes): Fix :help-echo strings
17563 for :foreground and :background.
17564
17565 * dired.el (dired-view-command-alist): Variable deleted.
17566 (dired-view-file, dired-mouse-find-file-other-window):
17567 Delete the code to use it.
17568
17569 2005-01-01 Kim F. Storm <storm@cua.dk>
17570
17571 * image.el (insert-sliced-image): Use t for line-height property.
17572
17573 See ChangeLog.11 for earlier changes.
17574
17575 ;; Local Variables:
17576 ;; coding: iso-2022-7bit
17577 ;; End:
17578
17579 Copyright (C) 2005 Free Software Foundation, Inc.
17580 Copying and distribution of this file, with or without modification,
17581 are permitted provided the copyright notice and this notice are preserved.
17582
17583 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1