*** empty log message ***
[bpt/emacs.git] / lisp / ChangeLog
1 2006-02-26 Luc Teirlinck <teirllm@auburn.edu>
2
3 * jka-cmpr-hook.el (jka-compr-compression-info-list)
4 (jka-compr-mode-alist-additions, jka-compr-load-suffixes):
5 Give :set functions to provide automatic updating.
6 Update docstring. Give compiler defvars early in the file
7 and move the defcustoms to a later spot where all called functions
8 are defined.
9 (jka-compr-file-name-handler-entry): Doc fix.
10 (jka-compr-compression-info-list--internal)
11 (jka-compr-mode-alist-additions--internal)
12 (jka-compr-load-suffixes--internal): New variables.
13 (jka-compr-install): Set the three above variables.
14 Update `load-file-rep-suffixes' instead of `load-suffixes'.
15 (jka-compr-update, jka-compr-set): New functions.
16 (auto-compression-mode): Doc fix.
17
18 * jka-compr.el (jka-compr-uninstall): Replace `mapcar' with `mapc'.
19 Update `load-file-rep-suffixes' instead of `load-suffixes'.
20 Use jka-compr-compression-info-list--internal,
21 jka-compr-mode-alist-additions--internal and
22 jka-compr-load-suffixes--internal.
23
24 * files.el (load-library):
25 * loadhist.el (file-loadhist-lookup):
26 * startup.el (command-line):
27 * subr.el (locate-library):
28 * emacs-lisp/autoload.el (update-directory-autoloads):
29 * emacs-lisp/find-func.el (find-library-suffixes): Use
30 `get-load-suffixes' instead of `load-suffixes'.
31
32 * subr.el (locate-library):
33 * emacs-lisp/find-func.el (find-library-name): Use
34 `load-file-rep-suffixes' instead of '("").
35
36 2006-02-26 Kim F. Storm <storm@cua.dk>
37
38 * ido.el (ido-save-history, ido-load-history): Simplify. Don't
39 use find-file-noselect to avoid interference from other modes.
40
41 2006-02-25 Thien-Thi Nguyen <ttn@gnu.org>
42
43 * progmodes/sh-script.el (sh-mode): Fix bug: Arrange
44 to use the default shell if filename is not available.
45 Reported by Giorgos Keramidas.
46
47 2006-02-25 John Williams <jrw@pobox.com> (tiny change)
48
49 * progmodes/etags.el (tags-completion-table): Do completion from
50 all the tables in the current list, as documented in the manual.
51
52 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
53
54 * CC Mode Update to 5.31.3.
55
56 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
57
58 * progmodes/cc-mode.el (c-postprocess-file-styles): bind
59 inhibit-read-only to t, around the call to
60 c-remove-any-local-eval-or-mode-variables, so that it works on a
61 RO file.
62
63 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
64
65 * progmodes/cc-awk.el: Correct a typo.
66
67 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
68
69 * progmodes/cc-cmds.el, cc-mode.el: Rename c-hungry-backspace to
70 c-hungry-delete-backwards, at the request of RMS. Leave the old
71 name as an alias.
72
73 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
74
75 * progmodes/cc-mode.el: Correct a typo.
76
77 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
78
79 * progmodes/cc-defs.el: Update the version number to 5.31.3.
80
81 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
82
83 * progmodes/cc-cmds.el (c-electric-brace): Fix clean-up
84 brace-else-brace (error due to mbeg, mend being undefined).
85
86 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
87
88 * progmodes/cc-mode.el: File Local variables: Solve the problem
89 where both `mode' and c-file-offsets are specified: `mode' will
90 overwrite c-f-o's settings:
91 (c-remove-any-local-eval-or-mode-variables): new function.
92 (c-postprocess-file-styles): call the above new function, within
93 c-tentative-buffer-change, to splat `mode' and `eval' before the
94 second hack-local-variables.
95
96 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
97
98 * progmodes/cc-mode.el:
99 [Supersedes patch to cc-engine.el 2005-12-16T20:07:49Z!monnier@iro.umontreal.ca]
100 (c-after-change): Protect the match data with save-match-data. It
101 was getting corrupted by c-after-change-check-<>-operators.
102
103 * cc-defs.el: [Supersedes patch V1.38]:
104 (top level): Check for a buggy font-lock-compile-keywords ONLY in
105 XEmacs. GNU Emacs 22 now has a check which would throw an error
106 here.
107
108 * progmodes/cc-awk.el (c-awk-after-change): Protect the match data
109 with save-match-data. It was being corrupted when Font Lock was
110 not enabled.
111
112 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
113
114 * progmodes/cc-langs.el (c-mode-menu): Add menu items for Electric
115 Mode and Subword Mode.
116
117 * progmodes/cc-engine.el (c-beginning-of-statment-1): Distinguish
118 real labels ("case 1:" or "foo:") from non-labels ("public:").
119 (c-forward-objc-directive): Replace c-forward-token-2 with crude
120 coding; c-f-t-2 doesn't move over a token at EOB.
121
122 * progmodes/cc-defs.el (c-version): Update version number to
123 5.31.2
124
125 * progmodes/cc-cmds.el, cc-mode.el, cc-engine.el
126 (c-update-modeline): Concatenate the minor mode indicators
127 directly onto mode-name, removing c-submode-indicators.
128 Sometimes, c-s-i got separated from the mode name on the mode
129 line.
130
131 * progmodes/cc-cmds.el (c-electric-brace, c-electric-semi&comma,
132 c-electric-colon): Correct doc-strings: "/ln" -> "/la".
133
134 2006-02-24 Martin Stjernholm <bug-cc-mode@gnu.org>
135
136 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Improved the
137 error message when there's an evaluation error to show whether
138 it's loaded from source or not.
139 (c-filter-ops): Made it available at runtime too to work when
140 `c-make-init-lang-vars-fun' needs to evaluate from source.
141
142 2006-02-24 Juanma Barranquero <lekktu@gmail.com>
143
144 * help.el (help): Revert last part of 2006-02-23 change (deletion
145 of the `provide' call).
146
147 2006-02-23 Juri Linkov <juri@jurta.org>
148
149 * compare-w.el (compare-windows-highlight): Add new value
150 `persistent' and change :type from `boolean' to `choice'.
151 (compare-windows-overlays1, compare-windows-overlays2):
152 New internal variables.
153 (compare-windows-highlight): If compare-windows-highlight is
154 `persistent', add current overlays to compare-windows-overlays[12]
155 instead of adding compare-windows-dehighlight to pre-command-hook.
156 (compare-windows-dehighlight): Delete all overlays from
157 compare-windows-overlays[12].
158
159 * info.el (Info-search): Don't bind search-spaces-regexp to
160 Info-search-whitespace-regexp in non-regexp isearch mode.
161
162 2006-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
163
164 * help.el (describe-mode): Pass `mode-name' to format-mode-line.
165
166 2006-02-23 Juanma Barranquero <lekktu@gmail.com>
167
168 * textmodes/org.el (org-xemacs-p)
169 (org-export-html-show-new-buffer, org-table-may-need-update)
170 (org-insert-item, org-mhe-get-message-real-folder)
171 (org-mhe-get-message-folder-from-index)
172 (org-mhe-get-message-folder, org-mhe-get-message-num)
173 (org-mhe-get-header, org-make-org-heading-search-string)
174 (org-make-org-heading-camel, org-table-sort-lines)
175 (org-format-org-table-html, org-format-table-table-html):
176 Fix typos in docstrings.
177
178 12006-02-23 Carsten Dominik <dominik@science.uva.nl>
179
180 * textmodes/org.el (org-cleaned-string-for-export)
181 (org-solidify-link-text): New function.
182 (org-add-hook): Use `add-local-hook' instead of `make-local-hook' for
183 XEmacs, just to silence the compiler.
184 (org-export-as-ascii, org-export-as-html-and-open):
185 Use `org-cleaned-string-for-export' and create internal links.
186 (org-follow-mhe-link): Require mh-e, use folder.
187
188 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
189
190 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face properly.
191
192 * progmodes/gdb-ui.el (gdb-debug-ring-max): Rename from
193 gdb-debug-log-length.
194 (gdb-debug-ring): Rename from gdb-debug-log-ring. Don't make
195 it a real ring but...
196 (gud-gdba-marker-filter): ...make it work like mark-ring.
197 (gdb-enable-debug): Rename from gdb-enable-debug-log.
198 (gdb-mouse-jump): New function. Add bindings.
199
200 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
201
202 * progmodes/gdb-ui.el (gdb-signalled): New variable and function.
203 (gdb-debug-log-ring): Rename from gdb-debug-log and make a ring.
204 (gdb-send, gdb-send-item, gud-gdba-marker-filter): Use it.
205 (gdb-debug-log-length): Customize it's length.
206 (gud-watch, gdb-var-create-handler): Display function::var format
207 but don't use to create variable object.
208 (gdb-var-create-handler): Use message-box in place of message.
209 (gdb-stopped): Call gdb-exited if signalled.
210
211 2006-02-22 Carsten Dominik <dominik@science.uva.nl>
212
213 * textmodes/reftex.el (reftex-locate-file): Remove duplicate function.
214
215 * textmodes/reftex-vars.el (reftex-try-all-extensions): New option.
216
217 * textmodes/reftex.el (reftex-locate-file): Search all extensions
218 if `reftex-try-all-extensions' is set.
219
220 * textmodes/org.el (org-mark-ring-push, org-mark-ring-goto):
221 New commands.
222 (org-mark-ring): New variable.
223 (org-mark-ring-length): New option.
224 (org-open-at-point, org-goto, org-open-file): Push old position
225 onto the mark ring.
226 (org-add-hook): New function.
227 (org-export-table-remove-special-lines): New option.
228 (org-skip-comments, org-format-org-table-html): Respect new
229 option `org-export-table-remove-special-lines'.
230 (org-open-file): Allow special command configuration for
231 directory link.
232 (org-file-apps): Fix bugs in customize type, added setting
233 for directories.
234 (org-activate-tags, org-format-agenda-item, org-complete)
235 (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
236 (org-get-tags, org-get-buffer-tags, org-open-at-point)
237 (org-link-search, org-make-org-heading-search-string)
238 (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
239 (org-radio-targets, org-file-link-context-use-camel-case)
240 (org-activate-camels): New options.
241 (org-update-radio-target-regexp, org-all-targets)
242 (org-make-target-link-regexp, org-activate-target-links):
243 New functions.
244 (org-make-org-heading-search-string): New function.
245 (org-store-link, org-insert-link): Use new option
246 `org-file-link-context-use-camel-case'.
247 (org-activate-camels): Use new option `org-activate-camels'.
248 (org-link-regexp): Add mhe prefix.
249 (org-open-at-point, org-store-link): Support for mhe links.
250 (org-mhe-get-message-real-folder, org-mhe-get-message-folder)
251 (org-mhe-get-message-folder-from-index, org-mhe-get-message-num)
252 (org-mhe-get-header, org-follow-mhe-link): New functions.
253 (org-remove-angle-brackets, org-add-angle-brackets):
254 New functions.
255 (org-bracket-link-regexp): New constant.
256 (org-read-date): Fix bug that was rejecting all typed dates.
257 (org-link-search): Make hierarchy above visible after a match.
258 (org-follow-bbdb-link): Inhibit electric mode for BBDB.
259 (org-store-link): Fix bug with link creation when cursor is in
260 an empty line.
261 (org-open-at-point): Fix bug with matching a link.
262 Fixed buggy argument sequence in call to `org-view-tags'.
263 (org-compile-prefix-format): Set `org-prefix-has-tag'.
264 (org-prefix-has-tag): New variable.
265 (org-format-agenda-item): Remove tags from headline
266 if appropriate.
267 (org-agenda-remove-tags-when-in-prefix): New option.
268
269 2006-02-21 Michael Kifer <kifer@cs.stonybrook.edu>
270
271 * ediff-diff.el (ediff-setup-diff-regions, ediff-setup-diff-regions3):
272 Fix the regular expressions.
273
274 2006-02-21 Richard M. Stallman <rms@gnu.org>
275
276 * progmodes/sh-script.el (sh-mode): Set shell type based on file name
277 if there's no other specific basis.
278
279 * emacs-lisp/unsafep.el (unsafep): Don't treat &rest or &optional
280 as variables at all.
281 (unsafep-variable): Rename arg; doc fix.
282
283 * abbrevlist.el (list-one-abbrev-table): Add autoload.
284
285 * calendar/appt.el (diary-selective-display): Add defvar.
286
287 * sort.el (sort-columns): Use Posix arg syntax for `sort'.
288
289 * isearch.el (search-whitespace-regexp): Fix custom type.
290
291 * help.el (describe-key-briefly): Compute interactive args
292 in same was as before previous change.
293
294 * files.el (enable-local-variables): Doc fix.
295
296 2006-02-21 Kim F. Storm <storm@cua.dk>
297
298 * fringe.el: Cleanup as file is now pre-loaded.
299 (fringe-bitmaps): Initialize unconditionally.
300 (fringe-mode, set-fringe-style): Remove autoload cookies.
301
302 2006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
303
304 * fringe.el (fringe-bitmaps): Rename `horisontal-bar' to
305 `horizontal-bar'.
306 (fringe-cursor-alist): Use `horizontal-bar'.
307
308 2006-02-20 Kim F. Storm <storm@cua.dk>
309
310 * fringe.el (fringe-bitmaps): Update to new bitmap names.
311 (fringe-indicator-alist, fringe-cursor-alist): Initialize.
312
313 * loadup.el: Load "fringe" on window systems.
314
315 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
316
317 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for all
318 out of scope components.
319
320 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): Don't enable by
321 default.
322
323 2006-02-20 Chong Yidong <cyd@stupidchicken.com>
324
325 * custom.el (customize-mark-to-save, customize-mark-as-set):
326 Load the symbol first.
327
328 2006-02-20 Juanma Barranquero <lekktu@gmail.com>
329
330 * buff-menu.el (list-buffers-noselect): Turn also "\n" into a
331 strech spec so it doesn't display as "^J" on the header line
332 when `Buffer-menu-use-header-line' is t.
333
334 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
335
336 * speedbar.el (speedbar-make-button): Keep text properties
337 of string arguments if desired.
338
339 * progmodes/gud.el (gud-speedbar-buttons): Fontify watch
340 expessions.
341
342 * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Force update
343 of speedbar.
344
345 2006-02-19 Ryan Yeske <rcyeske@gmail.com>
346
347 * ffap.el (ffap-read-file-or-url): Bind `completion-ignore-case'
348 to value of `read-file-name-completion-ignore-case'.
349
350 2006-02-19 Chong Yidong <cyd@stupidchicken.com>
351
352 * custom.el (customize-mark-as-set): Push to `user' theme.
353
354 * cus-edit.el (custom-save-variables): Allow unthemed values.
355 (customize-set-variable): Push setting to `user' theme.
356
357 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
358
359 * progmodes/gud.el: Don't require font-lock as it's now
360 automatically loaded.
361 (gud-speedbar-buttons): Replace gdb-var-changed with
362 gdb-force-update.
363
364 * progmodes/gdb-ui.el (gdb-force-update): Rename from
365 gdb-var-changed.
366 (gdb-post-prompt): Use it.
367 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
368 (gdb-var-update-handler, gdb-var-delete)
369 (gdb-speedbar-expand-node, gdb-var-list-children-handler-1)
370 (gdb-var-update-handler-1): Don't set gdb-var-changed, just set
371 gdb-force-update in gdb-post-prompt.
372 (gdb-reset): Clear watch expressions from speedbar when quitting.
373
374 2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
375
376 * viper-cmd.el (viper-insert-state-post-command-sentinel)
377 (viper-change-state-to-vi, viper-change-state-to-emacs):
378 Make aware of cursor coloring in the Emacs state.
379 (viper-special-read-and-insert-char): Use read-char-exclusive.
380 (viper-minibuffer-trim-tail): Workaround for fields in minibuffer.
381
382 * viper-init.el (viper-emacs-state-cursor-color): New variable.
383
384 * viper-util.el (viper-save-cursor-color)
385 (viper-get-saved-cursor-color-in-replace-mode)
386 (viper-get-saved-cursor-color-in-insert-mode)
387 (viper-restore-cursor-color): Make aware of the cursor color in Emacs
388 state.
389 (viper-get-saved-cursor-color-in-emacs-mode): New function.
390
391 * ediff-diff.el (ediff-ignore-case, ediff-ignore-case-option)
392 (ediff-ignore-case-option3, ediff-actual-diff-options)
393 (ediff-actual-diff3-options): New variables to control case sensitivity.
394 (ediff-make-diff2-buffer, ediff-setup-fine-diff-regions)
395 (ediff-setup-diff-regions3): Make aware of case-sensitivity.
396 (ediff-toggle-ignore-case): New function.
397 (ediff-extract-diffs, ediff-extract-diffs3): Preserve point in buffers.
398
399 * ediff-help.el (ediff-long-help-message-narrow2)
400 (ediff-long-help-message-compare2, ediff-long-help-message-compare3)
401 (ediff-long-help-message-word-mode): Add ignore-case command.
402 (ediff-help-for-quick-help): Add ignore-case command.
403
404 * ediff-merg.el: Move provide to the end.
405
406 * ediff-ptch.el: Move provide to the end.
407
408 * ediff-wind.el: Move provide to the end.
409
410 * ediff-mult.el: Move provide to the end.
411 (ediff-set-meta-overlay): Enable follow-link.
412
413 * ediff.el: Move provide to the end.
414 Break recursive load cycle in eval-when-compile.
415 (ediff-patch-buffer): Better heuristics.
416
417 * ediff-util.el: Move provide to the end.
418 Break recursive load cycle in eval-when-compile.
419 (ediff-setup-keymap): Add binding for #c. Replace some defsubsts with
420 defuns.
421 (ediff-submit-report): Pass the values of ediff-diff3-program,
422 ediff-diff3-options.
423
424 2006-02-19 Juanma Barranquero <lekktu@gmail.com>
425
426 * help-fns.el (help-do-arg-highlight): Recognize also ARG- followed by
427 the opening bracket of the following bracketing pairs: {}, [], (), <>,
428 `' (for example, in the docstring of `windmove-default-keybindings').
429
430 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
431
432 * progmodes/gud.el (gud-speedbar-buttons): Update properly for
433 shadow face. Don't provide binding to edit variable when it is
434 out of scope.
435
436 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
437 (gdb-var-update-handler): Detect out of scope variables with pre
438 GDB 6.4 too.
439 (gdb-post-prompt): Revert change from 2006-02-17 (force update).
440 Reset status of variable objects to nil in update handlers.
441 (gdb-var-update-handler-1): Detect when a variable object comes
442 in scope. setcar on var changes gdb-var-list directly.
443
444 2006-02-17 Juri Linkov <juri@jurta.org>
445
446 * ffap.el (ffap) <defface>: Add explicit face declaration.
447 (ffap-highlight): Use face `ffap' directly instead of checking
448 for its existence.
449
450 * icomplete.el (icomplete-get-keys): Use `t' for the second arg
451 `visible-ok' of `other-buffer' to find the right original buffer.
452
453 * info.el (Info-search): Skip `Local Variables' node.
454
455 2006-02-17 Juri Linkov <juri@jurta.org>
456
457 * info.el (Info-find-file): Check for symbols `apropos', `history',
458 `toc' in the input filename, and return these symbols as is.
459 (Info-find-node-2): Set Info-current-file to symbols `apropos',
460 `history', `toc' instead of strings.
461 (Info-set-mode-line): For non-string Info-current-file use the
462 symbol's name inside **.
463 (Info-isearch-push-state): Add quote before Info-current-file and
464 Info-current-node.
465 (Info-isearch-pop-state): Use `equal' instead of `string='.
466 (Info-extract-pointer, Info-following-node-name): Use
467 `match-string-no-properties' instead of `match-string'.
468 (Info-up): Check `old-file' for `stringp'.
469 (Info-history): Use `equal' instead of `string-equal'.
470 Check `file' for `stringp'.
471 (Info-history): Use symbol `history' instead of string as first arg
472 of `Info-find-node'.
473 (Info-toc): Check `Info-current-file' for `stringp'. Use symbol
474 `toc' instead of string.
475 (Info-extract-menu-node-name): Use `buffer-substring-no-properties'
476 instead of `buffer-substring', and `match-string-no-properties'
477 instead of `match-string'.
478 (Info-index-nodes): Check for symbols `apropos', `history', `toc'
479 instead of strings.
480 (info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
481 Use symbol `apropos' instead of string.
482 (Info-copy-current-node-name): Check `Info-current-file' for
483 `stringp' and construct a command with `Info-find-node' from it.
484 (Info-fontify-node): Use `match-string-no-properties' instead of
485 `match-string' and check file names for `stringp'.
486 (Info-desktop-buffer-misc-data): Check for symbols `apropos',
487 `history', `toc' instead of strings.
488
489 2006-02-17 Chong Yidong <cyd@stupidchicken.com>
490
491 * files.el: Rearrange functions and variables in the file local
492 variables section.
493
494 2006-02-17 Reiner Steib <Reiner.Steib@gmx.de>
495
496 * files.el: Add truncate-lines, ispell-check-comments and
497 ispell-local-dictionary as safe local variables.
498
499 2006-02-18 Nick Roberts <nickrob@snap.net.nz>
500
501 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for
502 out of scope variables.
503 (gud-speedbar-buttons): Use unless.
504
505 * progmodes/gdb-ui.el (gdb-var-list): Update doc string.
506 (gdb-init-1, gdb-var-changed): Set gdb-var-changed to t initially.
507 (gdb-show-changed-values): Also use for out of scope variables.
508 (gdb-var-update-handler-1): Note if variable goes out of scope.
509
510 2006-02-17 Ryan Yeske <rcyeske@gmail.com>
511
512 * net/rcirc.el (rcirc-connect): Make all arguments optional, and
513 default to global variable values for unsupplied args.
514 (rcirc-get-buffer-create): Fix bug with setting the target.
515 (rcirc-any-buffer): Rename from rcirc-get-any-buffer, and include
516 test for rcirc-always-use-server-buffer-flag here.
517 (rcirc-response-formats): Add %N, which is a facified nick. %n
518 uses the default face. Change the ACTION format string. If the
519 "nick" is the server, don't print anything for that field.
520 Comment fixes.
521 (rcirc-target-buffer): Don't test
522 rcirc-always-use-server-buffer-flag here.
523 (rcirc-print): Squeeze extra spaces out of the text before message.
524 (rcirc-put-nick-channel): Strip potential "@" char from nick
525 before adding them to nick table.
526 (rcirc-url-regexp): Improve to match address like "foo.com".
527
528 2006-02-17 Eli Zaretskii <eliz@gnu.org>
529
530 * allout.el (allout-hidden-p): Move this defsubst before
531 allout-overlay-interior-modification-handler, where it is first
532 used.
533
534 2006-02-17 Ken Manheimer <ken.manheimer@gmail.com>
535
536 * allout.el: Use allout invisible-text overlays instead of
537 selective display for concealed text. Also, lots of general
538 cleanup, and improved compatibility code.
539
540 (allout-version) Incremented, corrected, revised, and refined
541 module commentary.
542
543 (provide 'allout): Moved to the bottom, added a require of overlay.
544
545 (allout-encrypt-unencrypted-on-saves): Defaults to t instead of
546 `except-current'.
547 (allout-write-file-hook-handler): Minimize delay.
548 (count-trailing-whitespace-region): New function so
549 auto-encryption of current topic can resituate cursor exactly.
550 PGP/GPG encryption trims trailing whitespace from lines, which
551 must be accounted for across encryption then decryption.
552
553 (allout-command-prefix): Now defaults to "\C-c<space>" rather than
554 just plain "\C-c", to avoid intruding on user's keybinding space.
555
556 (allout-toggle-current-subtree-encryption): Pass along fetch-pass
557 parameter, so user request to provide a new password is done.
558
559 (allout-outside-normal-auto-fill-function, allout-auto-fill):
560 Refined mechanism for auto-filling behavior while in allout mode.
561
562 (allout-mode): Explicitly specify the mode map in the docstring.
563 Clarify provision for various write-file hook var names.
564 Adjusted for invisible-text overlays instead of selective-display.
565
566 (allout-depth): Really return 0 if not within any topic. This
567 rectifies `allout-beginning-of-level' and sequence numbering
568 errors that occur when cutting and pasting numbered topics.
569 Changed from a in-line subst to a regular function, as well.
570
571 (allout-pre-next-prefix): Renamed from allout-pre-next-preface.
572
573 (allout-end-of-subtree, allout-end-of-subtree)
574 (allout-end-of-entry, allout-end-of-current-heading)
575 (allout-next-visible-heading, allout-open-topic, allout-show-entry)
576 (allout-show-children, allout-show-to-offshoot)
577 (allout-hide-current-entry, allout-show-current-entry): Rectified
578 handling of trailing blank lines between items.
579
580 (allout-line-boundary-regexp, set-allout-regexp, allout-depth)
581 (allout-current-depth, allout-unprotected, allout-hidden-p)
582 (allout-on-current-heading-p, allout-listify-exposed)
583 (allout-chart-subtree, allout-goto-prefix)
584 (allout-back-to-current-heading, allout-get-body-text)
585 (allout-snug-back, allout-flag-current-subtree, allout-show-all)
586 (allout-hide-region-body, allout-toggle-subtree-encryption)
587 (allout-encrypt-string, allout-encrypted-key-info)
588 (allout-next-topic-pending-encryption, allout-encrypt-decrypted)
589 (allout-file-vars-section-data): Adjusted for use with
590 invisible-text overlays instead of selective-display.
591
592 (allout-kill-line, allout-kill-topic, allout-yank-processing):
593 Reworked for use with invisible text overlays.
594
595 (allout-current-topic-collapsed-p): New function.
596
597 (allout-hide-current-subtree): Use allout-current-topic-collapsed-p
598 to know when to close the containing topic.
599
600 (allout-pre-command-business, allout-post-command-business):
601 Simplify undo-batching and dynamic isearch exposure.
602
603 (allout-set-overlay-category): New for invisible-text overlays.
604 Sets properties of allout-overlay-category, used by
605 allout-flag-region to set invisible-text overlay properties.
606 (allout-get-invisibility-overlay): Get the first qualifying
607 invisibility overlay, so we can find the extent of it.
608 (allout-back-to-visible-text): Get to just before the beginnining
609 of the current invisibility overlay, if any.
610
611 (allout-overlay-insert-in-front-handler)
612 (allout-overlay-interior-modification-handler)
613 (allout-before-change-handler, allout-isearch-end-handler): New
614 functions to handle extraordinary actions affecting concealed
615 text.
616
617 (allout-flag-region): Use overlays instead of selective-display
618 for invisible text - by inheritence from the properties of
619 allout-overlay-category in mainline Emacs, and applied
620 property-by-property in XEmacs, some recent versions of which
621 don't inherit the properties from the category. Provisions to
622 respond to concealed-text edits simplified drastically.
623
624 (allout-isearch-rectification, allout-isearch-was-font-lock)
625 (allout-isearch-expose, allout-enwrap-isearch)
626 (allout-isearch-abort, allout-pre-was-isearching)
627 (allout-isearch-prior-pos, allout-isearch-did-quit)
628 (allout-isearch-dynamic-expose)
629 (allout-hide-current-entry-completely): Functions deleted.
630
631 (allout-undo-aggregation): Explicit undo aggregation no longer
632 necessary due to transition away from selective-display.
633
634 (set-allout-regexp, allout-up-current-level)
635 (allout-next-visible-heading, allout-forward-current-level)
636 (allout-open-topic, allout-reindent-body, allout-rebullet-topic)
637 (allout-kill-line, allout-yank-processing, allout-show-children)
638 (allout-expose-topic, allout-old-expose-topic)
639 (allout-listify-exposed, allout-insert-latex-header)
640 (allout-toggle-subtree-encryption, allout-encrypt-string)
641 (remove-from-invisibility-spec, allout-hide-current-subtree):
642 Ditched unused variables.
643
644 2006-02-17 Agustin Martin <agustin.martin@hispalinux.es>
645
646 * textmodes/ispell.el (ispell-change-dictionary): Call
647 ispell-buffer-local-dict instead of
648 ispell-accept-buffer-local-defs.
649 (ispell-local-dictionary-alist): Accept as valid any coding-system
650 supported by Emacs.
651 (ispell-dictionary-alist-3): Esperanto dictionary's coding system
652 changed to iso-8859-3.
653
654 2006-02-17 Nick Roberts <nickrob@snap.net.nz>
655
656 * speedbar.el (speedbar-frame-width): Make an inline function
657 instead of a macro. Use frame-width.
658 (speedbar-try-completion, speedbar-update-contents)
659 (speedbar-timer-fn): Use consp.
660 (speedbar-update-localized-contents): Try to preserve point.
661
662 * progmodes/gdb-ui.el (gdba, gdb-var-list): Improve doc strings.
663 (menu): Re-order menu items.
664 (gdb-var-update-regexp, gdb-var-update-regexp-1): Match "in_scope"
665 field.
666 (gdb-var-update-handler-1): Use it for GDB 6.4+.
667 (gdb-post-prompt): Speed things by not forcing update.
668
669 2006-02-16 Chong Yidong <cyd@stupidchicken.com>
670
671 * wid-edit.el (widget-button-click): For mouse-1, cancel button
672 press and perform default action if we get a mouse movement event.
673
674 2006-02-16 Juanma Barranquero <lekktu@gmail.com>
675
676 * calendar/icalendar.el (icalendar--get-event-property)
677 (icalendar--get-event-property-attributes): Fix typos in
678 docstrings.
679
680 * progmodes/flymake.el (flymake-fix-file-name): Fix typo in
681 docstring.
682
683 2006-02-15 Juanma Barranquero <lekktu@gmail.com>
684
685 * bs.el (bs-mode): Use `buffer-disable-undo'.
686 (bs--get-file-name): Simplify.
687 (bs-show-in-buffer): Mark the buffer as not modified.
688
689 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
690
691 * wid-edit.el (widget-keymap): Bind down-mouse-1 to
692 widget-button-click.
693
694 * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
695 (custom-mode): Update docstring.
696
697 * cus-theme.el (custom-new-theme-mode-map): Remove mouse-1
698 binding.
699
700 * files.el (hack-local-variables-confirm): Allow scrolling if the
701 file variable list is too long. Kill temp buffer after use.
702
703 2006-02-15 Nick Roberts <nickrob@snap.net.nz>
704
705 * progmodes/gud.el (gdb): Improve doc string.
706 (gdb-script-font-lock-keywords): Expand allowed character set.
707
708 * progmodes/gdb-ui.el (gdb-use-separate-io-buffer)
709 (gdb-display-separate-io-buffer, gdb-frame-separate-io-buffer)
710 (gdb-separate-io-interrupt, gdb-separate-io-quit)
711 (gdb-separate-io-stop, gdb-separate-io-eof):
712 Rename from gdb-inferior-* to gdb-separate-*.
713 (gdb-set-gud-minor-mode-existing-buffers-1): Improve doc string.
714
715 2006-02-14 Jay Belanger <belanger@truman.edu>
716
717 * calc/calc-arith.el (math-check-known-scalarp): Make sure
718 expression is a symbol before checking that it is bound.
719
720 * calc/calcalg2.el (math-integrate-by-parts): Do a more careful
721 test to see if equation can be solved.
722
723 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
724
725 * wid-edit.el (widget-button-click): Use :pressed-face property
726 for overlay face, if it exists.
727
728 * cus-edit.el (custom-manual, custom-add-see-also)
729 (custom-add-parent-links, custom-group-link): Add :pressed-face
730 property to links.
731
732 * files.el (hack-local-variables): Remove ignored variables before
733 checking if any variables need setting.
734
735 2006-02-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
736
737 * cus-start.el (all): Add x-gtk-whole-detached-tool-bar.
738
739 2006-02-14 Juanma Barranquero <lekktu@gmail.com>
740
741 * help.el (where-is): Fix message for remapped commands.
742
743 * mwheel.el (mouse-wheel-click-event, mouse-wheel-mode):
744 Fix typos in docstrings.
745
746 2006-02-13 Chong Yidong <cyd@stupidchicken.com>
747
748 * files.el (safe-local-variable-values): New option.
749 (hack-local-variables-prop-line): Return a list of variable-value
750 pairs if MODE-ONLY is non-nil.
751 (hack-local-variables): Construct list of variable-value pairs,
752 and apply or reject them in one go. Ask for confirmation if
753 variables are not known safe.
754 (hack-local-variables-confirm): Complete rewrite. Support
755 `safe-local-variable-values'.
756 (enable-local-variables): Update docstring to reflect new
757 behavior.
758 (ignored-local-variables): Ignore ignored-local-variables and
759 safe-local-variable-values.
760 (safe-local-variable-p): New function.
761 (risky-local-variable-p): `safe-local-variable' property check
762 moved to safe-local-variable-p.
763 (hack-one-local-variable): Checks moved to hack-local-variables.
764
765 (byte-compile-dynamic, c-basic-offset, c-file-style)
766 (c-indent-level, comment-column, fill-column, fill-prefix)
767 (indent-tabs-mode, kept-new-versions, no-byte-compile)
768 (no-update-autoloads, outline-regexp, page-delimiter)
769 (paragraph-start, paragraph-separate, sentence-end)
770 (sentence-end-double-space tab-width, version-control):
771 Add `safe-local-variable' property.
772
773 * find-lisp.el: Delete nonexistent `autocompile' file variable.
774
775 * icomplete.el, play/landmark.el: Change nonexistent
776 `outline-layout' file variable to `allout-layout'.
777
778 2006-02-14 Nick Roberts <nickrob@snap.net.nz>
779
780 * progmodes/gdb-ui.el (gud-watch, gdb-invalidate-registers-1)
781 (gdb-get-changed-registers): Test value of gud-minor-mode relative
782 to gud-comint-buffer.
783 (gdb-speedbar-expand-node, gdb-locals-mode): Use functions in
784 gdb-ui.el for gdb-mi.el.
785 (gdb-post-prompt, gdb-get-changed-registers): Move test for
786 registers buffer to gdb-get-changed-registers.
787 (gdb-breakpoint-regexp): New regexp. Allow toggling and
788 deletion of catchpoints (throw and catch).
789 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
790 (gdb-goto-breakpoint): Use it for both gdb-ui and gdb-mi.
791 (gdb-find-file-hook, gdb-set-gud-minor-mode-existing-buffers-1)
792 (gdb-var-list-children-1, gdb-info-breakpoints-custom)
793 (gdb-var-update-1, gdb-invalidate-locals-1): Use also for gdb-mi.
794
795 2006-02-13 Jay Belanger <belanger@truman.edu>
796
797 * calc/calc-arith.el (math-check-known-matrixp): Make sure
798 expression is a symbol before checking that it is bound.
799
800 2006-02-13 Richard M. Stallman <rms@gnu.org>
801
802 * mouse.el (mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
803 for the minibuffer too, but not if resize-mini-windows will interfere.
804
805 * help.el (describe-key-briefly, describe-key): Do all arg-reading
806 inside `interactive' spec.
807 (describe-key-briefly-internal, describe-key-internal):
808 Functions merged back into their callers.
809
810 2006-02-13 Martin Rudalics <rudalics@gmx.at> (tiny change)
811
812 * info.el (info-xref-visited): Inherit from info-xref too.
813 (Info-set-mode-line): Replace occurrences of `%' by `%%'
814 when propertizing Info-current-file and Info-current-node.
815
816 2006-02-13 Juri Linkov <juri@jurta.org>
817
818 * tumme.el (tumme-thumbnail-storage): Fix docstring.
819 (tumme-thumb-name): Fix per-directory format.
820
821 2006-02-13 Juanma Barranquero <lekktu@gmail.com>
822
823 * subr.el (substitute-key-definition): Doc fix (hide internal arg).
824
825 2006-02-12 Miles Bader <miles@gnu.org>
826
827 * net/rcirc.el (rcirc-format-response-string): Fix small bugs.
828
829 2006-02-13 Mathias Dahl <mathias.dahl@gmail.com>
830
831 * tumme.el: Remove history section. If someone needs the it, it
832 can always be found in CVS.
833
834 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
835
836 * tumme.el (tumme-thumbnail-storage): Update docstring. Add info
837 about the Thumbnail Managing Standard option.
838
839 2006-02-12 Richard M. Stallman <rms@gnu.org>
840
841 * subr.el (substitute-key-definition): Doc fix.
842
843 * simple.el (blink-matching-paren-dont-ignore-comments): Doc fix.
844
845 * files.el (magic-mode-alist): Don't use `\\s ' in regexps.
846
847 * info.el (Info-mode): Doc fix.
848
849 * progmodes/ebrowse.el (ebrowse-global-prefix-key): Change to C-c C-m.
850
851 2006-02-12 Michael Albinus <michael.albinus@gmx.de>
852
853 * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
854 because on Solaris a POSIX compatible "id" is needed. Reported by
855 Magnus Henoch <mange@freemail.hu>.
856
857 2006-02-12 Juri Linkov <juri@jurta.org>
858
859 * tumme.el: Remove todo item about Thumbnail Managing Standard.
860 (tumme) <defgroup>: Change :group to `multimedia'.
861 (tumme-thumbnail-storage): Add choice `standard' for Thumbnail
862 Managing Standard.
863 (tumme-cmd-create-thumbnail-options): Use %w and %h instead of %s.
864 Fix dostring.
865 (tumme-cmd-create-temp-image-options): Use %w and %h instead of %x
866 and %y. Fix docstring.
867 (tumme-cmd-pngnq-program, tumme-cmd-pngcrush-program)
868 (tumme-cmd-create-standard-thumbnail-command): New user options.
869 (tumme-thumb-size): Set default to 128 if tumme-thumbnail-storage
870 is `standard'. Fix docstring.
871 (tumme-thumb-width, tumme-thumb-height): New user options.
872 (tumme-external-viewer): Try to find various viewers.
873 (tumme-get-thumbnail-image): Use `create-image' instead of
874 constructing the `image' structure.
875 (tumme-insert-thumbnail): Use `png' if tumme-thumbnail-storage is
876 `standard'.
877 (tumme-thumb-name): Add file name generation for standard storage.
878 Simplify code for other storages.
879 (tumme-thumb-name): Use width %w and height %h instead of size %s.
880 Add modification time %m and thumbnail-nq8 %q.
881 Use `tumme-cmd-create-standard-thumbnail-command' if
882 tumme-thumbnail-storage is `standard'.
883 (tumme-dired-insert-marked-thumbs): New autoload command.
884 (tumme-dired-after-readin-hook): New function.
885 (tumme-line-up-dynamic): Use `tumme-thumb-width' instead of
886 `tumme-thumb-size'.
887 (tumme-display-image): Replace size-x %x and size-y %y with
888 width %w and height %h.
889
890 * dired.el (dired-mode-map): Bind `\C-t\C-t' to
891 `tumme-dired-insert-marked-thumbs'.
892
893 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
894
895 * tumme.el (tumme-write-tag): Fix small bug (file name did not
896 include path).
897 (tumme-mark-tagged-files): Fix bug in regexp used to find rows
898 matching tag.
899
900 2006-02-12 Miles Bader <miles@gnu.org>
901
902 * net/rcirc.el (rcirc-nick-abbrevs, rcirc-response-formats):
903 New variables.
904 (rcirc-abbrev-nick): New function.
905 (rcirc-format-response-string): Rewrite to use the formats in
906 `rcirc-response-formats' and expand escape sequences therein.
907 A text-property `rcirc-text' is added over the actual response
908 text to make easy to find inside the returned string.
909 (rcirc-print): When filling, just look for the `rcirc-text'
910 text-property to find the appropriate fill prefix, instead of
911 using hardwired patterns.
912
913 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
914
915 * tumme.el: Enhance some docstrings. Add todo item about Thumbnail
916 Managing Standard.
917
918 2006-02-11 Kim F. Storm <storm@cua.dk>
919
920 * ido.el (ido-buffer-internal): Set mark for ido-insert-buffer.
921 Don't use insert-buffer; do insert-buffer-substring directly.
922 (ido-file-internal): Set mark for ido-insert-file. Use insert-file-1.
923
924 2006-02-11 Martin Rudalics <rudalics@gmx.at>
925
926 * files.el (revert-buffer, recover-file): Replace buffer-read-only
927 with inhibit-read-only. Suggested by Stefan Monnier.
928 (revert-buffer): Let insert-file-contents discard
929 buffer-undo-list. Simplify code.
930 (find-file, find-file-existing, revert-buffer): Doc-string fixes.
931
932 2006-02-11 Eli Zaretskii <eliz@gnu.org>
933
934 * menu-bar.el (menu-bar-select-yank): Add a doc string.
935
936 * help.el (describe-key-briefly): Now a wrapper for
937 describe-key-briefly-internal. Bind enable-disabled-menus-and-buttons
938 to t. Populate yank-menu if empty.
939 (describe-key-briefly-internal): Renamed from describe-key-briefly.
940 (describe-key): Now a wrapper for describe-key-internal. Bind
941 enable-disabled-menus-and-buttons to t. Populate yank-menu if empty.
942 (describe-key-internal): Renamed from describe-key.
943
944 2006-02-11 Milan Zamazal <pdm@zamazal.org>
945
946 * progmodes/glasses.el (glasses-separator): Doc fix.
947 (glasses-original-separator): New defcustom.
948 (glasses-make-readable, glasses-convert-to-unreadable): Use it.
949
950 2006-02-11 Martin Rudalics <rudalics@gmx.at>
951
952 * mwheel.el (mouse-wheel-up-event): Doc fix.
953
954 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
955
956 * tumme.el (tumme-dir): Change default value to "~/.emacs.d/tumme/".
957 (tumme-dir): New function. Copied from thumbs.el.
958
959 2006-02-10 Juanma Barranquero <lekktu@gmail.com>
960
961 * desktop.el (desktop-outvar): Fix typo.
962 (desktop-save-buffer-p): Doc fix.
963
964 * subr.el (substitute-key-definition): Fix typo.
965
966 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
967
968 * frame.el (select-frame-set-input-focus): Call x-focus-frame also
969 when window-system is mac.
970
971 * term/mac-win.el (fontset-standard): Rename from "fontset-mac".
972
973 2006-02-10 Kim F. Storm <storm@cua.dk>
974
975 * subr.el (substitute-key-definition-key): Pass t for NOERROR to
976 indirect-function instead of using condition-case.
977
978 2006-02-10 Mathias Dahl <mathias.dahl@gmail.com>
979
980 * tumme.el (tumme-copy-with-exif-file-name): Try to make docstring
981 less `colloquial'...
982
983 2006-02-09 Mathias Dahl <mathias.dahl@gmail.com>
984
985 * tumme.el: Add a couple of todo items.
986
987 2006-02-09 Lars Hansen <larsh@soem.dk>
988
989 * hilit-chg.el: Add highlight-changes-mode to desktop-locals-to-save.
990 (highlight-changes-mode): Don't change desktop-locals-to-save.
991
992 2006-02-09 Chong Yidong <cyd@stupidchicken.com>
993
994 * image-mode.el (image-toggle-display): Clear image cache if using
995 filename.
996
997 2006-02-09 Masatake YAMATO <jet@gyve.org>
998
999 * dired-x.el (dired-guess-shell-alist-default): Add .man as
1000 a `dired-man' target.
1001
1002 * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start
1003 boundary of symbols.
1004
1005 2006-02-08 Peter Doornbosch <peter.doornbosch@luminis.nl> (tiny change)
1006
1007 * vc-svn.el (vc-svn-print-log): Show recent commits as well.
1008
1009 2006-02-09 Juanma Barranquero <lekktu@gmail.com>
1010
1011 * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
1012 `mapcar'; return nil.
1013
1014 2006-02-08 Chong Yidong <cyd@stupidchicken.com>
1015
1016 * mouse.el (mouse-drag-track): Don't change window if we rebind to
1017 some other event.
1018
1019 2006-02-08 Ryan Yeske <rcyeske@gmail.com>
1020
1021 * net/rcirc.el (rcirc-startup-channels-alist):
1022 Add irc.freenode.net and #emacs as defaults.
1023 (rcirc-ignore-all-activity-flag): Remove variable.
1024 (rcirc-authinfo): New variable.
1025 (rcirc-authinfo-filename): Remove variable.
1026 (rcirc-always-use-server-buffer-flag): New flag.
1027 (rcirc): M-x rcirc will automatically connect without prompting.
1028 C-u M-x rcirc will prompt. Use rcirc-connect to create a
1029 connection in lisp.
1030 (rcirc-process-server-response-1): Remove everything but the nick
1031 portion of the sender so it doesn't need to be done everywhere
1032 else. Update related code.
1033 (global-map): Remove global keybindings.
1034 (rcirc-get-buffer-create): Make sure rcirc-topic is set.
1035 (rcirc-send-input): Split into several functions.
1036 (rcirc-process-input-line, rcirc-process-message)
1037 (rcirc-process-command): New functions.
1038 (rcirc-target-buffer): New function to determine where to route
1039 messages.
1040 (rcirc-user-nick): Save match data.
1041 (rcirc-toggle-ignore-buffer-activity)
1042 (rcirc-update-activity-string): Remove global ignore functionality,
1043 which can be done now by toggling rcirc-track-minor-mode.
1044 (rcirc-track-minor-mode-map): New keymap.
1045 (rcirc-track-minor-mode): New minor-mode.
1046 (ignore): Make the ignore output nicer. Always print it when
1047 adding or removing nicks.
1048 (rcirc-url-regexp): Improve.
1049 (rcirc-mangle-text): Remove properties before using text in the
1050 modeline.
1051 (rcirc-authenticate): Authentication data comes from
1052 rcirc-authinfo, not the file pointed to by rcirc-authinfo-file.
1053 (rcirc-server-prefix): Inherit from rcirc-server.
1054
1055 2006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change)
1056
1057 * Makefile.in (compile): Append "|| true" to the end of the `find'
1058 command, like compile-always does.
1059
1060 2006-02-08 Sam Steingold <sds@gnu.org>
1061
1062 * net/tramp.el (tramp-maybe-open-connection): Do not wait for
1063 output from a dead connection.
1064
1065 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
1066
1067 * dired.el (dired-mode-map): Add more bindings for tumme.
1068
1069 2006-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
1070
1071 * wdired.el (wdired-mode-map): Use remap.
1072 (wdired-get-filename): Massage.
1073 (wdired-perm-mode-map): Don't copy bindings from wdired-mode-map.
1074 (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit): Use the
1075 `keymap' property rather than `local-map'.
1076
1077 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
1078
1079 * tumme.el (tumme-get-thumbnail-image): New utility function.
1080 Suggested by from Chong Yidong.
1081 (tumme-dired-with-window-configuration): Rename from
1082 `tumme-dired'. Add code to save window configuration.
1083 (tumme-restore-window-configuration): New command to restore the
1084 window configuration that `tumme-dired-with-window-configuration'
1085 saves before it changes the window configuration.
1086 (tumme-show-all-from-dir): New command to display thumbnails for
1087 all files in a directory entered by the user, like M-x thumbs.
1088 (tumme-display-thumbs): Call `pop-to-buffer' after all thumbnails
1089 have been created.
1090 (tumme-display-thumbnail-original-image): Call `display-buffer'.
1091 (obsolete-tumme-display-thumbnail-original-image-and-buffer):
1092 Remove obsolete test function.
1093
1094 2006-02-07 Juanma Barranquero <lekktu@gmail.com>
1095
1096 * vc.el (small-temporary-file-directory): Remove defvar; there's
1097 a defcustom for it in files.el.
1098
1099 * tumme.el (tumme-get-thumbnail-image): Add missing arg to `error'.
1100 Fix typo in message.
1101 (tumme-gallery-generate): Fix typo in `error' message.
1102 (tumme-display-window-height-correction)
1103 (tumme-display-window-width-correction, tumme-line-up-dynamic)
1104 (tumme-line-up-interactive): Dox fixes.
1105 (tumme-cmd-rotate-original-options, tumme-display-properties-format)
1106 (tumme-restore-window-configuration, tumme-format-properties-string)
1107 (tumme-create-thumbs, tumme-display-previous-thumbnail-original):
1108 Fix typos in docstrings.
1109
1110 2006-02-07 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
1111
1112 * wdired.el (wdired-get-filename): Fix bug: Don't re-normalize OLD.
1113
1114 2006-02-07 Nick Roberts <nickrob@snap.net.nz>
1115
1116 * progmodes/gud.el (gud-tooltip-mode): Remove autoload cookie.
1117 User should use hook if desired.
1118
1119 * progmodes/gdb-ui.el (gdb-post-prompt): Regenerate breakpoints
1120 buffer if necessary.
1121 (gdb-delete-frame-or-window): New function.
1122 (gdb-breakpoints-mode-map): Bind "q" to it.
1123
1124 2006-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
1125
1126 * textmodes/nroff-mode.el: Clean up name space.
1127 (nroff-mode-syntax-table): Remove spurious `1' in the syntax of \n.
1128 (nroff-mode): Obey the global setting of nroff-electric-mode.
1129 (nroff-electric-mode): Use define-minor-mode and derived-mode-p.
1130
1131 * calendar/calendar.el (calendar-increment-month): Typo in last change.
1132
1133 2006-02-06 Thien-Thi Nguyen <ttn@gnu.org>
1134
1135 * vc-svn.el (vc-svn-previous-version, vc-svn-next-version): New funcs.
1136
1137 2006-02-06 Lars Hansen <larsh@soem.dk>
1138
1139 * generic-x.el (etc-fstab-generic-mode): Add file system types
1140 cifs and usbdevfs. Allow special chars in file names.
1141
1142 2006-02-05 Jay Belanger <belanger@truman.edu>
1143
1144 Update copyright notices of the files in lisp/calc.
1145
1146 2006-02-05 Romain Francoise <romain@orebokech.com>
1147
1148 Update copyright notices of all files in the lisp/play directory.
1149
1150 2006-02-04 Luc Teirlinck <teirllm@auburn.edu>
1151
1152 * ldefs-boot.el: Regenerate.
1153
1154 * emacs-lisp/find-func.el (find-definition-noselect): Minor doc fix.
1155
1156 2006-02-05 Kim F. Storm <storm@cua.dk>
1157
1158 * files.el (magic-mode-regexp-match-limit): New defvar.
1159 (set-auto-mode): Use it to limit magic-mode-alist matching.
1160
1161 2006-02-04 Kevin Rodgers <ihs_4664@yahoo.com>
1162
1163 * simple.el (display-message-or-buffer): Compare the number of
1164 characters to the frame width when determining whether a 1-line
1165 message string will fit in the echo area. Count screen lines
1166 instead of buffer lines when determining whether a multi-line
1167 message will fit in the echo area/minibuffer window.
1168
1169 2006-02-04 Eli Zaretskii <eliz@gnu.org>
1170
1171 * info.el (Info-index, Info-mode): Improve the description of the
1172 `i' command.
1173
1174 * ldefs-boot.el: Regenerate.
1175
1176 2006-02-03 Werner Lemberg <wl@gnu.org>
1177
1178 * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
1179 greedy to find the closing bracket in \*[...] and similar
1180 expressions. This is a first rough fix -- many additional
1181 refinements are necessary to make nroff mode really usable with groff.
1182
1183 2006-02-03 Jens Petersen <petersen@redhat.com> (tiny change)
1184
1185 * international/mule-cmds.el (set-locale-environment):
1186 Add "/usr/share/X11/locale/locale.alias" to search list for xorg-x11
1187 libX11.
1188
1189 2006-02-03 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
1190
1191 * arc-mode.el (archive-maybe-copy): Fix the way directories in the
1192 archive are created in archive-tmpdir.
1193
1194 2006-02-02 John Paul Wallington <jpw@pobox.com>
1195
1196 * ibuffer.el (ibuffer-compressed-file-name-regexp): New defcustom.
1197 (ibuffer-fontification-alist): Use it.
1198 (ibuffer-mode-map): Bind `ibuffer-mark-compressed-file-buffers'
1199 to "* z" and the Ibuffer Mark menu.
1200
1201 * ibuf-ext.el (ibuffer-mark-compressed-file-buffers): New command.
1202
1203 2006-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
1204
1205 * textmodes/table.el (*table--cell-describe-mode)
1206 (*table--cell-describe-bindings): Undo last change since
1207 print-help-return-message is not obsoleted by anything at all.
1208
1209 2006-02-02 Luc Teirlinck <teirllm@auburn.edu>
1210
1211 * emulation/cua-base.el (cua-mode): Doc fix.
1212
1213 2006-02-02 Juanma Barranquero <lekktu@gmail.com>
1214
1215 * dframe.el (dframe-handle-make-frame-visible)
1216 (dframe-handle-iconify-frame, dframe-get-focus)
1217 (dframe-select-attached-frame, dframe-power-click)
1218 (dframe-frame-mode): Fix typos in docstrings.
1219
1220 * ezimage.el (ezimage-mail, ezimage-object-out-of-date)
1221 (ezimage-insert-image-button-maybe, ezimage-insert-over-text):
1222 Fix typos in docstrings.
1223
1224 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer)
1225 (hi-lock-face-buffer, hi-lock-font-lock-hook)
1226 (hi-lock-archaic-interface-message-used)
1227 (hi-lock-file-patterns-range): Fix typos in docstrings.
1228
1229 * savehist.el (savehist-loaded, savehist-load, savehist-install)
1230 (savehist-autosave, savehist-trim-history): Fix typos in docstrings.
1231
1232 * mail/mailclient.el (mailclient-place-body-on-clipboard-flag):
1233 Fix typo in docstring.
1234
1235 * net/newsticker.el (newsticker--decode-iso8601-date)
1236 (newsticker--set-customvar, newsticker--buffer-insert-item)
1237 (newsticker--do-run-auto-mark-filter)
1238 (newsticker--parse-generic-feed): Doc fixes.
1239 (newsticker--retrieval-timer-list, newsticker-url-list)
1240 (newsticker-hide-immortal-items-in-echo-area)
1241 (newsticker-hide-obsolete-items-in-echo-area)
1242 (newsticker-new-item-face, newsticker--enclosure)
1243 (newsticker-buffer-update, newsticker-w3m-show-inline-images)
1244 (newsticker--parse-atom-0.3, newsticker--parse-rss-1.0)
1245 (newsticker--parse-generic-feed, newsticker--cache-contains)
1246 (newsticker--stat-num-items, newsticker-download-enclosures):
1247 Fix typos in docstrings.
1248
1249 * net/rcirc.el (rcirc-debug): Doc fix.
1250 (rcirc-fill-column, rcirc-receive-message-hooks)
1251 (rcirc-browse-url-map, rcirc-read-only-flag, rcirc-prompt)
1252 (rcirc-mode, rcirc-generate-new-buffer-name)
1253 (rcirc-startup-channels, rcirc-ignore-update-automatic)
1254 (rcirc-cmd-ignore, rcirc-browse-url, rcirc-url-regexp):
1255 Fix typos in docstrings.
1256 (rcirc-print): "?\ " -> "?\s".
1257 (rcirc-cmd-join): Improve argument/docstring consistency.
1258
1259 2006-02-01 Mark A. Hershberger <mah@everybody.org>
1260
1261 * xml.el (xml-parse-region): Move save-excursion and set-buffer up
1262 before narrow-to-region.
1263
1264 2006-02-01 Richard M. Stallman <rms@gnu.org>
1265
1266 * simple.el (move-beginning-of-line): Scan properly for invis change.
1267
1268 * replace.el (multi-occur-in-matching-buffers): Fix prev change.
1269
1270 2006-02-01 Michael Albinus <michael.albinus@gmx.de>
1271
1272 * net/tramp.el (tramp-convert-file-attributes): Set file's gid
1273 change bit only when id-format is 'integer. Reported by Matt
1274 Hodges <M.P.Hodges@rl.ac.uk>.
1275
1276 2006-02-01 Juanma Barranquero <lekktu@gmail.com>
1277
1278 * hilit-chg.el (highlight-changes-initial-state)
1279 (highlight-changes-global-initial-state): Doc fixes.
1280 (highlight-changes-global-modes, global-highlight-changes):
1281 Fix typos in docstrings.
1282
1283 2006-02-01 Kim F. Storm <storm@cua.dk>
1284
1285 * emulation/cua-base.el (cua-mode): Mention that CUA enables
1286 transient-mark-mode in doc string.
1287
1288 2006-01-31 Richard M. Stallman <rms@gnu.org>
1289
1290 * replace.el (multi-occur): Doc fix.
1291 (multi-occur-in-matching-buffers): Rename from
1292 multi-occur-by-filename-regexp. Prefix arg says match
1293 buffer names instead of file names.
1294
1295 2006-01-31 Juanma Barranquero <lekktu@gmail.com>
1296
1297 * bs.el: Allow non-default values of `bs-header-lines-length'.
1298 (bs--running-in-xemacs): Remove (not needed anymore).
1299 (bs--set-window-height): Simplify by using `fit-window-to-buffer'
1300 instead of `shrink-window', thus avoiding having to compute the
1301 height of the window.
1302 (bs--up): Wrap around even when there's no header.
1303 (bs--down): Use `forward-line' instead of `next-line'.
1304
1305 2006-01-30 Chong Yidong <cyd@stupidchicken.com>
1306
1307 * image-mode.el (image-toggle-display): Use file name if possible,
1308 instead of unnecessarily allocating a (possibly huge) lisp string.
1309
1310 2006-01-30 John Paul Wallington <jpw@pobox.com>
1311
1312 * subr.el (toplevel): Define `cl-assertion-failed' condition here
1313 because the `assert' macro signals it at runtime.
1314
1315 * emacs-lisp/cl.el (toplevel): Remove definition of
1316 `cl-assertion-failed' condition.
1317
1318 2006-01-30 Nick Roberts <nickrob@snap.net.nz>
1319
1320 * thumbs.el (thumbs-marked-list): Make buffer-local and
1321 permanent-local.
1322 (thumbs-insert-thumb): Make help-echo non-sticky.
1323 (thumbs-file-alist): Use eolp as check for (non)-image.
1324
1325 2006-01-30 Juanma Barranquero <lekktu@gmail.com>
1326
1327 * ediff-mult.el (ediff-meta-buffer-keymap-setup-hook)
1328 (ediff-before-session-group-setup-hooks)
1329 (ediff-default-filtering-regexp, ediff-meta-mark-equal-files):
1330 Fix typos in docstrings.
1331
1332 * window.el (bw-dir, bw-eqdir, balance-windows)
1333 (split-window-keep-point): Fix typos in docstrings.
1334
1335 * textmodes/org.el (org-allow-space-in-links, org-closed-string)
1336 (org-quote-string, org-calendar-to-agenda-key)
1337 (org-agenda-sorting-strategy, org-agenda-use-time-grid)
1338 (org-show-following-heading, org-tags-column)
1339 (org-use-tag-inheritance, org, org-allow-space-in-links)
1340 (org-usenet-links-prefer-google, org-file-apps-defaults-gnu)
1341 (org-enable-table-editor, org-calc-default-modes)
1342 (org-table-allow-automatic-line-recalculation)
1343 (org-export-html-style, org-export-with-fixed-width)
1344 (org-export-with-sub-superscripts, org-special-keyword)
1345 (org-formula, org-time-grid, org-table-may-need-update)
1346 (org-mode, org-goto-ret, org-goto-left, org-goto-right)
1347 (org-goto-quit, org-get-indentation, org-end-of-item)
1348 (org-move-item-down, org-move-item-up)
1349 (org-renumber-ordered-list, org-todo, org-log-done, org-occur)
1350 (org-remove-occur-highlights, org-read-date, org-goto-calendar)
1351 (org-agenda, org-agenda-day-view, org-agenda-previous-date-line)
1352 (org-agenda-log-mode, org-agenda-toggle-diary)
1353 (org-agenda-toggle-time-grid, org-agenda-cleanup-fancy-diary)
1354 (org-agenda-file-to-end, org-agenda-no-heading-message)
1355 (org-agenda-get-closed, org-format-agenda-item)
1356 (org-cmp-priority, org-cmp-category, org-cmp-time)
1357 (org-agenda-change-all-lines, org-agenda-diary-entry)
1358 (org-scan-tags, org-after-todo-state-change-hook, org-tags-view)
1359 (org-link-search, org-camel-to-words, org-open-file)
1360 (org-remember-handler, org-table-convert-region)
1361 (org-table-move-row-down, org-table-move-row-up)
1362 (org-table-copy-region, org-table-wrap-region)
1363 (org-table-toggle-vline-visibility)
1364 (org-table-get-vertical-vector, org-table-modify-formulas)
1365 (org-table-get-specials, org-recalc-commands)
1366 (org-table-rotate-recalc-marks, org-table-eval-formula)
1367 (orgtbl-make-binding, org-in-invisibility-spec-p, org-cycle)
1368 (org-level-color-stars-only, org-insert-heading):
1369 Fix typos in docstrings.
1370 (last-arg): Add defvar.
1371
1372 * makefile.w32-in (WINS): Add erc.
1373 (MH_E_SRC): Update (copied from lisp/Makefile.in).
1374
1375 2006-01-29 Bill Wohler <wohler@newt.com>
1376
1377 * Makefile.in (MH_E_SRC): Add mh-compat.el, mh-folder.el,
1378 mh-letter.el, mh-limit.el, mh-scan.el, mh-show.el, mh-thread.el,
1379 mh-tool-bar.el, mh-xface.el. Remove mh-customize.el, mh-init.el.
1380 (mh-autoloads): Don't use comments on otherwise empty lines.
1381
1382 2006-01-29 Edward O'Connor <ted@oconnor.cx>
1383
1384 * emulation/viper.el (viper-major-mode-modifier-list): Add
1385 insert-state and vi-state entries for erc-mode.
1386 (viper-go-away, viper-set-hooks): Add and remove
1387 viper-comint-mode-hook from erc-mode-hook as appropriate.
1388
1389 * emulation/viper.el (viper-insert-state-mode-list): Add erc-mode.
1390
1391 2006-01-29 Juanma Barranquero <lekktu@gmail.com>
1392
1393 * bs.el (bs--format-aux): Implement `middle' alignment as
1394 described in the docstring for `bs-attributes-list'.
1395 (bs--get-name): Simplify. Don't pad the buffer name.
1396
1397 2006-01-27 Agustin Martin <agustin.martin@hispalinux.es>
1398
1399 * textmodes/ispell.el (ispell-find-aspell-dictionaries): If no
1400 English aspell dictionary is installed, use the first entry of
1401 ispell-dictionary-alist-1.
1402
1403 2006-01-27 Kevin Rodgers <ihs_4664@yahoo.com>
1404
1405 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
1406 Doc fix.
1407
1408 2006-01-27 Michael Albinus <michael.albinus@gmx.de>
1409
1410 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
1411 for `process-file', in order to let it work for older Emacsen too.
1412
1413 2006-01-27 Eli Zaretskii <eliz@gnu.org>
1414
1415 * international/latexenc.el: Add a suitable `coding:' tag.
1416 (latexenc-find-file-coding-system): Undo last change.
1417
1418 2006-01-27 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
1419
1420 * international/latexenc.el (latexenc-find-file-coding-system):
1421 Make sure latexenc-main-file is a regular file and is readable.
1422
1423 2006-01-27 Andre Spiegel <spiegel@gnu.org>
1424
1425 * vc-rcs.el (vc-rcs-fetch-master-state, vc-rcs-consult-headers):
1426 Pass FILE to vc-user-login-name.
1427
1428 * vc-sccs.el (vc-sccs-state): Pass FILE to vc-user-login-name.
1429
1430 2006-01-27 Nick Roberts <nickrob@snap.net.nz>
1431
1432 * thumbs.el (thumbs-do-thumbs-insertion): Suppress message when
1433 there are no more images to display.
1434 (thumbs-mark, thumbs-unmark): Revert change so that they move to
1435 the next image.
1436
1437 2006-01-26 Richard M. Stallman <rms@gnu.org>
1438
1439 * cus-edit.el (custom-mode): Doc: Use advertised-widget-backward.
1440
1441 * wid-edit.el (advertised-widget-backward): New alias.
1442 (widget-keymap): Use advertised-widget-backward for S-TAB.
1443
1444 * tumme.el: Correct the keywords.
1445 (tumme-dir-max-size): Use defvar.
1446 (tumme-setup-dired-keybindings, tumme-dired): Add autoload cookie.
1447
1448 * simple.el (move-beginning-of-line): Take account of fields.
1449 (clone-indirect-buffer-other-window): Take args like
1450 clone-indirect-buffer, and work like it.
1451
1452 * help-fns.el (describe-function): Don't pass `nil' as default.
1453
1454 * files.el (risky-local-variable-p): Follow var aliases.
1455
1456 * subr.el (lazy-completion-table): Doc fix.
1457
1458 * mail/rmailsum.el (rmail-make-summary-line-1): Don't set
1459 global binding of `line'.
1460
1461 2006-01-25 Andre Spiegel <spiegel@gnu.org>
1462
1463 * vc-hooks.el (vc-user-login-name): Rewritten to handle access via
1464 Tramp.
1465
1466 * vc.el (vc-default-dired-state-info): Pass FILE to
1467 vc-user-login-name.
1468 (vc-default-update-changelog): Don't use vc-user-login-name, we
1469 don't need it here.
1470
1471 * tramp-vc.el (vc-user-login-name): Comment out defadvice, it is
1472 no longer necessary.
1473
1474 2006-01-25 Kenichi Handa <handa@m17n.org>
1475
1476 * international/mule.el (decode-char): Avoid the overhead of
1477 calling utf-lookup-subst-table-for-decode if
1478 utf-translate-cjk-mode is nil.
1479 (encode-char): Avoid the overhead of calling
1480 utf-lookup-subst-table-for-encode if utf-translate-cjk-mode is
1481 nil.
1482
1483 2006-01-22 Kenichi Handa <handa@m17n.org>
1484
1485 * international/mule.el (make-subsidiary-coding-system): Reset
1486 `coding-system-define-form' property of subsidiaries to nil.
1487 Avoid duplicated entry in coding-system-alist.
1488 (make-coding-system): Avoid duplicated entry in
1489 coding-system-alist.
1490 (define-coding-system-alias): Likewise.
1491
1492 2006-01-24 Luc Teirlinck <teirllm@auburn.edu>
1493
1494 * completion.el: Minor fixes in introductory comment.
1495 (completion-def-wrapper): Fix alist.
1496
1497 2006-01-25 Nick Roberts <nickrob@snap.net.nz>
1498
1499 * thumbs.el (thumbs-new-image-size): New function.
1500 (thumbs-increment-image-size-element)
1501 (thumbs-decrement-image-size-element, thumbs-increment-image-size)
1502 (thumbs-decrement-image-size): Delete.
1503 (thumbs-resize-image-1): Rename from thumbs-resize-image. Keep old
1504 temp files and use to resize.
1505 (thumbs-resize-image): Rename from thumbs-resize-image-interactive.
1506 Use increment argument to enlarge/shrink. Preserve point.
1507 (thumbs-shrink-image): Rename from thumbs-resize-image-size-down.
1508 (thumbs-enlarge-image): Rename from thumbs-resize-image-size-up
1509 (thumbs-show-thumbs-list): Set thumbs-buffer to current-buffer.
1510 (thumbs-mark, thumbs-unmark): Preserve point.
1511 (thumbs-modify-image): Keep old temp files and use to modify.
1512 Cleanup old temp files at load time. Preserve point.
1513 (thumbs-view-image-mode-map): Use new command names.
1514
1515 2006-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
1516
1517 * log-view.el (log-view-minor-wrap): First rev is the one at point.
1518
1519 * calendar/cal-menu.el: Avoid macros from calendar.el so as to break
1520 the nastiest part of the cyclic dependency.
1521 (cal-menu-update): Use dotimes and calendar-increment-month.
1522
1523 * calendar/calendar.el: Remove unnecessary leading stars in docstrings.
1524 (calendar-week-start-day): Add an :initializer.
1525 (calendar-mode-map): Use suppress-keymap, and command remapping.
1526 (describe-calendar-mode): Setup xref-stack info for the back button.
1527 (calendar-star-date): Insert before delete.
1528 (calendar-set-mode-line): Add file-modified info if applicable.
1529 (calendar-increment-month): New function.
1530
1531 2006-01-24 Tobias C. Rittweiler <tcr@freebits.de> (tiny change)
1532
1533 * font-lock.el (lisp-font-lock-keywords-2):
1534 Recognize "& keywords" only at word boundaries.
1535
1536 2006-01-24 Nick Roberts <nickrob@snap.net.nz>
1537
1538 * thumbs.el (thumbs-extra-images): New variable. Make it buffer-local
1539 and permanent-local.
1540 (thumbs-max-image-number): New variable.
1541 (thumbs-do-thumbs-insertion): Use them.
1542 (thumbs-per-line): Change default to 4.
1543 (thumbs-marked-list): Rename from thumbs-markedL.
1544 (thumbs-cleanup-thumbsdir, thumbs-delete-images)
1545 (thumbs-rename-images): Use -list instead of L for internal variables.
1546 (thumbs-call-convert): Use call-process instead of shell-command.
1547 (thumbs-insert-thumb): Add filename as help-echo to each image.
1548 (thumbs-show-from-dir): Rename from thumbs-show-all-from-dir.
1549 Give dir to thumbs-show-thumbs-list.
1550 (thumbs-show-thumbs-list): Set default-directory to that of images.
1551 (thumbs-dired-show): Rename from thumbs-dired-show-all.
1552 (thumbs-display-thumbs-buffer, thumbs-show-more-images): New functions.
1553 (thumbs-mode-map): Bind "+" to thumbs-show-more-images.
1554 (thumbs-view-image-mode-map): Bind "^" to thumbs-display-thumbs-buffer.
1555
1556 2006-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
1557
1558 * ses.el (ses-read-cell): Provide a default value.
1559
1560 2006-01-23 Juanma Barranquero <lekktu@gmail.com>
1561
1562 * term/w32-win.el (image-library-alist): Add additional names for
1563 GIF library.
1564
1565 2006-01-23 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
1566
1567 * international/latexenc.el (latexenc-find-file-coding-system):
1568 Add file-regular-p check.
1569
1570 2006-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
1571
1572 * simple.el (clone-buffer): Don't show the new buffer in the same
1573 window.
1574
1575 2006-01-23 Juri Linkov <juri@jurta.org>
1576
1577 * faces.el (link, link-visited): New faces based on default values
1578 of `info-xref' and `info-xref-visited'.
1579
1580 * info.el (info-xref): Inherit from `link'.
1581 (info-xref-visited): Inherit from `link-visited'.
1582
1583 * cus-edit.el (custom-buffer-create-internal): Use widget type
1584 `custom-manual' instead of `info-link' and don't set properties
1585 `button-face' and `mouse-face' explicitly.
1586 (custom-browse-group-tag, custom-browse-variable-tag)
1587 (custom-browse-face-tag): Inherit from widget class
1588 `custom-group-link' instead of `push-button'.
1589 (custom-button-unraised): Inherit from `underline' face.
1590 (custom-link): Inherit from `link' face. Fix doc and group.
1591 (custom-add-parent-links, custom-group-value-create): Don't set
1592 properties `button-face' and `mouse-face' explicitly for
1593 `custom-group-link' widget.
1594 (custom-group-link): Add properties `button-face' and `mouse-face'
1595 to widget definition.
1596 (custom-field-keymap): New variable. Put `custom-field-keymap' to
1597 editable-field's :keymap property.
1598 (custom-mode): Fix docstring: substitute keybindings for
1599 `widget-forward' and `widget-backward' from `widget-keymap',
1600 `widget-complete' from `custom-field-keymap', replace old
1601 `Custom-move-and-invoke' with `widget-move-and-invoke'. Untabify.
1602
1603 * desktop.el (desktop-load-file): Check for `fboundp' before
1604 calling `symbol-function'.
1605
1606 * simple.el (clone-buffer, clone-indirect-buffer)
1607 (clone-indirect-buffer-other-window): Use `read-buffer' instead of
1608 `read-string'. Fix prompts.
1609
1610 * play/doctor.el (doctor-mode-map): Rename from `doc-mode-map'.
1611
1612 2006-01-23 Nick Roberts <nickrob@snap.net.nz>
1613
1614 * thumbs.el (thumbs-file-alist): Avoid creating duplicate entries.
1615
1616 2006-01-22 Luc Teirlinck <teirllm@auburn.edu>
1617
1618 * startup.el (inhibit-splash-screen, initial-scratch-message):
1619 Doc fixes.
1620
1621 2006-01-22 Michael Albinus <michael.albinus@gmx.de>
1622
1623 Sync with Tramp 2.0.52.
1624
1625 * net/tramp.el, net/tramp-ftp.el, net/tramp-util.el,
1626 net/tramp-vc.el: Add code for unloading Tramp. See comment before
1627 `tramp-unload-tramp' for checklist.
1628
1629 * net/tramp.el: Require `timer-funcs' instead of `timer' if in
1630 XEmacs. Contributed by Steve Youngs <steve@sxemacs.org>.
1631 (tramp-unload-file-name-handler-alist)
1632 (tramp-unload-tramp): New defuns.
1633 (tramp-advice-PC-expand-many-files): New defadvice.
1634 (tramp-save-PC-expand-many-files, tramp-setup-complete) Defuns
1635 removed.
1636 (tramp-handle-expand-file-name): Remove double slash.
1637 (tramp-handle-file-attributes-with-ls): Return t as 9th attribute.
1638 It doesn't matter, because it will be converted later on.
1639 (tramp-handle-file-ownership-preserved-p): Rewritten. The old
1640 implementation was just heuristic.
1641 (tramp-post-connection): Set uid and gid properties.
1642 (tramp-convert-file-attributes): Set file's gid change bit.
1643 (tramp-get-remote-uid, tramp-get-remote-gid): New defuns.
1644 (tramp-handle-expand-file-name): Use "~root" for tilde expansion
1645 in case of su(do)? methods. The home directory of the local user
1646 will be taken else.
1647 (tramp-open-connection-telnet)
1648 (tramp-open-connection-rsh, tramp-open-connection-su)
1649 (tramp-open-connection-multi): Set PS1 to "$ ". Otherwise, a
1650 local shell prompt could hurt. Reported by Romain Francoise
1651 <romain@orebokech.com>.
1652 (tramp-let-maybe): Add `edebug-form-spec' property.
1653 (tramp-handle-expand-file-name): Bind `default-directory' locally
1654 to "/" in order to avoid problems with UNC shares or Cygwin
1655 mounts.
1656 (tramp-md5-function): Fix typo in error message.
1657
1658 * net/tramp-ftp.el (tramp-ftp-enable-ange-ftp): New defun.
1659
1660 * net/tramp-util.el (top): Apply `ignore' instead of `identity'
1661 for byte-compiler pacification.
1662
1663 2006-01-22 Andre Spiegel <spiegel@gnu.org>
1664
1665 * vc-rcs.el (vc-rcs-state-heuristic): Use file-attributes with
1666 ID-FORMAT `string'. This allows us to get rid of
1667 `vc-user-login-name UID'.
1668
1669 * vc-sccs.el (vc-sccs-state-heuristic): Likewise.
1670
1671 2006-01-22 John Paul Wallington <jpw@pobox.com>
1672
1673 * hl-line.el (hl-line-highlight, hl-line-move): Doc fixes.
1674
1675 2006-01-21 Martin Rudalics <rudalics@gmx.at>
1676
1677 * emacs-lisp/find-func.el (find-definition-noselect)
1678 (find-variable-noselect): Search variables in C source code too.
1679 (find-function-C-source, find-function-noselect, find-function)
1680 (find-function-other-frame, find-variable-noselect, find-variable)
1681 (find-variable-other-frame, find-variable-at-point):
1682 Fix docstrings.
1683
1684 2006-01-21 Francesco Potorti` <pot@gnu.org>
1685
1686 * mail/rmailout.el (rmail-output): Don't use content-type if it is nil.
1687
1688 2006-01-21 Agustin Martin <agustin.martin@hispalinux.es>
1689
1690 * textmodes/flyspell.el (flyspell-emacs-popup, flypell-xemacs-popup):
1691 Default to disabling the "Save affix" question.
1692
1693 2006-01-21 Marien Zwart <marienz@gentoo.org> (tiny change)
1694
1695 * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as
1696 the first arg to run-python.
1697
1698 2006-01-21 Eli Zaretskii <eliz@gnu.org>
1699
1700 * startup.el (command-line-1): Handle --no-desktop if desktop.el
1701 is not loaded.
1702
1703 2006-01-20 Jay Belanger <belanger@truman.edu>
1704
1705 * calc/calcalg2.el (calc-sum-rec): Fix the sum when the lower
1706 limit is 0.
1707
1708 * calc/calc-arith.el (math-add-symb-fancy): Check the length of
1709 the correct variable.
1710
1711 2006-01-20 Carsten Dominik <dominik@science.uva.nl>
1712
1713 * textmodes/org.el (org-open-at-point): Fixed bug with matching a
1714 link. Fixed buggy argument sequence in call to `org-view-tags'.
1715 (org-compile-prefix-format): Set `org-prefix-has-tag'.
1716 (org-prefix-has-tag): New variable.
1717 (org-format-agenda-item): Remove tags from headline if
1718 appropriate.
1719 (org-agenda-remove-tags-when-in-prefix): New option.
1720 (org-get-tags-at): New function.
1721
1722 2006-01-20 Nick Roberts <nickrob@snap.net.nz>
1723
1724 * thumbs.el (thumbs-buffer): New variable. Make it buffer local.
1725 (thumbs-find-image): Move image name and number from buffer name
1726 to mode name. Set thumbs-buffer. Preserve point so that large
1727 images remain visible.
1728 (thumbs-file-alist): Construct list in thumbs-buffer and reverse
1729 order.
1730 (thumbs-show-image-num): Get image from thumbs-file-alist. Set
1731 mode name.
1732 (thumbs-next-image, thumbs-previous-image): Make them work.
1733
1734 2006-01-19 Luc Teirlinck <teirllm@auburn.edu>
1735
1736 * cus-edit.el (custom-buffer-create-internal): State in the text above
1737 the whole buffer buttons that they do not operate on hidden items.
1738 (custom-face-menu): Use `custom-face-save' instead of
1739 `custom-face-save-command'.
1740 (custom-face-save-command): Make it an alias for `custom-face-save'
1741 and declare it obsolete.
1742 (custom-face-save): Doc fix.
1743
1744 * dired.el (dired-no-confirm): Add quote.
1745 (dired-subdir-alist-pre-R): Add quote in
1746 `make-variable-buffer-local' form and remove unbalanced parenthesis.
1747
1748 2006-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
1749
1750 * textmodes/table.el (table-mode-indicator): Typo in last change.
1751
1752 2006-01-19 Richard M. Stallman <rms@gnu.org>
1753
1754 * outline.el (hide-leaves): Don't call outline-end-of-heading.
1755 Fixes bug reported in Nov 2005.
1756
1757 * isearch.el (isearch-forward): Doc fix.
1758
1759 * dired.el (dired-move-to-filename-regexp): Define as alias.
1760 (dired-no-confirm): Use defcustom.
1761 (dired-subdir-alist-pre-R): Put defvar at top level.
1762
1763 * battery.el (battery-linux-proc-acpi): Handle "last full capacity".
1764
1765 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
1766 Mark as risky.
1767
1768 * simple.el (set-mark-command): Doc fix.
1769 (clone-indirect-buffer-other-window):
1770 Read arg like clone-indirect-buffer.
1771 (move-beginning-of-line): Skip invisible newlines.
1772
1773 2006-01-19 Masatake YAMATO <jet@gyve.org>
1774
1775 * progmodes/cpp.el (cpp-edit-load): Make the order of
1776 listed conditions in a base C code buffer and its associate
1777 CPP Edit buffer the same.
1778
1779 2006-01-19 Kenichi Handa <handa@m17n.org>
1780
1781 * mail/rmail.el (rmail-enable-mime): Docstring fixed.
1782 (rmail-mime-feature): Likewise.
1783 (rmail-require-mime-maybe): Use display-warning to show a warning
1784 message.
1785
1786 * international/mule.el (auto-coding-regexp-alist-lookup): New fun.
1787 (find-auto-coding): Use auto-coding-regexp-alist-lookup.
1788
1789 2006-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
1790
1791 * array.el: Move defvars out of eval-when-compile.
1792 (array-make-template): Replace undeclared global var with a local one.
1793 (array-mode): Inline initialization functions.
1794 (array-init-local-variables, array-init-max-row)
1795 (array-init-max-column, array-init-columns-per-line)
1796 (array-init-field-width, array-init-rows-numbered)
1797 (array-init-line-length, array-init-lines-per-row): Remove.
1798
1799 * play/doctor.el: Move defvars out of eval-when-compile. Use dolist.
1800 (doc-mode-map): Define explicitly.
1801 (doctor-txtype): Use mapc.
1802
1803 * textmodes/table.el: Move defvars out of eval-when-compile.
1804 Remove harmful code meant to avoid byte-compiler warnings.
1805 (table-fixed-mode-indicator): Remove. Use a more complex mode-line
1806 specification that checks table-fixed-width-mode directly.
1807 (table-recognize-region, table-recognize-cell):
1808 Use restore-buffer-modified-p.
1809 (table-fixed-width-mode): Remove code that refreshes
1810 table-fixed-mode-indicator.
1811 (*table--cell-describe-bindings, *table--cell-describe-mode):
1812 Avoid obsolete name print-help-return-message.
1813 (table--test-cell-list): Don't use replace-regexp from elisp.
1814 (table--point-entered-cell-function, table--point-left-cell-function):
1815 Don't set table-fixed-mode-indicator, use force-mode-line-update.
1816
1817 * textmodes/org.el: Move defvars out of eval-when-compile. Move code
1818 that was after the end of file. Use buffer-file-name variable.
1819 (org-timestamp-change): Use with-current-buffer.
1820 (org-todo-list): Don't unnecessarily define a new buffer-local var.
1821 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused arg
1822 `file'.
1823
1824 * progmodes/fortran.el: Move defvars out of eval-when-compile.
1825 (fortran-break-line): Remove unused var `opoint'.
1826 (fortran-abbrev-start): Obey help-event-list.
1827
1828 2006-01-18 Jesper Harder <harder@phys.au.dk>
1829
1830 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring.
1831
1832 2006-01-18 Masatake YAMATO <jet@gyve.org>
1833
1834 * progmodes/make-mode.el (makefile-imake-mode): New mode
1835 derived from makefile-mode.
1836 (makefile-imake-mode-syntax-table): New syntax table
1837 derived from makefile-mode-syntax-table.
1838 (makefile-mode): Write about makefile-imake-mode in doc string.
1839 (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode.
1840 (makefile-imake-font-lock-keywords): New font lock keywords.
1841
1842 * files.el (auto-mode-alist): Add Imakefile.
1843
1844 2006-01-17 Agustin Martin <agustin.martin@hispalinux.es>
1845
1846 * textmodes/flyspell.el (ispell-kill-ispell-hook): Add to the hook when
1847 loading the file rather than when turning on flyspell-mode.
1848
1849 2006-01-16 Luc Teirlinck <teirllm@auburn.edu>
1850
1851 * cus-edit.el (customize-rogue): Minor doc fix.
1852
1853 2006-01-17 Juri Linkov <juri@jurta.org>
1854
1855 * dired-aux.el (dired-diff): Use dired-dwim-target-directory
1856 instead of the file at the mark as default if the file at the mark
1857 is the same as the file at point or if dired-dwim-target-directory
1858 is not the same as the current directory and the mark is not active.
1859
1860 * log-view.el (log-view-minor-wrap): Use the same logic to get
1861 revisions as `log-view-diff'.
1862
1863 * info.el (Info-revert-find-node): Check for Info-current-file
1864 before preserving new-history.
1865
1866 * man.el (Man-heading-regexp): Add `/'.
1867
1868 * textmodes/sgml-mode.el: Add `coding: iso-2022-7bit' cookie.
1869 (html-mode): Set `sentence-end-base' instead of `sentence-end'.
1870
1871 2006-01-16 Juri Linkov <juri@jurta.org>
1872
1873 * faces.el (mode-line-faces): New defgroup.
1874 (mode-line-highlight): Move definition after new defgroup.
1875 (mode-line, mode-line-inactive, mode-line-highlight):
1876 Replace :group `modeline' with `mode-line-faces'.
1877 (mode-line-buffer-id): New face.
1878 (modeline-buffer-id): New face alias.
1879 (vertical-border): Remove :group `modeline'.
1880
1881 * bindings.el (propertized-buffer-identification): Use face
1882 `mode-line-buffer-id' instead of `Buffer-menu-buffer'.
1883 (mode-line-next-buffer, mode-line-previous-buffer): New functions.
1884 (mode-line-buffer-identification-keymap): For mouse-1 replace
1885 `mode-line-unbury-buffer' with `mode-line-previous-buffer'.
1886 Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for
1887 mouse-3.
1888
1889 * buff-menu.el (buffer-menu-buffer) <defface>: Renamed from
1890 Buffer-menu-buffer. Doc fix.
1891 (Buffer-menu-buffer): Face alias to buffer-menu-buffer.
1892 (list-buffers-noselect): Use `buffer-menu-buffer' face instead of
1893 `Buffer-menu-buffer'.
1894
1895 * info.el (Info-mode-line-node-keymap): New defvar.
1896 (Info-set-mode-line): Use `stringp' to check Info-current-file.
1897 Propertize Info-current-node with `mode-line-buffer-id' and
1898 `mode-line-highlight' faces and `Info-mode-line-node-keymap'.
1899
1900 * time.el (display-time-mail-face): Replace :group `faces' with
1901 `mode-line-faces'.
1902
1903 2006-01-16 Kenichi Handa <handa@m17n.org>
1904
1905 * international/code-pages.el: Add autoload cookies for cp125[0345678].
1906
1907 * language/european.el (cp1252): New alias for windows-1252.
1908
1909 * international/mule.el (autoload-coding-system): Prepare for EOL
1910 variants.
1911
1912 2006-01-15 Dan Nicolaescu <dann@ics.uci.edu>
1913
1914 * term.el (term-raw-map): Add mapping for insert.
1915 (term-send-insert): New.
1916 (term-mode): Make variables local here instead of doing it in
1917 `term-emulate-terminal'.
1918 (term-emulate-terminal): Delete incorrect optimization for cr+lf.
1919 Scroll reverse needs to take into account the scroll region.
1920 Saving and restoring the cursor should save the color attributes too.
1921 (term-reset-terminal): Reset the scroll region.
1922 (term-handle-ansi-escape): Cursor up and down should take into
1923 account the scroll region.
1924 (term-set-scroll-region): Rename from `term-scroll-region'.
1925 Move to 0,0 after setting the region.
1926 (term-handle-scroll): Handle scroll up.
1927 (term-down): Fix off by one error.
1928 (term-delete-lines): Do not delete outside the scroll region.
1929 (term-insert-lines): Take into account the scroll region.
1930
1931 2006-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
1932
1933 * textmodes/ispell.el (ispell-internal-change-dictionary)
1934 (ispell-change-dictionary): Undo most of last change of 2006-01-13.
1935 (start, end): Move declaration outside of eval-when-compile.
1936
1937 * textmodes/flyspell.el (flyspell-kill-ispell-hook): New fun.
1938 (flyspell-mode-on): Use it.
1939
1940 * textmodes/ispell.el (ispell-kill-ispell): Run new hook
1941 ispell-kill-ispell-hook.
1942
1943 2006-01-14 Luc Teirlinck <teirllm@auburn.edu>
1944
1945 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
1946 (Custom-reset-saved): Do not ask for confirmation in single option
1947 buffers.
1948
1949 2006-01-13 Richard M. Stallman <rms@gnu.org>
1950
1951 * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement.
1952
1953 2006-01-13 Romain Francoise <romain@orebokech.com>
1954
1955 * add-log.el (add-change-log-entry, change-log-merge):
1956 Conditionally use `hard-newline'.
1957
1958 2006-01-13 Martin Rudalics <rudalics@gmx.at> (tiny change)
1959
1960 * wid-edit.el (widget-field-end): If the overlay is no longer
1961 associated with a buffer, behave as if the overlay didn't exist.
1962
1963 * cus-edit.el (custom-add-see-also, custom-add-parent-links):
1964 Make sure the links use the `custom-link' face.
1965
1966 2006-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
1967
1968 * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
1969 (ld-script-mode): Don't set indent-line-function since we don't
1970 have one.
1971
1972 2006-01-13 Carsten Dominik <dominik@science.uva.nl>
1973
1974 * textmodes/org.el (org-open-file): Use mailcap for selecting an
1975 application.
1976 (org-file-apps-defaults-gnu): Use mailcap as the default for
1977 selecting an application on a UNIX system.
1978 (org-agenda-show-tags): New command.
1979 (org-table-insert-hline): Keep cursor in current table line.
1980 (org-table-convert): Offset effect of modifying
1981 `org-table-insert-hline'.
1982 (org-format-agenda-item): New optional argument TAG.
1983 (org-compile-prefix-format): Handle %T format for the tag.
1984 (org-expand-wide-chars): New function.
1985 (org-table-insert-row, org-table-insert-hline):
1986 Use `org-expand-wide-chars'.
1987 (org-open-file): Fix bug in program launch.
1988 (org-get-time-of-day): Fix bug with times before 1am.
1989 (org-agenda-menu): Add tags commands.
1990
1991 2006-01-13 Agustin Martin <agustin.martin@hispalinux.es>
1992
1993 * textmodes/ispell.el (ispell-init-process): Include the used
1994 dictionary in ispell process start message.
1995 (ispell-internal-change-dictionary): When flyspell-mode is active
1996 and dictionary is changed, make sure ispell process is restarted
1997 and flyspell word cache cleared out for the current buffer.
1998 (ispell-change-dictionary): Make sure flyspell word cache is
1999 cleared out in all buffers with active flyspell mode when
2000 dictionary is globally changed.
2001 Call ispell-internal-change-dictionary after dictionary change.
2002
2003 2006-01-13 Eli Zaretskii <eliz@gnu.org>
2004
2005 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
2006
2007 * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in.
2008 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright
2009 years. Fix small differences wrt Makefile.in.
2010 (recompile): Use --eval '(batch-byte-recompile-directory 0)', like
2011 Makefile.in does.
2012
2013 2006-01-12 Bill Wohler <wohler@newt.com>
2014
2015 * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with
2016 mh-search.el.
2017
2018 2006-01-12 Masatake YAMATO <jet@gyve.org>
2019
2020 * progmodes/ld-script.el: Update copyright year.
2021
2022 2006-01-12 Chong Yidong <cyd@stupidchicken.com>
2023
2024 * cus-theme.el (custom-theme-add-variable, custom-theme-add-face):
2025 Don't add widget if setting undefined.
2026
2027 2006-01-12 John Paul Wallington <jpw@pobox.com>
2028
2029 * help-fns.el (describe-variable): Remove newlines from void
2030 variable output.
2031
2032 2006-01-13 Nick Roberts <nickrob@snap.net.nz>
2033
2034 * wdired.el (wdired-mode-map): Add help echo for
2035 wdired-abort-changes.
2036
2037 * man.el (Man-file-name-regexp): Adjust for a list of files.
2038
2039 2006-01-12 Masatake YAMATO <jet@gyve.org>
2040
2041 * progmodes/ld-script.el (auto-mode-alist): Support
2042 suffix conventions used in netbsd and eCos.
2043
2044 2006-01-11 Luc Teirlinck <teirllm@auburn.edu>
2045
2046 * cus-edit.el (custom-reset-menu, custom-buffer-create-internal)
2047 (custom-variable-menu, custom-face-menu, custom-group-menu)
2048 (Custom-mode-menu): Change names of menu items. (As discussed on
2049 emacs-devel.)
2050 (custom-face-menu): Add "Undo Edits" item.
2051
2052 * startup.el (init-file-user): defcustom -> defvar.
2053
2054 * tooltip.el (tooltip-mode): Doc fix.
2055
2056 2006-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
2057
2058 * reveal.el (reveal-post-command): window-buffer signals an error on
2059 dead windows rather than returning nil.
2060 (reveal-open-new-overlays): An overlay might die while we open others.
2061
2062 2006-01-11 Bill Wohler <wohler@newt.com>
2063
2064 * cus-dep.el (generated-custom-dependencies-file): Fix typo and
2065 phrasing in docstring.
2066
2067 * Makefile.in (MH_E_SRC): Rename from MH-E-SRC since the dashes
2068 can give some systems gas. Add new file mh-buffers.el.
2069
2070 2006-01-06 Masatake YAMATO <jet@gyve.org>
2071
2072 * font-lock.el (cpp-font-lock-keywords): Font lock keywords for
2073 C preprocessor forward ported from GNU Emacs 21.2.
2074
2075 * progmodes/asm-mode.el (asm-font-lock-keywords):
2076 Use `cpp-font-lock-keywords'.
2077
2078 * progmodes/ld-script.el (ld-script-font-lock-keywords): Ditto.
2079
2080 * progmodes/ld-script.el (auto-mode-alist): Use \\> instead
2081 of $ for "\\.ld[s]?".
2082
2083 2006-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2084
2085 * progmodes/tcl.el (tcl-indent-command): Use indent-for-tab-command.
2086 (tcl-indent-line): Return `noindent' if inside a string.
2087
2088 * progmodes/flymake.el (flymake-split-string): Remove more than one
2089 empty string at beg/end of the result.
2090 (flymake-find-buildfile, flymake-find-possible-master-files):
2091 Use expand-file-name.
2092 (flymake-fix-file-name): Don't replace \ with / and don't remove ./
2093 since expand-file-name does it for us. Use directory-file-name.
2094 (flymake-ler-get-full-file, flymake-ler-get-file, flymake-ler-get-line)
2095 (flymake-ler-get-type, flymake-ler-get-text)
2096 (flymake-ler-make-ler): Remove. Replace by defstruct. Update callers.
2097 (flymake-current-line-no): Remove spurious interactive spec.
2098 (flymake-delete-temp-directory): Remove unused var `slash-pos'.
2099 (flymake-check-include): Remove arg inc-path merged into inc-name.
2100 (flymake-check-patch-master-file-buffer): Fit in 80 columns.
2101 Arg regexp-list replaced by a simple regexp.
2102 (flymake-master-make-header-init, flymake-master-tex-init):
2103 Correspondingly replace regexp-list with a regexp. Fix regexp.
2104
2105 2006-01-10 Simon Josefsson <jas@extundo.com>
2106
2107 * mail/smtpmail.el (smtpmail-try-auth-methods): Add comment
2108 describing AUTH PLAIN fix.
2109
2110 2006-01-10 Thien-Thi Nguyen <ttn@gnu.org>
2111
2112 * mail/emacsbug.el (report-emacs-bug-text-prompt): Delete var.
2113 (report-emacs-bug): Don't record initial prompt text.
2114 Instead, add text properties to prompting text.
2115 (report-emacs-bug-hook): Delete prompting text.
2116
2117 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
2118
2119 * progmodes/flymake.el (flymake-find-buildfile): Remove invariant arg
2120 `dirs'. Adjust callers.
2121
2122 2006-01-09 John Paul Wallington <jpw@gnu.org>
2123
2124 * cus-edit.el (custom-comment) <defface>: Add TTY definitions.
2125
2126 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
2127
2128 * reveal.el (reveal-open-new-overlays): New extracted fun.
2129 (reveal-close-old-overlays): Idem. Check overlays's liveness before
2130 using them. Simplify the code.
2131 (reveal-post-command): Use them. Fix up obsolete windows in
2132 reveal-open-spots.
2133
2134 * progmodes/flymake.el: Use `require' rather than autoload for
2135 XEmacs's overlays.
2136 (flymake-get-common-file-prefix, flymake-build-relative-filename):
2137 Delete. Use file-relative-name instead.
2138 (flymake-get-syntax-check-program-args, flymake-perl-init):
2139 Simplify the resulting code.
2140
2141 * log-view.el (log-view-file-re, log-view-message-re): Add support
2142 for DaRCS output.
2143
2144 2006-01-09 Alex Schroeder <alex@gnu.org>
2145
2146 * mail/rmail.el (rmail-reply-regexp): Also ignore mailing list
2147 identifiers sometimes added in square brackets at the beginning of
2148 subject lines.
2149
2150 2006-01-07 Richard M. Stallman <rms@gnu.org>
2151
2152 * cus-edit.el (Custom-set, Custom-save): Doc fix.
2153 (Custom-reset-current, Custom-reset-saved): Change question text.
2154 (Custom-reset-standard): Likewise.
2155 (custom-variable-reset-saved): Doc fix.
2156
2157 2006-01-07 Eli Zaretskii <eliz@gnu.org>
2158
2159 * startup.el (init-file-user): Doc fix.
2160
2161 2006-01-07 Alex Schroeder <alex@gnu.org>
2162
2163 * mail/rmail.el (rmail-current-subject): New function.
2164 (rmail-current-subject-regexp): New function.
2165 (rmail-next-same-subject): Use it.
2166
2167 * mail/rmailsum.el (rmail-summary-by-topic):
2168 Use rmail-current-subject and rmail-current-subject-regexp.
2169 (rmail-summary-next-same-subject): Ditto.
2170
2171 * net/rcirc.el (rcirc-send-input): No longer check whether the
2172 process is open, since not all commands need an open process.
2173 (rcirc-send-string): Check whether the process is open before
2174 sending anything.
2175 (rcirc-ignore-list): New option.
2176 (rcirc-ignore-list-automatic): New variable.
2177 (rcirc-print): Take rcirc-ignore-list into account.
2178 (rcirc-cmd-ignore): New command.
2179 (rcirc-ignore-update-automatic): New function.
2180 (rcirc-handler-PART, rcirc-handler-QUIT): Use it to maintain the
2181 list if ignored nicks.
2182 (rcirc-handler-NICK): Ditto, and also ignore the new nick.
2183
2184 2006-01-06 David Reitter <david.reitter@gmail.com>
2185
2186 * mail/emacsbug.el (report-emacs-bug): Let explanations correctly
2187 reflect the address to which the report will be sent.
2188
2189 2006-01-06 Eli Zaretskii <eliz@gnu.org>
2190
2191 * progmodes/ld-script.el (auto-mode-alist): Recognize linker
2192 scripts whose file-name extensions are "\.x[bdsru]?[cn]?$".
2193
2194 2006-01-01 Michael Ernst <mernst@alum.mit.edu> (tiny changes)
2195
2196 * textmodes/tildify.el: Fix typos (misspellings) in the commentary.
2197
2198 * emacs-lisp/find-func.el (find-definition-noselect): Fix typo in
2199 the doc string: "functoin" => "function".
2200 * ldefs-boot.el: Likewise.
2201
2202 * textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
2203 message text: "Duplicat" => "Duplicate".
2204
2205 2006-01-06 Sven Joachim <svenjoac@gmx.de> (tiny change)
2206
2207 * files.el (basic-save-buffer-2): If backing-up failed, reset
2208 buffer-backed-up to nil.
2209
2210 2006-01-06 Nick Roberts <nickrob@snap.net.nz>
2211
2212 * progmodes/gud.el (gdb-script-skip-to-head)
2213 (gdb-script-calculate-indentation): Indent for breakpoint command
2214 lists also.
2215
2216 2006-01-05 Bill Wohler <wohler@newt.com>
2217
2218 * Makefile.in (compile-always): Add mh-autoloads dependency.
2219 (bootstrap): Remove mh-autoloads dependency, as compile dependency
2220 provides it.
2221 (updates): Remove mh-autoloads dependency, since it probably has
2222 already run recently (via recompile).
2223
2224 2006-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
2225
2226 * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
2227 argument `force' to disable the flyspell-last-buffer optimization.
2228 (flyspell-mode-on): Use it.
2229
2230 * progmodes/flymake.el (flymake-get-cleanup-function): Default to
2231 flymake-simple-cleanup.
2232 (flymake-allowed-file-name-masks): Use this new default.
2233 All the functions are now called in the right buffer rather than
2234 passing the buffer as argument.
2235 (flymake-process-sentinel): Switch to buffer before calling cleanup.
2236 (flymake-parse-err-lines): Remove redundant buffer arg.
2237 (flymake-get-program-dir): Comment out unused function.
2238 (flymake-start-syntax-check, flymake-start-syntax-check-process):
2239 Remove redundant buffer argument.
2240 (flymake-get-real-file-name, flymake-simple-java-cleanup)
2241 (flymake-simple-cleanup, flymake-master-cleanup): Remove buffer arg.
2242
2243 2006-01-05 Richard M. Stallman <rms@gnu.org>
2244
2245 * info.el (Info-find-node): Don't record previous node if have none.
2246 (info): Go to directory only if history is empty.
2247
2248 * simple.el (mark): Doc fix.
2249
2250 2006-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2251
2252 * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
2253 already of desired type.
2254 (mac-ae-list): Coerce parameter to "list" type.
2255 (mac-dispatch-apple-event): Replace cadr part of event with a
2256 dummy position so that event-start returns it.
2257
2258 2006-01-05 Carsten Dominik <dominik@science.uva.nl>
2259
2260 * textmodes/org.el (org-end-of-subtree): New function.
2261 (org-cycle, org-subtree-end-visible-p, org-scan-tags):
2262 Use `org-end-of-subtree'.
2263 (org-agenda, org-agenda-convert-date): Protect calls to
2264 `fit-window-to-buffer'.
2265 (org-tags-view): Force matching of sublevels when doing a
2266 todo-only search. Define the correct redo command, including the
2267 arguments.
2268 (org-agenda-redo): Display message.
2269 (org-check-for-org-mode): New function.
2270 (org-agenda-type): New variable.
2271 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
2272 Set `org-agenda-type'.
2273 (org-agenda-check-type): New function.
2274 (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
2275 (org-agenda-week-view, org-agenda-day-view)
2276 (org-agenda-next-date-line, org-agenda-previous-date-line)
2277 (org-agenda-log-mode, org-agenda-toggle-diary)
2278 (org-agenda-toggle-time-grid, org-agenda-date-later)
2279 (org-agenda-date-prompt, org-agenda-diary-entry)
2280 (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
2281 (org-agenda-convert-date, org-agenda-menu):
2282 Use `org-agenda-check-type'.
2283 (org-make-overlay, org-delete-overlay)
2284 (org-detatch-overlay, org-move-overlay, org-overlay-put):
2285 New compatibility functions.
2286 (org-calendar-select-mouse): New command.
2287
2288 2006-01-04 Chong Yidong <cyd@stupidchicken.com>
2289
2290 * cus-edit.el (Custom-reset-current, Custom-reset-saved)
2291 (Custom-reset-standard): Fix y-or-n-p messages.
2292 (custom-link): New face for links.
2293 (custom-buffer-create-internal, custom-manual): Use it.
2294 (custom-face-save): Push to theme-face before setting face spec.
2295
2296 * wid-edit.el (widget-default-mouse-face-get): New function.
2297 (widget-specify-button): Handle mouse-face like button-face.
2298
2299 * custom.el (load-theme): Clear old theme settings if reloading.
2300
2301 2006-01-03 Luc Teirlinck <teirllm@auburn.edu>
2302
2303 * cus-edit.el (custom-buffer-create-internal): Move whole buffer
2304 "Erase Customization" button back to same position it occupies in
2305 the individual State menus.
2306
2307 2006-01-04 Kim F. Storm <storm@cua.dk>
2308
2309 * wid-edit.el (key-sequence): Rework widget to read key binding
2310 using `kbd' syntax. Use C-q to insert literal key, event, or code.
2311 (widget-key-sequence-default-value): Default value for empty sequence.
2312 (widget-key-sequence-map): New map for reading key binding. Bind C-q.
2313 (widget-key-sequence-read-event): New command for C-q.
2314 (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
2315 (widget-key-sequence-value-to-external): New functions.
2316
2317 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
2318
2319 * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
2320 Use expand-file-name.
2321 (flymake-delete-temp-directory): Use expand-file-name,
2322 file-name-directory, and directory-file-name.
2323 (flymake-strrchr): Delete.
2324 (flymake-start-syntax-check): Don't pass the redundant buffer argument
2325 to the init-f function.
2326 (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
2327 (flymake-init-find-buildfile-dir)
2328 (flymake-init-create-temp-source-and-master-buffer-copy)
2329 (flymake-simple-make-init-impl, flymake-simple-make-init)
2330 (flymake-master-make-init, flymake-master-make-header-init)
2331 (flymake-simple-make-java-init, flymake-simple-ant-java-init)
2332 (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
2333 (flymake-xml-init): Remove corresponding redundant buffer argument.
2334 (flymake-allowed-file-name-masks): Remove last elems that are equal to
2335 the default anyway. Clean up regexps.
2336
2337 * progmodes/flymake.el (flymake-temp-source-file-name)
2338 (flymake-master-file-name, flymake-temp-master-file-name)
2339 (flymake-base-dir): New buffer-local vars.
2340 (flymake-buffer-data, flymake-get-buffer-value)
2341 (flymake-set-buffer-value): Replace those hash-tables by the new
2342 buffer-local vars. Update callers.
2343
2344 * progmodes/flymake.el (flymake-check-start-time)
2345 (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
2346 (flymake-last-change-time, flymake-new-err-info, flymake-timer):
2347 Move definition, so we can remove redundant earlier declaration.
2348 (flymake-replace-regexp-in-string, flymake-split-string)
2349 (flymake-get-temp-dir): Use defalias.
2350 (flymake-popup-menu): Remove `pos' argument. Use posn-at-point.
2351 (flymake-xemacs-window-edges): Remove unused function.
2352 (flymake-get-point-pixel-pos): Move.
2353 (flymake-pid-to-names, flymake-reg-names)
2354 (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
2355 Replace by a simple list flymake-processes and by process-buffer.
2356 Update callers. Other than simplify the code, it uses buffers rather
2357 than buffer-names so it doesn't get confused by uniquify.
2358 (flymake-buffer-data): The global value should just be nil.
2359
2360 * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
2361 Optimize the body of a defalias like any other code.
2362
2363 * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
2364 Make sure we've setup font-lock's vars. It may influence which
2365 function we then call.
2366 (font-lock-default-fontify-buffer): Don't bother calling set-defaults
2367 here since it's too late anyway.
2368
2369 2006-01-03 Romain Francoise <romain@orebokech.com>
2370
2371 * startup.el (fancy-splash-tail, normal-splash-screen):
2372 Update copyright year.
2373
2374 2006-01-02 J.D. Smith <jdsmith@as.arizona.edu>
2375
2376 * mouse.el (mouse-drag-track): Rename, from
2377 `mouse-drag-region-1'. Includes optional argument required to
2378 enable post-drag event processing (e.g. delete region keys).
2379 Can be used without this argument to track a mouse region and operate
2380 on it as soon as the drag completes.
2381 (mouse-drag-region): Use `mouse-drag-track'.
2382
2383 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
2384
2385 * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
2386 Move to `custom-buffer' group.
2387
2388 * cus-theme.el: Rewrite the Custom New Theme Mode interface.
2389 (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
2390 (custom-theme-insert-face-marker, custom-theme-variable-menu)
2391 (custom-theme-face-menu): New variables.
2392 (custom-theme-add-variable, custom-theme-variable-action)
2393 (custom-variable-reset-theme, custom-theme-delete-variable)
2394 (custom-face-reset-theme, custom-theme-face-action)
2395 (custom-theme-delete-face, custom-theme-merge-theme)
2396 (custom-theme-add-face, custom-theme-visit-theme): New functions.
2397
2398 2006-01-01 Chong Yidong <cyd@stupidchicken.com>
2399
2400 * custom.el: Move Custom Themes commentary to start of theme code.
2401 (custom-known-themes): Rename `standard' theme to `changed'.
2402 (custom-push-theme): Caller no longer specifies what theme to use
2403 when doing `reset'---the setting is simply removed from the theme.
2404 Delete MODE from `theme-value' and `theme-settings' properties.
2405 (custom-declare-theme): Ignore &rest args since we don't use them.
2406
2407 (custom-loaded-themes): Delete variable.
2408 (custom-theme-load-themes, custom-theme-loaded-p)
2409 (custom-theme-value): Delete functions.
2410
2411 (custom-declare-theme): Signal error on invalid theme names.
2412 (provide-theme): custom-loaded-themes was deleted.
2413 (load-theme): Load the file unconditionally.
2414 (enable-theme): Call `load-theme' if theme is undefined.
2415 (custom-enabled-themes): Only update value for successful loads.
2416 (disable-theme): Complete from enabled themes when interactive.
2417 (custom-variable-theme-value): Calculate theme value directly.
2418
2419 (custom-theme-reset-variables, custom-reset-variables): Mark as
2420 XEmacs compatibility functions. We don't actually use these.
2421
2422 * cus-edit.el (custom-variable-state-set):
2423 Use custom-variable-theme-value instead of custom-theme-value.
2424 (custom-face-state-set): Rename `standard' theme to `changed'.
2425 (custom-save-variables, custom-save-faces): Delete unneeded
2426 references to custom-reset-variables.
2427 (custom-save-resets): Delete function.
2428 (custom-save-variables, custom-save-faces): MODE argument deleted.
2429 (custom-save-variables, custom-save-faces): Ignore theme values.
2430
2431 * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
2432 compatibility function.
2433
2434 2006-01-01 Richard M. Stallman <rms@gnu.org>
2435
2436 * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
2437 (Custom-reset-current, Custom-reset-saved): Likewise.
2438 (Custom-reset-standard): Show message if aborted.
2439 (custom-mode): Doc fix, describing those commands.
2440
2441 * mouse.el (mouse-drag-region-1): When following link via mouse-2,
2442 put on event-kind property.
2443
2444 2005-12-31 Chong Yidong <cyd@stupidchicken.com>
2445
2446 * custom.el (provide-theme): Ban `user' theme name.
2447 (custom-enabling-themes): New variable.
2448 (enable-theme): Don't enable user if custom-enabling-themes is t.
2449 (custom-enabled-themes): Make it a defcustom.
2450 (custom-theme-recalc-face): No-op if face is undefined.
2451
2452 * cus-edit.el (custom-button-mouse): New variable.
2453 (custom-button-mouse): New face.
2454 (custom-raised-buttons, custom-mode): Use it.
2455
2456 * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
2457
2458 2005-12-31 Eli Zaretskii <eliz@gnu.org>
2459
2460 * progmodes/gud.el (gud-display-line): Support hl-line in the
2461 source buffer.
2462
2463 2005-12-31 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
2464
2465 * mouse.el (mouse-drag-window-above): Verify that the found window
2466 overlaps with the given window in the horizontal dimension.
2467
2468 2005-12-31 Eli Zaretskii <eliz@gnu.org>
2469
2470 * Makefile.in (cvs-update): New target.
2471
2472 * makefile.w32-in (cvs-update): Ditto.
2473
2474 2005-12-30 Chong Yidong <cyd@stupidchicken.com>
2475
2476 * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
2477 (custom-new-theme-mode-map): New variable.
2478
2479 2005-12-30 Richard M. Stallman <rms@gnu.org>
2480
2481 * custom.el (custom-load-themes): Function deleted.
2482
2483 * cus-edit.el (custom-save-loaded-themes): Function deleted.
2484 (custom-save-variables): Don't delete or add custom-load-themes call.
2485
2486 2005-12-30 Stefan Monnier <monnier@iro.umontreal.ca>
2487
2488 * cus-start.el: Add `visible-cursor'.
2489
2490 * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
2491 (flymake-parse-output-and-residual): Remove `source-buffer' argument.
2492 (flymake-process-filter): Switch to buffer before calling it instead.
2493 (flymake-post-syntax-check, flymake-highlight-err-lines)
2494 (flymake-delete-own-overlays, flymake-parse-err-lines)
2495 (flymake-start-syntax-check, flymake-start-syntax-check-process)
2496 (flymake-count-lines, flymake-parse-residual):
2497 Remove constant buffer argument.
2498 (flymake-start-syntax-check-for-current-buffer): Remove.
2499 Update callers to use flymake-start-syntax-check instead.
2500 (flymake-display-err-menu-for-current-line):
2501 Remove unused var `mouse-pos'.
2502 (flymake-restore-formatting): Comment out unused function.
2503 (flymake-report-status, flymake-report-fatal-status): Remove buffer
2504 argument, use current-buffer instead. Update callers.
2505
2506 2005-12-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2507
2508 * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
2509 buffer-local because choose-completion-delete-max-match requires
2510 that we set completion-ignore-case (i.e., binding via let is not
2511 sufficient).
2512 (bibtex-complete): Always set completion-ignore-case and
2513 choose-completion-string-functions. The latter is needed because
2514 choose-completion-string-functions keeps its value if we quit the
2515 *Completions* buffer without requesting a completion.
2516
2517 2005-12-30 Andreas Schwab <schwab@suse.de>
2518
2519 * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
2520
2521 2005-12-30 Eli Zaretskii <eliz@gnu.org>
2522
2523 * jit-lock.el (jit-lock-chunk-size): Doc fix.
2524
2525 2005-12-30 Juri Linkov <juri@jurta.org>
2526
2527 * locate.el (locate-fcodes-file, locate-header-face)
2528 * progmodes/delphi.el (delphi-other-face)
2529 * progmodes/glasses.el (glasses-face): Add tag "None" to const nil.
2530
2531 * paren.el (show-paren-match, show-paren-mismatch): Use existing
2532 group `paren-showing-faces'.
2533
2534 * net/goto-addr.el (goto-address-highlight-keymap): Fix docstring.
2535 (goto-address): Fix docstring.
2536
2537 * net/webjump.el (webjump-sample-sites): Update URLs.
2538
2539 * textmodes/fill.el (fill-single-word-nobreak-p): Use `sentence-end'.
2540
2541 * subr.el (cancel-change-group): Add listp around pending-undo-list.
2542
2543 2005-12-29 Stefan Monnier <monnier@iro.umontreal.ca>
2544
2545 * font-lock.el (font-lock-compile-keywords): Signal an error when
2546 font-lock-set-defaults hasn't been called.
2547
2548 2005-12-29 Luc Teirlinck <teirllm@auburn.edu>
2549
2550 * subr.el (noreturn, 1value): Doc fixes.
2551
2552 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2553
2554 * textmodes/bibtex.el (bibtex-text-in-field-bounds): Handle case
2555 that assoc-string returns nil.
2556
2557 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2558
2559 * textmodes/bibtex.el (bibtex-entry-type-whitespace)
2560 (bibtex-entry-type-str, bibtex-empty-field-re)
2561 (bibtex-search-backward-string, bibtex-preamble-prefix)
2562 (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Remove.
2563 (bibtex-any-valid-entry-type): New variable.
2564 (bibtex-parse-field-name): Simplify.
2565 (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key.
2566 (bibtex-preamble-prefix): Include left delimiter.
2567 (bibtex-search-forward-field, bibtex-search-backward-field):
2568 Allow unbounded search past entry boundaries (required by bibtex-pop).
2569 (bibtex-text-in-field-bounds): Use push.
2570 (bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
2571 (bibtex-parse-preamble, bibtex-valid-entry)
2572 (bibtex-beginning-first-field): New functions.
2573 (bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp.
2574 (bibtex-map-entries): Fix docstring.
2575 (bibtex-flash-head): New arg prompt. Simplify.
2576 (bibtex-enclosing-field): Include code of bibtex-inside-field.
2577 (bibtex-insert-kill): Simplify. Always insert text past the
2578 current field or entry.
2579 (bibtex-format-entry): Use bibtex-parse-field.
2580 (bibtex-pop): Use bibtex-beginning-of-entry and
2581 bibtex-end-of-entry to initiate the search. Insert empty field if
2582 we found ourselves.
2583 (bibtex-print-help-message): New args field and comma.
2584 Handle entry keys.
2585 (bibtex-make-field): Use bibtex-beginning-of-entry.
2586 (bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any
2587 invalid entry.
2588 (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
2589 Handle preambles. Simplify code for thorough test.
2590 (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
2591 New arg comma. Handle entry heads.
2592 (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
2593 (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
2594 New arg comma.
2595 (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
2596 (bibtex-fill-field): Simplify.
2597 (bibtex-fill-entry): Use bibtex-beginning-first-field and
2598 bibtex-parse-field.
2599 (bibtex-convert-alien): Do not wait before calling bibtex-validate.
2600 (bibtex-complete): Use bibtex-parse-preamble.
2601
2602 2005-12-29 Nick Roberts <nickrob@snap.net.nz>
2603
2604 * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1):
2605 Display name of expression instead of convenience variable.
2606 (gdb-post-prompt): Only call gdb-get-changed-registers if needed.
2607
2608 * progmodes/gud.el (gud-tooltip-dereference): Rename from
2609 toggle-gud-tooltip-dereference.
2610 (gud-tooltip-print-command): Move concatenation of "*" to expr to...
2611 (gud-tooltip-tips): ...here when dereferencing.
2612
2613 2005-12-28 Bill Wohler <wohler@newt.com>
2614
2615 * simple.el (mh-e-user-agent): Move to mh-e/mh-comp.el and autoload.
2616
2617 2005-12-28 Stefan Monnier <monnier@iro.umontreal.ca>
2618
2619 * vc.el (vc-annotate-display): Replace optional arg `color-map' with
2620 compulsory arg `ratio'. Inline body of vc-annotate-time-span.
2621 (vc-annotate-display-autoscale): Adjust call.
2622 (vc-annotate-display-default): Adjust call. Make arg compulsory.
2623 Fix interactive spec.
2624 (vc-annotate-time-span): Remove.
2625 (vc-annotate-oldest-in-map): Rename from vc-annotate-car-last-cons.
2626 (vc-annotate-mode-menu, vc-annotate-display-autoscale)
2627 (vc-annotate-display-select): Use new name.
2628
2629 * vc.el (vc-annotate-mode-map): Remove obsolete binding.
2630 (vc-annotate-mode-menu): Remove left-over redundant declaration.
2631 Correct the construction of span entries. Simplify.
2632 (vc-annotate-display-select): Fix the nil case.
2633 (vc-annotate): Remove obsolete (and now broken) code.
2634 (vc-annotate-extract-revision-at-line): Remove obsolete code.
2635 (vc-annotate-time-span): Remove unused arg `quantize'. Simplify.
2636
2637 2005-12-28 Luc Teirlinck <teirllm@auburn.edu>
2638
2639 * subr.el (lazy-completion-table): Correct typo in docstring.
2640
2641 * startup.el (command-line): Use `custom-reevaluate-setting' for
2642 `send-mail-function'.
2643
2644 * mail/sendmail.el (send-mail-function): Autoload the standard-value.
2645
2646 2005-12-05 Ralf Angeli <angeli@iwi.uni-sb.de>
2647
2648 * mail/smtpmail.el (smtpmail-try-auth-methods):
2649 Send credentials together with "AUTH PLAIN" command.
2650
2651 2005-12-27 Richard M. Stallman <rms@gnu.org>
2652
2653 * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
2654 mouse-2, go back to previously selected window, so it's selected
2655 when mouse-2 command runs.
2656
2657 2005-12-27 Juri Linkov <juri@jurta.org>
2658
2659 * descr-text.el (describe-text-sexp): Use square brackets for
2660 button [Show] to distinguish it from the property value `show'.
2661 (describe-property-list): Use `insert-text-button' with
2662 `help-face' type instead of putting face in quotes, because button
2663 is not created automatically for a list of faces.
2664 (describe-text-properties-1): Put button-type value in quotes to
2665 distinguish from plain text "button".
2666 (describe-char): Display code point values in hex. Don't use
2667 `symbol-name' for `current-input-method' because it is a string.
2668 Use `insert-text-button' with `help-face' type instead of putting
2669 hardcoded face in quotes, because button is not created automatically.
2670
2671 2005-12-27 Richard M. Stallman <rms@gnu.org>
2672
2673 * progmodes/glasses.el (glasses-face): More specific custom type.
2674
2675 * files.el (set-visited-file-name): Doc fix.
2676
2677 * textmodes/flyspell.el (flyspell-external-point-words):
2678 Use local var buffer-scan-pos to advance scan for next misspelling.
2679 Advance it only after we find the misspelling.
2680
2681 2005-12-27 Agustin Martin <agustin.martin@hispalinux.es>
2682
2683 * textmodes/flyspell.el (flyspell-external-point-words):
2684 New criteria for finding the misspelling in the buffer.
2685
2686 2005-12-27 Nick Roberts <nickrob@snap.net.nz>
2687
2688 * help-mode.el (help-insert-string): Set help-xref-stack-item
2689 rather than call help-setup-xref.
2690
2691 * descr-text.el (describe-char): Revert previous changes for
2692 optional buffer argument.
2693
2694 2005-12-27 Juri Linkov <juri@jurta.org>
2695
2696 * help-mode.el (help-insert-string): New function. Save buffer
2697 contents in cases where it is impossible to recompute the old contents.
2698
2699 * descr-text.el (describe-char): Set help-xref-stack-item
2700 explicitly after buffer has been generated.
2701
2702 2005-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2703
2704 * cus-start.el (all): Add x-gtk-show-hidden-files.
2705
2706 2005-12-26 Richard M. Stallman <rms@gnu.org>
2707
2708 * replace.el (perform-replace): Calculate match-again
2709 before skipping read-only matches.
2710
2711 * paren.el (paren-showing-faces): New group.
2712 (show-paren-match, show-paren-mismatch): Move to that group.
2713
2714 * button.el (button): Put into group `basic-faces'.
2715
2716 * progmodes/make-mode.el: Remove faces from group `faces'.
2717
2718 * apropos.el (apropos, apropos-value): Doc fix.
2719 (apropos-documentation): Doc fix.
2720
2721 2005-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
2722
2723 * subr.el (lazy-completion-table): Remove argument `args'.
2724
2725 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
2726 Don't use the `args' argument of lazy-completion-table.
2727
2728 2005-12-26 Nick Roberts <nickrob@snap.net.nz>
2729
2730 * descr-text.el (describe-char): Add optional argument for buffer.
2731 Set buffer appropriately. Call help-setup-xref.
2732 Suggested by Stefan Monnier.
2733
2734 2005-12-26 Juri Linkov <juri@jurta.org>
2735
2736 * descr-text.el: Require `help-fns' at runtime. Don't require
2737 `button' for byte compilation.
2738 (describe-text-widget): Add `help-echo' for first button.
2739 Use `help-info' for second.
2740 (describe-property-list): Use `help-argument-name' instead of `italic'.
2741 (describe-text-category): Add prompt to interactive spec.
2742 Call `help-setup-xref'.
2743 (describe-char): Use `help-character-set'. Add `help-echo' for
2744 code point. Use `help-input-method'. Remove superfluous insert.
2745
2746 2005-12-25 Richard M. Stallman <rms@gnu.org>
2747
2748 * progmodes/cc-defs.el (c-emacs-features): Do parse-partial-sexp
2749 at point, in case of narrowing.
2750
2751 * progmodes/delphi.el (delphi-other-face): Allow nil in type.
2752
2753 * locate.el (locate-header-face): Allow nil in type.
2754
2755 * progmodes/cpp.el (cpp-face-none-list): Use cpp-face instead of face.
2756
2757 2005-12-25 Romain Francoise <romain@orebokech.com>
2758
2759 * battery.el (battery-linux-proc-acpi): Also try
2760 `/proc/acpi/thermal_zone/THM0/temperature'.
2761
2762 2005-12-24 Chong Yidong <cyd@stupidchicken.com>
2763
2764 * custom.el (custom-push-theme): Fix docstring.
2765
2766 * cus-edit.el (custom-variable-set, custom-variable-save)
2767 (custom-variable-save): Custom-quote widget values.
2768 (customize-save-variable): Fix custom-push-theme call.
2769
2770 2005-12-24 Eli Zaretskii <eliz@gnu.org>
2771
2772 * w32-fns.el (w32-batch-update-autoloads): New function.
2773
2774 * makefile.w32-in (autoloads, $(lisp)/mh-e/mh-loaddefs.el):
2775 Use w32-batch-update-autoloads, and don't setq generated-autoload-file
2776 from the command line.
2777
2778 2005-12-23 Chong Yidong <cyd@stupidchicken.com>
2779
2780 * custom.el (custom-push-theme): Clarify docstring. VALUE nil for
2781 reset means to remove setting from theme entirely. Don't keep
2782 expanding theme-settings list; delete old entries if necessary.
2783
2784 * cus-edit.el (custom-buffer-create-internal): Move "Erase
2785 customization" button one line up.
2786 (custom-themed): New face.
2787 (custom-magic-alist): New value, THEMED, for theme settings.
2788 (custom-variable-state-set, custom-face-state-set):
2789 Check theme-value instead of saved-value.
2790 (custom-variable-reset-standard, custom-face-reset-standard):
2791 Remove theme setting entirely. Recalculate new values.
2792 (custom-variable-set, custom-variable-set)
2793 (custom-variable-reset-saved, custom-variable-reset-backup)
2794 (custom-face-set, custom-face-reset-saved): Update `user' theme.
2795 (custom-variable-save): Fix typos.
2796
2797 2005-12-23 Juri Linkov <juri@jurta.org>
2798
2799 * emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
2800 Add autoload cookies.
2801 (edebug-outside-d-c-i-n-s-w): New variable.
2802 (edebug-display, edebug-outside-excursion): Use it to save the
2803 original value of default-cursor-in-non-selected-windows.
2804 Set default-cursor-in-non-selected-windows to t while Edebug
2805 is active.
2806 (edebug-mode, edebug-eval-mode): Doc fix.
2807
2808 * mouse.el (mouse-choose-completion): Replace `buffer-substring'
2809 with `buffer-substring-no-properties' to remove common substring
2810 highlighting.
2811
2812 * info.el (info-other-window, info): Rename function argument
2813 `file' to `file-or-node'.
2814 (Info-complete-menu-item): Use local variable `complete-nodes' to
2815 keep the global value of `Info-complete-nodes' unchanged for
2816 subsequent completions.
2817 (info-tool-bar-map): Put `Info-index' icon just before `Info-search'.
2818
2819 * simple.el (get-next-valid-buffer, last-buffer)
2820 (next-error-buffer-p, next-error-find-buffer)
2821 (minibuffer-history-sexp-flag): Doc fix.
2822
2823 * savehist.el (savehist-mode-hook): Add `:group'.
2824
2825 * log-view.el: Call autoload for vc-find-version.
2826 (log-view-current-file): Adjust subgroup numbers.
2827 (log-view-current-tag): Add `length'.
2828
2829 2005-12-23 Richard M. Stallman <rms@gnu.org>
2830
2831 * vc.el (vc-annotate-car-last-cons): Defn moved up.
2832
2833 2005-12-23 Juri Linkov <juri@jurta.org>
2834
2835 * hi-lock.el (hi-lock-archaic-interface-message-used)
2836 (hi-lock-archaic-interface-deduce, hi-lock-mode): Doc fix.
2837 (hi-lock-mode): Display "Hi" in the mode line only when
2838 hi-lock-interactive-patterns or hi-lock-file-patterns is non-nil.
2839 (hi-lock-write-interactive-patterns):
2840 Use hi-lock-file-patterns-prefix instead of hard-coded "Hi-lock".
2841 (hi-lock-set-pattern, hi-lock-set-file-patterns)
2842 (hi-lock-font-lock-hook): Set 3rd arg `how' of
2843 font-lock-add-keywords to t.
2844
2845 2005-12-23 David Koppelman <koppel@ece.lsu.edu>
2846
2847 * hi-lock.el (hi-lock-highlight-range): New variable.
2848 (hi-lock-mode, hi-lock-unface-buffer): Call font-lock-fontify-buffer
2849 only if font-lock-fontified is non-nil. Remove overlays.
2850 (hi-lock-set-pattern): Call font-lock-fontify-buffer if
2851 font-lock-fontified is non-nil, otherwise use overlays (instead of
2852 text properties).
2853 (hi-lock-string-serialize-hash, hi-lock-string-serialize-serial):
2854 New variables.
2855 (hi-lock-string-serialize) New function.
2856
2857 2005-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2858
2859 * menu-bar.el (menu-find-file-existing): New function.
2860 (menu-bar-file-menu): Use menu-find-file-existing for Open.
2861
2862 * tool-bar.el (tool-bar-setup): Open changed to menu-find-file-existing.
2863
2864 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
2865
2866 * vc.el: Remove unnecessary leading * in docstrings.
2867 (vc-annotate-mode-map): Move initialization into declaration.
2868 (vc-static-header-alist): Nitpick on the regexp.
2869 (vc-default-init-version): New fun.
2870 (vc-register): Use it.
2871 (vc-insert-headers): Use dolist.
2872 (vc-annotate-get-backend): Remove unused function.
2873 (vc-annotate-add-menu): Remove. Build the menu directly at toplevel.
2874 (vc-annotate-mode): Remove corresponding call.
2875 (vc-annotate-car-last-cons): Simplify.
2876 (vc-annotate-buffers): Remove var.
2877 (vc-annotate-backend): Make it buffer-local.
2878 (vc-annotate): Move the interaction to the interactive spec.
2879 Add a `buf' argument.
2880 (vc-annotate-warp-version): Use this new `buf' argument to avoid
2881 killing&creating a vc-annotate buffer, which is very disruptive when
2882 the buffers are shown in dedicated frames.
2883
2884 2005-12-23 Nick Roberts <nickrob@snap.net.nz>
2885
2886 * descr-text.el: Add FSF as maintainer.
2887 (describe-text-mode, describe-text-mode-map)
2888 (describe-text-mode-hook, describe-text-done): Delete. Use normal
2889 help-mode.
2890 (describe-text-widget, describe-text-sexp)
2891 (describe-property-list, describe-text-category)
2892 (describe-text-properties, describe-text-properties-1)
2893 (describe-char): Use help buttons instead of widgets.
2894 (describe-char-unicodedata-file): Make URL link in doc string.
2895
2896 2005-12-22 Richard M. Stallman <rms@gnu.org>
2897
2898 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
2899 (custom-buffer-create-internal): Reword the top-of-buffer help intro.
2900 Don't include buttons that write a file when there's no file.
2901 (custom-variable-menu, custom-face-menu, custom-group-menu):
2902 Don't include commands that write a file when there's no file.
2903 (customize-browse): Reword the top-of-buffer help intro.
2904 (custom-buffer-create-internal): Fix previous change.
2905 (customize-changed-options-previous-release): Prev release is 21.1.
2906 (customize-changed-options): Doc fix.
2907 (customize-changed): New alias.
2908 (custom-reset-menu, custom-magic-alist, Custom-mode-menu):
2909 Say "standard values".
2910 (Custom-reset-standard): Doc fix.
2911 (custom-face-reset-standard): Doc fix.
2912
2913 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
2914
2915 * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
2916 even if font-lock-mode is non-nil since it may be t without having
2917 turned on font-lock-mode-internal.
2918 (font-lock-choose-keywords): Minor optimization.
2919 (font-lock-add-keywords, font-lock-remove-keywords)
2920 (font-lock-set-defaults): Don't call make-local-variable on a variable
2921 that we know to already be local.
2922
2923 2005-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
2924
2925 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't print progress
2926 messages if in the minibuffer.
2927
2928 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
2929
2930 * textmodes/flyspell.el (flyspell-check-word-p): Don't quote - in a RE.
2931 (tex-mode-flyspell-verify, flyspell-get-word)
2932 (flyspell-external-point-words): Don't use point-min/max uselessly.
2933
2934 * emacs-lisp/lisp.el (lisp-complete-symbol): Mostly undo the change
2935 by Kevin Rodgers. Instead, just hide the completions buffer if we
2936 don't need to show it.
2937
2938 2005-12-21 Luc Teirlinck <teirllm@auburn.edu>
2939
2940 * wid-edit.el (file, directory): Doc fixes for the `define-widget's.
2941
2942 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
2943
2944 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
2945 delete-windows-on with an inexistent buffer.
2946
2947 2005-12-22 Nick Roberts <nickrob@snap.net.nz>
2948
2949 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
2950 Delete defcustom variable :tag names.
2951
2952 2005-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
2953
2954 * log-view.el (log-view-file-re, log-view-message-re): Use shy groups.
2955 (log-view-font-lock-keywords): Ajust subgroup numbers.
2956 (log-view-current-tag): Don't hard code the number of subgroups.
2957
2958 2005-12-20 Juri Linkov <juri@jurta.org>
2959
2960 * tooltip.el (tooltip): Move defgroup before define-minor-mode.
2961 (tooltip-x-offset, tooltip-y-offset): Doc fix.
2962
2963 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
2964 (menu-bar-non-minibuffer-window-p): Instead of checking
2965 display-multi-frame-p, use selected-frame when menu-updating-frame
2966 is nil.
2967
2968 2005-12-20 Davis Herring <herring@lanl.gov> (tiny change)
2969
2970 * align.el (align-rules-list): Use [ \t] instead of \s-
2971 for column separators in text mode.
2972
2973 2005-12-20 Nick Roberts <nickrob@snap.net.nz>
2974
2975 * help-mode.el (help-customize-variable, help-customize-face):
2976 Don't pop help-xref-stack as help-follow no longer pushes
2977 anything on to it.
2978
2979 2005-12-20 Carsten Dominik <dominik@science.uva.nl>
2980
2981 * textmodes/org.el (org-agenda-custom-commands): New option.
2982 (org-agenda): Offer custom commands on splash screen.
2983 (org-make-tags-matcher): Parser for Boolean logic added.
2984 (org-agenda-set-tags): New command.
2985 (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
2986 (org-set-tags): Efficiency improvements.
2987 (org-auto-align-tags): New option.
2988 (org-todo, org-demote, org-promote): Realign tags.
2989 (org-tags-completion-function): Use also "&" and "|" as separators.
2990 (org-org-menu): Agenda commands simplified.
2991
2992 2005-12-19 Luc Teirlinck <teirllm@auburn.edu>
2993
2994 * cus-edit.el (customize-apropos, customize-apropos-options):
2995 Docstring changes.
2996
2997 * font-lock.el (font-lock): Add tags to the links in the defgroup.
2998
2999 2005-12-19 Chong Yidong <cyd@stupidchicken.com>
3000
3001 * longlines.el (longlines-mode): Wrap while widened.
3002 (longlines-decode-region, longlines-encode-region): Compute max
3003 just once.
3004
3005 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3006
3007 * cus-edit.el (mac): New group.
3008
3009 * cus-start.el (all): Add user options in macterm.c. Add test for
3010 Mac-related built-ins. Fix test for GTK-related built-ins.
3011
3012 * term/mac-win.el (mac-handle-language-change)
3013 (mac-ae-open-documents, mac-ae-get-url, mac-services-open-file)
3014 (mac-services-open-selection, mac-services-mail-selection)
3015 (mac-services-mail-to, mac-services-insert-text)
3016 (mac-dispatch-apple-event): Add docstrings.
3017 (x-get-selection, mac-select-convert-to-string): Select coding
3018 system from `utf-16be' and `utf-16le' using `byteorder'.
3019
3020 2005-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
3021
3022 * subr.el (lazy-completion-table): Don't be fooled if the var holds
3023 a "list" (lambda ...) rather than a real completion list.
3024
3025 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
3026 lexical-let when encountering ((lambda (...) ...) ...).
3027
3028 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
3029
3030 * progmodes/sh-script.el (sh-mode):
3031 * language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
3032 * textmodes/picture.el (picture-mode): Update docstrings.
3033
3034 2005-12-17 Eli Zaretskii <eliz@gnu.org>
3035
3036 * makefile.w32-in (autoloads, custom-deps): Warn that parts of
3037 commands enclosed in $(ARGQUOTE)s should not be split between two
3038 lines, as that will break with GNU Make >3.80, when sh.exe is used
3039 and arg quoting is with '..'.
3040 (autoloads): Don't break the quoted --eval expression between
3041 several lines.
3042
3043 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
3044
3045 * emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
3046 Capture error from printing circular structures.
3047
3048 2005-12-17 Martin Rudalics <rudalics@gmx.at> (tiny change)
3049
3050 * wid-edit.el (widget-checkbox-action): Clear undo info.
3051
3052 2005-12-16 Bill Wohler <wohler@newt.com>
3053
3054 * menu-bar.el (kill-this-buffer): Set a good example by using menu
3055 bar, not menubar in comment.
3056
3057 2005-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
3058
3059 * progmodes/cc-engine.el (c-after-change-check-<>-operators):
3060 After-change-functions should not clobber the match data.
3061
3062 2005-12-16 Juri Linkov <juri@jurta.org>
3063
3064 * simple.el (choose-completion): Use `buffer-substring-no-properties'
3065 instead of `buffer-substring'.
3066 (completion-common-substring): Doc fix.
3067 (completion-setup-function): Use minibuffer-completion-contents
3068 instead of minibuffer-contents. Don't set common-string-length
3069 initially. Remove special handling of partial-completion-mode.
3070 Move computation of completion-base-size into one cond.
3071 Call completion-base-size-function in mainbuf. In computation of
3072 completion-base-size for file name completion don't move point to
3073 the end of the minibuffer. Move computation of common-string-length
3074 into one cond. Start putting faces only when common-string-length>=0.
3075 Add condition to put completions-common-part when
3076 common-string-length>0.
3077
3078 * complete.el (PC-do-completion): Remove `(equal (point) beg)' to
3079 place point at the first different character in the minibuffer
3080 even if this position is at the beginning of the minibuffer.
3081
3082 * info.el (Info-read-node-name-1): In completion-base-size-function's
3083 lambda return 1 if common-substring or minibuffer-completion-contents
3084 starts with (, and 0 otherwise.
3085
3086 * emacs-lisp/crm.el (crm-minibuffer-completion-help):
3087 Use `crm-current-element' for second arg of `display-completion-list'.
3088
3089 2005-12-16 Klaus Zeitler <kzeitler@lucent.com>
3090
3091 * files.el (set-auto-mode): Look for an interpreter specified on
3092 the first line also if search for mode specification succeeded,
3093 but the mode is not known.
3094
3095 2005-12-16 Carsten Dominik <dominik@science.uva.nl>
3096
3097 * textmodes/org.el (org-tags-match-list-sublevels): New option.
3098 (org-open-at-point): Implement tag searches as links.
3099 (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
3100 (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
3101 (org-tags-sparse-tree, org-tags-view, org-set-tags)
3102 (org-agenda-dispatch): New commands.
3103 (org-use-tag-inheritance, org-tags-column): New options.
3104 (org-tab-follows-link, org-return-follows-link): New options.
3105 (org-tags): New customize group.
3106 (org-start-icalendar-file): Get local time zone.
3107 (org-tags-completion-function): New function.
3108 (org-set-font-lock-defaults): Make sure links will also be
3109 highlighted inside headlines.
3110
3111 2005-12-16 Mark Plaksin <happy@usg.edu> (tiny change)
3112
3113 * term.el (term-emulate-terminal):
3114 Let term-handle-ansi-terminal-messages override what Bash says about
3115 its current directory.
3116
3117 2005-12-16 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
3118
3119 * bindings.el (last-buffer): Move to simple.el.
3120 * simple.el (last-buffer): Move here.
3121 (get-next-valid-buffer): New function.
3122 (next-buffer): Use frame-local buffer list, maintain buried buffer list.
3123 (prev-buffer): Ditto. Rename to `previous-buffer'.
3124
3125 * menu-bar.el (menu-bar-update-buffers): Update uses of `prev-buffer'.
3126 * bindings.el (global-map): Ditto.
3127
3128 2005-12-15 Luc Teirlinck <teirllm@auburn.edu>
3129
3130 * cus-edit.el: Introductory comment change.
3131 (custom-magic-alist): Change message string for the `rogue' state.
3132
3133 2005-12-15 Richard M. Stallman <rms@gnu.org>
3134
3135 * tooltip.el: Delete defcustom variable :tag names.
3136
3137 * complete.el (partial-completion-mode): Doc fix.
3138
3139 * textmodes/flyspell.el (flyspell-external-point-words):
3140 Use save-excursion to ensure we don't move backward in the
3141 search loop, not even one character.
3142 (flyspell-delete-all-overlays): Use remove-overlays directly.
3143
3144 * textmodes/ispell.el (ispell-current-personal-dictionary): New var.
3145 (ispell-start-process): Set that variable.
3146 Clear ispell-buffer-local-name.
3147 (ispell-internal-change-dictionary):
3148 Set ispell-current-dictionary after killing process.
3149 (ispell-buffer-local-dict):
3150 Don't set spell-personal-dictionary after killing process.
3151 (ispell-buffer-local-words): Don't clear out ispell-buffer-local-name.
3152 (ispell-tex-skip-alists, ispell-html-skip-alists)
3153 (ispell-skip-region-alist): Mark as risky.
3154
3155 * net/newsticker.el (newsticker--retrieval-timer-list)
3156 (newsticker--display-timer, newsticker-running-p)
3157 (newsticker-ticker-running-p): Definitions moved up.
3158
3159 2005-12-16 Nick Roberts <nickrob@snap.net.nz>
3160
3161 * progmodes/gdb-ui.el (gdb-many-windows): Echo new state in minibuffer.
3162
3163 2005-12-15 David Ponce <david@dponce.com>
3164
3165 * recentf.el (recentf-dialog-goto-first): Fix missing error condition.
3166 (recentf-edit-list, recentf-open-files): Signal an error when
3167 there is no recent file.
3168
3169 2005-12-14 Lennart Borgman <lennart.borgman.073@student.lu.se>
3170
3171 * textmodes/texinfmt.el (texinfo-format-region): Set buffer to
3172 read-only except for texinfo-format-region evaluation.
3173
3174 2005-12-14 Richard M. Stallman <rms@gnu.org>
3175
3176 * vc.el (vc-default-previous-version, vc-default-next-version)
3177 (vc-do-command): Doc fixes.
3178
3179 2005-12-14 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3180
3181 * textmodes/bibtex.el (bibtex-expand-strings)
3182 (bibtex-autokey-expand-string, bibtex-name-part)
3183 (bibtex-entry-type-whitespace, bibtex-entry-type-str)
3184 (bibtex-any-entry-maybe-empty-head, bibtex-string-type)
3185 (bibtex-preamble-prefix, bibtex-string-empty-key): New variables.
3186 (bibtex-entry-type, bibtex-entry-head): Match only valid entries.
3187 (bibtex-entry-postfix, bibtex-known-entry-type-re)
3188 (bibtex-valid-entry-re, bibtex-any-valid-entry-re)
3189 (bibtex-valid-entry-whitespace-re, bibtex-empty-field-re)
3190 (bibtex-field-name-for-parsing, bibtex-remove-delimiters-string)
3191 (bibtex-beginning-of-last-entry): Remove.
3192 (bibtex-parse-field-name): Use bibtex-field-name. Issue error
3193 message if comma is missing but buffer is read-only.
3194 (bibtex-parse-field-text): Handle whitespaces at the end of field
3195 text. Return 3-element list with beginning and end of field text
3196 and end of field.
3197 (bibtex-end-of-text-in-field, bibtex-end-of-field): Change accordingly.
3198 (bibtex-parse-field): Remove arg name. Use bibtex-field-name.
3199 (bibtex-search-forward-field, bibtex-search-backward-field):
3200 Search always delimited by limits of entry. Use more efficient
3201 search algorithms.
3202 (bibtex-name-in-field): Use bibtex-start-of-name-in-field and
3203 bibtex-end-of-name-in-field.
3204 (bibtex-text-in-field-bounds): Handle BibTeX strings when
3205 extracting the content of a field.
3206 (bibtex-text-in-field): Use search limits.
3207 (bibtex-parse-string-prefix): Handle empty string keys based on
3208 bibtex-string-empty-key.
3209 (bibtex-parse-string): Fix docstring.
3210 (bibtex-text-in-string): Use bibtex-text-in-field-bounds.
3211 (bibtex-preamble-prefix, bibtex-strings): New functions.
3212 (bibtex-skip-to-valid-entry): Include preceding whitespace in
3213 BibTeX entries (consistent with other BibTeX functions).
3214 (bibtex-map-entries): Use bibtex-skip-to-valid-entry.
3215 (bibtex-search-entry): Fix docstring. Simplify.
3216 (bibtex-flash-head, bibtex-complete-string-cleanup)
3217 (bibtex-count-entries, bibtex-sort-buffer): Simplify.
3218 (bibtex-beginning-of-first-entry): Use bibtex-skip-to-valid-entry.
3219 (bibtex-parse-entry): New optional arg content.
3220 (bibtex-format-entry, bibtex-autofill-entry, bibtex-url): Use it.
3221 Use bibtex-text-in-field-bounds.
3222 (bibtex-print-help-message): Handle BibTeX strings and preambles.
3223 (bibtex-end-of-entry): Use bibtex-preamble-prefix and
3224 bibtex-parse-string-postfix.
3225 (bibtex-find-text-internal): New function.
3226 (bibtex-remove-delimiters): Use it.
3227 (bibtex-find-text): Use it. New optional arg help.
3228 (bibtex-complete): Handle BibTeX string and preamble entries.
3229 (bibtex-Preamble): Fix order of closing delimiters.
3230
3231 2005-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
3232
3233 * vc.el (vc-default-revert): New fun.
3234
3235 * vc-mcvs.el (vc-mcvs-revert): Fix call to vc-default-revert.
3236
3237 2005-12-14 Romain Francoise <romain@orebokech.com>
3238
3239 * font-lock.el (font-lock-keywords-alist): Rename `append' to `how'.
3240 (font-lock-add-keywords, font-lock-update-removed-keyword-alist):
3241 (font-lock-remove-keywords): Likewise.
3242
3243 2005-12-14 Juri Linkov <juri@jurta.org>
3244
3245 * log-view.el (log-view-diff): Doc fix.
3246
3247 * isearch.el (isearch-query-replace): Use (mark) instead of
3248 isearch-opoint if mark is active in transient-mark-mode.
3249
3250 2005-12-14 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
3251
3252 * isearch.el (isearch-query-replace): Check for isearch-other-end.
3253
3254 2005-12-14 Per Abrahamsen <abraham@dina.kvl.dk>
3255
3256 * progmodes/cpp.el (cpp-face): New widget.
3257 (cpp-known-face, cpp-unknown-face, cpp-edit-list): Use it.
3258
3259 2005-12-14 Juri Linkov <juri@jurta.org>
3260
3261 * help-macro.el (make-help-screen): Bind `inhibit-read-only' to t
3262 around `erase-buffer' and `insert'.
3263
3264 * descr-text.el (describe-text-properties): Replace buffer name
3265 "*Help-2*" with "*Help*<2>".
3266 (describe-char): Add functions print-help-return-message,
3267 toggle-read-only. Use help-setup-xref with nil to not store
3268 describe-char in help-xref-stack. Use help-make-xrefs to
3269 make [back] button.
3270
3271 * desktop.el (desktop-minor-mode-table): Add vc-dired-mode with nil.
3272
3273 * wdired.el (wdired-old-point): New internal variable.
3274 (wdired-change-to-wdired-mode): Set it buffer-locally.
3275 (wdired-abort-changes): Restore point after aborting changes.
3276
3277 2005-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
3278
3279 * vc.el (vc-do-command): Add a new value t for okstatus.
3280
3281 * vc-svn.el (vc-svn-registered): Use it to avoid popping up a spurious
3282 frame in case of errors.
3283
3284 2005-12-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3285
3286 * menu-bar.el (menu-bar-showhide-fringe-menu): Move "On the Right"
3287 so it comes after "On the Left" in the menu.
3288
3289 2005-12-12 Luc Teirlinck <teirllm@auburn.edu>
3290
3291 * cus-edit.el (customize-apropos, customize-apropos-options)
3292 (customize-apropos-faces, customize-apropos-groups): Doc fixes.
3293
3294 2005-12-12 Bill Wohler <wohler@newt.com>
3295
3296 * vc-svn.el (vc-svn-registered): Fix problem of visiting
3297 non-writable Subversion-controlled files by saving window
3298 configuration before calling vc-do-command. vc-do-command calls
3299 pop-to-buffer on error which is unexpected during registration.
3300
3301 2005-12-12 Jay Belanger <belanger@truman.edu>
3302
3303 * calc/README: Update the summary of changes.
3304
3305 2005-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
3306
3307 * descr-text.el (describe-char): Rework last fix to solve the problem
3308 is the same way it's solved for everything else in that function
3309 (i.e. by extracting the info before setting up the *Help* buffer).
3310
3311 2005-12-12 Kim F. Storm <storm@cua.dk>
3312
3313 * subr.el (version-regexp-alist): Allow space as separator before
3314 non-numeric part, e.g. "1.0 alpha".
3315 (version-to-list): Interpret .X.Y version as 0.X.Y version.
3316
3317 2005-12-12 Carsten Dominik <dominik@science.uva.nl>
3318
3319 * textmodes/org.el (org-agenda, org-timeline, org-todo):
3320 Implement Logging and the keep-modes setting.
3321 (org-get-category): Make sure a string is returned.
3322 (org-log-done): New function.
3323 (org-log-done, org-closed-string): New options.
3324
3325 2005-12-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3326
3327 * tooltip.el (tooltip-y-offset): Change default to 20.
3328
3329 2005-12-12 Richard M. Stallman <rms@gnu.org>
3330
3331 * mouse.el (mouse-drag-vertical-line): Use adjust-window-trailing-edge.
3332
3333 * frame.el (display-hourglass): Doc fix.
3334
3335 * help.el (help-for-help-internal): Simplify entry for `a'.
3336
3337 * info.el (Info-on-current-buffer): Doc fix.
3338 (info-insert-file-contents): Don't test (featurep 'jka-compr).
3339
3340 * startup.el (inhibit-splash-screen): Make this the real name.
3341 (inhibit-startup-message): Make this the alias.
3342 (command-line): Find only simple.el, and use its directory
3343 to fill in other preloaded files' names.
3344 (command-line): Deactivate the mark if deactivate-mark is set.
3345
3346 * international/mule.el (load-with-code-conversion):
3347 Bind deactivate-mark.
3348
3349 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
3350
3351 2005-12-11 Luc Teirlinck <teirllm@auburn.edu>
3352
3353 * cus-edit.el (customize-apropos): Avoid listing an option more
3354 than once under different aliases. No longer list user options
3355 that are not defined with defcustom (unless a prefix arg is given).
3356 Doc fix.
3357 (customize-apropos-options): Doc fix.
3358
3359 2005-12-11 Juri Linkov <juri@jurta.org>
3360
3361 * frame.el (set-background-color, set-foreground-color)
3362 (set-cursor-color, set-mouse-color, set-border-color):
3363 Add explicit prompts to read colors by `facemenu-read-color'.
3364 (show-trailing-whitespace, blink-cursor-delay)
3365 (blink-cursor-interval, display-hourglass, hourglass-delay):
3366 Remove tags.
3367 (display-hourglass, hourglass-delay): Doc fix.
3368 (cursor-in-non-selected-windows): Capitalize words in tag.
3369
3370 * faces.el (frame-background-mode): Replace `choice-item' keywords
3371 with `const' to not make [default] button. Change default value tag
3372 from `default' to `automatic'. Doc fix.
3373 (trailing-whitespace) <defface>: Change group `whitespace' to
3374 `whitespace-faces'.
3375
3376 2005-12-11 Richard M. Stallman <rms@gnu.org>
3377
3378 * buff-menu.el (Buffer-menu-sort-column): Not a user variable.
3379
3380 2005-12-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3381
3382 * term/mac-win.el: Create keymap for mac-apple-event-map.
3383
3384 2005-12-11 Nick Roberts <nickrob@snap.net.nz>
3385
3386 * tooltip.el (tooltip-mode): Move to start of file so that it
3387 appears at top of customize buffer.
3388
3389 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
3390 Add the gud groupname.
3391 (gud-tooltip-mode): Add the tooltip groupname.
3392 (gud-tooltip-echo-area): Add the gud groupname. Remove tag to
3393 avoid conflict with tooltip-use-echo-area.
3394
3395 2005-12-10 Romain Francoise <romain@orebokech.com>
3396
3397 * help.el (help-for-help-internal): Add `r' in doc string.
3398
3399 2005-12-10 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
3400
3401 * align.el (align-regexp, align-highlight-rule):
3402 Use region-beginning and region-end instead of point and mark, so that
3403 repetition (with `repeat-complex-command') recomputes the region
3404 bounds.
3405
3406 2005-12-10 Lennart Borgman <lennart.borgman.073@student.lu.se>
3407
3408 * window.el (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
3409 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
3410 (bw-refresh-edges, bw-adjust-window, bw-balance-sub): New functions.
3411 (balance-windows): Rewrite using the above new functions.
3412
3413 2005-12-10 David Koppelman <koppel@ece.lsu.edu>
3414
3415 * hi-lock.el (hi-lock-mode): Rename from hi-lock-buffer-mode;
3416 react if global-hi-lock-mode seems intended.
3417 (global-hi-lock-mode) Renamed from hi-lock-mode.
3418 (hi-lock-archaic-interface-message-used)
3419 (hi-lock-archaic-interface-deduce): New variables.
3420 (turn-on-hi-lock-if-enabled, hi-lock-line-face-buffer)
3421 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
3422 (hi-lock-find-patterns, hi-lock-font-lock-hook):
3423 Replace hi-lock-buffer-mode with hi-lock-mode.
3424
3425 2005-12-10 Kevin Rodgers <ihs_4664@yahoo.com>
3426
3427 * emacs-lisp/lisp.el (lisp-complete-symbol): Regenerate the
3428 completion list, even after a partial completion has been
3429 inserted in the current buffer. If there are more than 1
3430 completion, redisplay the *Completions* buffer; if the
3431 completion is unique, delete the *Completions* window.
3432
3433 2005-12-10 Eli Zaretskii <eliz@gnu.org>
3434
3435 * mail/rmail.el (rmail-next-same-subject): Handle multiple "Re: "
3436 strings and long subject lines that were broken into multiple
3437 lines at arbitrary places. Handle subjects that have "Re: " in
3438 the middle.
3439
3440 2005-12-10 John W. Eaton <jwe@octave.org>
3441
3442 * emacs/octave-mod.el (octave-electric-space): Don't indent
3443 comments or strings if octave-auto-indent is nil.
3444
3445 2005-12-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3446
3447 * term/mac-win.el: Require url when compiling.
3448 Call mac-process-deferred-apple-events after loading init files.
3449 (mac-apple-event-map): New defvar. Define event handlers in it.
3450 (core-event, internet-event): New Apple event class symbols.
3451 (open-application, reopen-application, open-documents)
3452 (print-documents, open-contents, quit-application)
3453 (application-died, show-preferences, autosave-now, get-url):
3454 New Apple event ID symbols.
3455 (about): New HICommand ID symbol.
3456 (mac-event-spec, mac-event-ae): New macros.
3457 (mac-ae-parameter, mac-ae-list, mac-bytes-to-integer)
3458 (mac-ae-selection-range, mac-ae-text-for-search)
3459 (mac-ae-open-documents, mac-ae-text, mac-ae-get-url): New functions.
3460 (mac-application-menu-map): Remove keymap. Handlers for HICommand
3461 and Services menu events are now defined in mac-apple-event-map.
3462 (mac-drag-n-drop): Remove selection range handling.
3463
3464 2005-12-10 Kenichi Handa <handa@m17n.org>
3465
3466 * simple.el (zap-to-char):
3467 * isearch.el (isearch-process-search-char): Translate CHAR by
3468 translation-table-for-input.
3469
3470 2005-12-09 Chong Yidong <cyd@stupidchicken.com>
3471
3472 * foldout.el (foldout-exit-fold): Properly hide subtree.
3473
3474 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
3475
3476 * files.el (save-buffer):
3477 * international/ucs-tables.el (ucs-set-table-for-input):
3478 * mail/mail-extr.el (mail-extract-address-components):
3479 * mail/sendmail.el (mail-mode): Reformat doc string.
3480
3481 2005-12-09 Juri Linkov <juri@jurta.org>
3482
3483 * isearch.el (isearch-highlight): Change main overlay priority
3484 from 1 to 1001. Simplify.
3485 (isearch-lazy-highlight-update): Change lazy overlay priority
3486 from 0 to 1000.
3487
3488 * replace.el (replace-highlight): Change overlay priority from
3489 1 to 1001.
3490
3491 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
3492 Change overlay priority from 1 to 1001. Reuse existing overlay.
3493
3494 * compare-w.el (compare-windows-highlight): Change overlay
3495 priority from 1 to 1000.
3496
3497 * menu-bar.el (menu-bar-edit-menu): Add listp around
3498 pending-undo-list to disable menu item "undo" when pending
3499 undo list is empty.
3500
3501 * locate.el (locate): Disable undo in *Locate* buffer.
3502
3503 2005-12-09 Kim F. Storm <storm@cua.dk>
3504
3505 * mail/smtpmail.el (smtpmail-via-smtp): Disable undo in SMTP buffer.
3506
3507 2005-12-09 David Ponce <david@dponce.com>
3508
3509 * recentf.el: Improvement of the menu code.
3510 (recentf-enabled-p): Move before first use. Use `kill-emacs-hook'
3511 instead of menu hook.
3512 (recentf-show-menu, recentf-hide-menu): New functions.
3513 (recentf-menu-customization-changed, recentf-mode): Use them.
3514 (recentf-menu-action, recentf-max-menu-items)
3515 (recentf-menu-open-all-flag, recentf-menu-append-commands-flag)
3516 (recentf-arrange-by-rule-others)
3517 (recentf-arrange-by-rules-min-items)
3518 (recentf-arrange-by-rule-subfilter) : Don't use
3519 `recentf-menu-customization-changed'.
3520 (recentf-arrange-rules): Likewise. Accept functions to compute
3521 sub-menu titles.
3522 (recentf-menu-filter): Likewise. Doc fix.
3523 (recentf-menu-value-shortcut): Doc fix.
3524 (recentf-dump-variable): Quote atom value.
3525 (recentf-make-menu-items): Update to use it as a menu filter.
3526 (recentf-match-rule): New function.
3527 (recentf-arrange-by-rule): Use it.
3528 (recentf-indirect-mode-rule): New function.
3529 (recentf-build-mode-rules): Use it.
3530 (recentf-dir-rule): New function.
3531 (recentf-arrange-by-dir): Use it.
3532 (recentf-filter-changer-current): Rename from
3533 `recentf-filter-changer-state'. All references updated.
3534 (recentf-filter-changer-alist): Update filter names.
3535 (recentf-filter-changer-select): New function.
3536 (recentf-filter-changer): Use it. Make a sub-menu from filters
3537 available in `recentf-filter-changer-alist'.
3538 (recentf-data-cache, recentf-clear-data)
3539 (recentf-update-menu): Remove. All references updated.
3540 (recentf-match-rule-p, recentf-build-dir-rules)
3541 (recentf-filter-changer-goto-next)
3542 (recentf-filter-changer-get-current)
3543 (recentf-filter-changer-get-next): Remove.
3544
3545 2005-12-08 Luc Teirlinck <teirllm@auburn.edu>
3546
3547 * cus-edit.el (custom-buffer-create-internal): Relabel the whole
3548 buffer "Reset" button to "Reset to Current" for consistency with
3549 the State buttons.
3550
3551 2005-12-08 John Paul Wallington <jpw@pobox.com>
3552
3553 * ibuf-ext.el (define-ibuffer-filter filename):
3554 If `dired-directory' is a list then really use its car.
3555
3556 2005-12-08 Kim F. Storm <storm@cua.dk>
3557
3558 * emulation/cua-rect.el (cua--rectangle-aux-replace):
3559 Fix indention of text on right side of replaced rectangle.
3560
3561 2005-12-09 Nick Roberts <nickrob@snap.net.nz>
3562
3563 * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
3564 No need to check gud-comint-buffer is bound.
3565 (gdb): Prevent multiple debugging when first session uses gdba.
3566
3567 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
3568
3569 CC Mode update to 5.31.
3570
3571 * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
3572 Emacsen which lack `define-minor-mode'. (Currently Emacs <21. We
3573 might do this function properly in the future).
3574
3575 * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el: New
3576 macros c-sentence-end and c-default-value-sentence end, to cope
3577 with Emacs 22's new function `sentence-end'.
3578
3579 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
3580
3581 * progmodes/cc-cmds.el (c-show-syntactic-information): Solved the
3582 compat issue using `c-put-overlay' and `c-delete-overlay'.
3583
3584 * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay): New
3585 compat macros to handle overlays/extents.
3586
3587 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
3588
3589 * progmodes/cc-fix.el: Add definitions of the macros push and pop
3590 (for GNU Emacs 20.4)
3591
3592 * progmodes/cc-defs.el:
3593 (i) Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4)
3594
3595 * progmodes/cc-cmds.el (c-show-syntactic-information): Change the
3596 highlighting mechanism so it will work in XEmacs too.
3597
3598 * progmodes/cc-defs.el: Insert c-int-to-char.
3599
3600 * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
3601 call to the new macro c-int-to-char. This solves XEmacs's
3602 regarding characters as different from integers.
3603
3604 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
3605
3606 * progmodes/cc-fonts.el (c-make-syntactic-matcher): New internal
3607 helper.
3608
3609 (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
3610 construct to make the indirect face lookup work in XEmacs.
3611
3612 (c-cpp-matchers): Append the negation char face to the existing
3613 fontification, so that the cpp face doesn't disappear. Use
3614 `c-make-syntactic-matcher' to avoid negation chars in comments and
3615 strings.
3616
3617 * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
3618 to map to `font-lock-negation-char-face' in emacsen where it
3619 exists.
3620
3621 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
3622
3623 * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
3624
3625 * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el:
3626 Rename "c-subword-move-mode" as "c-subword-mode".
3627
3628 * progmodes/cc-mode.el: Added tty suitable bindings for C-c
3629 <delete> and C-c C-<delete>. (To the c-hungry- delete functions).
3630
3631 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
3632
3633 * progmodes/cc-mode.el: Added autoload directive for
3634 `c-subword-move-mode' for use in older emacsen.
3635
3636 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
3637
3638 * progmodes/cc-mode.el:
3639 (i) Insert a binding for C-c C-backspace into
3640 c-bind-special-erase-keys which works in TTYs.
3641 (ii) Make sure that when file styles are used, any explicitly
3642 given style variables take priority over those in the style. Do
3643 this by calling `hack-local-variables' a second time.
3644
3645 * progmodes/cc-vars.el: Add language specific customization
3646 widgets for AWK to c-doc-comment-style, c-require-final-newline
3647 and c-default-style. Add a defcustom for awk-mode-hook. Give
3648 c-syntactic-element and c-syntactic-context doc-strings by
3649 directly setting their `variable-documentation' propery. This
3650 allows Emacs 22.1 to read these with C-h v.
3651
3652 * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan
3653 Monnier).
3654
3655 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
3656
3657 * progmodes/cc-fonts.el, cc-vars.el
3658 (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection)
3659 (gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
3660 Masatake YAMATO.
3661
3662 (c-doc-comment-style): Made GtkDoc default in C mode.
3663
3664 * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
3665 and C-c C-<delete>.
3666
3667 (c-bind-special-erase-keys): New function for use on
3668 `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
3669
3670 * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
3671 <delete> key behavior in XEmacs according to `delete-forward-p'.
3672 C.f. `c-electric-delete'.
3673
3674 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
3675
3676 * progmodes/cc-mode.el: Give c-hungry-backspace and
3677 c-hungry-delete-forward permanent key bindings.
3678
3679 * progmodes/cc-cmds.el (c-electric-semi&comma): Bind
3680 c-syntactic-context for calls to "criteria functions", for
3681 consistency with other calls to user functions.
3682
3683 * progmodes/cc-cmds.el (c-indent-command): Expunge use of
3684 `current-prefix-arg', since this might be the prefix arg to a
3685 command which calls c-indent-command as a function. Change the
3686 interactive spec from "p" to "P".
3687
3688 * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
3689 reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
3690 was difficult to understand.
3691
3692 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
3693
3694 * progmodes/cc-engine.el (c-on-identifier): Fixed bug when at the
3695 first char of an identifier.
3696
3697 * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
3698 +" syntax in C++.
3699
3700 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
3701
3702 * progmodes/cc-cmds.el (c-mask-paragraph): Correct, so that
3703 auto-fill doesn't split a c-comment's last word from a hanging
3704 "*/" when a space is typed between them after fill-column.
3705
3706 * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
3707
3708 * progmodes/cc-styles.el (c-set-style)
3709 (c-setup-paragraph-variables): Abort the command if we're not in a
3710 CC Mode buffer.
3711
3712 * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
3713 with blank comment-prefix, and a blank line as the comment's
3714 second line.
3715
3716 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
3717
3718 * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
3719 Incorporated the patterns added in the Emacs development branch
3720 for the new Emacs 22 face `font-lock-negation-char-face'.
3721
3722 * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
3723 of "red" since it stands out better in xterms and DOS terminals.
3724
3725 * progmodes/cc-engine.el (c-literal-faces): Added
3726 `font-lock-comment-delimiter-face' which is new in Emacs 22.
3727
3728 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
3729
3730 * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
3731 forcibly enable c-electric-flag.
3732
3733 * progmodes/cc-vars.el, cc-cmds.el: New clean-up
3734 `comment-close-slash' on c-electric-slash: if enabled, typing `/'
3735 just after the comment-prefix of a C-style comment will close that
3736 comment.
3737
3738 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
3739
3740 * progmodes/cc-fonts.el (c-basic-matchers-before)
3741 (c-complex-decl-matchers): Fixed the "not-arrow-prefix" regexp used
3742 in Pike.
3743
3744 * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
3745 digraphs.
3746
3747 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
3748 (c-cpp-message-directives, c-cpp-include-directives)
3749 (c-opt-cpp-macro-define, c-opt-cpp-macro-define-start)
3750 (c-cpp-expr-directives): Introduced new language constants to
3751 control cpp syntax in a cleaner way.
3752
3753 (c-cpp-expr-functions): Renamed from c-cpp-defined-fns.
3754
3755 (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
3756
3757 * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines)
3758 (c-multiline-string-start-char): New language constants and
3759 variables to specify how newlines in string literals work.
3760
3761 (c-font-lock-invalid-string): Use them.
3762
3763 * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
3764 unbalanced close brace is entered. Optimization by avoiding going
3765 back over arbitrarily large blocks. Removed hints that this
3766 function only would be relevant/useful in AWK.
3767
3768 (c-electric-brace): Indent syntactically after the cleanups since
3769 lineup functions might do it differently then.
3770
3771 * progmodes/cc-engine.el, cc-langs.el
3772 (c-opt-op-identifier-prefix): New language constant and variable.
3773
3774 (c-just-after-func-arglist-p, c-after-special-operator-id)
3775 (c-search-decl-header-end, c-inside-bracelist-p): Use it.
3776
3777 * progmodes/cc-align.el, cc-engine.el
3778 (c-after-special-operator-id): New helper to handle C++ operator
3779 identifiers.
3780
3781 (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p)
3782 (c-guess-basic-syntax): Handle C++ operator identifiers in
3783 declarations.
3784
3785 * progmodes/cc-langs.el (c-assignment-operators): Added the
3786 trigraph version of ^= too.
3787
3788 * progmodes/cc-langs.el (c-assignment-operators): Added the
3789 trigraph version of |= in C++.
3790
3791 * progmodes/cc-fonts.el (c-font-lock-declarators): Handle
3792 `c-decl-hangon-kwds' after the identifier name.
3793
3794 * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
3795 whether an arglist is "nonempty", ignore a comment after the open
3796 paren if it isn't followed by a non-comment token on the same
3797 line.
3798
3799 * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4: Enable
3800 heuristics below the point to cope with classes inside special
3801 brace lists in Pike.
3802
3803 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
3804
3805 * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
3806
3807 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
3808
3809 * progmodes/cc-guess.el (cc-guess-install): New function to
3810 install an already guessed style in another buffer.
3811
3812 * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
3813 sets `inhibit-read-only' - `c-save-buffer-state' should be used
3814 anyway if the change always is undone.
3815
3816 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
3817
3818 Implement togglable electricity:
3819
3820 * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
3821 saying when it should be used.
3822
3823 * progmodes/cc-engine.el: Add the new buffer-local variable,
3824 c-electric-flag.
3825
3826 * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
3827 c-toggle-auto-newline.
3828
3829 * progmodes/cc-mode.el: Rename c-toggle-auto-state to
3830 c-toggle-auto-newline. Remove the binding for
3831 c-toggle-auto-hungry-state. Add the binding C-c C-l for the new
3832 c-toggle-electric-state.
3833
3834 * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
3835
3836 * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
3837 c-\(forward\|backward\)-subword.
3838 (c-update-modeline): Add the new modeline flag `l' for
3839 `c-electric-flag'. Make the auto-newline flag `a' dependent on
3840 `l'.
3841 (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'. Make
3842 the old name an alias of the new name.
3843 (c-toggle-electric-state): New function.
3844 c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\):
3845 Adapt these functions to do electric things only when
3846 c-electric-flag is non-nil.
3847 (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
3848 new functions from c-electric-brace.
3849 (c-point-syntax): Add a check for "virtual semicolons" in AWK
3850 mode, so that the tentative extra newline doesn't change the
3851 syntax of the following brace.
3852 (c-electric-brace): Restructure by extracting the above functions.
3853 Tidy up the coding somewhat.
3854 (c-electric-semi&comma, c-electric-colon, c-electric-paren):
3855 restructure a bit.
3856
3857 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
3858
3859 * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
3860 anchor position(s) using faces. Thanks to Masatake YAMATO for the
3861 idea.
3862
3863 * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
3864 (c-submode-indicators): Changed name from `c-auto-hungry-string'
3865 since it's now used to track another submode.
3866
3867 (c-update-modeline): Converted to function and extended to check
3868 `c-subword-move-mode'.
3869
3870 (c-forward-into-nomenclature, c-backward-into-nomenclature):
3871 Converted to compat aliases for `c-forward-subword' and
3872 `c-backward-subword'.
3873
3874 * progmodes/cc-subword.el: New functions and minor mode to handle
3875 SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
3876
3877 (c-forward-subword, c-backward-subword, c-mark-subword)
3878 (c-kill-subword, c-backward-kill-subword, c-transpose-subwords)
3879 (c-capitalize-subword, c-downcase-subword, c-upcase-subword):
3880 Functions corresponding to the standard word handling functions.
3881
3882 (c-subword-move-mode): Minor mode that replaces all the standard
3883 word handling functions with their subword equivalences.
3884
3885 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
3886
3887 * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
3888 entry for one-liner-defun.
3889
3890 * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
3891 name in its def-edebug-spec.
3892
3893 * progmodes/cc-cmds.el (c-electric-brace): Make the
3894 one-liner-defun clean-up work with empty-defun-braces. o-l-d now
3895 compacts space before a comment, if this will make things fit on
3896 one line.
3897
3898 Introduce an "awk" style, mainly for auto-newline and clean-ups.
3899
3900 * progmodes/cc-align.el: New function c-snug-1line-defun-close
3901
3902 * progmodes/cc-cmds.el: In c-electric-brace, add code for new
3903 clean-up one-liner-defun.
3904
3905 * progmodes/cc-styles.el: Add the new "awk" style.
3906
3907 * progmodes/cc-vars.el: Add description of one-liner-defun to
3908 c-cleanup-list's doc-string. New user options,
3909 c-max-one-liner-length. In c-default-style, set the default style
3910 for AWK to "awk".
3911
3912 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
3913
3914 * progmodes/cc-engine.el (c-forward-label): Fixed fontification of
3915 macros inside labels.
3916
3917 * progmodes/cc-engine.el (c-looking-at-bos): Obsoleted in favor of
3918 `c-at-statement-start-p' and `c-at-expression-start-p'.
3919
3920 * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
3921 error if the mark isn't set.
3922
3923 * progmodes/cc-engine.el (c-guess-continued-construct)
3924 (c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
3925 accurately detect functions inside functions.
3926
3927 * progmodes/cc-engine.el (c-at-expression-start-p): New function
3928 like `c-at-statement-start-p' that additionally recognizes commas
3929 and expression parentheses as delimiters.
3930
3931 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Added flag
3932 to avoid heuristics that doesn't work for unclosed blocks.
3933
3934 (c-at-statement-start-p): New function.
3935
3936 * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
3937 Objective-C directives, e.g. directives spanning lines should work
3938 reasonably well now.
3939
3940 (c-put-c-type-property, c-clear-c-type-property): New helpers.
3941
3942 (c-forward-objc-directive): New function to move over any ObjC
3943 directive.
3944
3945 (c-just-after-func-arglist-p, c-guess-basic-syntax)
3946 (c-basic-matchers-before): Use it.
3947
3948 (c-font-lock-objc-iip-decl): Removed.
3949
3950 * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
3951 in the template arglist recognition.
3952
3953 * progmodes/cc-styles.el (c-style-alist): Fixed several
3954 inconsistencies in the Whitesmith style.
3955
3956 * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks):
3957 New lineup function to get lines after Whitesmith style blocks
3958 correctly indented.
3959
3960 (c-lineup-whitesmith-in-block): Backed out the compensation for
3961 opening parens since it's done using `add' lists in the style
3962 definition instead. Don't use the anchor position since it varies
3963 too much between the syntactic symbols. :P
3964
3965 * progmodes/cc-vars.el (c-valid-offset): Updated.
3966
3967 * progmodes/cc-engine.el (c-evaluate-offset): Extended to handle
3968 lists where the offsets are combined according to several
3969 different methods: `first', `min', `max', and `add'. Report
3970 offset evaluation errors with `c-benign-error' so that some kind
3971 of reindentation still is done.
3972
3973 * progmodes/cc-engine.el (c-guess-basic-syntax): Anchor
3974 `arglist-intro' the same way as `arglist-cont-nonempty' and
3975 `arglist-close'.
3976
3977 * progmodes/cc-engine.el (c-guess-basic-syntax): Fixed similar
3978 situations for `arglist-cont-nonempty' and `arglist-close'.
3979
3980 * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New
3981 constant.
3982
3983 * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
3984 cc-bytecomp-boundp' in a number of places.
3985
3986 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fixed a
3987 macro related issue.
3988
3989 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
3990
3991 * progmodes/cc-awk.el: Change the terminology of regexps: A char
3992 list is now [asdf], a char class [:alpha:]. Include code for char
3993 classes. Set c-awk-NL-prop on lines ending in open strings. (Bug
3994 fix.) Add character classes (e.g. "[:alpha:]") into AWK Mode's
3995 regexps.
3996
3997 Remove (nearly all of) the cruft associated with AWK Mode's former
3998 concept of "virtual semicolons":
3999
4000 Adapt c-beginning-of-statement, c-end-of-statement (together with
4001 subfunctions) to use the new notion of "virtual semicolon" in
4002 place of the old awkward special handling for AWK. There remains
4003 much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
4004 * progmodes/cc-cmds.el:
4005 (c-ascertain-adjacent-literal): In the backwards direction, now
4006 recognises AWK regexp delimiters as string delimiters.
4007 (c-after-statement-terminator-p): Adapt for virtual semicolons;
4008 check more rigorously for "end of macro".
4009 (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
4010 virtual semicolons;
4011 (c-beginning-of-statement): Adapt for virtual semicolons; Separate
4012 out the code for forward movement into ...
4013 (c-end-of-statement): Now contains the code for forward movement,
4014 adapted for virtual semicolons.
4015
4016 * progmodes/cc-engine.el:
4017 (c-ws*-string-limit-regexp): New regexp.
4018 (c-forward-single-comment, c-backward-single-comment): Comment out
4019 the (now redundant) "special" AWK stuff.
4020
4021 * progmodes/cc-styles.el, cc-vars.el: Change the settings of
4022 c-string-par-start, c-string-par-separate to be more like Text
4023 Mode than Fundamental Mode.
4024
4025 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4026
4027 * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
4028 to the fontified region so that fontification doesn't occur
4029 outside it (could happen e.g. when fontifying a line with an
4030 unfinished declaration).
4031
4032 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4033
4034 * progmodes/cc-awk.el: Regexps for analysing AWK code have been
4035 moved to near the start of the file. ^L now separate sections of
4036 the file. New defconsts: c-awk-non-eol-esc-pair-re,
4037 c-awk-blank-or-comment-line-re,
4038 c-awk-one-line-possibly-open-string-re,
4039 c-awk-regexp-one-line-possibly-open-char-class-re,
4040 c-awk-one-line-possibly-open-regexp-re,
4041 c-awk-one-line-non-syn-ws*-re. New functions: c-awk-at-vsemi-p,
4042 c-awk-vsemi-status-unknown-p.
4043
4044 Amend the concept of "virtual semicolons" (in the indentation
4045 engine) for languages like AWK, such that they are now
4046 conceptually attached to end of the last token of a statement, not
4047 the end of the line. (In AWK Mode, however, the pertinent text
4048 property is still physically set on the EOL.) Remove the specific
4049 tests for awk-mode, thus facilitating the introduction of other
4050 language modes where EOLs can end statements. (Note: The
4051 funtionality in cc-cmds.el, specifically
4052 c-beginning/end-of-statement has yet to be amended.)
4053
4054 * progmodes/cc-defs.el: New macros c-at-vsemi-p,
4055 c-vsemi-status-unknown-p.
4056
4057 * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
4058 c-stmt-delim-chars. New c-lang-defvars: c-at-vsemi-p-fn,
4059 c-vsemi-status-unknown-p-fn (in a new page).
4060
4061 * progmodes/cc-engine.el: In c-beginning-of-statement-1,
4062 c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
4063 numerous awkward forms like
4064 (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
4065 with
4066 (c-at-vsemi-p). Fix a few typos. In c-guess-basic-syntax, new
4067 variable before-ws-ip, the place just after char-before-ip
4068 appears.
4069
4070 * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
4071 a comment.
4072
4073 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4074
4075 * progmodes/cc-cmds.el (c-electric-brace): Cleaned up using
4076 `c-tentative-buffer-changes'.
4077
4078 * progmodes/cc-defs.el (c-region-is-active-p): Simplified and
4079 converted to macro to choose between Emacs and XEmacs at compile
4080 time.
4081
4082 (c-set-region-active): New set counterpart to
4083 `c-region-is-active-p'.
4084
4085 (c-tentative-buffer-changes): New macro to handle temporary buffer
4086 changes in a convenient way.
4087
4088 (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
4089 for `c-tentative-buffer-changes'.
4090
4091 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tightened up
4092 the checks for paren sexps between the point and the keyword, to
4093 avoid some false alarms.
4094
4095 * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
4096 Fixed a situation where an error could be thrown for unbalanced
4097 parens. Changed to make use of c-keyword-member' to avoid some
4098 repeated regexp matches.
4099
4100 (c-opt-lambda-key, c-opt-inexpr-block-key,
4101 c-opt-inexpr-class-key): These language variable are no longer
4102 necessary.
4103
4104 (c-block-stmt-kwds): New language constant used by
4105 c-looking-at-inexpr-block'.
4106
4107 (c-guess-basic-syntax): Removed an optional check that looked at
4108 the existence of the now removed language variables.
4109
4110 * progmodes/cc-engine.el (c-fdoc-shift-type-backward,
4111 c-forward-decl-or-cast-1): Fixed invalid recognition of C++ style
4112 object instantiation expressions as declarations in some contexts.
4113 This bug only affected languages where the declarator can't be
4114 enclosed in parentheses.
4115
4116 * progmodes/cc-styles.el (c-style-alist): Fixed the GNU style to
4117 insert newlines before and after substatement braces.
4118
4119 * progmodes/cc-engine.el: Improved the heuristics for recognizing
4120 function declaration headers and the handling of C++ style member
4121 init lists.
4122
4123 (c-just-after-func-arglist-p): Rewritten to use
4124 `c-forward-decl-or-cast-1'. Now behaves a bit differently too.
4125
4126 (c-beginning-of-member-init-list): Removed since it isn't used
4127 anymore.
4128
4129 (c-guess-basic-syntax): Case 5B adapted for the new
4130 `c-just-after-func-arglist-p'. Cases 5B.1 and 5B.3 merged. Cases
4131 5D.1 and 5D.2 removed since they aren't trigged anymore (case 5B.1
4132 covers all cases now).
4133
4134 * progmodes/cc-defs.el (c-point): Added `bosws' and `eosws'.
4135
4136 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4137
4138 * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
4139 c-string-par-start/separate c-sentence-end-with-esc-eol,
4140 initialised in c-setup-paragraph-variables, used in string
4141 scanning subroutines of c-beginning-of-statement.
4142
4143 * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
4144 which precedes the newly inserted `{'.
4145
4146 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4147
4148 * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
4149 function for declaration level blocks. It should now cope with
4150 templates better and also be a lot more comprehensible.
4151
4152 (c-looking-at-decl-block): The new function.
4153
4154 (c-search-uplist-for-classkey): The old one. It's now a wrapper
4155 for compatibility.
4156
4157 (c-add-class-syntax, c-guess-continued-construct,
4158 c-guess-basic-syntax): Adapted for `c-looking-at-decl-block'.
4159
4160 (c-decl-block-key): Changed to tell apart ambiguous and
4161 unambiguous keywords. Pike specials are now handled directly in
4162 the code instead.
4163
4164 (c-block-prefix-disallowed-chars, c-block-prefix-charset): New
4165 language constants and variables to make the backward skip in
4166 `c-looking-at-decl-block' as tight as possible.
4167
4168 (c-nonsymbol-token-char-list): New language constant.
4169
4170 * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
4171 find balanced template arglists backwards.
4172
4173 * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
4174 making char classes for `c-syntactic-skip-backward'.
4175
4176 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplified case
4177 16D - can't be a class-close at that point.
4178
4179 * progmodes/cc-engine.el (c-guess-basic-syntax)
4180 (c-add-class-syntax): Don't narrow out the enclosing declaration
4181 level. This makes everything a lot easier, and it was actually
4182 only four small places that needed it to work. Some places that
4183 previously did `widen' are removed now, which has the effect that
4184 `c-guess-basic-syntax' never will look at things outside the
4185 current narrowment now. The anchor position for `topmost-intro'
4186 is affected by this, but it was so bogus it was basically useless
4187 before, and now it's equally bogus but in a slightly different
4188 way.
4189
4190 (c-narrow-out-enclosing-class): Gone.
4191
4192 (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
4193 the narrowed region.
4194
4195 (c-least-enclosing-brace): Removed silly optional argument.
4196
4197 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fixed bug where
4198 the point could be left directly after an open paren when finding
4199 the beginning of the first decl in the block.
4200
4201 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
4202 Specify which submatch to use.
4203
4204 * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
4205
4206 (c-decl-start-re): No longer any need for special treatment of
4207 ObjC due to the above.
4208
4209 (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
4210 presumably follows C in that regard.
4211
4212 * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
4213 New language constants to specify operator tokens inside
4214 identifiers in a more high level way.
4215
4216 (c-opt-identifier-prefix-key): New internal language constant.
4217
4218 (c-opt-identifier-concat-key, c-opt-after-id-concat-key)
4219 (c-identifier-start, c-identifier-key): Now completely calculated
4220 from other constants.
4221
4222 (c-identifier-last-sym-match): Decommissioned since it's no longer
4223 used.
4224
4225 (c-operators): Use `c-identifier-ops'. Documented
4226 `postfix-if-paren'.
4227
4228 * progmodes/cc-engine.el (c-forward-name): Removed the
4229 optimization when c-identifier-key is equal to c-symbol-key since
4230 it doesn't work in byte compiled files. Don't record empty
4231 regions as identifiers.
4232
4233 * progmodes/cc-langs.el (c-filter-ops): New helper function to
4234 simplify access to `c-operators' and its likes.
4235
4236 (c-operator-list, c-all-op-syntax-tokens)
4237 (c-nonsymbol-token-regexp, c-<>-multichar-token-regexp)
4238 (c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds)
4239 (c-primary-expr-regexp, c-cast-parens): Use it.
4240
4241 * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
4242 an explicit language in functions.
4243
4244 * progmodes/cc-defs.el (c-make-keywords-re): Added an appendable
4245 variant of adornment.
4246
4247 * progmodes/cc-langs.el (c-any-class-key): Removed unused language
4248 variable.
4249
4250 (c-type-decl-prefix-key): Removed some now unnecessary cruft from
4251 the Pike value.
4252
4253 * progmodes/cc-engine.el (c-on-identifier)
4254 (c-simple-skip-symbol-backward): Small fix for handling "-"
4255 correctly in `skip-chars-backward'. Affected the operator lfun
4256 syntax in Pike.
4257
4258 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disabled the
4259 diagnostic message about precompiled language vars not being used.
4260
4261 * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
4262 "__attribute__" is followed by a parenthesis.
4263
4264 (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re)
4265 (c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
4266 language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
4267
4268 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el: Internal
4269 cleanups to properly detect the declared identifiers in various
4270 declarations.
4271
4272 (c-decl-start-kwds): New language constant to recognize
4273 declarations that can start anywhere. Used for class declarations
4274 in Pike.
4275
4276 (c-specifier-key, c-not-decl-init-keywords)
4277 (c-decl-prefix-or-start-re, c-find-decl-prefix-search)
4278 (c-find-decl-spots): Implement `c-decl-start-kwds'.
4279
4280 (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds)
4281 (c-decl-hangon-key, c-forward-decl-or-cast-1): Separated the
4282 handling of the compiler specific extension keywords into a new
4283 language constant `c-decl-hangon-kwds' that defines keyword
4284 clauses to be ignored in declarations.
4285
4286 (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
4287 past unrecognized tokens when handling `c-colon-type-list-kwds'.
4288 Necessary to stop at the declared identifier in e.g. IDL valuetype
4289 declarations.
4290
4291 (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds)
4292 (c-prefix-spec-kwds-re, c-postfix-spec-kwds)
4293 (c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key)
4294 (c-forward-decl-or-cast-1): Recognize the declared identifier in
4295 class and enum declarations as such and not as part of the type.
4296
4297 (c-forward-decl-or-cast-1, c-forward-label): Relaxed the
4298 interpretation of PRECEDING-TOKEN-END when there's no preceding
4299 token.
4300
4301 (c-forward-decl-or-cast-1): Don't disregard sure signs of
4302 declarations when there's some syntax error later on.
4303
4304 (c-complex-decl-matchers): Did away with a reference to
4305 `c-specifier-key'.
4306
4307 * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
4308 value - this variable is always dynamically bound.
4309
4310 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el
4311 * cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el
4312 * cc-cmds.el, cc-defs.el: Changed the policy for marking up
4313 functions that might do hidden buffer changes: All such internal
4314 functions are now marked instead of those that don't.
4315
4316 (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments)
4317 (c-(forward|backward)-single-comment, c-parse-state, c-on-identifier)
4318 (c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments)
4319 (c-literal-type): Allow these functions to make hidden buffer changes,
4320 so that they are free to use text property caching later on.
4321
4322 (c-electric-backspace, c-electric-delete-forward, c-electric-pound)
4323 (c-electric-brace, c-electric-slash, c-electric-star)
4324 (c-electric-semi&comma, c-electric-colon, c-electric-lt-gt)
4325 (c-electric-paren, c-electric-continued-statement, c-indent-command)
4326 (c-indent-region, c-mask-paragraph, c-indent-new-comment-line)
4327 (c-context-line-break): Added `c-save-buffer-state' calls to comply
4328 with the changed semantics of the functions above.
4329
4330 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fixed a bug
4331 when macros occur in obscure places. Optimized the sexp movement
4332 a bit.
4333
4334 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4335
4336 Enhancements for c-beginning-of-statement to work in AWK Mode:
4337
4338 * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
4339 (completed statement) with `}' (statement completed by closing
4340 brace or semicolon) and `$' (statement completed by EOL).
4341
4342 (c-awk-virtual-semicolon-ends-prev-line-p)
4343 (c-awk-virtual-semicolon-ends-line-p)
4344 (c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward)
4345 (c-awk-at-statement-end-p): New functions.
4346
4347 * progmodes/cc-cmds.el: Simplify the structure of functions
4348 c-forward-over-illiterals, c-back-over-illiterals. Enhance these
4349 two functions and c-beginning-of-statement to handle AWK Mode.
4350
4351 * progmodes/cc-engine.el: Enhance c-forward-single-comment,
4352 c-backward-single-comment for AWK mode. Attempt to clarify their
4353 doc-strings.
4354
4355 * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
4356
4357 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4358
4359 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
4360 label handling. Labels are now recognized in a uniform and more
4361 robust way, regardless of context. Text properties are put on all
4362 labels to recognize the following declarations better. Multiword
4363 labels are handled both in indentation and fontification for the
4364 benefit of language extensions like Qt. For consistency, keywords
4365 in labels are now fontified with the label face instead. That
4366 also applies to "case" and "default".
4367
4368 (c-beginning-of-statement-1): Fixed some bugs in the label
4369 handling. Disregard `c-nonlabel-token-key' in labels that begin
4370 with `c-label-kwds'.
4371
4372 (c-find-decl-spots): Support that the callback adds more
4373 `c-decl-end' spots to find.
4374
4375 (c-forward-decl-or-cast-1): Don't treat a list of plain
4376 identifiers followed by a colon as a declaration.
4377
4378 (c-forward-label): New function to recognize labels.
4379
4380 (c-guess-basic-syntax): Replaced uses of `c-label-key' with
4381 `c-forward-label'. Moved the label recognition cases (14 and 15)
4382 earlier since they aren't so context sensitive now. Handle labels
4383 on the top level gracefully. Moved access label recognition to
4384 the generic label case (CASE 15) - removed CASE 5E.
4385
4386 (c-font-lock-declarations): Added recognition of labels in the
4387 same round since we need to handle labels in parallell with other
4388 declarations to recognize both accurately. It should also improve
4389 speed.
4390
4391 (c-simple-decl-matchers, c-basic-matchers-after): Moved
4392 `c-font-lock-labels' so that it only is used on decoration level 2
4393 since `c-font-lock-declarations' handles it otherwise.
4394
4395 (c-complex-decl-matchers): Removed the simplistic recognition of
4396 access labels.
4397
4398 (c-decl-prefix-re): Removed the kludges that was necessary to cope
4399 with labels earlier.
4400
4401 (c-decl-start-re): New language variable to make
4402 `c-font-lock-declarations' stop for the special protection labels
4403 in Objective-C that start with `@'.
4404
4405 (c-label-key): Removed since it's no longer used.
4406
4407 (c-recognize-colon-labels, c-label-prefix-re): New language
4408 constants to support recognition of generic colon-terminated
4409 labels.
4410
4411 (c-type-decl-end-used): `c-decl-end' is now used whenever there
4412 are colon terminated labels.
4413
4414 * progmodes/cc-align.el (c-lineup-arglist): Fixed bug when the
4415 first argument starts with a special brace list.
4416
4417 * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1)
4418 (c-font-lock-declarations): Broke out the declaration and cast
4419 recognition from `c-font-lock-declarations' to a new function, so
4420 that it can be used in the indentation engine.
4421
4422 * progmodes/cc-engine.el (c-find-decl-spots): Fixed bug in backing
4423 up to the start of the literal. Fixed bug with the point on the
4424 wrong side of the search limit that could happen when the start
4425 position is inside a literal.
4426
4427 * progmodes/cc-engine.el (c-parse-state)
4428 (c-invalidate-state-cache): Modified the use of `c-state-cache-end'
4429 so that it's kept a little bit back to increase the hit rate.
4430
4431 (c-parse-state): Changed the macro handling and fixed some
4432 glitches. Macro context is checked more often than necessary now,
4433 but otoh less garbage conses are generated.
4434
4435 * progmodes/cc-engine.el (c-parse-state)
4436 (c-invalidate-state-cache): Cache the last position where
4437 `c-state-cache' applies. This can speed up refontification quite
4438 a bit in blocks where there are many non-brace parens before the
4439 point.
4440
4441 (c-state-cache-end): New variable for this.
4442
4443 (c-guess-basic-syntax, c-debug-parse-state): Adapted for the new
4444 cache variable.
4445
4446 * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
4447 get close initial continue positions when the start position is
4448 inside a literal or macro. Do not call the callback for spots
4449 before the start position (which can happen e.g. for `c-decl-end'
4450 spots inside comments). Optimize better in special cases when the
4451 region is a single line inside a literal or macro (typically when
4452 the current line is refontified).
4453
4454 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplified calls
4455 to `c-add-stmt-syntax' - there's no need to explicitly whack off
4456 entries from the paren state.
4457
4458 * progmodes/cc-engine.el (c-add-stmt-syntax): Narrowed down the
4459 special case for "else if" clauses.
4460
4461 * progmodes/cc-engine.el (c-looking-at-inexpr-block)
4462 (c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
4463
4464 * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks): New
4465 language variable to recognize the gcc extension with statement
4466 blocks inside expressions.
4467
4468 * progmodes/cc-engine.el (c-add-stmt-syntax): Restructured to make
4469 it somewhat more comprehensible. The argument AT-BLOCK-START is
4470 no longer used and hence removed.
4471
4472 (c-guess-continued-construct, c-guess-basic-syntax): Updated calls
4473 to `c-add-stmt-syntax'.
4474
4475 * progmodes/cc-engine.el (c-backward-to-decl-anchor): Use
4476 `c-beginning-of-statement-1' instead of duplicating parts of it.
4477 This fixes bogus label recognition.
4478
4479 * progmodes/cc-engine.el (c-add-type, c-check-type)
4480 (c-forward-name, c-forward-type): Improved storage of template
4481 types in `c-found-types' so that they can be recognized better.
4482
4483 (c-syntactic-content): Added option to skip past nested parens.
4484
4485 * progmodes/cc-engine.el (c-forward-name): Set
4486 `c-last-identifier-range' all the time. It's less work that way.
4487 Handle that there might not be an identifier to store in
4488 `c-last-identifier-range'.
4489
4490 (c-forward-type): Handle that `c-last-identifier-range' might be
4491 nil from `c-forward-name'.
4492
4493 * progmodes/cc-defs.el (c-safe-scan-lists)
4494 (c-(go-)?(up|down)-list-(forward|backward)): Added limit arguments.
4495
4496 * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
4497 to work even if the form fails.
4498
4499 * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
4500 down in a large file in one go.
4501
4502 (c-get-fallback-start-pos): New helper function for
4503 `c-parse-state'.
4504
4505 * progmodes/cc-align.el (c-lineup-assignments): New lineup
4506 function which is like `c-lineup-math' but returns nil instead of
4507 `c-basic-offset' when it doesn't match.
4508
4509 (c-lineup-math): Changed to use `c-lineup-assignments'.
4510
4511 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4512
4513 * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
4514 c-beginning-of-statement. New subfunctions
4515 c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
4516
4517 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4518
4519 * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
4520 hardcoded char classes whereever possible. Changed a couple of
4521 places to use skip by syntax instead of skip by char class.
4522
4523 * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
4524 Fixed a bug in the regexp that caused extreme backtracking.
4525
4526 * progmodes/cc-langs.el (c-block-comment-starter)
4527 (c-block-comment-ender): New language constants to specify in a
4528 single place how block comments look.
4529
4530 (c-comment-start-regexp, c-block-comment-start-regexp)
4531 (comment-start, comment-end, comment-start-skip)
4532 (c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws)
4533 (c-syntactic-ws, c-nonempty-syntactic-ws)
4534 (c-single-line-syntactic-ws, c-syntactic-eol): Now built from
4535 `c-line-comment-starter', `c-block-comment-starter' and
4536 `c-block-comment-ender'.
4537
4538 (c-block-comment-regexp, c-unterminated-block-comment-regexp):
4539 New language constants to break up things a bit.
4540
4541 (c-simple-ws): New language constant for simple whitespace.
4542
4543 * progmodes/cc-defs.el (c-concat-separated): New convenience
4544 function.
4545
4546 * progmodes/cc-defs.el (c-make-keywords-re): Added kludge for bug
4547 in `regexp-opt' in Emacs 20 and XEmacs when strings contain
4548 newlines. Allow and ignore nil elements in the list.
4549
4550 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4551
4552 * progmodes/cc-cmds.el: Comment out a (n almost certainly
4553 superfluous) check, (eq here (point-max)) in
4554 c-beginning-of-statement.
4555
4556 * progmodes/cc-cmds.el: Tidy up the comments in
4557 c-beginning-of-statement and subfunctions.
4558
4559 * progmodes/cc-awk.el: Replace calls to put-text-property to the
4560 more flexible c-put-char-property and c-clear-char-properties.
4561 Add the author's email address.
4562
4563 * progmodes/cc-langs.el: New variable,
4564 c-block-comment-start-regexp.
4565
4566 * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
4567 closing "*/" of a block comment.
4568
4569 * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
4570 subfunctions) so that it works at BOB and EOB.
4571
4572 * progmodes/cc-cmds.el, cc-vars.el: More updating of
4573 c-beginning-of-statement, including new variable
4574 c-block-comment-start-regexp.
4575
4576 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4577
4578 * progmodes/cc-langs.el (c-known-type-key): Optimize simple
4579 symbols from `*-font-lock-extra-types' so that there's no need to
4580 use `regexp-opt' on those lists.
4581
4582 * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
4583 `c-type-modifier-kwds' is empty.
4584
4585 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
4586 there are several strings on the same line.
4587
4588 * progmodes/cc-engine.el (c-literal-limits): Removed the
4589 compatibility function for older emacsen. `c-literal-limits-fast'
4590 has now taken the place of this function.
4591
4592 * progmodes/cc-vars.el (c-emacs-features): Removed compatibility
4593 with older emacsen: We now require `pps-extended-state'.
4594
4595 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4596
4597 * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
4598 which obviates the need to hack sentence-end. This now handles
4599 escaped newlines in strings correctly. Correct minor bugs in
4600 c-move-over-sentence and in c-beginning-of-statement.
4601
4602 * progmodes/cc-cmds.el (c-beginning-of-statement (and
4603 subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
4604 that movement over macros and code are rigorously separated from
4605 eachother. Correct a few incidental bugs.
4606
4607 * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
4608 Improve its doc-string. Improve the handling of certain specific
4609 cases.
4610
4611 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4612
4613 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
4614 (c-guess-basic-syntax): Changed the way class-level labels are
4615 recognized; they can now contain essentially any symbols.
4616
4617 (c-opt-extra-label-key): New language variable to cope with the
4618 special protection label syntax in Objective-C.
4619
4620 (c-opt-access-key): Removed; this is now handled better by
4621 `c-nonlabel-token-key' and `c-opt-extra-label-key'.
4622
4623 (c-complex-decl-matchers): Update to handle that
4624 `c-opt-access-key' no longer exists.
4625
4626 * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
4627 improved label recognition in `c-beginning-of-statement-1'.
4628
4629 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
4630 Recognize bitfields better.
4631
4632 * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
4633 Removed some cruft and fixed a bug that could cause it to go to a
4634 position further down.
4635
4636 * progmodes/cc-langs.el, cc-engine.el
4637 (c-beginning-of-statement-1): Improved detection of labels in
4638 declaration contexts.
4639
4640 (c-beginning-of-decl-1): Use it.
4641
4642 (c-nonlabel-token-key): New language constant and variable needed
4643 by `c-beginning-of-statement-1'.
4644
4645 * progmodes/cc-engine.el (c-guess-basic-syntax): Fixed bug that
4646 manifested itself due to the correction in `c-forward-sexp'.
4647
4648 * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp): Made
4649 these behave as documented when used at the buffer limits.
4650
4651 * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
4652 (c-type-decl-end-used): Made this a language variable.
4653
4654 * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
4655 correctly when `combine-after-change-calls' is used together with
4656 temporary narrowings.
4657
4658 * progmodes/cc-engine.el (c-beginning-of-statement-1): Report
4659 labels correctly when the start point is immediately after the
4660 colon.
4661
4662 * progmodes/cc-defs.el (c-parse-sexp-lookup-properties): Removed
4663 since it isn't used anymore.
4664
4665 * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
4666 bracket arglists such as template parens in C++.
4667
4668 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fixed a bug
4669 in the last check-in. Some optimization.
4670
4671 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fixed bug
4672 where it could stop at the same level in a preceding sexp when
4673 PAREN-LEVEL is set.
4674
4675 * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
4676 text property lookup only when it's needed.
4677
4678 * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
4679 Changed the policy for paren marked angle brackets to be more
4680 persistent; once marked they remain marked even when they're found
4681 to be unbalanced in the searched region. This should keep the
4682 paren syntax around even when individual lines are refontified in
4683 multiline template arglists.
4684
4685 (c-parse-and-markup-<>-arglists): New dynamically bound variable
4686 to control markup so that incorrect angle bracket arglists aren't
4687 marked in contexts where the correct value for
4688 `c-disallow-comma-in-<>-arglists' isn't known.
4689
4690 (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
4691 argument has become `c-parse-and-markup-<>-arglists'.
4692
4693 (c-remove-<>-arglist-properties): Removed - no longer used.
4694
4695 (c-after-change-check-<>-operators): New function used on
4696 `after-change-functions' to avoid that "<" and ">" characters that
4697 are part of longer operators have paren syntax.
4698
4699 (c-<>-multichar-token-regexp): New language variable used by
4700 `c-after-change-check-<>-operators'.
4701
4702 (c-after-change): Call `c-after-change-check-<>-operators'.
4703
4704 (c-font-lock-<>-arglists): Use the context properties set by
4705 `c-font-lock-declarations' to set
4706 `c-disallow-comma-in-<>-arglists' correctly to avoid doing invalid
4707 markup.
4708
4709 (c-font-lock-declarations): Removed code that undoes the invalid
4710 markup done by `c-font-lock-<>-arglists'.
4711
4712 (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
4713 after `c-font-lock-declarations'.
4714
4715 * progmodes/cc-engine.el (c-syntactic-skip-backward): Added
4716 paren-level feature.
4717
4718 (c-guess-basic-syntax): Improved the anchor position for
4719 `template-args-cont' in nested template arglists. There's still
4720 much to be desired in this area, though.
4721
4722 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4723
4724 * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
4725 Make the "Text Filling and Line Breaking" commands work for AWK
4726 buffers.
4727
4728 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4729
4730 * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
4731 Removed; (c-major-mode-is 'awk-mode) can be used instead now.
4732
4733 * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
4734 it doesn't work no longer are supported.
4735
4736 * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el
4737 * cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
4738 requires support for the syntax-table' text property, which rules
4739 out Emacs 19 and XEmacs < 21.4. Removed various compatibility
4740 cruft associated with those versions.
4741
4742 * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
4743 for the `syntax-table' text property, which rules out Emacs 19 and
4744 XEmacs < 21.4. Removed various compatibility cruft associated
4745 with those versions.
4746
4747 * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
4748 support for the `syntax-table' text property.
4749
4750 * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
4751 variable and use an extra quoted face name instead. All the
4752 emacsen flavors handle that correctly.
4753
4754 * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare)
4755 (c-font-lock-declarators, c-font-lock-declarations)
4756 (c-complex-decl-matchers, c-basic-matchers-after): Use a text
4757 property to mark the items in in declarator lists to handle
4758 refontification inside multiline declarations better.
4759
4760 * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
4761 construct like "a * b = c;" as a declaration.
4762
4763 2005-12-08 Kim F. Storm <storm@cua.dk>
4764
4765 * emulation/cua-base.el (cua-use-hyper-key): Replaced by ...
4766 (cua-rectangle-modifier-key): ... this. New defcustom. Can now
4767 select either meta, hyper, or super modifier for rectangle commands.
4768 (cua--rectangle-modifier-key): New defvar.
4769 (cua--M/H-key): Use it. Remove special case for `space'.
4770 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
4771 on X, to meta otherwise. Always bind C-return to toggle
4772 rectangle. Pass ?\s instead of `space' to cua--M/H-key.
4773
4774 * emulation/cua-rect.el (cua-help-for-rectangle): Use
4775 cua--rectangle-modifier-key. Handle super modifier too.
4776 (cua--init-rectangles): Always bind C-return to toggle rectangle.
4777 Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
4778
4779 * ido.el: Move Acknowledgements and History after Commentary.
4780 Minor changes to Commentary.
4781
4782 * emulation/cua-base.el (cua--select-keymaps): Enable repeat
4783 keymap if cua--prefix-override-timer is `shift'.
4784 (cua--shift-control-prefix): New function; emulate "type prefix
4785 key twice" functionality to handle shifted prefix key override.
4786 (cua--shift-control-c-prefix, cua--shift-control-x-prefix): New
4787 commands.
4788 (cua--init-keymaps): Bind them to S-C-c and S-C-x.
4789
4790 2005-12-08 Carsten Dominik <dominik@science.uva.nl>
4791
4792 * textmodes/org.el (org-insert-heading): Try to do items before
4793 headings.
4794 (org-agenda-mode): Quote `org-agenda-mode-hook'.
4795 (org-insert-item): New function.
4796 (org-renumber-ordered-list): Don't skip to higher level lists.
4797
4798 2005-12-08 Juri Linkov <juri@jurta.org>
4799
4800 * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
4801
4802 * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
4803
4804 * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
4805
4806 * pcvs.el (defun-cvs-mode): Put `definition-name' property on
4807 the constructed function name fun-1.
4808
4809 * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
4810 because such links don't lead to parent documentation.
4811
4812 2005-12-08 Kenichi Handa <handa@m17n.org>
4813
4814 * descr-text.el (describe-char): Use *Help-2* buffer if the
4815 current buffer is *Help*. Call describe-text-properties while
4816 setting the original buffer.
4817
4818 2005-12-07 Bill Wohler <wohler@newt.com>
4819
4820 * files.el (auto-mode-alist): Remove mh-letter-mode. Unnecessary,
4821 and causes problems with non-MH users (such as Gnus users).
4822
4823 2005-12-08 Nick Roberts <nickrob@snap.net.nz>
4824
4825 * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
4826 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
4827 (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
4828 command "info sources". Move calls to GDB command "list".
4829 (gdb-find-file-hook): Just use gdb-source-file-list.
4830 (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
4831 (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
4832 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
4833 (gdb-data-list-register-values-handler): Use correct trigger name.
4834
4835 2005-12-07 Kim F. Storm <storm@cua.dk>
4836
4837 * ido.el (ido-completion-map): Rename from ido-mode-map.
4838 (ido-common-completion-map, ido-file-completion-map)
4839 (ido-file-dir-completion-map, ido-buffer-completion-map):
4840 Rename from ido-mode-....-map.
4841 (ido-init-completion-maps): Rename from ido-init-mode-maps.
4842 (ido-setup-completion-map): Rename from ido-define-mode-map.
4843 (ido-read-internal): Bind minibuffer-local-filename-completion-map
4844 to ido-completion-map.
4845
4846 2005-12-07 Kenichi Handa <handa@m17n.org>
4847
4848 * international/mule-cmds.el
4849 (set-display-table-and-terminal-coding-system): If the coding
4850 system specified in `unibyte-display' property is different from
4851 the arg coding-system, don't setup standard-display-table.
4852
4853 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
4854
4855 * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
4856 that comments end at \n, regardless of selective-display.
4857
4858 2005-12-07 Nick Roberts <nickrob@snap.net.nz>
4859
4860 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
4861 (gdb-version): New variables.
4862 (gdb-source-file-list, gdb-register-names)
4863 (gdb-changed-registers): New variables for use with GDB 6.4+.
4864 (gdb-ann3): Replace with...
4865 (gdb-init-1, gdb-init-2): ...two new functions.
4866 (gdba, gdb-prompt): Call gdb-init-1.
4867 (gdb-get-version): New function. Call gdb-init-2 from here.
4868 (gud-watch): Make it work with mouse events too.
4869 (gdb-post-prompt): Don't add to queue until GDB version is known.
4870 (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
4871 (gdb-locals-mode): Use gdb-version.
4872 (gdb-memory-format-map, gdb-memory-unit-map)
4873 (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
4874 (gdb-locals-font-lock-keywords-1)
4875 (gdb-locals-font-lock-keywords-2): New variables.
4876 (gdb-find-file-hook): Make it work with GDB 6.4+ too.
4877 (gdb-set-gud-minor-mode-existing-buffers-1)
4878 (gdb-var-list-children-1, gdb-var-list-children-handler-1)
4879 (gdb-var-update-1, gdb-var-update-handler-1)
4880 (gdb-data-list-register-values-handler)
4881 (gdb-data-list-register-values-custom)
4882 (gdb-get-changed-registers, gdb-get-changed-registers-handler)
4883 (gdb-stack-list-locals-handler, gdb-get-register-names):
4884 New functions for use with GDB 6.4+.
4885 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
4886 (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
4887 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
4888 (gdb-stack-list-locals-regexp)
4889 (gdb-data-list-register-names-regexp): New regexps for use with
4890 GDB 6.4+.
4891
4892 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
4893
4894 * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
4895
4896 2005-12-06 Nozomu Ando <nand@mac.com> (tiny patch)
4897
4898 * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
4899 prompts work for AUTH PLAIN. Also reported by Steve Allan
4900 <seallan@verizon.net>.
4901
4902 2005-12-06 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
4903
4904 * frame.el (set-frame-parameter): Add doc string.
4905
4906 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
4907
4908 * textmodes/org.el (org-occur-highlights): New variable.
4909 (org-highlight-new-match, org-remove-occur-highlights): New functions.
4910 (org-highlight-sparse-tree-matches): New option.
4911 (org-do-occur): New function.
4912 (org-get-heading): Make it work also at beginning of line.
4913 (org-category-table): New variable.
4914 (org-get-category-table, org-get-category)
4915 (org-camel-to-words, org-link-search): New functions.
4916 (org-select-this-todo-keyword): New variable.
4917 (org-todo-list): New command.
4918 (org-shiftright, org-shiftleft): New commands.
4919 (org-agenda-todo): Add prefix argument.
4920 (org-show-hierarchy-above): New option.
4921 (org-show-todo-tree): Numerical prefix creates tree for specific
4922 TODO keyword.
4923 (org-outline-level): New function, to assign a level to plain
4924 lists items.
4925 (org-cycle-include-plain-lists): New option.
4926 (org-mode): Use `org-outline-level' as value of `outline-level'.
4927 (org-cycle): Temporarily switch `outline-regexp' if
4928 `org-cycle-include-plain-lists' is non-nil.
4929 (org-start-icalendar-file): Fix format bug.
4930 (org-agenda-get-day-entries): Create category table.
4931 (org-agenda-get-todos, org-agenda-get-timestamps)
4932 (org-agenda-get-deadlines, org-agenda-get-scheduled)
4933 (org-agenda-get-blocks): Use `org-get-category'.
4934 (org-context-in-file-links): Rename from
4935 `org-line-numbers-in-file-links'.
4936
4937 2005-12-06 Romain Francoise <romain@orebokech.com>
4938
4939 * window.el (balance-windows): Delete extraneous third arg in call
4940 to `enlarge-window'.
4941
4942 2005-12-06 Kenichi Handa <handa@m17n.org>
4943
4944 * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
4945
4946 2005-12-06 Nick Roberts <nickrob@snap.net.nz>
4947
4948 * progmodes/gdb-ui.el (gdb-var-create-handler)
4949 (gdb-var-evaluate-expression-handler, gdb-frame-handler)
4950 (gdb-var-list-children-handler, gdb-var-update-handler):
4951 Current buffer is already gdb-partial-output-buffer, don't
4952 make it current again.
4953
4954 2005-12-05 Luc Teirlinck <teirllm@auburn.edu>
4955
4956 * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
4957 (list-buffers-noselect): Use it.
4958
4959 2005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
4960
4961 * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
4962 (mail-yank-ignored-headers): Use regexp-opt.
4963 (mail-mode-map): Move initialization into declaration.
4964 (mail-sent-via): Remove unused shadowed var `to-line'.
4965 (mail-mailer-swallows-blank-line): Use with-temp-buffer.
4966 (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
4967 (mail-do-fcc): Use dolist and push.
4968 (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
4969 (mail-yank-ignored-headers): Don't autoload.
4970
4971 2005-12-05 Kenichi Handa <handa@m17n.org>
4972
4973 * international/mule-cmds.el (set-language-info-internal): New fun.
4974 (set-language-info): Call set-language-info-internal to update
4975 language-info-alist. If LANG-ENV is the current one, call
4976 set-language-environment to make INFO effective now.
4977 (set-language-info-alist): Likewise.
4978 (locale-language-names): With locale "en", use English
4979 lang. env. but set the default codings to iso-8859-1.
4980
4981 2005-12-04 Nick Roberts <nickrob@snap.net.nz>
4982
4983 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
4984 (gdb-speedbar-auto-raise): Echo new state in minibuffer.
4985 (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
4986 for plain strings.
4987 (gdb-frames-mode): Remove redundant call to font-lock-mode.
4988 (gdb-all-registers): Rename from toggle-gdb-all-registers.
4989 Create registers buffer if necessary. Echo new state in minibuffer.
4990 (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
4991
4992 2005-12-03 Chong Yidong <cyd@stupidchicken.com>
4993
4994 * info.el (Info-fontify-node): Match external links using
4995 non-directory part of filename.
4996
4997 2005-12-04 Juri Linkov <juri@jurta.org>
4998
4999 * font-core.el (global-font-lock-mode): Use define-global-minor-mode
5000 instead of easy-mmode-define-global-mode. Add `:group font-lock'.
5001 (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
5002 because there is no customization option for it.
5003
5004 * font-lock.el (lisp-font-lock-keywords-1):
5005 Add define-global-minor-mode.
5006
5007 * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
5008
5009 * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
5010 properties on the constructed variable names.
5011
5012 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
5013 Put `definition-name' properties on the constructed function names
5014 next-sym and prev-sym.
5015
5016 * emacs-lisp/find-func.el (find-function-regexp):
5017 Add define-global-minor-mode. Replace `easy-mmode-define-global-mode'
5018 with `easy-mmode-define-[a-z-]+'. Add easy-menu-define.
5019 (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
5020 and easy-menu-define.
5021
5022 * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
5023 easy-mmode-define-global-mode and define-global-minor-mode.
5024 (lisp-imenu-generic-expression): Add define-global-minor-mode.
5025
5026 * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
5027 instead of easy-mmode-define-global-mode.
5028
5029 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
5030 Use define-minor-mode instead of easy-mmode-define-minor-mode.
5031
5032 * cus-edit.el (customize-group, customize-group-other-window):
5033 Filter out autoloaded options from the group completion list by
5034 using heuristics that autoloaded groups don't have `custom-autoload'
5035 property on their symbols (they have only `custom-loads').
5036
5037 * simple.el (completion-setup-function): Put completions-common-part
5038 face on complete completion string too (i.e. completion string
5039 without completions-first-difference face).
5040
5041 * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
5042
5043 2005-12-03 Eli Zaretskii <eliz@gnu.org>
5044
5045 * view.el (view-mode): Doc fix.
5046
5047 * disp-table.el (standard-display-european): Add to the warning
5048 message a reference to the doc string.
5049
5050 * play/yow.el (apropos-zippy): Call print-help-return-message,
5051 similar to other Help and Apropos commands.
5052
5053 * help.el (print-help-return-message): If pop-up-frames is
5054 non-nil, set up help-return-method to delete the help window and,
5055 possibly, its frame as well, and don't display message about
5056 scrolling the help window. Doc fix.
5057 (help-return-method): Doc fix.
5058
5059 2005-12-03 Martin Rudalics <rudalics@gmx.at> (tiny change)
5060
5061 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
5062 whereby names of length one or names starting with a
5063 symbol-constituent character would not be returned.
5064
5065 2005-12-03 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
5066
5067 * subr.el (atomic-change-group): Add edebug and indentation spec.
5068
5069 2005-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
5070
5071 * completion.el (save-completions-file-name): Fix typo in last change.
5072
5073 2005-12-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5074
5075 * info.el: Move back/forward history to the beginning of the tool bar.
5076
5077 2005-12-02 Ken Manheimer <ken.manheimer@gmail.com>
5078
5079 * allout.el (eval-when-compile): Remove unnecessary load of cl.
5080 Add fset of allout-real-isearch-abort during compile to fix
5081 byte-compilation warnings.
5082 (allout-mode-p): Move definition of this macro above all uses, or
5083 byte compilation in barren emacs (eg, during emacs build) will
5084 lack the definition.
5085 (allout-mode): Move this variable above any uses, or byte
5086 compilation will fail.
5087 (allout-resolve-xref): Remove use of personal file-reference function.
5088 (allout-toggle-current-subtree-encryption): Do the current (ie,
5089 visible containing) topic, rather than nearest around point. Doc fix.
5090 (allout-toggle-subtree-encryption): New function, workhorse that
5091 works on nearest topic containing point.
5092 (allout-encrypt-string): Signal requirement for newer version of pgg.
5093 (allout-resumptions): Doc fix.
5094
5095 2005-12-02 Eli Zaretskii <eliz@gnu.org>
5096
5097 * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
5098
5099 2005-12-02 Agustin Martin <agustin.martin@hispalinux.es>
5100
5101 * textmodes/flyspell.el (flyspell-external-point-words):
5102 Consider a misspelling as found in the string search if: (a) misspelling
5103 and found string lengths match, or (b) misspelling is found as
5104 element in a boundary-chars separated longer string, or (c)
5105 ispell-program-name is really ispell and misspelling is found as
5106 part of a TeX string. After successful match move beginning of
5107 search region to end of match. Warn about not found misspellings
5108 once the process is done.
5109 (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
5110
5111 2005-12-02 Nick Roberts <nickrob@snap.net.nz>
5112
5113 * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
5114 tool bar (removed inadvertently).
5115
5116 2005-12-02 Juri Linkov <juri@jurta.org>
5117
5118 * log-view.el (log-view-diff): Clarify doc string.
5119
5120 2005-12-01 Bill Wohler <wohler@newt.com>
5121
5122 * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
5123 triggers lm-verify errors.
5124
5125 2005-12-01 Luc Teirlinck <teirllm@auburn.edu>
5126
5127 * simple.el (transient-mark-mode, line-number-mode)
5128 (column-number-mode, size-indication-mode): Remove `:require nil'.
5129
5130 2005-12-01 Nick Roberts <nickrob@snap.net.nz>
5131
5132 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
5133 in the margin also.
5134 (gdb-breakpoints-mode-map): Use D instead of d for
5135 gdb-delete-breakpoint.
5136 (gdb-get-frame-number): Require a number to match on.
5137 (gdb-threads-mode-map): Add follow-link binding.
5138
5139 2005-11-30 Jason Rumney <jasonr@gnu.org>
5140
5141 * isearch.el (isearch-mode-map): Avoid exiting search on
5142 language-change event.
5143
5144 2005-11-30 Romain Francoise <romain@orebokech.com>
5145
5146 * speedbar.el (speedbar-default-position): New defcustom.
5147 (speedbar-frame-reposition-smartly): Use it.
5148
5149 * dframe.el (dframe-reposition-frame-emacs): Fix position
5150 computation for `left' location.
5151 Update copyright year.
5152
5153 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
5154
5155 * help.el (help-map): Move initialization into declaration.
5156
5157 * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
5158
5159 * help-fns.el (help-argument-name): Don't autoload.
5160 It's useless and triggers a bug in cus-dep.el causing ldefs-boot
5161 to be re-loaded when customizing the `help' group.
5162
5163 2005-11-30 John Paul Wallington <jpw@gnu.org>
5164
5165 * help-fns.el (describe-function-1): Fill arglist output.
5166
5167 2005-11-30 Kim F. Storm <storm@cua.dk>
5168
5169 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
5170 (cua--rectangle-post-command): Cleanup overlays and deactivate mark
5171 after revert-buffer (or anything else which kills all local variables).
5172
5173 * apropos.el (apropos-parse-pattern): Doc fix.
5174 Set apropos-regexp directly, rather than expecting callers to do so.
5175 (apropos-command, apropos, apropos-value, apropos-documentation):
5176 Simplify calls to apropos-parse-pattern.
5177
5178 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
5179
5180 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
5181 (hi-lock-face-phrase-buffer): Use hi-yellow face.
5182 (hi-lock-write-interactive-patterns): Use comment-region.
5183
5184 * longlines.el (longlines-mode): Add mail-setup-hook.
5185
5186 * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
5187
5188 * simple.el (sendmail-user-agent-compose, next-line):
5189 Conditionally use hard-newline.
5190
5191 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
5192
5193 * international/latexenc.el (latex-inputenc-coding-alist):
5194 Reword doc string.
5195
5196 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
5197
5198 * help.el (describe-key-briefly, describe-key): Recognize default
5199 bindings.
5200
5201 2005-11-29 Romain Francoise <romain@orebokech.com>
5202
5203 * view.el (view-inhibit-help-message): New defcustom.
5204 (view-mode-enter): Use it.
5205
5206 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu>
5207
5208 * ediff-wind.el (ediff-setup-control-frame, ediff-make-wide-display):
5209 Preserve user position.
5210
5211 2005-11-28 Luc Teirlinck <teirllm@auburn.edu>
5212
5213 * font-lock.el: Throw error if facemenu is not loaded to prevent
5214 accidental change of loading order in loadup.el. (Suggested by RMS.)
5215
5216 * loadup.el: Add comment explaining why facemenu must be loaded
5217 before font-lock.
5218
5219 2005-11-28 Jay Belanger <belanger@truman.edu>
5220
5221 * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
5222 (calc-dispatch-map): Add more keys for `calc-same-interface'.
5223
5224 * calc/calc-misc.el (calc-dispatch-help): Update docstring.
5225
5226 * calc/calc-embed.el (calc-do-embedded): Update help message.
5227
5228 * calc/calc-prog.el (calc-user-define-invokation): Update help message.
5229
5230 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
5231
5232 * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
5233
5234 * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
5235 called-interactively-p.
5236 (elp-profilable-p): Rename from elp-not-profilable-p.
5237 Invert result and take into account macros and autoloaded functions.
5238 (elp-instrument-function): Update call.
5239 (elp-instrument-package): Update call. Add completion.
5240 (elp-pack-number): Use match-string.
5241 (elp-results-jump-to-definition-by-mouse): Merge into
5242 elp-results-jump-to-definition and then remove.
5243 (elp-output-insert-symname): Make help echo text single-line.
5244
5245 * replace.el (query-replace-map): Move initialization into declaration.
5246 (occur-engine): Use with-current-buffer.
5247 (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
5248 (occur-mode-mouse-goto): Replace with an alias.
5249
5250 2005-11-28 Juri Linkov <juri@jurta.org>
5251
5252 * simple.el (quoted-insert): Let-bind input-method-function to nil.
5253
5254 * term/w32-win.el: Bind [S-tab] to [backtab].
5255
5256 * info.el (Info-fontify-node): Set 2nd arg `noerror' of
5257 `Info-find-file' to t.
5258
5259 * replace.el (occur-mode-mouse-goto): Pop, don't switch.
5260 (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
5261 and same-window-regexps.
5262 (occur-next-error): Don't move point for arg 0.
5263
5264 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
5265
5266 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
5267
5268 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
5269
5270 * log-edit.el (log-edit-changelog-use-first): New var.
5271 (log-edit-changelog-ours-p): Use it.
5272 (log-edit-insert-changelog): Set it with new arg `use-first'.
5273 (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
5274 (log-edit-hook): Add them to the list of suggested options.
5275
5276 * textmodes/flyspell.el (flyspell-last-buffer): New var.
5277 (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
5278 redundant work.
5279 (flyspell-mode-on): Use add-hook for after-change-functions.
5280 (flyspell-mode-off): Use remove-hook for after-change-functions.
5281 (flyspell-changes): Make it buffer-local.
5282 (flyspell-after-change-function): Make it non-interactive. Use push.
5283 (flyspell-post-command-hook): Check input-pending-p while processing
5284 the potentially long list of buffer changes.
5285
5286 2005-11-28 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
5287
5288 * buff-menu.el (list-buffers-noselect): Display the selected
5289 frame's buffer list, not the global one.
5290
5291 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
5292
5293 * xt-mouse.el (xterm-mouse-event): Set last-input-event so
5294 that (list last-input-event) works as in interactive spec.
5295
5296 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
5297
5298 * loadup.el ("facemenu"): Load facemenu before font-lock, because
5299 `facemenu-keymap' needs to be defined when font-lock is loaded.
5300 Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
5301
5302 2005-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
5303
5304 * completion.el: Remove useless leading * in defcustom docstrings.
5305 (save-completions-file-name): Use ~/.emacs.d if available.
5306 (completion-standard-syntax-table): Rename from
5307 cmpl-standard-syntax-table and fold initialization into declaration,
5308 thus removing cmpl-make-standard-completion-syntax-table.
5309 (completion-lisp-syntax-table, completion-c-syntax-table)
5310 (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
5311 (cmpl-saved-syntax, cmpl-saved-point): Remove.
5312 (symbol-under-point, symbol-before-point)
5313 (symbol-under-or-before-point, symbol-before-point-for-complete)
5314 (add-completions-from-c-buffer): Use with-syntax-table.
5315 (make-completion): Don't return a list of completion entries.
5316 Update callers.
5317 (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
5318 (completion-initialize): Rename from initialize-completions.
5319 (completion-find-file-hook): Rename from cmpl-find-file-hook.
5320 (kill-emacs-save-completions): Collect stats here.
5321 (save-completions-to-file, load-completions-from-file):
5322 Use with-current-buffer.
5323 (completion-def-wrapper): Rename from def-completion-wrapper. Make it
5324 into a function. Move all calls to toplevel.
5325 (completion-lisp-mode-hook): New fun.
5326 (completion-c-mode-hook, completion-setup-fortran-mode):
5327 Set the syntax-table here. Use local-set-key.
5328 (completion-saved-bindings): New var.
5329 (dynamic-completion-mode): Make it into a proper minor mode.
5330 (load-completions-from-file): Remove unused var `num-uses'.
5331
5332 * emacs-lisp/cl-macs.el (defstruct): Don't define the default
5333 constructor if it is explicitly overridden.
5334
5335 * complete.el (PC-completion-as-file-name-predicate):
5336 Use minibuffer-completing-file-name.
5337 (partial-completion-mode): Use find-file-not-found-functions.
5338 (PC-lisp-complete-symbol): Use with-syntax-table.
5339 (PC-look-for-include-file): Remove dead setq.
5340 (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
5341 (PC-complete): Use with-current-buffer.
5342
5343 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
5344 escape single quotes.
5345
5346 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
5347
5348 * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
5349 of `if' whose condition always returned nil. Doc fix.
5350
5351 * buff-menu.el (Buffer-menu-revert-function): Make the selected
5352 window's buffer the current buffer around the call to
5353 `list-buffers-noselect'. This is necessary to mark that buffer
5354 with a `.' in the Buffer Menu when called from Lisp, for instance
5355 by Auto Revert Mode.
5356
5357 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
5358
5359 * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
5360 attaching to it.
5361 (gdb-pre-prompt): Make sure gdb-error is reset.
5362
5363 * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
5364 with a child process, detect it.
5365 (gud-speedbar-buttons): Match regexp more carefully.
5366
5367 2005-11-27 Richard M. Stallman <rms@gnu.org>
5368
5369 * mouse.el (mouse-drag-move-window-bottom):
5370 Use adjust-window-trailing-edge.
5371
5372 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
5373
5374 * simple.el (blink-matching-open): Ignore
5375 `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
5376 (blink-matching-paren-on-screen): Update docstring.
5377
5378 * paren.el (show-paren-mode): No longer change
5379 `blink-matching-paren-on-screen'.
5380
5381 2005-11-27 John Paul Wallington <jpw@pobox.com>
5382
5383 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
5384 (gdb-threads-select, gdb-edit-register-value):
5385 Use `posn-set-point' instead of `mouse-set-point' because the
5386 latter is not fbound when configured without X.
5387
5388 2005-11-27 Kim F. Storm <storm@cua.dk>
5389
5390 * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
5391 existing face when partially highlighting a TAB in a rectangle.
5392
5393 2005-11-26 Kim F. Storm <storm@cua.dk>
5394
5395 * ido.el (ido-mode-map): Doc fix.
5396 (ido-mode-common-map, ido-mode-file-map)
5397 (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
5398 (ido-define-mode-map): Rewrite. Select one of the new maps as
5399 parent for ido-mode-map instead of building from scratch.
5400 (ido-init-mode-maps): New defun to initialize new maps.
5401 (ido-mode): Call it.
5402 (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
5403 (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
5404
5405 2005-11-26 John Paul Wallington <jpw@pobox.com>
5406
5407 * arc-mode.el (archive-extract): Use `posn-set-point' instead of
5408 `mouse-set-point' because the latter is not fbound when configured
5409 without X.
5410
5411 2005-11-26 Thien-Thi Nguyen <ttn@gnu.org>
5412
5413 * files.el (file-relative-name): Doc fix.
5414
5415 2005-11-26 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
5416
5417 * progmodes/octave-inf.el (inferior-octave-startup): Force a
5418 non-empty string for secondary prompt PS2.
5419
5420 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
5421
5422 * progmodes/compile.el (compilation-setup): Fix last change.
5423
5424 2005-11-26 Nick Roberts <nickrob@snap.net.nz>
5425
5426 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
5427 (gdb-mouse-toggle-breakpoint-margin)
5428 (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
5429 Add gdb-server-prefix to keep out of command history.
5430 (gdb-edit-register-value): New function.
5431 (gdb-registers-mode-map): Bind mouse-2 and RET to it.
5432 (gdb-info-registers-custom): Use above map.
5433
5434 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
5435
5436 * custom.el (enable-theme): Signal error if argument is not a
5437 theme. Don't recalculate a face if it's not loaded yet.
5438
5439 * cus-face.el (custom-theme-set-faces): Don't change saved-face if
5440 the `user' theme is in effect.
5441
5442 * info.el (Info-on-current-buffer): Record actual filename in
5443 Info-current-file, instead of t, or a fake filename if a non-file
5444 buffer. Make autoload.
5445 (Info-find-node, Info-revert-find-node): No need to check for
5446 Info-current-file nil.
5447 (Info-set-mode-line, Info-up, Info-copy-current-node-name):
5448 Info-current-file is now never `t'.
5449 (Info-fontify-node): Many simplifications due to Info-current-file
5450 always being valid. Use Info-find-file to find node filename.
5451
5452 2005-11-25 David Kastrup <dak@gnu.org>
5453
5454 * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
5455 new character, then delete" in order to preserve markers.
5456
5457 2005-11-25 David Ponce <david@dponce.com>
5458
5459 * recentf.el (recentf-arrange-by-rule): Handle a special
5460 `auto-mode-alist'-like "strip suffix" rule.
5461 (recentf-build-mode-rules): Handle second level auto-mode entries.
5462
5463 2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
5464
5465 * viper-keym.el (viper-ESC-key): Use different values in terminal and
5466 window modes.
5467
5468 * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
5469 jde-javadoc-checker-report-mode.
5470
5471 * ediff-wind (ediff-make-wide-display): Slight simplification.
5472
5473 * ediff.el (ediff-date): Change the date of last update.
5474
5475 2005-11-24 Chong Yidong <cyd@stupidchicken.com>
5476
5477 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
5478 Use define-minor-mode, and make it a local mode. Turn on font-lock.
5479 (hi-lock-mode): New global minor mode.
5480 (turn-on-hi-lock-if-enabled): New function.
5481 (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
5482 Change arguments to regexp and face instead of a font-lock pattern.
5483 Directly set face property, instead of refontifying.
5484 (hi-lock-font-lock-hook): Check if font-lock is being turned on.
5485 (hi-lock-find-patterns): Use line-number-at-pos.
5486
5487 (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode. Use new
5488 arguments for hi-lock-set-pattern.
5489 (hi-lock-unface-buffer, hi-lock-set-file-patterns):
5490 Call font-lock-fontify-buffer.
5491 (hi-lock-find-file-hook, hi-lock-current-line)
5492 (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
5493
5494 (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
5495 turned off.
5496
5497 * progmodes/compile.el (compilation-setup): Don't fiddle with
5498 font-lock-defaults.
5499
5500 2005-11-25 Nick Roberts <nickrob@snap.net.nz>
5501
5502 * progmodes/gdb-ui.el (gdb-var-create-handler)
5503 (gdb-var-list-children-handler): Find values for all variable
5504 objects. gud-speedbar-buttons decides whether to display them.
5505
5506 2005-11-24 Romain Francoise <romain@orebokech.com>
5507
5508 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
5509 buffer name with a space.
5510
5511 2005-11-24 Carsten Dominik <dominik@science.uva.nl>
5512
5513 * textmodes/org.el (org-export-plain-list-max-depth): Renamed from
5514 `org-export-local-list-max-depth'. Change default value to 3.
5515 (org-auto-renumber-ordered-lists)
5516 (org-plain-list-ordered-item-terminator): New options.
5517 (org-at-item-p, org-beginning-of-item, org-end-of-item)
5518 (org-get-indentation, org-get-string-indentation)
5519 (org-maybe-renumber-ordered-list, org-renumber-ordered-list):
5520 New functions.
5521 (org-move-item-down, org-move-item-up): New commands.
5522 (org-export-as-html): New classes for CSS support. Bug fix in
5523 regular expression detecting fixed-width regions. Respect
5524 `org-local-list-ordered-item-terminator'.
5525 (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
5526 also a list item.
5527 (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
5528 New item moving functions.
5529
5530 2005-11-24 Juri Linkov <juri@jurta.org>
5531
5532 * isearch.el (isearch-repeat): With empty search ring set
5533 `isearch-error' to the error string instead of signaling error
5534 with the function `error'.
5535
5536 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5537
5538 * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
5539
5540 2005-11-24 Nick Roberts <nickrob@snap.net.nz>
5541
5542 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
5543 and variable.
5544 (gdb-var-create-handler, gdb-var-list-children-handler):
5545 Don't match on "char **...".
5546 (gdb-var-update-handler): Find values for all variable objects.
5547 (gdb-info-frames-custom): Identify frames by leading "#".
5548
5549 * progmodes/gud.el (gud-speedbar-menu-items): Add
5550 gdb-speedbar-auto-raise as radio button.
5551 (gud-speedbar-buttons): Raise speedbar if requested.
5552 Don't match on "char **...".
5553 (gud-speedbar-buttons): Add (pointer) value for non-leaves.
5554 Make it editable.
5555
5556 2005-11-23 Chong Yidong <cyd@stupidchicken.com>
5557
5558 * info.el (Info-fontify-node): Handle the case where
5559 Info-current-file is t.
5560
5561 2005-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
5562
5563 * simple.el (blink-matching-open): Fix off-by-one in last change.
5564
5565 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5566
5567 * term/mac-win.el: Don't change default directory.
5568
5569 2005-11-22 Luc Teirlinck <teirllm@auburn.edu>
5570
5571 * cus-edit.el (Custom-reset-standard): Make it handle Custom group
5572 buffers correctly. (It used to throw an error in such buffers.)
5573 Make it ask for confirmation in group buffers and other Custom
5574 buffers containing more than one customization item.
5575
5576 2005-11-22 John Paul Wallington <jpw@gnu.org>
5577
5578 * net/goto-addr.el (goto-address-fontify): Put `follow-link'
5579 property on mail and url overlays.
5580 (goto-address-at-point): Use `posn-set-point' instead of
5581 `mouse-set-point' because the latter is not fbound when configured
5582 without X.
5583
5584 2005-11-22 Lars Hansen <larsh@soem.dk>
5585
5586 * ls-lisp.el (ls-lisp-parse-symlink): Delete.
5587 (ls-lisp-classify, ls-lisp-format): Delete call to
5588 ls-lisp-parse-symlink.
5589 (ls-lisp-handle-switches): Handle symlinks to directories as
5590 directories when ls-lisp-dirs-first in non-nil.
5591
5592 2005-11-21 Luc Teirlinck <teirllm@auburn.edu>
5593
5594 * startup.el (command-line): Make sure that loaddefs.el is handled
5595 correctly in load-history.
5596
5597 2005-11-22 Nick Roberts <nickrob@snap.net.nz>
5598
5599 * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
5600 (gdb-struct-string, gdb-array-string): New constants.
5601 (gdb-info-locals-handler): Use them.
5602 (gdb-reset): Reset gdb-var-list to nil.
5603
5604 2005-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
5605
5606 * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
5607 in patterns.
5608
5609 2005-11-21 Juri Linkov <juri@jurta.org>
5610
5611 * custom.el (defcustom): Update link types in docstring.
5612
5613 2005-11-20 Martin Rudalics <rudalics@gmx.at> (tiny change)
5614
5615 * custom.el (defgroup): Add doc-string-elt info.
5616
5617 * widget.el (define-widget): Don't use declare for the doc-string-elt.
5618
5619 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
5620
5621 * newcomment.el (comment-enter-backward): Fix last fix.
5622
5623 * simple.el (blink-matching-open):
5624 * paren.el (show-paren-function): Allow new paren-class info.
5625
5626 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
5627
5628 * faces.el: Revert 2005-11-17 change. :ignore-defface is now
5629 handled automagically.
5630
5631 2005-11-20 Andreas Schwab <schwab@suse.de>
5632
5633 * descr-text.el (describe-char): When copying overlays put them
5634 over the full char description instead of just the first character
5635 of it.
5636
5637 2005-11-20 Juri Linkov <juri@jurta.org>
5638
5639 * simple.el (what-cursor-position):
5640 * descr-text.el (describe-char): Use Lisp-readable syntax
5641 for octal and hex. Reorder decimal, octal and hex values.
5642 Remove excess whitespace in the output. Use `=' in `column='
5643 like in `point=' and `Hscroll='.
5644
5645 * international/mule-cmds.el (encoded-string-description):
5646 Use Lisp-readable syntax for hex.
5647
5648 2005-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
5649
5650 * newcomment.el (comment-enter-backward): Handle the case where the
5651 comment is closed by EOB.
5652
5653 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
5654
5655 * longlines.el (longlines-before-revert-hook)
5656 (longlines-after-revert-hook): New functions.
5657 (longlines-mode): Turn off longlines temporarily when reverting.
5658 Add a message-setup-hook.
5659 (longlines-decode-buffer): New function.
5660 (longlines-wrap-line): Preserve marker positions.
5661
5662 2005-11-19 Andreas Schwab <schwab@suse.de>
5663
5664 * emacs-lisp/shadow.el: Handle compressed files.
5665
5666 2005-11-19 Romain Francoise <romain@orebokech.com>
5667
5668 * net/browse-url.el (browse-url-default-browser): Signal an error
5669 if no usable browser can be found, rather than try to load w3.
5670
5671 2005-11-16 Ryan Yeske <rcyeske@gmail.com>
5672
5673 * net/rcirc.el (rcirc-mangle-text): Add bold face property without
5674 replacing existing properties.
5675 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
5676 (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
5677 tty specs.
5678 (rcirc-server-prefix, rcirc-server): New faces.
5679 (rcirc-url-regexp): Generate with rx macro.
5680 (rcirc-last-server-message-time): New variable.
5681 (rcirc-filter): Record time of last message.
5682 (rcirc-keepalive): Kill processes that did not send a message
5683 since the last ping.
5684 (rcirc-mode): Give rcirc-topic a local binding here.
5685
5686 2005-11-19 Michael Cadilhac <michael.cadilhac@lrde.org> (tiny change)
5687
5688 * subr.el (read-passwd): Fontify the prompt as we do with other
5689 prompts.
5690
5691 2005-11-19 Ryan Yeske <rcyeske@gmail.com>
5692
5693 * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
5694 binding buffer-read-only to nil.
5695
5696 2005-11-19 Eli Zaretskii <eliz@gnu.org>
5697
5698 * complete.el (partial-completion-mode):
5699 Mention completion-auto-help in the doc string.
5700
5701 * man.el (Man-highlight-references): Doc fix. Reformat code in a
5702 more Lisp-ish way.
5703
5704 2005-11-19 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
5705
5706 * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
5707 digits, not 8, to avoid misalignment for files larger than 100MB.
5708
5709 2005-11-19 Eli Zaretskii <eliz@gnu.org>
5710
5711 * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
5712 Mention "keyboard shortcuts" in the help text.
5713
5714 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5715
5716 * startup.el (fancy-splash-default-action): Discard only
5717 mouse-down and succeeding mouse-up events in the splash screen
5718 window so that drag-n-drop event can be processed.
5719
5720 2005-11-18 Chong Yidong <cyd@stupidchicken.com>
5721
5722 * longlines.el (longlines-mode): Add hacks for mail-mode and
5723 message-mode.
5724
5725 2005-11-18 Carsten Dominik <dominik@science.uva.nl>
5726
5727 * textmodes/org.el (org-table-sort-lines): New command.
5728 (org-tbl-menu): Add entry for `org-table-sort-lines'.
5729 (org-add-file): Command removed, use `org-agenda-file-to-front'
5730 instead.
5731 (org-export-icalendar): Use `org-icalendar-combined-name'.
5732 (org-cycle-agenda-files, org-agenda-file-to-end)
5733 (org-agenda-file-to-front): New commands.
5734 (org-table-tab-jumps-over-hlines, org-export-html-style):
5735 New options.
5736 (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
5737 (org-at-table.el-p, org-set-autofill-regexps, org-html-protect):
5738 New functions.
5739 (org-fill-paragraph): Call `org-table-align' in tables.
5740 (org-mode): Call `org-set-autofill-regexps'.
5741 (org-export-as-html): Support for local handformatted lists.
5742 Modified to produce valid HTML 4.0. Use `org-export-html-style'.
5743 (org-export-local-list-max-depth): New option.
5744 (org-html-expand): Use `org-html-protect'.
5745
5746 2005-11-18 Nick Roberts <nickrob@snap.net.nz>
5747
5748 * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
5749 to "p".
5750 (gdb): Move definition of gud-pp to...
5751
5752 * progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
5753 speedbar.
5754 (gdb-find-watch-expression): New function.
5755
5756 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
5757
5758 * faces.el (face-attribute, set-face-attribute): Mention existence
5759 of `:ignore-defface' setting in docstring.
5760
5761 2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
5762
5763 * simple.el (completion-setup-function): Fix last change.
5764
5765 2005-11-17 John Paul Wallington <jpw@pobox.com>
5766
5767 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
5768 Use `posn-set-point' instead of `mouse-set-point' because the
5769 latter is not fbound when configured without X.
5770
5771 * comint.el (comint-insert-input): Likewise.
5772
5773 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
5774
5775 * simple.el (hard-newline): New variable.
5776 (sendmail-user-agent-compose, next-line): Use it.
5777
5778 * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
5779 (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
5780 (mail-mail-reply-to, mail-mail-followup-to)
5781 (mail-position-on-field, mail-signature, mail-yank-original)
5782 (mail-attach-file): Likewise.
5783
5784 * mail/mailheader.el (mail-header-format)
5785 (mail-header-format-function): Likewise.
5786
5787 * add-log.el (add-change-log-entry, change-log-merge): Likewise.
5788
5789 2005-11-17 Juri Linkov <juri@jurta.org>
5790
5791 * font-lock.el (font-lock-faces): Rename this defgroup from
5792 `font-lock-highlighting-faces'.
5793 (font-lock-comment-face, font-lock-comment-delimiter-face)
5794 (font-lock-string-face, font-lock-doc-face)
5795 (font-lock-keyword-face, font-lock-builtin-face)
5796 (font-lock-function-name-face, font-lock-variable-name-face)
5797 (font-lock-type-face, font-lock-constant-face)
5798 (font-lock-warning-face, font-lock-negation-char-face)
5799 (font-lock-preprocessor-face)
5800 (font-lock-regexp-grouping-backslash)
5801 (font-lock-regexp-grouping-construct): Rename :group from
5802 `font-lock-highlighting-faces' to `font-lock-faces'.
5803
5804 * cus-edit.el (lisp, c, tex):
5805 * progmodes/ada-mode.el (ada):
5806 * progmodes/asm-mode.el (asm):
5807 * progmodes/cperl-mode.el (cperl-faces):
5808 * progmodes/cpp.el (cpp):
5809 * progmodes/dcl-mode.el (dcl):
5810 * progmodes/f90.el (f90):
5811 * progmodes/fortran.el (fortran):
5812 * progmodes/icon.el (icon):
5813 * progmodes/idlwave.el (idlwave-misc):
5814 * progmodes/m4-mode.el (m4):
5815 * progmodes/make-mode.el (makefile):
5816 * progmodes/meta-mode.el (meta-font):
5817 * progmodes/modula2.el (modula2):
5818 * progmodes/octave-mod.el (octave):
5819 * progmodes/pascal.el (pascal):
5820 * progmodes/perl-mode.el (perl):
5821 * progmodes/prolog.el (prolog):
5822 * progmodes/ps-mode.el (PostScript-edit):
5823 * progmodes/scheme.el (scheme):
5824 * progmodes/sh-script.el (sh-script):
5825 * progmodes/simula.el (simula):
5826 * progmodes/tcl.el (tcl):
5827 * textmodes/nroff-mode.el (nroff):
5828 * textmodes/reftex-vars.el (reftex-fontification-configurations):
5829 * textmodes/sgml-mode.el (sgml):
5830 * textmodes/texinfo.el (texinfo):
5831 Add :link (custom-group-link font-lock-faces) to defgroup.
5832
5833 * hi-lock.el (hi-lock): Rename this defgroup from
5834 `hi-lock-interactive-text-highlighting'. Change parent group from
5835 `faces' to `font-lock'. Add link to the manual.
5836 (hi-lock-mode, hi-lock-file-patterns-range)
5837 (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
5838 `hi-lock-interactive-text-highlighting' to `hi-lock'.
5839 (hi-lock-faces): Add :group `faces'.
5840
5841 * cus-edit.el (custom-variable-prompt): Clarify the code.
5842
5843 * faces.el (face-read-string): Set the default value arg of
5844 completing-read.
5845
5846 2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
5847
5848 * rfn-eshadow.el (file-name-shadow-properties)
5849 (file-name-shadow-tty-properties, file-name-shadow-mode):
5850 Remove autoloads, because the file is now preloaded.
5851
5852 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
5853
5854 * printing.el (easy-menu-intern): Don't define.
5855 (pr-get-symbol): Use easy-menu-intern only if defined.
5856
5857 * simple.el (blink-matching-open): Simplify a bit.
5858 (completion-setup-function): Fix the case of partial-completion-mode
5859 when the minibuffer's contents start with "-".
5860 Obey completion-base-size-function even when
5861 minibuffer-completing-file-name is non-nil.
5862
5863 2005-11-16 Richard M. Stallman <rms@gnu.org>
5864
5865 * net/eudcb-ph.el (eudc-ph-open-session):
5866 Use set-process-query-on-exit-flag.
5867
5868 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
5869
5870 * international/ucs-tables.el (ucs-set-table-for-input):
5871 Use make-local-variable, not make-variable-buffer-local.
5872
5873 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
5874 Improve warning message text.
5875
5876 * savehist.el (savehist-save-hook): Add :group.
5877
5878 * menu-bar.el (menu-bar-help-menu):
5879 Rename Find Extra Packages to External Packages.
5880
5881 * cus-edit.el (Custom-reset-standard): Verify that
5882 :custom-standard-value prop exists before calling it.
5883
5884 * apropos.el (apropos-calc-scores): Use apropos-pattern.
5885
5886 2005-11-16 Martin Rudalics <rudalics@gmx.at> (tiny change)
5887
5888 * wid-edit.el (color): Enclose %t in %{...%}.
5889
5890 * cus-edit.el (face): Enclose %t in %{...%}.
5891
5892 2005-11-16 Hrvoje Niksic <hniksic@xemacs.org>
5893
5894 * savehist.el (savehist-mode-hook): Re-add the var.
5895 (savehist-mode): Use it.
5896
5897 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
5898
5899 * textmodes/flyspell.el: Fix commenting convention.
5900 Remove unnecessary leading * in custom docstrings.
5901 (flyspell-emacs): Remove unused var.
5902 (flyspell-delete-region-overlays): Use remove-overlays.
5903 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
5904 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
5905 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
5906 (flyspell-debug-signal-word-checked): Use with-current-buffer.
5907 (make-flyspell-overlay): Don't locally reuse a global name.
5908 (flyspell-highlight-incorrect-region)
5909 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
5910 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
5911 (flyspell-notify-misspell): Remove unused args `start' and `end'.
5912 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
5913 Wrap calls to accept-process-output inside with-local-quit since it's
5914 often called from a post-command-hook.
5915 (flyspell-correct-word, flyspell-auto-correct-word):
5916 Use ispell-send-string.
5917 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
5918
5919 * calendar/diary-lib.el (diary-list-entries): Also hide the
5920 terminating newline.
5921
5922 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
5923
5924 * textmodes/reftex.el (reftex-use-fonts): Remove the check for
5925 window-system, to allow fonts on tty.
5926
5927 2005-11-17 Nick Roberts <nickrob@snap.net.nz>
5928
5929 * progmodes/gud.el (gud-speedbar-item-info): New function.
5930 (gud-install-speedbar-variables): Use it to display data type
5931 of watch expression as a tooltip in speedbar.
5932
5933 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
5934
5935 * font-core.el (global-font-lock-mode): Add :version keyword,
5936 because default was changed.
5937
5938 * jka-cmpr-hook.el (auto-compression-mode): Ditto.
5939
5940 * startup.el (command-line): Use `custom-reevaluate-setting' for
5941 `file-name-shadow-mode'.
5942
5943 * loadup.el: Preload rfn-eshadow.
5944
5945 * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
5946 Add :version keyword.
5947 (file-name-shadow-properties, file-name-shadow-tty-properties)
5948 (file-name-shadow): Add :version keyword.
5949
5950 * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
5951 instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
5952 in the custom-group property of the symbol frames and the fringe
5953 group got no link to its parent group frames.
5954 Doc fix.
5955
5956 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
5957
5958 * progmodes/gud.el (gud-stop-subjob): New function.
5959 (gud-menu-map, gud-tool-bar-map): Use it.
5960
5961 2005-11-16 Kim F. Storm <storm@cua.dk>
5962
5963 * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
5964 than kill it.
5965 (gud-tool-bar-map): Likewise. Move cont/until/finish buttons
5966 to a more useful/logical place.
5967
5968 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
5969
5970 * progmodes/gud.el (gud-menu-map): Make visibility of stop and
5971 go buttons complementary.
5972
5973 2005-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
5974
5975 * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
5976 (rfn-eshadow-sifn-equal): New function.
5977 (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
5978
5979 2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
5980
5981 * viper-utils.el (viper-non-word-characters-reformed-vi):
5982 Quote `-' in string.
5983
5984 * viper.el (viper-emacs-state-mode-list): Ensure that
5985 rcirc-mode buffers come up in Emacs state.
5986
5987 * ediff-util.el (ediff-make-temp-file): Use proper file-name-handler
5988 operation.
5989
5990 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
5991
5992 * term.el (term-termcap-format): Fix typos.
5993 (term-down): Fix the negative argument case.
5994
5995 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
5996
5997 * progmodes/gdb-ui.el: Remove face-alias left over from change on
5998 2005-08-15.
5999 (gdb-ann3): New command gud-go.
6000 (menu): Accomodate gdb-mi.el.
6001 (gdb-assembler-custom): Make buffer of selected window current
6002 so that set-window-point works.
6003
6004 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
6005 buttons and include new ones.
6006
6007 2005-11-16 Kim F. Storm <storm@cua.dk>
6008
6009 * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
6010 (gud-menu-map): Use it.
6011
6012 2005-11-14 Luc Teirlinck <teirllm@auburn.edu>
6013
6014 * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
6015 that works correctly for Custom and that does not override a user
6016 who disables it.
6017
6018 * help-mode.el (help-make-xrefs, help-xref-on-pp)
6019 (help-xref-interned, help-follow): Make hyperlinks for variables
6020 that are unbound, but have a non-nil variable-documentation property.
6021
6022 * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
6023 mode hook. (It conflicted with defcustoms for some mode hooks.)
6024 Use the `variable-documentation' property to give the mode hook a
6025 docstring and expand that docstring.
6026
6027 2005-11-14 Hrvoje Niksic <hniksic@xemacs.org>
6028
6029 * savehist.el (savehist-mode): Don't bother with
6030 `custom-set-minor-mode'.
6031 (savehist-coding-system): Check XEmacs version.
6032 (history-length): Declare also at run time.
6033 (savehist-mode): Don't emit a message. Don't run the minor mode hook.
6034 Don't set the customize state.
6035 (savehist-minibuffer-hook): Special case for when
6036 minibuffer-history-variable is equal to t.
6037
6038 2005-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
6039
6040 * files.el (write-file): Refresh VC status.
6041
6042 * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
6043 (mark-diary-entries, make-diary-entry): Check default-major-mode rather
6044 than fundamental-mode to see if the mode was set.
6045
6046 2005-11-14 Romain Francoise <romain@orebokech.com>
6047
6048 * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
6049 dummy function in `eval-when-compile' to avoid compiler warning.
6050 Require `man' at compile time.
6051
6052 2005-11-14 Jay Belanger <belanger@truman.edu>
6053
6054 * calc-alg.el (calcFunc-write-out-power): Rename it to
6055 calcFunc-powerexpand.
6056 (math-write-out-power): Rename it to math-powerexpand; have it
6057 handle negative exponents.
6058 (calc-writeoutpower): Rename it to calc-powerexpand.
6059
6060 * calc-ext.el: Change calcFunc-writeoutpower and
6061 calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
6062 autoloads.
6063 Add calcFunc-ldiv to autoloads.
6064
6065 * calc-arith.el (calcFunc-ldiv): New function.
6066
6067 * calc.el (calc-left-divide): New function.
6068
6069 2005-11-14 Juri Linkov <juri@jurta.org>
6070
6071 * cus-edit.el (custom-variable-prompt): Set the default value arg
6072 of completing-read.
6073
6074 * cus-dep.el (custom-make-dependencies): Reverse the list of
6075 found dependencies.
6076
6077 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu>
6078
6079 * menu-bar.el (menu-bar-options-menu): Delete "Syntax
6080 Highlighting" entry, it is on by default now.
6081 (menu-bar-options-save): Do not save global-font-lock-mode.
6082
6083 2005-11-13 Richard M. Stallman <rms@gnu.org>
6084
6085 * textmodes/flyspell.el (flyspell-large-region):
6086 Call flyspell-accept-buffer-local-defs.
6087
6088 2005-11-13 Agustin Martin <agustin.martin@hispalinux.es>
6089
6090 * textmodes/flyspell.el (flyspell-notify-misspell):
6091 Fix misspelling of "Misspelling".
6092 (flyspell-process-localwords): New function.
6093 (flyspell-large-region): Call flyspell-process-localwords and
6094 flyspell-delete-region-overlays.
6095 (flyspell-delete-region-overlays): New function.
6096 (flyspell-delete-all-overlays): Call that.
6097
6098 2005-11-13 Richard M. Stallman <rms@gnu.org>
6099
6100 * help.el (help-for-help-internal): Improve doc of C-h a.
6101 (describe-key): Improve prompt; doc fix.
6102
6103 2005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
6104
6105 * vc-svn.el (vc-svn-registered): Catch all errors.
6106
6107 * cus-dep.el (custom-make-dependencies): Typo.
6108
6109 2005-11-13 Michael Albinus <michael.albinus@gmx.de>
6110
6111 * net/tramp-util.el (top): Fix compilation warning.
6112
6113 2005-11-13 Kim F. Storm <storm@cua.dk>
6114
6115 * help.el (help-for-help-internal): Fix `a' entry. Add `d' entry.
6116
6117 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
6118
6119 * progmodes/gud.el (gud-menu-map): Move parentheses (again).
6120 (gud-speedbar-buttons): Match on "const char *" too.
6121
6122 * progmodes/gdb-ui.el (gdb-var-create-handler)
6123 (gdb-var-list-children-handler): Match on "const char *" too.
6124 (gdb-var-evaluate-expression-handler): Match on empty string.
6125 (gdb-var-update-handler): Only call
6126 gdb-var-evaluate-expression-handler when required.
6127
6128 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
6129
6130 * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
6131 selected window. This still doesn't work for speedbar.
6132 (gud-speedbar-buttons): Handle string expressions properly.
6133
6134 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
6135 (gdb-var-create-handler): Handle string expressions properly.
6136 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
6137 Handle string expressions properly. Move "type" field into regexp.
6138
6139 2005-11-12 Karl Fogel <kfogel@red-bean.com>
6140
6141 * bookmark.el (bookmark-maybe-message): New function to reduce
6142 code duplication: invokes `message' iff baud-rate is high enough.
6143 (bookmark-write-file): Use above instead of an inline conditional.
6144 (bookmark-load): Same.
6145
6146 2005-11-12 Karl Fogel <kfogel@red-bean.com>
6147
6148 * bookmark.el (bookmark-write-file): Don't visit the destination
6149 file, just write the data to it using write-region. This is
6150 similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
6151 change to avoid visiting the file in the first place.
6152
6153 2005-11-12 Chong Yidong <cyd@stupidchicken.com>
6154
6155 * hi-lock.el (hi-lock-mode): Set the default value of
6156 font-lock-defaults.
6157
6158 2005-11-11 Luc Teirlinck <teirllm@auburn.edu>
6159
6160 * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
6161 arg to `file-attributes'.
6162 (find-lisp-format): The UID and GID can now be strings.
6163
6164 2005-11-12 Kim F. Storm <storm@cua.dk>
6165
6166 * help.el (help-map): Bind C-h d to apropos-documentation.
6167
6168 * simple.el (what-cursor-position): Print (EOB) instead of (100%)
6169 when point is at end-of-buffer.
6170
6171 * apropos.el (apropos-match-face): Doc fix.
6172 (apropos-sort-by-scores): Add new choice `verbose'.
6173 (apropos-documentation-sort-by-scores): New defcustom.
6174 (apropos-pattern): Now contains the pattern entered by the user.
6175 (apropos-pattern-quoted): New defvar.
6176 (apropos-regexp): New defvar, containing the regexp corresponding
6177 to apropos-pattern.
6178 (apropos-all-words-regexp): Rename from apropos-all-regexp.
6179 (apropos-read-pattern): New defun. Use it to read pattern arg in
6180 interactive calls; returns list of words for a word list, and
6181 string for a regexp.
6182 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
6183 parses a list of words or regexp as returned by apropos-read-pattern.
6184 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
6185 (apropos-score-doc): Return a very high score if the string
6186 entered by the user matches literally.
6187 (apropos-variable): Doc fix. Use apropos-read-pattern.
6188 (apropos-command): Doc fix. Use apropos-read-pattern and
6189 apropos-parse-pattern. Call apropos-print with nosubst=t.
6190 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
6191 apropos-parse-pattern.
6192 (apropos-documentation): Doc fix. Use apropos-read-pattern and
6193 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
6194 apropos-documentation-sort-by-scores. Call apropos-print with
6195 nosubst=t.
6196 (apropos-documentation-internal): Pass doc string through
6197 substitute-key-definition before adding text properties.
6198 Highlight substring matching literal user input if possible.
6199 (apropos-documentation-check-doc-file): Remove locals beg and end.
6200 Fix calculation of score (as added twice). Pass doc string through
6201 substitute-key-definition before adding text properties.
6202 (apropos-documentation-check-elc-file): Pass doc string through
6203 substitute-key-definition before adding text properties.
6204 Highlight substring matching literal user input if possible.
6205 (apropos-print): Add new arg NOSUBST; if set, command and variable
6206 doc strings have already been passed through substitute-key-definition.
6207 Add code to handle apropos-accumulator items without score element
6208 for backwards compatibility (e.g. with woman package).
6209 Only show scores if apropos-sort-by-scores is `verbose'.
6210
6211 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
6212
6213 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
6214 Add jka-compr-load-suffixes to load-suffixes.
6215
6216 * jka-compr.el: Require jka-cmpr-hook.
6217 (jka-compr-info-compress-message, jka-compr-info-compress-program)
6218 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
6219 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
6220 (jka-compr-info-can-append, jka-compr-info-strip-extension)
6221 (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
6222 (jka-compr-info-regexp): Remove. Provided by jka-cmpr-hook.
6223 (jka-compr-uninstall): Remove entries from
6224 jka-compr-added-to-file-coding-system-alist after they are used.
6225 (jka-compr-error): Remove unused var `curbuf'.
6226 (jka-compr-file-local-copy): Remove unused var `notfound'.
6227
6228 2005-11-10 Romain Francoise <romain@orebokech.com>
6229
6230 * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
6231
6232 2005-11-11 Nick Roberts <nickrob@snap.net.nz>
6233
6234 * progmodes/gud.el (gud-menu-map): Move parentheses.
6235 (gdb): New command gud-pv.
6236
6237 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
6238
6239 * tar-mode.el: Remove spurious or unnecessary leading stars
6240 in docstrings.
6241 (tar-header-block-tokenize): Also obey default-file-name-coding-system.
6242 (tar-parse-octal-integer-safe): Use mapc.
6243 (tar-header-block-summarize): Remove unused var `ck'.
6244 (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
6245 cleared before. Obey default-enable-multibyte-characters.
6246 Use mapconcat. Simplify setting of tar-header-offset.
6247 (tar-mode-map): Move initialization inside delcaration.
6248 (tar-flag-deleted): Use `abs'.
6249 (tar-expunge-internal): Remove unused var `line'.
6250 (tar-expunge-internal): Don't hardcode point-min==1.
6251 (tar-expunge): Widen while doing set-buffer-multibyte.
6252 (tar-rename-entry): Use file-name-coding-system.
6253 (tar-alter-one-field): Don't hardcode point-min==1.
6254 (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
6255 (tar-pad-to-blocksize): Don't hardcode point-min==1. Clarify the code.
6256
6257 2005-11-10 Masatake YAMATO <jet@gyve.org>
6258
6259 * add-log.el (add-log-current-defun): Handle class::method
6260 notation of c++. Fix incorrect comment.
6261
6262 2005-11-10 Alan Mackenzie <acm@muc.de>
6263
6264 * help-fns.el (describe-variable): Make C-h v work when a variable
6265 has variable documentation yet is unbound.
6266
6267 2005-11-10 Masatake YAMATO <jet@gyve.org>
6268
6269 * man.el (Man-highlight-references): Set an empty
6270 string to `Man-arguments' if it is nil.
6271 Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
6272
6273 2005-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
6274
6275 * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
6276 commenting conventions.
6277
6278 * cus-dep.el (custom-make-dependencies): Simplify.
6279 Better follow the commenting conventions.
6280
6281 2005-11-09 Richard M. Stallman <rms@gnu.org>
6282
6283 * apropos.el (apropos-pattern): Rename from apropos-regexp.
6284 (apropos-orig-pattern): Rename from apropos-orig-regexp.
6285 All uses changed.
6286 (apropos-rewrite-regexp): Doc fix.
6287 (apropos-variable, apropos-command, apropos, apropos-value):
6288 Change prompt; carry through the argument renaming.
6289
6290 2005-11-09 Luc Teirlinck <teirllm@auburn.edu>
6291
6292 * find-lisp.el: Require dired.
6293 (find-lisp-find-dired-internal): Do not call
6294 `abbreviate-file-name' on DIR.
6295
6296 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
6297
6298 * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
6299
6300 2005-11-09 Nick Roberts <nickrob@snap.net.nz>
6301
6302 * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
6303 when using the speedbar.
6304 (gdb): New command gud-pp.
6305 (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
6306
6307 2005-11-09 Juri Linkov <juri@jurta.org>
6308
6309 * replace.el (occur-excluded-properties): New defcustom.
6310 (occur-1, occur-engine, occur-accumulate-lines): Use it.
6311
6312 2005-11-08 Jay Belanger <belanger@truman.edu>
6313
6314 * calc/calc-units.el (math-convert-units): Replace any composite
6315 unit by its definition.
6316
6317 2005-11-08 Lars Hansen <larsh@soem.dk>
6318
6319 * emacs-lisp/autoload.el (update-directory-autoloads):
6320 Add obsolete function alias.
6321
6322 2005-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
6323
6324 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
6325 comment-indent-function.
6326 (lisp-comment-indent): Replace by an alias for comment-indent-default.
6327
6328 * reveal.el (reveal-post-command): Rework the handling of
6329 reveal-open-spots, so as to be more reliable. There were several
6330 tricky corner cases where an open spot might be lost, or where
6331 a closed spot might end up on the list of open spots.
6332 Only reveal text that's ellipsised.
6333
6334 2005-11-07 Carsten Dominik <dominik@science.uva.nl>
6335
6336 * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
6337
6338 2005-11-07 John Paul Wallington <jpw@gnu.org>
6339
6340 * ibuffer.el (ibuffer): Search iconified frames too when
6341 getting Ibuffer buffer's window.
6342
6343 2005-11-06 Richard M. Stallman <rms@gnu.org>
6344
6345 * progmodes/compile.el (compilation-internal-error-properties):
6346 save-excursion around the computation of MARKER.
6347
6348 2005-11-06 Piet van Oostrum <piet@cs.uu.nl>
6349
6350 * textmodes/flyspell.el (flyspell-external-point-words):
6351 flyspell-get-word returns a list, not just a string.
6352
6353 2005-11-06 John Paul Wallington <jpw@pobox.com>
6354
6355 * ibuffer.el (ibuffer): Search all visible frames when getting
6356 Ibuffer buffer's window.
6357
6358 2005-11-07 Masatake YAMATO <jet@gyve.org>
6359
6360 * man.el (Man-reference-regexp): Accept spaces between
6361 `Man-name-regexp' and `Man-section-regexp'.
6362 (Man-apropos-regexp): New variable.
6363 (Man-abstract-xref-man-page): Use value for `Man-target-string'
6364 if available.
6365 (Man-highlight-references, Man-highlight-references0):
6366 Handle the case when `Man-arguments' includes "-k".
6367 (Man-highlight-references0): Rename the argument `TARGET-POS' to
6368 `TARGET'. `TARGET' can be a number, function or nil.
6369
6370 2005-11-06 Nick Roberts <nickrob@snap.net.nz>
6371
6372 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
6373 (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
6374 (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
6375 (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
6376 (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
6377 (gdb-send-item): Use buffer-local-value and simplify.
6378
6379 2005-11-05 Luc Teirlinck <teirllm@auburn.edu>
6380
6381 * startup.el (command-line): Use `custom-reevaluate-setting' for
6382 `global-font-lock-mode'.
6383
6384 * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
6385 by default, except in batch mode or when the -D option is given.
6386
6387 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
6388 specified keyword args on to `define-minor-mode'. Update docstring.
6389
6390 2005-11-05 Romain Francoise <romain@orebokech.com>
6391
6392 * replace.el (occur-engine): Add marker at end of line, too.
6393
6394 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
6395
6396 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
6397 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
6398 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
6399 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
6400 argument to all these routines, so the passphrase can be managed
6401 externally and passed in to the system.
6402 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
6403 pgg-add-passphrase-to-cache function.
6404
6405 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
6406 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
6407 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
6408 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
6409 argument to all these routines, so the passphrase can be managed
6410 externally and passed in to the system.
6411 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
6412 function.
6413
6414 2005-11-04 Dan Nicolaescu <dann@ics.uci.edu>
6415
6416 * font-lock.el: Don't deal with font-lock-face-attributes here,
6417 move the code ...
6418
6419 * startup.el (command-line): ... here. Use face-spec-set instead
6420 of custom-declare-face.
6421
6422 * faces.el (face-spec-set): Reset the face if spec is not nil.
6423
6424 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
6425
6426 * newcomment.el (comment-region-internal): Box more tightly in the
6427 common case where there's no TAB in the boxed text.
6428
6429 2005-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6430
6431 * info.el (info-tool-bar-map): Use images prev-node, next-node and
6432 up-node.
6433
6434 2005-11-04 Ulf Jasper <ulf.jasper@web.de>
6435
6436 * newsticker.el: Commentary updated. Code formatting changed.
6437 (newsticker-version): Change to "1.9".
6438 (newsticker, newsticker-feed): Doc fix.
6439 (newsticker-url-list): Doc fix. Add option "Weekly".
6440 (newsticker-retrieval-interval): Add option "Weekly".
6441 (newsticker-headline-processing): Doc fix.
6442 (newsticker-auto-mark-filter): Remove.
6443 (newsticker-auto-mark-filter-list): New.
6444 (newsticker-layout, newsticker-sort-method): Doc fix.
6445 (newsticker-hide-old-items-in-newsticker-buffer)
6446 (newsticker-heading-format, newsticker-item-format)
6447 (newsticker-desc-format): Doc fix.
6448 (newsticker-show-all-rss-elements): Remove.
6449 (newsticker-show-all-news-elements): New.
6450 (newsticker-faces, newsticker-ticker): Doc fix.
6451 (remove-from-invisibility-spec): Code formatting.
6452 (newsticker--process-ids): New.
6453 (newsticker-mode): Doc fix.
6454 (newsticker-mode): Change mode-line-format.
6455 (newsticker-start): Remove debug output.
6456 (newsticker-start-ticker): Doc fix. Add autoload cookie.
6457 (newsticker-w3m-show-inline-images): Code formatting.
6458 (newsticker-next-item): Call `force-mode-line-update'.
6459 (newsticker-previous-item): Call `force-mode-line-update'.
6460 (newsticker-next-feed): Call `force-mode-line-update'.
6461 (newsticker-previous-feed): Call `force-mode-line-update'.
6462 (newsticker-mark-all-items-at-point-as-read): Code formatting.
6463 (newsticker-show-old-items): Do not show descs.
6464 (newsticker-hide-entry): Hide too much.
6465 (newsticker-hide-entry, newsticker-show-entry)
6466 (newsticker-toggle-auto-narrow-to-feed): Code formatting.
6467 (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
6468 (newsticker-toggle-auto-narrow-to-item): Code formatting.
6469 (newsticker-set-auto-narrow-to-item): Update buffer immediately.
6470 (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
6471 (newsticker-get-news): Call `force-mode-line-update'.
6472 Collect process ids.
6473 (newsticker--sentinel): Change coding system handling.
6474 Move image retrieval to new functions newsticker--get-logo-url-*.
6475 Move feed parsing to new functions newsticker--parse-*.
6476 Update list of process ids.
6477 (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
6478 (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
6479 (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
6480 (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
6481 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
6482 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
6483 (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
6484 (newsticker--decode-coding-string): Remove.
6485 (newsticker--decode-numeric-entities): Check input. Format code.
6486 (newsticker--remove-whitespace): Check input.
6487 (newsticker--do-forget-preformatted): Doc fix.
6488 (newsticker--decode-rfc822-date): Allow for missing time.
6489 (newsticker--update-process-ids): New.
6490 (newsticker--image-sentinel): Change comment.
6491 (newsticker--image-read): Change error message.
6492 (newsticker--imenu-goto): Doc fix. Show headline title.
6493 (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
6494 (newsticker--buffer-do-insert-text): Clean whitespace in
6495 html-rendered headline title. Code formatting.
6496 Call `newsticker--buffer-print-extra-elements'.
6497 (newsticker--buffer-print-extra-element): Remove.
6498 (newsticker--buffer-print-extra-elements): New.
6499 (newsticker--buffer-do-print-extra-element): New.
6500 (newsticker--buffer-insert-enclosure): Doc fix. Use MBytes for
6501 large sizes.
6502 (newsticker--run-auto-mark-filter)
6503 (newsticker--do-run-auto-mark-filter):
6504 Use `newsticker-auto-mark-filter-list'.
6505
6506 2005-11-04 Ryan Yeske <rcyeske@gmail.com>
6507
6508 * net/rcirc.el: Use split-string OMIT-NULLS argument.
6509 (rcirc-print): Force redisplay before running hooks. Do long
6510 buffer truncation after making new text read-only. Deal with nil
6511 text when decoding strings. If TARGET is nil, use either the
6512 currently selected buffer, if it is an rcirc buffer and of the
6513 same process or the process buffer.
6514 (rcirc-mode): Remove header-line. Recompute short buffer names.
6515 Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
6516 (rcirc-short-buffer-name): Add variable.
6517 (rcirc-kill-buffer-hook): Recompute short buffer names.
6518 Remove nick from private channel.
6519 (rcirc-send-input): Send command text to current-buffer.
6520 Don't clear overlay arrow here.
6521 (rcirc-short-buffer-name): Return a short buffer name.
6522 (rcirc-update-short-buffer-names, rcirc-abbreviate)
6523 (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
6524 buffer-name abbreviations.
6525 (rcirc-kill-buffer-hook-1): Split to make debugging easier.
6526 Do not touch nick-table when killing a parted channel.
6527 (rcirc-window-configuration-change): Rename from rcirc-update-activity.
6528 Clear arrow from current buffer if it is now hidden.
6529 (rcirc-current-buffer): Add variable.
6530 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
6531 (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
6532 Remove -face from names.
6533 (rcirc-update-activity-string): Print "DND" when globally ignoring
6534 activity.
6535 (rcirc-ignore-buffer-activity-flag): Rename from
6536 rcirc-ignore-channel-activity.
6537 (rcirc-ignore-all-activity-flag): Doc fix.
6538 (rcirc-channels): Remove variable.
6539 (rcirc-kill-buffer-hook):
6540 (rcirc-get-buffer-create): Add nick to private channel.
6541 (rcirc-multiline-edit-submit): Remove tabs.
6542 (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
6543 folded.
6544 (rcirc-remove-nick-channel): Bug fix.
6545 (rcirc-toggle-ignore-buffer-activity): Rename from
6546 rcirc-toggle-ignore-channel-activity.
6547 (rcirc-record-activity): Add buffers to the front of the list.
6548 (rcirc-update-activity): Remove killed buffers from list.
6549 (rcirc-process-server-response-1): Remove last argument if it is
6550 null before calling handler.
6551 (rcirc): Add "rcirc" defcustom prefix.
6552 (rcirc-prompt): Simplify default prompt.
6553 Use custom-initialize-default.
6554 (rcirc-private-chats): Remove variable.
6555 (rcirc-prompt): Change initialization.
6556 (rcirc-version): Remove function.
6557 (rcirc-id-string): Add constant.
6558 (rcirc-last-buffer): Remove variable.
6559 (rcirc-buffer-alist): Add variable.
6560 (rcirc-connect): Update variable setup.
6561 (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
6562 (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
6563 default.
6564 (rcirc-handler-generic): Trigger activity.
6565 (rcirc-send-message): Create the buffor of the target.
6566 (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
6567 (rcirc-get-buffer): Just return nil if there is no matching buffer.
6568 (rcirc-multiline-edit-cancel): Remove function.
6569 (rcirc-set-last-buffer): Remove function.
6570 (rcirc-get-any-buffer): Add function.
6571 (rcirc-join-channels): Don't print /join text.
6572 (rcirc-toggle-ignore-channel-activity): Add and update echo area
6573 messages.
6574 (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
6575 (rcirc-handler-NOTICE): Recognize CTCP responses.
6576 (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
6577 constructing TOPIC string for buffers we are not JOINed.
6578 (rcirc-handler-CTCP-response): Add handler.
6579 (rcirc-multiline-edit-submit): Restore the window-configuration
6580 before adjusting point.
6581 (rcirc): Add customization group.
6582 (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
6583 (rcirc-user-full-name, rcirc-startup-channels-alist)
6584 (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
6585 (rcirc-ignore-all-activity-flag, rcirc-time-format)
6586 (rcirc-input-ring-size, rcirc-read-only-flag)
6587 (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
6588 (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
6589 Change defvar to defcustom.
6590 (rcirc-update-prompt): Add optional ALL arg, which will update
6591 prompts in all rcirc buffers. Regexp quote replacement text.
6592 (rcirc-fill-column): Accept frame-width as a value.
6593 (rcirc-set-changed): Add function.
6594 (rcirc-next-active-buffer): Write more meaningful messages.
6595 (rcirc-faces): Add customization group.
6596 (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
6597 (rcirc-nick-in-message-face, rcirc-prompt-face)
6598 (rcirc-mode-line-nick-face): Move into rcirc-faces group.
6599 (with-rcirc-process-buffer): Move before first usage.
6600 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
6601 (rcirc-debug-flag): Rename from `rcirc-log-p'.
6602 (rcirc-debug): Rename from `rcirc-log'.
6603 (rcirc-format-response-string): Do not print `-' chars for a
6604 NOTICE with no sender. Simplify output of server responses.
6605
6606 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
6607
6608 (rcirc-browse-url-map, rcirc-browse-url-at-point)
6609 (rcirc-browse-url-at-mouse, rcirc-mangle-text):
6610 Make urls mouse and RET clickable.
6611
6612 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
6613
6614 * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
6615
6616 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
6617
6618 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
6619 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
6620 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
6621 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
6622 argument to all these routines, so the passphrase can be managed
6623 externally and passed in to the system.
6624 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
6625 pgg-add-passphrase-to-cache function.
6626
6627 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
6628 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
6629 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
6630 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
6631 argument to all these routines, so the passphrase can be managed
6632 externally and passed in to the system.
6633 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
6634 function.
6635
6636 2005-11-04 Edward O'Connor <hober0@gmail.com> (tiny change)
6637
6638 * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
6639 from goto-address-url-regexp.
6640
6641 2005-11-04 Carsten Dominik <dominik@science.uva.nl>
6642
6643 * textmodes/org.el (org-read-date, org-goto-calendar)
6644 (org-recenter-calendar, org-agenda-goto-calendar):
6645 Temporarily clear `calendar-move-hook'.
6646
6647 2005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
6648
6649 * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
6650 merging.
6651
6652 * ediff-util.el (ediff-previous-difference): Don't skip regions that
6653 have merge clashes.
6654
6655 2005-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6656
6657 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
6658 Undo previous change.
6659
6660 * startup.el (command-line): Use `custom-reevaluate-setting' for
6661 mouse-wheel-down-event and mouse-wheel-up-event. Don't call
6662 tty-register-default-colors on Mac.
6663
6664 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
6665
6666 * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
6667 (gdb-buffer-type): Make it automatically buffer local...
6668 (gdb-get-create-buffer): ...and set it accordingly.
6669 (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
6670 actually work.
6671
6672 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
6673
6674 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
6675 not red.
6676
6677 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
6678
6679 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
6680 case GUD buffer is not visible.
6681 (gdb-goto-breakpoint): Try to force display in source buffer.
6682 (gdb-frame-gdb-buffer): Copy other similar functions.
6683 (gdb-restore-windows): Don't display source if not asked for.
6684 (gdb-assembler-buffer-name): Don't capitalise.
6685
6686 2005-11-03 Richard M. Stallman <rms@gnu.org>
6687
6688 * wid-edit.el (key-sequence): New widget type.
6689
6690 * simple.el (set-mark-command-repeat-pop): New variable.
6691 (set-mark-command): Only interpret plan C-@ after a pop as a pop
6692 if set-mark-command-repeat-pop is true.
6693
6694 * info.el (Info-fontify-node): Don't display extra "see" if there
6695 already is one here.
6696
6697 * mouse.el: Fix special handling of DEL after dragging a region:
6698 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
6699 (mouse-region-delete-keys): Change to defcustom. Add [backspace].
6700
6701 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
6702
6703 * textmodes/ispell.el (ispell-command-loop): Change `i' description
6704 not to assume it pertains to an affix.
6705
6706 * textmodes/flyspell.el (flyspell-post-command-hook):
6707 Bind deactivate-mark to prevent deactivation.
6708
6709 2005-11-03 Lars Hansen <larsh@soem.dk>
6710
6711 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
6712 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
6713 dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
6714
6715 2005-11-03 Romain Francoise <romain@orebokech.com>
6716
6717 * net/eudcb-mab.el: Now part of GNU Emacs. Update FSF's address.
6718 Update copyright years.
6719
6720 2005-11-03 Sam Steingold <sds@gnu.org>
6721
6722 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
6723 Use system-type instead of window-system because window-system is not
6724 correctly defined during loadup.
6725
6726 2005-11-02 Mark A. Hershberger <mah@everybody.org>
6727
6728 * xml.el (xml-syntax-table): Allow xml.el to compile in xemacs.
6729 (xml-parse-tag): Join strings separated by a comment properly.
6730
6731 2005-11-02 Andreas Schwab <schwab@suse.de>
6732
6733 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
6734
6735 2005-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
6736
6737 * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
6738 (byte-optimize-pure-func): Quote the eval'd value.
6739
6740 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
6741 Rename from perl-font-lock-syntactic-face-function.
6742 Change the calling convention so it can be used as a font-lock MATCHER.
6743 Do the parse-partial-sexp loop outselves.
6744 (perl-font-lock-syntactic-keywords): Use it.
6745 (perl-mode): Don't set font-lock-syntactic-face-function any more.
6746
6747 2005-11-02 Nick Roberts <nickrob@snap.net.nz>
6748
6749 * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
6750 disassembly buffer too.
6751 (gdb-exited): Remove overlay arrows when execution has finished.
6752 (gdb-info-frames-custom, gdb-info-threads-custom)
6753 (gdb-info-registers-custom): Don't add inappropriate text
6754 properties if inferior is not active.
6755
6756 2005-11-02 Glenn Morris <rgm@gnu.org>
6757
6758 * progmodes/fortran.el (fortran-blink-match):
6759 Use `blink-matching-delay'.
6760
6761 2005-11-02 John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
6762
6763 * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
6764
6765 2005-11-02 Lars Hansen <larsh@soem.dk>
6766
6767 * net/tramp.el (tramp-action-out-of-band): Handle scp message
6768 "Permission denied".
6769
6770 2005-11-01 Richard M. Stallman <rms@gnu.org>
6771
6772 * textmodes/flyspell.el (flyspell-external-point-words):
6773 Pass nil to flyspell-get-word.
6774
6775 2005-11-02 Kim F. Storm <storm@cua.dk>
6776
6777 * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
6778 item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
6779
6780 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
6781
6782 * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
6783 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
6784 (calendar-mouse-print-dates): Add optional `event' argument.
6785 Update interactive-spec.
6786 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
6787 Use `calendar-event-to-date' instead of `event'.
6788
6789 2005-11-02 Masatake YAMATO <jet@gyve.org>
6790
6791 * progmodes/ld-script.el (ld-script-builtins):
6792 Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
6793 "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
6794 (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
6795
6796 2005-11-01 Romain Francoise <romain@orebokech.com>
6797
6798 * vc-sccs.el: Update copyright year.
6799 * ezimage.el: Likewise.
6800
6801 2005-11-01 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
6802
6803 * info.el (Info-fontify-node): Use `string-width' for fontifying
6804 underlined titles.
6805
6806 2005-11-01 Juri Linkov <juri@jurta.org>
6807
6808 * info.el (Info-fontify-node): Downcase node header keywords Node,
6809 Prev, Next, Up before comparison.
6810 (Info-history): Insert absolute directory name, and put invisible
6811 property on it.
6812
6813 2005-11-01 Juri Linkov <juri@jurta.org>
6814
6815 * info.el (Info-file-supports-index-cookies): New variable.
6816 (Info-find-node-2): Check makeinfo version for index cookie support.
6817 (Info-index-nodes): Search for nodes with index cookies only when
6818 Info-file-supports-index-cookies is t. Otherwise, search nodes
6819 with "Index" in the node name.
6820 (Info-index-node): Search index cookie in the current node only when
6821 Info-file-supports-index-cookies is t. Otherwise, check the word
6822 "Index" in the node name.
6823 (Info-find-emacs-command-nodes): Remove code that searches nodes
6824 with "Index" node name in the top menu.
6825
6826 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
6827
6828 * progmodes/scheme.el (scheme-mode-variables): Use the default
6829 comment-indent-function.
6830
6831 * faces.el (face-attribute): Handle the case where a face inherits from
6832 a non-existent face.
6833
6834 * simple.el (eval-expression-print-format): Use lisp-readable syntax
6835 for octal and hexa output, and merge the char into the paren.
6836 (kill-new): Use push.
6837 (copy-to-buffer): Use with-current-buffer.
6838 (completion-setup-function): Move code in loop to remove redundancy.
6839 (minibuffer-local-must-match-map): Don't add bindings that duplicate
6840 those inherited from minibuffer-local-completion-map.
6841
6842 * savehist.el (savehist-mode) <defcustom>:
6843 Use custom-set-minor-mode if available.
6844 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
6845 and emit a message if applicable.
6846
6847 2005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
6848
6849 * savehist.el: Sync up to version 19.
6850 (savehist-mode): New minor mode.
6851 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
6852 (savehist-length): Remove (use history-length instead).
6853 (savehist-file-modes): Rename from savehist-modes.
6854 (savehist-save-hook, savehist-loaded): New vars.
6855 (savehist-load): Use savehist-mode. Try to smooth up transition from
6856 old format to new format.
6857 (savehist-install): Allow savehist-autosave-interval to be nil.
6858 (savehist-save): Run the new hook. Be more careful to only trim the
6859 history variables.
6860 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
6861 (savehist-printable): Print into a buffer rather than char-by-char.
6862
6863 2005-11-01 John Wiegley <johnw@newartisans.com>
6864
6865 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
6866 toggle-ignore keybinding (C-a). The author said it had been
6867 disabled much earlier due to a possible incompatibility, but after
6868 many months of usage I have encountered no problems (and it is a
6869 rather useful option, especially for switching to " *temp*").
6870
6871 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
6872 support for OS/X's AddressBook, by calling out to the open source
6873 program "contacts" (installable through Fink).
6874
6875 * net/eudc.el (eudc-expand-inline): If the
6876 `eudc-multiple-match-handling-method' is set to `all', delete the
6877 query string before inserting the query result.
6878
6879 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
6880 flag, to prevent Eshell from using the system ls when
6881 `eshell-ls-insert-directory' is in used.
6882 (eshell-ls-insert-directory): Disable font-lock in directory
6883 buffer so that Eshell's own fontification is seen. This broke
6884 recently due to changes in font-lock, so this goes back to version
6885 21 behavior.
6886
6887 2005-11-01 Nick Roberts <nickrob@snap.net.nz>
6888
6889 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
6890 (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
6891 (gdb-many-windows): Doc fix.
6892
6893 2005-10-31 Romain Francoise <romain@orebokech.com>
6894
6895 * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
6896
6897 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
6898
6899 * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
6900 that global-font-lock-mode can be enabled by default.
6901
6902 * font-lock.el (font-lock-keywords, font-lock-mode-internal)
6903 (font-lock-add-keywords, font-lock-remove-keywords)
6904 (font-lock-fontify-buffer): Remove autoload cookies.
6905
6906 * jit-lock.el (jit-lock-register): Likewise.
6907
6908 * emacs-lisp/syntax.el (syntax-ppss): Likewise.
6909
6910 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
6911
6912 * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
6913 intact if there is no gud-comint-buffer.
6914
6915 2005-10-31 Luc Teirlinck <teirllm@auburn.edu>
6916
6917 * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
6918 old prompt comint-prompt-read-only is t and GDB commands are
6919 issued from tool bar etc.
6920
6921 2005-10-31 Masatake YAMATO <jet@gyve.org>
6922
6923 * vc.el (vc-directory-exclusion-list): Add "{arch}".
6924
6925 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
6926
6927 * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
6928 (thumbs-thumbsdir): Make .emacs.d if it does not exist.
6929
6930 2005-10-30 Michael Albinus <michael.albinus@gmx.de>
6931
6932 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
6933 starting at beginning of line. Fontification is messed up when
6934 `open-paren-in-column-0-is-defun-start' set to t.
6935 Reported by John Paul Wallington <jpw@pobox.com>.
6936
6937 2005-10-30 Luc Teirlinck <teirllm@auburn.edu>
6938
6939 * comint.el (comint-send-input): Call `comint-update-fence' when
6940 `comint-process-echoes' and `comint-prompt-read-only' are both
6941 non-nil, to avoid leftover read-only newline.
6942
6943 2005-10-30 Richard M. Stallman <rms@gnu.org>
6944
6945 * textmodes/flyspell.el (flyspell-external-point-words):
6946 Detect when WORD can't be checked properly because
6947 flyspell-get-word finds just part of it, and move on.
6948
6949 * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
6950 boundarychar for Polish.
6951 (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
6952 (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
6953
6954 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
6955
6956 * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
6957 (gdb-registers-font-lock-keywords): Delete.
6958 (gdb-registers-mode): Don't fontify.
6959 (gdb-info-registers-custom): Use text properties instead as, in
6960 future, changed register values will use font-lock-warning-face.
6961 (gdb-local-font-lock-keywords): Rename to...
6962 (gdb-locals-font-lock-keywords): ...for consistency.
6963
6964 2005-10-30 Andre Spiegel <spiegel@gnu.org>
6965
6966 * vc.el (vc-switch-backend): Better error message if the buffer is
6967 not visiting a file under version control.
6968
6969 * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
6970
6971 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
6972
6973 * startup.el (command-line): Use ~/.emacs.d/init.el instead of
6974 ~/.emacs.d/.emacs.
6975
6976 2005-10-29 Richard M. Stallman <rms@gnu.org>
6977
6978 * replace.el (occur-mode-mouse-goto): Always go to other window.
6979 (occur-mode-goto-occurrence): Always switch in same window.
6980
6981 * simple.el (undo): Display message at end, not at start.
6982
6983 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
6984 New arg REUSE-CELL.
6985 (cancel-timer-internal): New function.
6986 (timer-event-handler): Use cancel-timer-internal,
6987 and pass the cell it returns to timer-activate...
6988
6989 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
6990 (jit-lock-deferred-fontify, jit-lock-context-fontify)
6991 (jit-lock-after-change): Test memory-full.
6992
6993 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
6994
6995 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
6996 part of the decoded armor to find the key-identifier.
6997 (pgg-gpg-lookup-key-owner): New function to return the
6998 human-readable identifier of a key owner.
6999 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
7000 key itself.
7001 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
7002 the key value) if we have a key and can match it against a secret
7003 key. Also, added a note pointing out fact that the prompt only
7004 indicates the first matching key.
7005
7006 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
7007 pgg-decrypt-region.
7008 (pgg-pending-timers): A new hash for tracking the passphrase cache
7009 timers, so that new ones supercede old ones.
7010 (pgg-add-passphrase-to-cache): Rename from
7011 `pgg-add-passphrase-cache' to reduce confusion (all callers
7012 changed). Modified to cancel old timers when new ones are added.
7013 (pgg-remove-passphrase-from-cache): Rename from
7014 `pgg-remove-passphrase-cache' to reduce confusion (all callers
7015 changed). Modified to cancel old timers when their keys are
7016 removed from the cache.
7017 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
7018 XEmacs, an indirection to delete-itimer.
7019 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
7020 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
7021 users can only check cache without risk of prompting. Correct bug in
7022 notruncate behavior.
7023 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
7024 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
7025 Add informative docstrings.
7026 (pgg-decrypt): Convey provided passphrase in subordinate call to
7027 pgg-decrypt-region.
7028
7029 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
7030 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
7031 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
7032 `passphrase' argument, so the passphrase can be managed externally
7033 and then passed in to the system.
7034
7035 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
7036 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
7037 so the passphrase cache can be used reliably with identifiers
7038 besides a pgp packet's key id.
7039
7040 * pgg-gpg.el (pgg-pgp-encrypt-region)
7041 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
7042 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
7043 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
7044 argument to all these routines, so the passphrase can be managed
7045 externally and passed in to the system.
7046
7047 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
7048 `notruncate' argument, so the passphrase cache can be used
7049 reliably with identifiers besides a pgp packet's key id.
7050
7051 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
7052
7053 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
7054 symmetric encryption.
7055 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
7056 encrypted session key.
7057 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
7058 message ask for the passphrase in a proper way.
7059
7060 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
7061 New user commands for symmetric encryption.
7062
7063 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
7064
7065 * textmodes/conf-mode.el (conf-assignment-sign)
7066 (conf-assignment-regexp): Fix docstrings.
7067 (conf-mode-initialize): New function.
7068 (conf-mode): Remove optional args. Use delay-mode-hooks to
7069 recognize recursive calls.
7070 (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
7071 (conf-space-mode, conf-colon-mode, conf-ppd-mode)
7072 (conf-xdefaults-mode): Use define-derived-mode and
7073 conf-mode-initialize.
7074
7075 2005-10-29 Romain Francoise <romain@orebokech.com>
7076
7077 * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
7078
7079 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
7080
7081 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
7082 part of the decoded armor to find the key-identifier.
7083 (pgg-gpg-lookup-key-owner): New function to return the
7084 human-readable identifier of a key owner.
7085 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
7086 key itself.
7087 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
7088 the key value) if we have a key and can match it against a secret
7089 key. Also, added a note pointing out fact that the prompt only
7090 indicates the first matching key.
7091
7092 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
7093 pgg-decrypt-region.
7094 (pgg-pending-timers): A new hash for tracking the passphrase cache
7095 timers, so that new ones supercede old ones.
7096 (pgg-add-passphrase-to-cache): Rename from
7097 `pgg-add-passphrase-cache' to reduce confusion (all callers
7098 changed). Modified to cancel old timers when new ones are added.
7099 (pgg-remove-passphrase-from-cache): Rename from
7100 `pgg-remove-passphrase-cache' to reduce confusion (all callers
7101 changed). Modified to cancel old timers when their keys are
7102 removed from the cache.
7103 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
7104 XEmacs, an indirection to delete-itimer.
7105 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
7106 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
7107 users can only check cache without risk of prompting. Correct bug in
7108 notruncate behavior.
7109 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
7110 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
7111 Add informative docstrings.
7112 (pgg-decrypt): Convey provided passphrase in subordinate call to
7113 pgg-decrypt-region.
7114
7115 2005-10-20 Ken Manheimer <ken.manheimer+emacs@gmail.com>
7116
7117 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
7118 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
7119 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
7120 `passphrase' argument, so the passphrase can be managed externally
7121 and then passed in to the system.
7122
7123 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
7124 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
7125 so the passphrase cache can be used reliably with identifiers
7126 besides a pgp packet's key id.
7127
7128 * pgg-gpg.el (pgg-pgp-encrypt-region)
7129 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
7130 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
7131 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
7132 argument to all these routines, so the passphrase can be managed
7133 externally and passed in to the system.
7134
7135 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
7136 `notruncate' argument, so the passphrase cache can be used
7137 reliably with identifiers besides a pgp packet's key id.
7138
7139 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
7140
7141 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
7142 symmetric encryption.
7143 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
7144 encrypted session key.
7145 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
7146 message ask for the passphrase in a proper way.
7147
7148 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
7149 New user commands for symmetric encryption.
7150
7151 2005-10-28 Bill Wohler <wohler@newt.com>
7152
7153 * help-mode.el (help-url): New button type. Calls browse-url.
7154 (help-xref-url-regexp): New regexp to recognize URLs in docstring.
7155 Similar to Info nodes: URL `url'.
7156 (help-make-xrefs): Create help-url buttons for
7157 help-xref-url-regexp matches.
7158
7159 2005-10-29 Nick Roberts <nickrob@snap.net.nz>
7160
7161 * tool-bar.el (tool-bar-add-item-from-menu)
7162 (tool-bar-local-item-from-menu): Fix doc strings.
7163
7164 2005-10-28 Romain Francoise <romain@orebokech.com>
7165
7166 * ldefs-boot.el: Update.
7167
7168 * subr.el (locate-library): Move from help-fns.el.
7169 * help-fns.el (locate-library): Move to subr.el.
7170
7171 2005-10-28 Richard M. Stallman <rms@gnu.org>
7172
7173 * net/tramp.el (tramp-completion-mode): defvar moved up.
7174
7175 * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
7176
7177 * tool-bar.el (tool-bar-mode): Delete autoload cookie.
7178
7179 * files.el (find-file-noselect): Use %d to format large file size.
7180
7181 * bindings.el (mode-line-format): Add %e.
7182
7183 * loadup.el ("facemenu"): Load unconditionally.
7184 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
7185 ("x-dnd"): Load, when appropriate.
7186
7187 * startup.el (command-line): Call before-init-hook earlier.
7188 Warn about some bad characters in -u user name.
7189
7190 * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
7191 (flyspell-external-point-words): Error if misspelled word is not found.
7192 Set flyspell-large-region-beg at end of word.
7193
7194 2005-10-28 Andreas Schwab <schwab@suse.de>
7195
7196 * view.el (View-revert-buffer-scroll-page-forward):
7197 Use view-page-size-default.
7198
7199 2005-10-28 Juri Linkov <juri@jurta.org>
7200
7201 * international/quail.el (quail-get-current-str): Translate last
7202 raw character for deterministic input methods.
7203
7204 2005-10-27 Jay Belanger <belanger@truman.edu>
7205
7206 * calc/calc-ext.el: Add functions to autoloads.
7207 (math-identity-matrix-p, math-ident-row-p): New functions.
7208
7209 * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
7210 multiplication by an identity matrix; don't turn multiplication by
7211 an inverse matrix into division.
7212 (math-div-symbol-fancy): Replace division by matrices with
7213 multiplication by inverse.
7214
7215 * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
7216
7217 * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
7218 (calc-writeoutpower): New functions.
7219
7220 2005-10-27 Romain Francoise <romain@orebokech.com>
7221
7222 * replace.el (occur-engine): Include colon in mouse-face highlight.
7223
7224 * dired-x.el: Change Maintainer field.
7225
7226 2005-10-26 Chong Yidong <cyd@stupidchicken.com>
7227
7228 * longlines.el (longlines-mode): Bind after-change-functions to
7229 nil during initial decoding and final encoding.
7230
7231 2005-10-26 Dan Nicolaescu <dann@ics.uci.edu>
7232
7233 * term.el (term-emulate-terminal, term-handle-colors-array)
7234 (term-handle-ansi-escape): Specify the terminfo capabilities
7235 implemented.
7236
7237 2005-10-26 Richard M. Stallman <rms@gnu.org>
7238
7239 * info.el (Info-fontify-node): Fix detection of sentence-break
7240 before *Note.
7241
7242 2005-10-26 Romain Francoise <romain@orebokech.com>
7243
7244 * smerge-mode.el: Add `tools' to file keywords.
7245
7246 2005-10-26 Nick Roberts <nickrob@snap.net.nz>
7247
7248 * progmodes/gud.el (gud-menu-map): Only display gud-until icon
7249 when the fringe is not available.
7250
7251 * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
7252 (def-gdb-auto-update-trigger): Simplify construction.
7253 (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
7254 def-gdb-auto-updated-buffer as gdb-info-locals-handler is
7255 defined explicitly.
7256 (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
7257 def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
7258 defined explicitly.
7259 (gdb-info-locals-custom): Remove as it's a no-op.
7260
7261 2005-10-25 Chong Yidong <cyd@stupidchicken.com>
7262
7263 * longlines.el (longlines-mode): Remove narrowing before
7264 performing the initial decoding or final encoding.
7265
7266 2005-10-25 Romain Francoise <romain@orebokech.com>
7267
7268 * emacs-lisp/find-func.el (find-library-name): Also strip
7269 extension if library name ends in .el, to take advantage of
7270 `find-library-suffixes'.
7271
7272 2005-10-25 Richard M. Stallman <rms@gnu.org>
7273
7274 * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
7275
7276 2005-10-25 Juri Linkov <juri@jurta.org>
7277
7278 * textmodes/texinfo.el (texinfo-mode): Change charset of one
7279 quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
7280
7281 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7282
7283 * play/blackbox.el (blackbox-mode-map): Move init into declaration.
7284 (blackbox-redefine-key): Add argument `map'.
7285
7286 * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
7287 regions when moving the jit-lock-context-unfontify-pos boundary.
7288
7289 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
7290
7291 * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
7292
7293 2005-10-25 Masatake YAMATO <jet@gyve.org>
7294
7295 * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
7296
7297 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change)
7298
7299 * play/blackbox.el (blackbox-redefine-key): New function.
7300 (blackbox-mode-map): Use it to remap existing bindings for cursor
7301 motion instead of binding literal keys.
7302
7303 2005-10-25 Glenn Morris <rgm@gnu.org>
7304
7305 * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
7306 diary does not end in a newline. Do not assume a blank line at
7307 the start of the diary file.
7308
7309 2005-10-25 Kenichi Handa <handa@m17n.org>
7310
7311 * international/quail.el (quail-translate-key): If the input
7312 method is deterministic and failed to handle the last key, restart
7313 the key handling loop from an appropriate key.
7314
7315 2005-10-25 Michael Albinus <michael.albinus@gmx.de>
7316
7317 * vc.el (vc-dired-mode): Extend comment for binding of
7318 `directory-listing-before-filename-regexp'.
7319
7320 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7321
7322 * textmodes/texinfo.el (texinfo-mode):
7323 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
7324 not to unnecessarily expose emacs-mule's internal char codes.
7325
7326 2005-10-25 Nick Roberts <nickrob@snap.net.nz>
7327
7328 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
7329 Display hand pointer and help-echo on disabled icon too.
7330 (gdb-mouse-until): New function.
7331 (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
7332
7333 2005-10-24 Chong Yidong <cyd@stupidchicken.com>
7334
7335 * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
7336 with 2005-10-23 change to doctor.el.
7337
7338 * finder.el (finder-mode-map): Add follow-link binding.
7339
7340 2005-10-25 Kim F. Storm <storm@cua.dk>
7341
7342 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
7343 to gdb-mouse-toggle-breakpoint-fringe.
7344 (gdb-mouse-toggle-breakpoint-margin): Rename from
7345 gdb-mouse-toggle-breakpoint. Fix doc.
7346 (gdb-mouse-toggle-breakpoint-fringe): New defun.
7347 (gdb-put-string): Add optional SPROPS arg. Add props to string.
7348 (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
7349 string properties also for fringe breakpoint bitmaps.
7350
7351 2005-10-24 Carsten Dominik <dominik@science.uva.nl>
7352
7353 * textmodes/org.el (org-start-icalendar-file): Fix format form.
7354
7355 2005-10-25 Masatake YAMATO <jet@gyve.org>
7356
7357 * simple.el (completion-common-substring):
7358 Use `completion-common-substring' prior to `completion-base-size'.
7359
7360 2005-10-24 Hrvoje Niksic <hniksic@xemacs.org>
7361
7362 * savehist.el: Require CL while compiling.
7363 (savehist-history-variables): Remove.
7364 (savehist-save-minibuffer-history, savehist-additional-variables)
7365 (savehist-minibuffer-history-variables): New vars.
7366 (savehist-save): Use them.
7367 (savehist-uninstall, savehist-minibuffer-hook): New funs.
7368 (savehist-install): New fun, extracted from savehist-load.
7369 (savehist-load): Use them.
7370
7371 2005-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7372
7373 * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
7374 a dummy doc-string-elt property.
7375 (defalias, defvaralias, define-category): Add a docstring property.
7376
7377 * image.el (defimage):
7378 * widget.el (define-widget):
7379 * custom.el (defface, defcustom): Add `doc-string' declaration.
7380
7381 * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
7382 (defadvice): Add `doc-string' declaration.
7383
7384 * emacs-lisp/byte-run.el (macro-declaration-function):
7385 Handle `doc-string' declarations.
7386 (define-obsolete-function-alias, define-obsolete-variable-alias):
7387 Add `doc-string' declaration.
7388
7389 2005-10-24 Kenichi Handa <handa@m17n.org>
7390
7391 * international/utf-7.el (utf-7): Add autoload cookie.
7392
7393 * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
7394
7395 2005-10-24 Eli Zaretskii <eliz@gnu.org>
7396
7397 * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
7398 list of directories passed to batch-update-autoloads. Add "." to
7399 the list of the echoed directories.
7400
7401 * pgg-def.el:
7402 * pgg-gpg.el:
7403 * pgg-parse.el:
7404 * pgg-pgp.el:
7405 * pgg-pgp5.el:
7406 * pgg.el: Moved here from the gnus subdirectory.
7407
7408 2005-10-24 Nick Roberts <nickrob@snap.net.nz>
7409
7410 * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
7411 in case comint-prompt-read-only is set to t.
7412
7413 * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
7414 in case comint-prompt-read-only is set to t.
7415
7416 2005-10-24 Ulf Jasper <ulf.jasper@web.de>
7417
7418 * calendar/icalendar.el (icalendar-version): Increase to 0.13.
7419 Now a string.
7420 (icalendar-import-format): Handle CLASS, STATUS, URL.
7421 Rename `subject' to `summary'.
7422 (icalendar-import-format-summary): Rename from
7423 `icalendar-import-format-subject'.
7424 (icalendar-import-format-url, icalendar-import-format-status)
7425 (icalendar-import-format-class): New variables.
7426 (icalendar--rris): Take variable argument list.
7427 (icalendar--datestring-to-isodate): Remove unnecessary
7428 calendar-style check when converting dates with explicit month names.
7429 (icalendar-export-region): Change return type of conversion
7430 subroutines. Bury current buffer unless error occurred.
7431 (icalendar--convert-to-ical)
7432 (icalendar--parse-summary-and-rest): New functions.
7433 (icalendar--convert-ordinary-to-ical)
7434 (icalendar--convert-weekly-to-ical)
7435 (icalendar--convert-yearly-to-ical)
7436 (icalendar--convert-block-to-ical)
7437 (icalendar--convert-cyclic-to-ical)
7438 (icalendar--convert-anniversary-to-ical): Change return type.
7439 Strip trailing blanks from subject.
7440 (icalendar--convert-sexp-to-ical): Change return type.
7441 Strip trailing blanks from subject. Handle simple sexp
7442 entries as generated by icalendar.el.
7443 (icalendar--convert-float-to-ical)
7444 (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
7445 (icalendar-import-file): Doc fix.
7446 (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
7447 Correct call to icalendar--rris.
7448 (icalendar--convert-ical-to-diary): Doc fix. Rename `subject' to
7449 `summary'.
7450 (icalendar--add-diary-entry): Rename `subject' to `summary'.
7451
7452 2005-10-24 Romain Francoise <romain@orebokech.com>
7453
7454 * server.el (server-sentinel): Set query-on-exit flag to nil on
7455 new client processes (it isn't inherited from the server process).
7456
7457 * replace.el (occur-engine): Rearrange text properties.
7458
7459 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
7460
7461 * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
7462 case-fold-search is nil.
7463 (debug-help-follow): Use help-xref-interned directly.
7464
7465 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
7466
7467 * thumbs.el (thumbs-image-type): Add .pbm.
7468
7469 2005-10-23 Richard M. Stallman <rms@gnu.org>
7470
7471 * faces.el (inhibit-face-set-after-frame-default): New variable.
7472 (set-face-attribute): Bind it.
7473 (face-set-after-frame-default): Test it.
7474
7475 * help-fns.el (describe-simplify-lib-file-name): New function.
7476 (describe-function-1, describe-variable): Use it.
7477
7478 * faces.el (describe-face): Use describe-simplify-lib-file-name.
7479
7480 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
7481 Eliminate nil as possible value.
7482 (tooltip-hide-delay): Reduce internal-border-width.
7483
7484 * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
7485 (menu-bar-file-menu) <new-file>: Likewise.
7486
7487 * simple.el (line-move-finish): Ignore fields computing LINE-END.
7488
7489 * international/mule.el (load-with-code-conversion):
7490 Pass full file name to `eval-buffer' unless preloading.
7491
7492 * textmodes/flyspell.el (flyspell-large-region):
7493 Call ispell-check-version.
7494
7495 * textmodes/ispell.el (ispell-local-dictionary-overridden):
7496 Fix the make-variable-buffer-local call that was supposed
7497 to be for this variable.
7498 (ispell-aspell-supports-utf8): Doc fix.
7499 (ispell-find-aspell-dictionaries): Preserve elements of
7500 ispell-dictionary-alist for dictionaries that aspell doesn't report.
7501 (ispell-aspell-find-dictionary): Return nil on error.
7502
7503 * play/doctor.el (doctor-doc): Don't say "psychiatrist".
7504 (doctor-symptoms): Likewise.
7505
7506 * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
7507
7508 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
7509
7510 * cus-edit.el (custom-button, custom-button-pressed): New vars.
7511 (custom-raised-buttons): Add :set spec.
7512 (custom-button-unraised, custom-button-pressed-unraised):
7513 New faces, so that custom-raised-buttons actually does something.
7514 (custom-mode): Use custom-button and custom-button-pressed.
7515
7516 * wid-edit.el (widget-specify-button): Don't ignore
7517 widget-mouse-face on graphic terminals.
7518 (widget-move-and-invoke): Cleanup.
7519
7520 2005-10-23 Thien-Thi Nguyen <ttn@gnu.org>
7521
7522 * whitespace.el (whitespace-cleanup): Doc fix.
7523
7524 2005-10-23 Romain Francoise <romain@orebokech.com>
7525
7526 * emulation/viper.el (viper-set-hooks): Quote forms passed to
7527 `eval-after-load' to avoid evaluating their result.
7528
7529 2005-10-23 Michael Albinus <michael.albinus@gmx.de>
7530
7531 * files.el (directory-listing-before-filename-regexp):
7532 New defvar. Replaces `dired-move-to-filename-regexp' from dired.el.
7533
7534 * dired.el (dired-move-to-filename-regexp): Remove.
7535 All occurences replaced by `directory-listing-before-filename-regexp'.
7536
7537 * dired-x.el, locate.el, vc.el:
7538 Replace `dired-move-to-filename-regexp' by
7539 `directory-listing-before-filename-regexp'. In vc.el it is
7540 overwritten locally; maybe this can be handled in files.el too.
7541
7542 * net/ange-ftp.el (ange-ftp-date-regexp): Remove. All occurences
7543 replaced by `directory-listing-before-filename-regexp'.
7544
7545 2005-10-23 Andreas Schwab <schwab@suse.de>
7546
7547 * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
7548 and eval-next-after-load.
7549
7550 2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
7551
7552 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
7553 exist, create it.
7554
7555 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
7556
7557 * allout.el: Remove autoloads for mailcrypt and crypt++.
7558 Require pgg, pgg-gpg during compilation.
7559 (allout-version): Increment version number to 2.1, and use a literal
7560 rather than RCS Id.
7561 (allout-default-encryption-scheme): Remove.
7562 (allout-passphrase-verifier-handling)
7563 (allout-passphrase-verifier-string)
7564 (allout-file-passphrase-verifier-string)
7565 (allout-passphrase-hint-string): Rename -key- to -passphrase-.
7566 (allout-passphrase-hint-handling): Rename and simplify.
7567 (allout-init): Use `find-file-hook' if available, otherwise
7568 `find-file-hooks'.
7569 (allout-mode): Use `write-file-functions' if available, otherwise
7570 `local-write-file-hooks' and, instead of making auto-save-hook
7571 buffer local, make the write-file-hook activity contingent to
7572 allout-mode.
7573 (allout-mode): Use key-binding substitution in the docstring.
7574 (allout-kill-line): Spell-out kill ring data structure mutation
7575 instead of using byte-compiler-complaint-provoking `pop'.
7576 (allout-insert-listified): Use `insert' rather than `insert-string'
7577 (allout-toggle-current-subtree-encryption): Update docstring, adjust
7578 to new gpp-based encryption, use new `allout-encrypted-topic-p'.
7579 (allout-encrypt-string): Totally revamped vis new underlying
7580 encryption facilities.
7581 (allout-mc-activate-passwd): Remove.
7582 (allout-obtain-passphrase): New, more or less replaces
7583 allout-mc-activate-passwd.
7584 (allout-encrypted-key-info): More or less replaces
7585 allout-encrypted-text-type.
7586 (outlineify-sticky, outlinify-sticky): Add autoload cookie.
7587 (my-mark-marker): Use `(featurep 'xemacs)'.
7588
7589 2005-10-23 Lars Hansen <larsh@soem.dk>
7590
7591 * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
7592 (byte-compile-file-form-defmumble, byte-compile-defun)
7593 (byte-compile-defmacro): Use it.
7594 (byte-compile-form): Don't call byte-compile-set-symbol-position
7595 when a byte-compile handler is called.
7596
7597 2005-10-22 Romain Francoise <romain@orebokech.com>
7598
7599 * savehist.el (savehist-history-variables): Add `grep-find-history'.
7600
7601 * subr.el (eval-after-load): Convert library name to an absolute
7602 file name using locate-library, since load-history no longer has
7603 library names in it.
7604
7605 2005-10-22 Richard M. Stallman <rms@gnu.org>
7606
7607 * files.el (make-temp-file): Move from subr.el.
7608 * subr.el (make-temp-file): Move to files.el.
7609
7610 * window.el (get-buffer-window-list): Move from subr.el.
7611 * subr.el (get-buffer-window-list): Move to window.el.
7612
7613 * image.el (image-load-path): Use eval-at-startup to initialize.
7614
7615 * subr.el (eval-at-startup): New macro.
7616
7617 * subr.el: Much rearrangement of functions and division
7618 into pages. No code changes.
7619
7620 2005-10-22 Kenichi Handa <handa@m17n.org>
7621
7622 * tar-mode.el (tar-extract): Be sure to call
7623 find-operation-coding-system if set-auto-coding doesn't find a
7624 coding system.
7625
7626 2005-10-22 Kim F. Storm <storm@cua.dk>
7627
7628 * image.el (image-type-header-regexps): Rename from image-type-regexps.
7629 Change users.
7630 (image-type-file-name-regexps): New defconst.
7631 (image-type-from-data): Simplify loop.
7632 (image-type-from-buffer): New defun.
7633 (image-type-from-file-header): Use it instead of image-type-from-data.
7634 Use image-search-load-path instead of only looking in data-directory.
7635 (image-type-from-file-name): New defun.
7636 (image-search-load-path): Change `pathname' to `filename'.
7637 Make PATH arg optional, default to image-load-path.
7638
7639 2005-10-21 Richard M. Stallman <rms@gnu.org>
7640
7641 * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
7642
7643 * textmodes/paragraphs.el (sentence-end-base): New variable.
7644 (sentence-end): Use sentence-end-base.
7645
7646 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
7647
7648 * font-lock.el (font-lock-default-fontify-region): Check the multiline
7649 property independently from the font-lock-multiline variable.
7650
7651 2005-10-21 Richard M. Stallman <rms@gnu.org>
7652
7653 * emacs-lisp/find-func.el (find-library-name): Doc fix.
7654
7655 * startup.el (command-line): Convert library names
7656 in `load-history' to absolute file names.
7657
7658 * subr.el (symbol-file): Doc fix.
7659
7660 * loadhist.el (file-loadhist-lookup): Call locate-library
7661 instead of find-library-name. Don't try converting
7662 abs file names to library names, since load-history no longer
7663 has library names in it.
7664 (file-dependents, file-provides, file-requires): Doc fixes.
7665
7666 2005-10-21 Juri Linkov <juri@jurta.org>
7667
7668 * progmodes/etags.el (tags-table-mode): New function.
7669 (tags-verify-table): Replace initialize-new-tags-table with
7670 tags-table-mode.
7671
7672 * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
7673 default value.
7674 (desktop-modes-not-to-save): Add tags-table-mode to the
7675 default value.
7676
7677 * info.el (Info-index-next): Add total number of index
7678 alternatives to the message.
7679
7680 * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
7681 backward only space (instead of space and period) before looking
7682 at sentence end.
7683
7684 * simple.el (set-variable): Use user-variable-p instead of symbolp.
7685 Add the old variable value as 4th default-value arg of read-string.
7686
7687 2005-10-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7688
7689 * cus-face.el (custom-declare-face): Make face from X resources
7690 also on Mac.
7691
7692 * disp-table.el (standard-display-g1, standard-display-graphic):
7693 Refuse to use string glyphs also on Mac.
7694 (standard-display-european): Don't set terminal coding system also
7695 on Mac.
7696
7697 * frame.el (display-screens): Use x-display-screens also on Mac.
7698
7699 2005-10-21 Romain Francoise <romain@orebokech.com>
7700
7701 * net/rcirc.el: Now part of GNU Emacs. Update FSF's address.
7702
7703 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
7704
7705 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
7706 and $? into sexps.
7707
7708 * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
7709 warning face on open-paren-in-column-0.
7710
7711 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
7712 boundary case. Fix typo.
7713 Suggested by Martin Rudalics <rudalics@gmx.at>.
7714
7715 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
7716
7717 * textmodes/org.el (org-combined-agenda-icalendar-file)
7718 (org-icalendar-include-todo, org-icalendar-combined-name): New options.
7719 (org-export-icalendar-this-file)
7720 (org-export-icalendar-all-agenda-files)
7721 (org-export-icalendar-combine-agenda-files): New commands.
7722 (org-export-icalendar, org-print-icalendar-entries)
7723 (org-start-icalendar-file, org-finish-icalendar-file)
7724 (org-ical-ts-to-string): New functions.
7725 (org-read-date, org-goto-calendar)
7726 (org-agenda-goto-calendar): Inhibit displaying diary entries by
7727 call to `calendar'.
7728 (orgtbl-setup): Remove the :keys arguments from the menu description.
7729 (org-after-save-iCalendar-file-hook): New variable.
7730
7731 2005-10-21 Kenichi Handa <handa@m17n.org>
7732
7733 * language/vietnamese.el (tcvn-5712): Make it an alias of
7734 vietnamese-tcvn coding-system.
7735
7736 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
7737
7738 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
7739 group id is given.
7740
7741 2005-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
7742
7743 * progmodes/sh-script.el (sh-escaped-line-re): New var.
7744 (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
7745 (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
7746 whose line is either continued or ends with a comment.
7747
7748 2005-10-20 Romain Francoise <romain@orebokech.com>
7749
7750 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
7751
7752 * replace.el (occur-engine): Add follow-link property.
7753
7754 * font-core.el (font-lock-mode): Doc fix.
7755
7756 2005-10-20 Richard M. Stallman <rms@gnu.org>
7757
7758 * net/rcirc.el: New file.
7759
7760 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
7761
7762 * term.el (term-term-name): Initialize to "eterm-color".
7763
7764 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
7765
7766 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
7767 for encryption functionality.
7768 Move allout customization subgroup from `editing' to `outlines' group.
7769 Fix commentary keywords to legitimate ones.
7770 Update author info (using my current email address, obscurified).
7771 (allout-encrypt-string, allout-encryption-produce-work-buffer)
7772 (allout-encrypted-topic-p, allout-encrypted-text-type)
7773 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
7774 (allout-situate-encryption-key-verifier)
7775 (allout-get-encryption-key-verifier, allout-verify-key)
7776 (allout-next-topic-pending-encryption)
7777 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
7778 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
7779 (outline-key-verifier-handling, outline-key-hint-handling)
7780 (outline-encrypt-unencrypted-on-saves): New defcustoms.
7781 (allout-file-key-verifier-string, allout-encryption-scheme)
7782 (allout-key-verifier-string, allout-key-hint-string)
7783 (allout-after-save-decrypt): New variables.
7784 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
7785 (allout-after-saves-handler): New hook functions.
7786 (allout-post-command-business): Do allout-after-save-decrypt.
7787 (allout-enable-file-variable-adjustment): Custom var to enable
7788 mechanism for adding and adjusting settings of Emacs file variables.
7789 (allout-adjust-file-variable, allout-file-vars-section-data):
7790 New functions, implement the mechanism.
7791 (outlineify-sticky): Use the file vars mechanism.
7792 (allout-inhibit-protection, allout-during-write-cue)
7793 (allout-override-protect, allout-before-change-protect): Remove.
7794 (allout-flag-region, allout-open-topic): Adjust read-only text.
7795 (allout-open-line-not-read-only): Add to facilitate read-only
7796 text based protection.
7797 (allout-kill-line): Revise to adjust read-only text, clue the
7798 user about the inhibition.
7799 (allout-unprotected): Use unwind-protect.
7800 (allout-shift-in, allout-shift-out): Disallow manually shifting a
7801 topic deeper than the offspring depth of the previous topic -
7802 avoiding confusing "containment discontinuities".
7803 (allout-reindent-bodies): Fix retention of body relative hanging
7804 indent during promotion of collapsed bodies.
7805 (allout-open-topic): Make it easy to open new topic with same
7806 bullet as current topic - topic creation functions provided with
7807 any universal argument provokes now prompt for bullet, defaulting
7808 to the bullet of the previous topic.
7809 (allout-plain-bullets-string, allout-distinctive-bullets-string):
7810 Plain bullet alternates `.' period and `,' comma only. All other
7811 bullets are relegated to special status (but customizable).
7812 (allout-end-of-entry): Rename from allout-end-of-current-entry
7813 since it actually operates w.r.t. most immediately containing
7814 entry, visible or not.
7815 (allout-hide-current-entry, allout-show-current-entry): Use the
7816 revised version.
7817 (allout-old-expose-topic): Solidify deprecation.
7818 (allout-end-of-subtree): Add so we can span concealed as well
7819 as visible topics.
7820 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
7821 (allout-end-of-current-heading): Tweak to just respect the first line.
7822 (allout-get-body-text): Add.
7823 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
7824 when invoked interactively.
7825 (allout-up-current-level): Use `interactive-p'.
7826 (allout-mode, allout-init): Miscellaneous docstring and
7827 operational refinements, as well as hookups of new encryption stuff.
7828 (allout-beginning-of-current-entry): Now works as advertised.
7829 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
7830 (allout-isearch-rectification): Refine condition for isearching.
7831 (allout-isearch-abort, allout-enwrap-isearch)
7832 (allout-flag-region, my-region-active-p): Relocate some macros.
7833 (allout-title): Fallback title is (buffer-name), not
7834 non-existing (current-buffer-name).
7835 (subst-char-in-string): Define if absent (for some XEmacs versions).
7836
7837 2005-10-20 Jari Aalto <jari.aalto@cante.net>
7838
7839 * mail/sendmail.el (mail-setup-hook, mail-aliases)
7840 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
7841 (mail-citation-prefix-regexp, mail-signature-file)
7842 (mail-default-headers, mail-bury-selects-summary)
7843 (mail-send-nonascii): Add autoload cookies.
7844
7845 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
7846
7847 * frame.el (blink-cursor-mode): Add `mac' to the list of
7848 window-system's that support blinking cursor.
7849
7850 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
7851
7852 * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
7853
7854 2005-10-20 Eli Zaretskii <eliz@gnu.org>
7855
7856 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
7857 Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
7858 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
7859
7860 2005-10-20 Kim F. Storm <storm@cua.dk>
7861
7862 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
7863 (ido-set-current-directory): Don't add / after final @.
7864 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
7865 Explicitly handle ange-ftp completion oddities.
7866 (ido-make-file-list): Don't rotate list at tramp root to avoid
7867 triggering tramp file handler for expand-file-name via get-file-buffer.
7868
7869 2005-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
7870
7871 * savehist.el (savehist-coding-system): Revert to checking XEmacs.
7872
7873 2005-10-19 Jay Belanger <belanger@truman.edu>
7874
7875 * calc/calc-units.el (math-standard-units): Add units, adjust
7876 symbols and update values.
7877 (math-unit-prefixes): Add more prefixes.
7878
7879 2005-10-19 Romain Francoise <romain@orebokech.com>
7880
7881 * bookmark.el (bookmark-menu-heading): New face.
7882 (bookmark-bmenu-list): Use it.
7883 Don't fiddle with `baud-rate' at top-level.
7884
7885 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
7886
7887 * image.el (create-image, find-image): Mention max-image-size in
7888 docstring.
7889
7890 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
7891
7892 * savehist.el (savehist-load): Revert to checking XEmacs.
7893
7894 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
7895 Various docstring and line-width fixups.
7896 (conf-mode): Use cond.
7897 Set font-lock-defaults. Don't set comment-use-syntax.
7898
7899 2005-10-18 David Ponce <david@dponce.com>
7900
7901 * tree-widget.el (tree-widget-button-click): New function.
7902 (tree-widget-button-keymap): Use it.
7903
7904 2005-10-18 Romain Francoise <romain@orebokech.com>
7905
7906 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
7907 (bookmark-bmenu-hide-filenames): Add follow-link property.
7908 Improve help-echo text.
7909
7910 * ffap.el (find-file-at-point): Doc fix.
7911
7912 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7913
7914 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
7915
7916 2005-10-18 Masatake YAMATO <jet@gyve.org>
7917
7918 Install to the CVS repository what I forgot to install in my
7919 2005-10-16 changes.
7920
7921 * progmodes/python.el (python-complete-symbol): Pass the common
7922 prefix substring of completion to `display-completion-list'.
7923
7924 * textmodes/org.el (org-complete): Ditto.
7925
7926 2005-10-18 Masatake YAMATO <jet@gyve.org>
7927
7928 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
7929
7930 * woman.el (WoMan-xref-man-page): New button type derived
7931 from `Man-abstract-xref-man-page'.
7932 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
7933
7934 * man.el (Man-abstract-xref-man-page): New button type.
7935 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
7936 (Man-highlight-references): Add new optional argument `xref-man-type'.
7937
7938 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
7939
7940 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
7941
7942 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
7943
7944 * cus-edit.el (Custom-move-and-invoke): Delete.
7945 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
7946
7947 * wid-edit.el (widget-move-and-invoke): New function, from
7948 Custom-move-and-invoke.
7949
7950 2005-10-17 Bill Wohler <wohler@newt.com>
7951
7952 Move all remaining images from lisp/toolbar to etc/images, move
7953 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
7954 the low resolution images in their own directory (low-color).
7955
7956 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*
7957 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*
7958 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*
7959 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*
7960 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*
7961 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*
7962 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
7963
7964 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
7965 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
7966 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
7967 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
7968 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
7969 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
7970 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
7971 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
7972 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
7973 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
7974 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
7975 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
7976 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
7977 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
7978 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
7979
7980 To conform with convention, replace the underscore (_) in the
7981 following image names with dash (-) or (/) as appropriate.
7982
7983 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
7984 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
7985 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
7986 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
7987 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
7988 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
7989 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
7990 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
7991 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
7992 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
7993 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
7994 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
7995 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
7996 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
7997 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
7998
7999 * info.el (info-tool-bar-map): Replace underscores in image names
8000 with dashes.
8001
8002 * makefile.w32-in (WINS): Remove toolbar.
8003
8004 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
8005
8006 * tool-bar.el: Move to lisp from toolbar. Now that
8007 toolbar is empty, it should be deleted when folks run "cvs up -P".
8008
8009 2005-10-18 Jay Belanger <belanger@truman.edu>
8010
8011 * calc/calc-store.el (calc-store-into): Get the proper variable name
8012 to display in message.
8013
8014 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
8015
8016 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
8017 expressions display in speedbar for all buffers when debugging.
8018 (gdb-speedbar-expand-node): Ensure node contraction is always updated.
8019
8020 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
8021 (speedbar-insert-button, speedbar-make-button):
8022 Use add-text-properties.
8023 (speedbar-update-localized-contents)
8024 (speedbar-update-directory-contents)
8025 (speedbar-update-special-contents): Use dolist.
8026 (speedbar-buffer-easymenu-definition): Add a menu separator.
8027
8028 2005-10-17 Jason Rumney <jasonr@gnu.org>
8029
8030 * makefile.w32-in: Use $(lisp) consistently.
8031 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
8032 for shell specific generation of mh-autoloads.
8033
8034 2005-10-17 Richard M. Stallman <rms@gnu.org>
8035
8036 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
8037
8038 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
8039
8040 * jit-lock.el (jit-lock-fontify-now):
8041 Move jit-lock-context-unfontify-pos to avoid wasted work.
8042
8043 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
8044
8045 * net/tramp.el (tramp-completion-mode): New defvar. Used in
8046 `tramp-completion-mode' for checking if we are in completion mode.
8047 (tramp-completion-handle-file-name-all-completions): Reorder code
8048 in order to complete for file names only in case there are no
8049 method/user/host completions. This is necessary for cooperation
8050 with ido. Reported by Kim F. Storm <storm@cua.dk>.
8051
8052 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
8053
8054 * longlines.el (longlines-search-forward)
8055 (longlines-search-backward): Match any number of spaces.
8056
8057 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
8058
8059 * diff-mode.el (diff-mode): Doc fix.
8060
8061 2005-10-16 David Reitter <david.reitter@gmail.com>
8062
8063 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
8064 as default on darwin and windows systems.
8065
8066 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
8067
8068 * arc-mode.el (archive-zip-extract): Doc fix.
8069
8070 2005-10-16 Romain Francoise <romain@orebokech.com>
8071
8072 * mouse.el (mouse-1-click-follows-link): Doc fix.
8073
8074 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
8075
8076 * savehist.el: Don't require CL at runtime.
8077 (savehist-xemacs): Remove.
8078 (savehist-coding-system): Use utf-8 if present, regardless of religion.
8079 (savehist-no-conversion): Use (featurep 'xemacs).
8080 (savehist-load): Check existence of start-itimer rather than XEmacs.
8081 Use an idle timer.
8082 (savehist-process-for-saving): Replace use of CL funs `subseq' and
8083 `delete-if-not'.
8084
8085 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
8086
8087 * savehist.el: Newer version.
8088 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
8089 (savehist-last-checksum, savehist-no-conversion): New vars.
8090 (savehist-autosave, savehist-process-for-saving, savehist-printable):
8091 New functions.
8092 (savehist-load, savehist-save): Use them.
8093 (savehist-delimit): Remove.
8094
8095 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
8096
8097 * progmodes/compile.el (compilation-goto-locus): Display the
8098 compilation buffer first and the source buffer second, in case they're
8099 in overlapping frames. Don't raise the compilation frame if it was the
8100 selected window upon entry. Pass the `other-window' arg to
8101 pop-to-buffer.
8102
8103 * info.el (Info-fontify-node): Use dolist.
8104 Change add-text-properties to put-text-property.
8105
8106 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8107
8108 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
8109 bound of search.
8110
8111 2005-10-16 Masatake YAMATO <jet@gyve.org>
8112
8113 * dabbrev.el (dabbrev-completion): Pass the common
8114 prefix substring of completion to `display-completion-list'.
8115
8116 * filecache.el (file-cache-minibuffer-complete)
8117 (file-cache-complete): Ditto.
8118
8119 * tempo.el (tempo-display-completions): Ditto.
8120
8121 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
8122
8123 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
8124
8125 * eshell/em-hist.el (eshell-list-history): Ditto.
8126
8127 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
8128
8129 * mail/mailalias.el (mail-complete): Ditto.
8130
8131 * progmodes/etags.el (complete-tag): Ditto.
8132
8133 * progmodes/make-mode.el (makefile-complete): Ditto.
8134
8135 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
8136
8137 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
8138
8139 * progmodes/pascal.el (pascal-complete-word)
8140 (pascal-show-completions): Ditto.
8141
8142 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
8143
8144 * simple.el (completion-common-substring): New variable.
8145 (completion-setup-function): Use `completion-common-substring'
8146 to put faces.
8147
8148 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8149
8150 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
8151 (x-get-selection, mac-select-convert-to-string): Convert from/to
8152 UTF-16 clipboard data as in native byte order, no BOM.
8153
8154 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
8155
8156 * progmodes/gud.el (gud-tool-bar-map): Rename the images
8157 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
8158 (gud-sentinel): Use speedbar-frame to check for speedbar.
8159
8160 2005-10-15 Richard M. Stallman <rms@gnu.org>
8161
8162 * savehist.el: New file.
8163
8164 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
8165
8166 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
8167 Fix bug in \bf fontification.
8168
8169 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
8170
8171 * pcvs.el (cvs-edit-log-files): New var.
8172 (cvs-mode-edit-log): New arg `file'.
8173 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
8174 Instead force the use of the original file and nothing else.
8175 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
8176 the cvs-minor-wrap-function is set.
8177 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
8178
8179 2005-10-14 Bill Wohler <wohler@newt.com>
8180
8181 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
8182 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
8183 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
8184 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
8185 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
8186 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
8187 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
8188 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
8189 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
8190 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
8191 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
8192 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
8193 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
8194 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
8195 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
8196
8197 * progmodes/gud.el (gud-tool-bar-map): Rename the images
8198 appropriately (for example, gud-break to gud/break).
8199
8200 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
8201
8202 * longlines.el (longlinges-search-function)
8203 (longlines-search-forward, longlines-search-backward): New functions.
8204 (longlines-mode): Set isearch-search-fun-function to
8205 longlinges-search-function.
8206
8207 * mouse.el (mouse-drag-region-1): Handle the case where a
8208 double-click event is bound to an arbitrary function.
8209
8210 2005-10-14 David Ponce <david@dponce.com>
8211
8212 * recentf.el (recentf-track-opened-file)
8213 (recentf-track-closed-file, recentf-update-menu)
8214 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
8215 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
8216 mouse-1-click-follows-link.
8217
8218 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8219
8220 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
8221 Gnome file-manager.png. Suggested by
8222 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
8223
8224 * toolbar/README: Add diropen.xpm.
8225
8226 2005-10-13 Bill Wohler <wohler@newt.com>
8227
8228 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
8229 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
8230
8231 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
8232
8233 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
8234 Don't waste the byte-compiler's time on constant data.
8235
8236 2005-10-13 Kenichi Handa <handa@m17n.org>
8237
8238 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
8239 byte with `escape-glyph' face.
8240
8241 * international/fontset.el (ccl-encode-unicode-font):
8242 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
8243 Handle the case that ucs-mule-to-mule-unicode translates a character to
8244 ASCII (usually for IPA characters).
8245
8246 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8247
8248 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
8249 Don't hide the underline of titles if font-lock-mode is disabled.
8250
8251 2005-10-12 Bill Wohler <wohler@newt.com>
8252
8253 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
8254 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
8255 files in MH-E-SRC have been updated.
8256 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
8257
8258 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8259
8260 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
8261 (mixal-mode-syntax-table): Add \n as end-comment.
8262 (mixal-operation-codes-alist): Immediately initialize to full value.
8263 (mixal-add-operation-code): Remove.
8264 (mixal-describe-operation-code): Make the arg non-optional.
8265 Use the interactive spec instead.
8266 Use mixal-operation-codes-alist rather than mixal-operation-codes.
8267 (mixal-font-lock-keywords): Don't highlight comments here any more.
8268 (mixal-font-lock-syntactic-keywords): New var.
8269 (mixal-mode): Use it. Fix comment-start-skip.
8270
8271 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8272
8273 * startup.el (command-line-x-option-alist): -nb => -nbi
8274
8275 2005-10-12 Kim F. Storm <storm@cua.dk>
8276
8277 * startup.el (fancy-splash-default-action): Discard mouse click in
8278 the splash screen window, as it has no sensible meaning in the
8279 next window to be selected. Fixes error reported by Jan D.
8280
8281 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
8282
8283 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
8284
8285 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8286
8287 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
8288 Try to fix up minor layout issues like indentation, line break, etc...
8289 (mixal-mode-syntax-table): Don't try to specify comment syntax,
8290 because it doesn't work.
8291 (mixal-operation-codes): Add some more codes.
8292 (mixal-font-lock-keywords): Process comments here.
8293 (mixal-mode): mixasm no longer needs -g option.
8294
8295 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
8296
8297 * progmodes/sh-script.el (sh-tmp-file):
8298 Use mktemp -t. Finish support for es and rc shells.
8299
8300 2005-10-11 Jay Belanger <belanger@truman.edu>
8301
8302 * calc/calcalg2.el (calc-integral): With an argument, compute the
8303 definite integral.
8304
8305 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
8306
8307 * mouse.el (mouse-drag-region-1): Don't try to catch a
8308 double-click when doing follow-link (it's overridden anyway).
8309
8310 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
8311
8312 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
8313 (autoload-print-form-outbuf): Add docstring.
8314
8315 2005-10-11 Juri Linkov <juri@jurta.org>
8316
8317 * info.el (Info-mode-menu): Delete menu item "Edit".
8318 (Info-mode): Delete description of Info-edit from docstring,
8319 and rearrange descriptions of Info commands in the order
8320 they are documented in the Info manual.
8321
8322 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8323
8324 * calendar/appt.el (appt-check): Use diary-selective-display var.
8325
8326 2005-10-10 Richard M. Stallman <rms@gnu.org>
8327
8328 * net/newsticker.el (newsticker-start, newsticker-show-news):
8329 Add autoload cookies.
8330
8331 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
8332
8333 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
8334
8335 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
8336
8337 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
8338
8339 2005-10-10 Jay Belanger <belanger@truman.edu>
8340
8341 * calc/calc-arith.el (math-check-known-scalarp)
8342 (math-check-known-matrixp): Check the values of arguments that are
8343 variables.
8344 (math-check-known-square-matrixp): New function.
8345 (math-known-square-matrixp): Use math-check-known-square-matrixp.
8346 (math-super-types): Add sqmatrix type.
8347
8348 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
8349 mode name `square' to `sqmatrix'.
8350
8351 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
8352 mode name `square' to `sqmatrix'.
8353
8354 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
8355
8356 * progmodes/etags.el (select-tags-table-mode): Don't use
8357 selective-display.
8358 (tags-select-tags-table): Pass `button' to the action function.
8359 (select-tags-table): Place the side-info on button properties rather
8360 than in hidden text. Abbreviate file names.
8361 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
8362 (select-tags-table-select): Add `button' argument.
8363 Get side-info from the button property rather than from hidden text.
8364
8365 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
8366
8367 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
8368 (gud-speedbar-buttons): Preserve point if possible.
8369 (gud-sentinel): Restore previous speedbar display type.
8370
8371 * progmodes/gdb-ui.el (gdba): Improve diagram.
8372 (def-gdb-auto-update-handler, gdb-info-locals-handler)
8373 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
8374 Call get-buffer-window once.
8375
8376 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
8377
8378 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
8379 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
8380 (pascal-indent-command): Remove unused var `ind'.
8381 (pascal-indent-case): Remove unused var `oldpos'.
8382 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
8383 since it's now used as a proper minor mode map.
8384 (pascal-outline): Rename to pascal-outline-mode.
8385 (pascal-outline-mode): Use define-minor-mode.
8386 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
8387 selective-display.
8388
8389 2005-10-10 Andreas Schwab <schwab@suse.de>
8390
8391 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
8392 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
8393
8394 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
8395 outside source directory.
8396
8397 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
8398
8399 * textmodes/org.el (org-mode-map): Explicit definition of `C-c
8400 C-x' as a prefix.
8401 (orgtbl-mode-map): Full keymap instead of sparse, because all
8402 `self-insert-command' keys are redefined in this map.
8403 (org-export-as-html): Specify charset for HTML file, by taking it
8404 from the coding system.
8405
8406 2005-10-10 Kenichi Handa <handa@m17n.org>
8407
8408 * textmodes/flyspell.el (flyspell-check-word-p):
8409 If unread-command-events is non-empty, don't call sit-for.
8410
8411 2005-10-09 Richard M. Stallman <rms@gnu.org>
8412
8413 * font-lock.el (font-lock-syntactic-keywords)
8414 (font-lock-keywords): Doc fixes.
8415
8416 * textmodes/flyspell.el (flyspell-external-point-words):
8417 Simplify logic, and don't try to check for consecutive appearances
8418 of one incorrect word.
8419
8420 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
8421
8422 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
8423 separator.
8424
8425 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
8426 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
8427 (gud-expansion-speedbar-buttons): New function.
8428 (gud-speedbar-buttons): Check for gud-comint-buffer.
8429
8430 2005-10-09 Bill Wohler <wohler@newt.com>
8431
8432 * Makefile.in (updates): Add mh-loaddefs dependency.
8433
8434 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
8435
8436 * speedbar.el (speedbar-file-key-map): Fix typo.
8437
8438 2005-10-09 Daniel Brockman <daniel@brockman.se>
8439
8440 * cus-start.el (line-spacing): Add custom spec.
8441
8442 2005-10-09 Romain Francoise <romain@orebokech.com>
8443
8444 * textmodes/ispell.el (ispell-check-version): Fix last change.
8445
8446 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8447
8448 * term/x-win.el: Remove -i, --icon-type from comment.
8449
8450 * startup.el (command-line-x-option-alist): Remove options -i,
8451 -itype, --icon-type, added -nb, --no-bitmap-icon
8452
8453 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
8454
8455 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
8456 instead of :active.
8457
8458 2005-10-08 Eric Hanchrow <offby1@blarg.net> (tiny change)
8459
8460 * textmodes/ispell.el (ispell-check-version):
8461 Ignore hyphen, and all that follows, in aspell's version text.
8462
8463 2005-10-08 Jay Belanger <belanger@truman.edu>
8464
8465 * calc/calc-arith.el (math-known-square-matrixp): New function.
8466 (math-pow-fancy): Check for matrices before distributing exponent
8467 across products.
8468
8469 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
8470 fullscreen keypad. Suggested by Luc Teirlinck.
8471 (calc-keypad-show-input): Add space for formatting.
8472
8473 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
8474 Add square matrix option.
8475
8476 * calc/calc-poly.el (math-expand-term): Check for matrices instead
8477 of checking calc-matrix-mode when deciding how to expand.
8478
8479 * calc/calc.el (calc-set-mode-line): Add square matrix option.
8480
8481 2005-10-08 Lars Hansen <larsh@soem.dk>
8482
8483 * net/tramp.el (tramp-perl-directory-files-and-attributes):
8484 Add error handling.
8485 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
8486
8487 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
8488
8489 Sync with Tramp 2.0.51.
8490
8491 * net/tramp.el (tramp-handle-set-visited-file-modtime)
8492 (tramp-handle-insert-file-contents, tramp-handle-write-region):
8493 Insert special handling for `last-coding-system-used', again
8494 it still seems to be necessary (unlike stated before).
8495 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
8496 (tramp-password-prompt-regexp): There might be other words before
8497 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
8498 (tramp-chunksize): Improve docstring.
8499 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
8500 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
8501 Christian Joergensen <bugs@razor.dk>.
8502
8503 2005-10-07 Glenn Morris <rgm@gnu.org>
8504
8505 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
8506 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
8507 precision'.
8508
8509 2005-10-07 Romain Francoise <romain@orebokech.com>
8510
8511 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
8512 (ibuffer-do-shell-command-pipe-replace)
8513 (ibuffer-do-shell-command-file, ibuffer-do-eval)
8514 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
8515 (ibuffer-do-revert, ibuffer-do-replace-regexp)
8516 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
8517 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
8518 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
8519 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
8520 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
8521 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
8522 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
8523 Autoload file sans suffix.
8524
8525 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
8526
8527 2005-10-07 David Ponce <david@dponce.com>
8528
8529 * recentf.el (recentf-menu-open-all-flag): New option.
8530 (recentf-digit-shortcut-command-name): New function.
8531 (recentf--shortcuts-keymap): New variable.
8532 (recentf-menu-shortcuts): New variable.
8533 (recentf-make-menu-items): Initialize it. Replace the "More..."
8534 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
8535 (recentf-menu-value-shortcut): New function.
8536 (recentf-make-menu-item): Use it. No more in-lined.
8537 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
8538 (recentf-open-most-recent-file): Rename from
8539 `recentf-open-file-with-key'. Don't depend on key binding.
8540 (recentf-mode-map): New variable.
8541 (recentf-mode): Use it.
8542
8543 2005-10-06 Bill Wohler <wohler@newt.com>
8544
8545 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
8546
8547 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
8548 (MH-E-SRC): New. Used by mh-autoloads.
8549 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
8550 files in MH-E-SRC have been updated.
8551 (compile, recompile, bootstrap): Depend on mh-autoloads.
8552
8553 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
8554
8555 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
8556 gud-break and gud-remove icons when the fringe is not available.
8557
8558 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
8559 Typo.
8560
8561 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change)
8562
8563 * play/zone.el (zone): Wrap body with save-window-excursion.
8564
8565 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
8566
8567 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
8568 Use the new `list-only' arg to diary-list-entries.
8569
8570 * calendar/diary-lib.el: Use overlays rather than selective-display.
8571 (diary-selective-display): New var.
8572 (diary-header-line-format): Use it.
8573 (diary-list-entries): Add argument `list-only'.
8574 Put the buffer in diary-mode. Don't add \^M at beg and end.
8575 Replace \^M by invisible overlays.
8576 (diary-unhide-everything): Replace \^M by invisible overlays.
8577 (print-diary-entries): Look for overlays rather than \^M.
8578 Add a space to the temp buffer name.
8579 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
8580 Put the buffer in diary-mode.
8581 (list-sexp-diary-entries): Replace \^M by invisible overlays.
8582 (diary-anniversary): Make the year arg optional.
8583 (diary-time-regexp): New const.
8584 (diary-font-lock-keywords): Use it to accept a few more time formats.
8585
8586 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
8587
8588 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
8589
8590 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
8591 Fix bug introduced 2005-07-03: Use (car (last ...))
8592 to faithfully reproduce replaced artist-last.
8593 (artist-set-arrow-points-for-poly): Likewise.
8594 Suggested by Johan Bockg\e,Ae\e(Brd.
8595
8596 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
8597
8598 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
8599 * wid-edit.el (widget):
8600 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
8601 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
8602
8603 2005-10-06 Kenichi Handa <handa@m17n.org>
8604
8605 * international/mule-cmds.el (set-language-environment):
8606 Fix setting up of case-table for unibyte mode.
8607
8608 * simple.el (what-cursor-position): If the character is displayed
8609 by some `display' text property, show that. Don't use
8610 single-key-description for eight-bit characters in multibyte mode.
8611
8612 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
8613
8614 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
8615 (gdb-ann3): Set it.
8616 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
8617 (gdb-info-frames-custom): Use inverse-video for first five
8618 characters of selected frame only.
8619 (gdb-get-frame-number): Select frame even when point is on frame
8620 number.
8621
8622 2005-10-06 Masatake YAMATO <jet@gyve.org>
8623
8624 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
8625 Put `font-lock-function-name-face'.
8626 (gdb-info-frames-custom): Put `font-lock-function-name-face'
8627 and `font-lock-variable-name-face'
8628 (gdb-registers-font-lock-keywords): New font lock keywords definition.
8629 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
8630 (gdb-memory-font-lock-keywords): New font lock keywords definition.
8631 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
8632 (gdb-local-font-lock-keywords): New font lock keywords definition.
8633 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
8634 (gdb-threads-font-lock-keywords): New font lock keywords definition.
8635 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
8636
8637 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
8638
8639 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
8640 (ediff-merge-region-is-non-clash-to-skip): Previously called
8641 ediff-merge-region-is-non-clash.
8642
8643 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
8644 Use insert-buffer-substring.
8645
8646 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
8647 selecting files to patch. Also bug fixes.
8648
8649 * ediff-util.el (ediff-setup): Bug fix.
8650 (ediff-next-difference): Never skip clashes that differ in white
8651 space only.
8652
8653 * ediff-wind.el (ediff-setup-control-frame)
8654 (ediff-destroy-control-frame): Check the menubar feature.
8655
8656 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
8657 (viper-refresh-mode-line): Use make-local-variable to localize
8658 some vars instead of make-variable-buffer-local. Suggested by
8659 Stefan Monnier.
8660
8661 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
8662 (viper-restore-cursor-type, viper-set-insert-cursor-type):
8663 Use make-local-variable instead of make-variable-buffer-local.
8664 Suggested by Stefan Monnier.
8665
8666 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
8667 (viper-comint-mode-hook): Use make-local-variable on
8668 require-final-newline.
8669 (viper-non-hook-settings): Don't use make-variable-buffer-local.
8670
8671 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8672
8673 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
8674 also the second char of a comment-start sequence.
8675 (scheme-sexp-comment-syntax-table): New var.
8676 (lambda, define): Set their scheme-doc-string-elt property.
8677 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
8678 Use lisp-font-lock-syntactic-face-function now that it properly
8679 handles |...| symbols.
8680 (scheme-mode-variables): Set lisp-doc-string-elt-property,
8681 parse-sexp-lookup-properties and font-lock-extra-managed-props.
8682
8683 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
8684 bit from # to |.
8685 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
8686
8687 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
8688 (lisp-doc-string-elt-property): New var.
8689 (lisp-font-lock-syntactic-face-function): Use it.
8690 Rewrite to recognize docstrings even for forms not at toplevel.
8691
8692 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
8693 annotation on the | part of #| rather than on the # part.
8694 (scheme-font-lock-syntactic-face-function): New function, to
8695 distinguish strings from |...| symbols.
8696 (scheme-mode-variables): Use it. Also fix up the font-lock-time
8697 syntax-table so that #|...|# is properly highlighted.
8698
8699 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
8700 Don't mark as docstring the 3rd elem of an unknown toplevel form.
8701
8702 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8703
8704 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
8705 and C-e.
8706
8707 * emacs-lisp/eldoc.el: Move comments into docstrings.
8708 (eldoc-message-commands): Initialize in its declaration.
8709 Add move-beginning-of-line and move-end-of-line.
8710 (eldoc-add-command, eldoc-add-command-completions)
8711 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
8712
8713 * outline.el (outline-mark-subtree): Activate the mark.
8714
8715 * calendar/appt.el (appt-time-regexp): New var.
8716 (appt-add, appt-make-list): Use it.
8717 (appt-convert-time): Clean up.
8718
8719 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
8720 Don't set any syntax-table property here.
8721 (tex-font-lock-verb): New function. Do it here.
8722 (tex-font-lock-syntactic-keywords): Use it.
8723
8724 2005-10-04 Richard M. Stallman <rms@gnu.org>
8725
8726 * wid-edit.el (widget-file-complete): Get the widget start point
8727 the right way. Default directory to `/' if file has none.
8728
8729 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
8730
8731 * textmodes/flyspell.el (flyspell-mode-on):
8732 Call ispell-maybe-find-aspell-dictionaries.
8733
8734 * textmodes/ispell.el (ispell-word, ispell-region):
8735 Call ispell-maybe-find-aspell-dictionaries.
8736 (ispell-accept-buffer-local-defs):
8737 Don't call ispell-maybe-find-aspell-dictionaries
8738
8739 2005-10-04 Richard M. Stallman <rms@gnu.org>
8740
8741 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
8742
8743 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
8744
8745 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
8746 instead of `fboundp' in order to allow for anonymous functions.
8747
8748 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
8749
8750 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
8751 case the user clicks on the link while another window is selected.
8752 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
8753
8754 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
8755 functionality.
8756 (dframe-help-echo): Save point in case mouse tracking is off.
8757
8758 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
8759
8760 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
8761
8762 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8763
8764 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
8765 not change the global value of those vars.
8766
8767 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
8768 make-local-variable which we do not need any more.
8769
8770 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
8771
8772 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
8773 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
8774 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
8775 (speedbar-path-line): Define obsolete aliases.
8776 (speedbar-line-directory): Doc fix.
8777
8778 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
8779 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
8780 instead of speedbar-line-path.
8781
8782 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8783
8784 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
8785 to nil if dropping on a window. Handle dropping on a minibuffer window
8786 like dropping on a non-window part of Emacs.
8787
8788 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8789
8790 * net/ange-ftp.el: Use with-current-buffer.
8791 (ange-ftp-insert-directory): Do not follow symlinks any more.
8792
8793 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
8794 Remove interactive spec.
8795
8796 2005-10-03 Kim F. Storm <storm@cua.dk>
8797
8798 * ido.el (ido-mode): Use custom-initialize-set.
8799
8800 2005-10-02 Richard M. Stallman <rms@gnu.org>
8801
8802 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
8803 Use insert-buffer-substring.
8804
8805 * net/tramp.el: Pacify byte compiler warnings in pacification code.
8806 (tramp-handle-file-local-copy): Use insert-buffer-substring.
8807
8808 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
8809
8810 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
8811 in last change.
8812 (ange-ftp-insert-directory): Fix up the search for the case where
8813 `file' is absolute.
8814
8815 2005-10-02 Romain Francoise <romain@orebokech.com>
8816
8817 * progmodes/compile.el (compile-goto-error): Delete extra paren.
8818
8819 2005-10-02 Andreas Schwab <schwab@suse.de>
8820
8821 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
8822 directory component in the session info.
8823
8824 2005-10-01 Richard M. Stallman <rms@gnu.org>
8825
8826 * comint.el (comint-redirect-subvert-readonly): Doc fix.
8827
8828 * simple.el (next-error-internal): New function.
8829
8830 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
8831 (compilation-start): Pass new arg to compilation-buffer-name.
8832 (compile-goto-error): Use next-error-internal.
8833
8834 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
8835
8836 * speedbar.el: Remove RCS tag.
8837 (speedbar-check-read-only): Handle non-existent files.
8838
8839 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
8840
8841 * info.el (Info-speedbar-hierarchy-buttons)
8842 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
8843
8844 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8845
8846 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
8847 Do not match newline.
8848 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
8849 (bibtex-summary): Remove unnecessary save-excursion.
8850 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
8851
8852 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8853
8854 * term/mac-win.el: Add charset info for "iso10646-1".
8855 Modify default fontset to use ATSUI-compatible fonts for some charsets
8856 if available.
8857
8858 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
8859
8860 * speedbar.el: Re-apply arch tag.
8861 (speedbar-version): Rename to version 1.0. Suggested by Eric
8862 M. Ludlam.
8863 Reapply two changes from Emacs CVS' version of speedbar lost
8864 during the merge:
8865 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
8866 (speedbar-frame-parameters): Improve customize type.
8867
8868 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
8869
8870 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
8871 (ange-ftp-file-directory-p): Fix the symlink case.
8872 (ange-ftp-insert-directory): When listing a single file, get a list of
8873 the parent buffer and extract the relevant line. Inspired from a patch
8874 by Katsumi Yamaoka <yamaoka@jpl.org>.
8875 (ange-ftp-file-name-sans-versions): Simplify.
8876
8877 2005-09-30 Bill Wohler <wohler@newt.com>
8878
8879 Move MH-E image files from toolbar and mail directories into
8880 etc/images.
8881
8882 * mail/reply2.*: Move to etc/images/mail/reply*.
8883
8884 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
8885 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
8886 etc/images.
8887
8888 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
8889 * toolbar/reply*: Move to etc/images/mail.
8890
8891 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
8892
8893 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
8894
8895 * speedbar.el: New version 1.0pre3.
8896
8897 Frame management code (including timer, and mouse click specifics)
8898 moved to dframe.el:
8899 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
8900 (speedbar-timer): Removed. Use dframe-timer.
8901 (speedbar-close-frame): Removed. Use dframe-close-frame.
8902 (speedbar-activity-change-focus-flag): Removed. Use
8903 dframe-activity-change-focus-flag.
8904 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
8905 dframe-update-speed.
8906
8907 (speedbar-current-frame): New macro. Use this instead of the
8908 variable speedbar-frame.
8909
8910 (speedbar-use-images, speedbar-expand-image-button-alist)
8911 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
8912
8913 (speedbar-find-image-on-load-path): Removed. Replaced by
8914 defezimage in ezimage.el.
8915 (speedbar-expand-image-button-alist): Removed. Replaced by
8916 ezimage-expand-image-button-alist in ezimage.el.
8917
8918 (speedbar-ignored-directory-regexp)
8919 (speedbar-add-ignored-directory-regexp)
8920 (speedbar-ignored-directory-expressions)
8921 (speedbar-line-directory, speedbar-buffers-line-directory)
8922 (speedbar-directory-line, speedbar-buffers-line-directory):
8923 Renamed, replacing `path' with `directory'.
8924
8925 (speedbar-create-directory, speedbar-expand-line-descendants)
8926 (speedbar-toggle-line-expansion)
8927 (speedbar-contract-line-descendants): New commands.
8928
8929 (speedbar-query-confirmation-method, speedbar-select-frame-method)
8930 (speedbar-use-tool-tips-flag): New options.
8931
8932 (speedbar-check-read-only, speedbar-require-version)
8933 (speedbar-insert-separator, speedbar-buffers-tail-notes)
8934 (speedbar-handle-delete-frame, speedbar-try-completion)
8935 (speedbar-update-localized-contents): New functions.
8936
8937 (speedbar-incompatible-version, speedbar-ro-to-do-point)
8938 (speedbar-object-read-only-indicator): New variables.
8939
8940 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
8941 New hooks.
8942
8943 (speedbar-separator-face): New face.
8944
8945 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
8946 (speedbar-ignored-modes): Add fundamental-mode.
8947 (speedbar-directory-unshown-regexp): Add . directories.
8948
8949 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
8950 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
8951 `]' for full expand/close.
8952 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
8953
8954 (speedbar-check-vc): Support hidden files.
8955 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
8956 (speedbar-this-file-in-vc): Use vc-state if available. If VC
8957 state is nil, it is not checked out.
8958
8959 (speedbar-line-text, speedbar-line-token): Support expand buttons
8960 with no text.
8961 (speedbar-refresh): Universal argument acts as power-click.
8962 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
8963 that buffer to get variable values.
8964
8965 And many other bugfixes.
8966
8967 * dframe.el, ezimage.el, sb-image.el: New files.
8968
8969 * sb-*.xpm: Remove files. New image files installed into
8970 etc/images/ezimage.
8971
8972 2005-09-30 Kenichi Handa <handa@m17n.org>
8973
8974 * ps-mule.el (ps-mule-show-warning): If a character is in
8975 ps-print-translation-table, don't treat it as non-printable.
8976
8977 2005-09-30 David Ponce <david@dponce.com>
8978
8979 * tree-widget.el (tree-widget-themes-load-path): New variable.
8980 (tree-widget-themes-directory): Doc fix.
8981 (tree-widget-image-formats) [Emacs]: Doc fix.
8982 (tree-widget--locate-sub-directory): New function.
8983 (tree-widget-themes-directory): Use it.
8984
8985 * recentf.el (recentf-filename-handlers): Rename from
8986 `recentf-filename-handler'. Allow a list of functions.
8987 (recentf-menu-items-for-commands): Fix :help strings.
8988 (recentf-apply-filename-handlers): New function.
8989 (recentf-expand-file-name): Use it.
8990 (recentf-cleanup): Remove duplicates too.
8991
8992 2005-09-29 Juri Linkov <juri@jurta.org>
8993
8994 * faces.el: Rearrange face definitions to be in the same order as
8995 their face descriptions in "(emacs)Standard Faces".
8996
8997 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
8998
8999 * tooltip.el (tooltip): Add group `basic-faces'.
9000
9001 * buff-menu.el (Buffer-menu-buffer): Remove group
9002 `font-lock-highlighting-faces'.
9003
9004 * progmodes/compile.el (compilation-error, compilation-warning)
9005 (compilation-info, compilation-line-number, compilation-column-number):
9006 Change group from `font-lock-highlighting-faces' to `compilation'.
9007
9008 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
9009 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
9010 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
9011 (vhdl-font-lock-reserved-words-face)
9012 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
9013 `font-lock-highlighting-faces'.
9014
9015 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
9016
9017 2005-09-28 Kim F. Storm <storm@cua.dk>
9018
9019 * emulation/cua-base.el: Set CUA move property on additional commands:
9020 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
9021 forward-sexp, backward-sexp, forward-list, backward-list.
9022
9023 2005-09-28 Romain Francoise <romain@orebokech.com>
9024
9025 * comint.el (comint-show-output): Really set point at the
9026 beginning of the output when not using `comint-use-prompt-regexp'.
9027
9028 2005-09-27 Jay Belanger <belanger@truman.edu>
9029
9030 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
9031 in TeX mode.
9032
9033 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
9034
9035 * textmodes/org.el (org-table-sum): Fix format string.
9036
9037 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
9038 Quote face names.
9039
9040 2005-09-26 Romain Francoise <romain@orebokech.com>
9041
9042 * isearch.el (isearch-forward-regexp): Close doc string.
9043
9044 2005-09-25 Richard M. Stallman <rms@gnu.org>
9045
9046 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
9047
9048 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
9049
9050 * progmodes/compile.el (compilation-error-properties):
9051 When getting the file from the previous error message,
9052 correctly decode the new data format.
9053
9054 * progmodes/cc-cmds.el (c-electric-paren):
9055 Call old-blink-paren only for close-paren.
9056
9057 2005-09-24 Andreas Schwab <schwab@suse.de>
9058
9059 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
9060 condition.
9061
9062 2005-09-25 Romain Francoise <romain@orebokech.com>
9063
9064 * dired-aux.el (dired-copy-file-recursive):
9065 * dired.el (dired-delete-file):
9066 * ediff-mult.el (ediff-dir-diff-copy-file):
9067 * ediff-util.el (ediff-test-save-region):
9068 * forms.el (forms-mode):
9069 * ido.el (ido-file-internal, ido-delete-file-at-head):
9070 * log-edit.el (log-edit-done):
9071 * ses.el (ses-yank-resize):
9072 * play/gomoku.el (gomoku-human-plays, gomoku)
9073 (gomoku-human-resigns, gomoku-prompt-for-other-game)
9074 (gomoku-offer-a-draw):
9075 * play/landmark.el (lm-human-resigns, lm):
9076 * net/eudcb-ldap.el (eudc-ldap-check-base):
9077 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
9078 * progmodes/ebrowse.el (ebrowse-find-pattern):
9079 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
9080 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
9081 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
9082
9083 * vc.el (vc-delete-file):
9084 * play/gomoku.el (gomoku-terminate-game, gomoku)
9085 (gomoku-prompt-for-move, gomoku-human-takes-back):
9086 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
9087 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
9088
9089 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
9090
9091 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
9092 color rxvt terminals by using the code xterm.el used to use before
9093 2005-04-09 in order to match the colors used by rxvt.
9094
9095 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
9096
9097 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
9098 colors rxvt-unicode terminals by using the same code as xterm.el.
9099
9100 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
9101
9102 * textmodes/tex-mode.el (tex-font-lock-append-prop)
9103 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
9104 new symbol used for the tex-verbatim face.
9105
9106 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
9107
9108 * woman.el (woman-file-name):
9109 * wid-edit.el (widget-file-prompt-value)
9110 (widget-coding-system-prompt-value):
9111 * w32-fns.el (set-w32-system-coding-system):
9112 * vc.el (vc-version-diff, vc-annotate):
9113 * textmodes/reftex-auc.el (reftex-arg-cite)
9114 (reftex-arg-index-tag):
9115 * textmodes/refer.el (refer-get-bib-files):
9116 * textmodes/artist.el (artist-figlet-choose-font):
9117 * terminal.el (terminal-emulator):
9118 * replace.el (occur-read-primary-args):
9119 * rect.el (string-rectangle, string-insert-rectangle):
9120 * ps-print.el (ps-print-preprint):
9121 * progmodes/pascal.el (pascal-goto-defun):
9122 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
9123 * progmodes/compile.el (compilation-find-file):
9124 * printing.el (pr-interactive-n-up):
9125 * play/animate.el (animate-birthday-present):
9126 * net/rcompile.el (remote-compile):
9127 * man.el (man, Man-goto-section, Man-follow-manual-reference):
9128 * mail/rmailsum.el (rmail-summary-search-backward)
9129 (rmail-summary-search):
9130 * mail/rmailout.el (rmail-output-read-rmail-file-name)
9131 (rmail-output-read-file-name):
9132 * mail/rmail.el (rmail-search, rmail-search-backwards):
9133 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
9134 * locate.el (locate):
9135 * international/quail.el (quail-show-keyboard-layout):
9136 * international/mule.el (set-buffer-file-coding-system)
9137 (revert-buffer-with-coding-system, set-file-name-coding-system)
9138 (set-terminal-coding-system, set-keyboard-coding-system)
9139 (set-next-selection-coding-system):
9140 * international/mule-diag.el (describe-coding-system)
9141 (describe-font, describe-fontset):
9142 * international/mule-cmds.el (universal-coding-system-argument)
9143 (search-unencodable-char, describe-input-method)
9144 (set-language-environment, describe-language-environment):
9145 * international/codepage.el (codepage-setup):
9146 * international/code-pages.el (codepage-setup):
9147 * info.el (Info-search, Info-follow-reference)
9148 (Info-search-backward):
9149 * emacs-lisp/advice.el (ad-read-advised-function)
9150 (ad-read-advice-class, ad-clear-cache, ad-activate)
9151 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
9152 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
9153 (ad-read-regexp):
9154 * ediff-util.el (ediff-toggle-regexp-match):
9155 * ediff-ptch.el (ediff-prompt-for-patch-file):
9156 * dired-aux.el (dired-diff):
9157 * diff.el (diff):
9158 * cus-edit.el (custom-variable-prompt):
9159 * calendar/timeclock.el (timeclock-ask-for-project):
9160 * calc/calcalg3.el (calc-get-fit-variables):
9161 * calc/calc-store.el (calc-edit-variable)
9162 (calc-permanent-variable):
9163 * vc-mcvs.el (vc-mcvs-register):
9164 * shadowfile.el (shadow-define-literal-group):
9165 * woman.el (woman-file-name):
9166 * vc.el (vc-version-diff, vc-merge):
9167 * textmodes/reftex-index.el (reftex-index-complete-tag):
9168 * format.el (format-decode-buffer, format-decode-region):
9169 * emulation/viper-cmd.el (viper-read-string-with-history):
9170 * emacs-lisp/debug.el (cancel-debug-on-entry):
9171 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
9172 * ediff.el (ediff-merge-revisions)
9173 (ediff-merge-revisions-with-ancestor, ediff-revision):
9174 * completion.el (interactive-completion-string-reader):
9175 * calc/calc-prog.el (calc-user-define-formula):
9176 Follow convention for reading with the minibuffer.
9177
9178 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
9179
9180 * progmodes/python.el (python-describe-symbol): Add globals() and
9181 locals() to the arguments of emacs.ehelp.
9182
9183 2005-09-24 Magnus Henoch <mange@freemail.hu>
9184
9185 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
9186 New function, code extracted from ispell-valid-dictionary-list.
9187 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
9188 Call it.
9189
9190 2005-09-24 Eli Zaretskii <eliz@gnu.org>
9191
9192 * subr.el (version-regexp-alist): Extend valid syntax for version
9193 strings: allow any of the characters -,_,+ to separate the
9194 alpha/beta/rc part from the version part. Doc fix.
9195 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
9196
9197 2005-09-23 David Reitter <david.reitter@gmail.com>
9198
9199 * mail/mailclient.el: New file.
9200
9201 2005-09-23 Richard M. Stallman <rms@gnu.org>
9202
9203 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
9204 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
9205 Doc fixes.
9206
9207 * progmodes/cc-mode.el (c-font-lock-init):
9208 Specify font-lock-lines-before.
9209
9210 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9211
9212 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
9213 whole conflict.
9214
9215 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
9216
9217 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
9218 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
9219 of `remap' feature when available. Additional key bindings for
9220 better tty support.
9221 (org-mode-restart, org-force-self-insert): New commands.
9222 (org-time-stamp-inactive): New command.
9223 (org-remap): New function.
9224 (org-table-auto-blank-field, org-level-color-stars-only): New options.
9225 (org-enable-fixed-width-editor): Move to `org-structure'
9226 customization group.
9227 (org-self-insert-command, orgtbl-self-insert-command): Modify to
9228 blank field after field motion commands.
9229
9230 2005-09-23 Kenichi Handa <handa@m17n.org>
9231
9232 * international/mule-cmds.el (set-language-environment):
9233 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
9234 have to call utf-translate-cjk-load-tables.
9235
9236 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
9237
9238 * mouse.el (mouse-move-drag-overlay): Fix last change.
9239
9240 2005-09-22 David Ponce <david@dponce.com>
9241
9242 * tree-widget.el (tree-widget-value-create): Fix previous change.
9243
9244 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
9245
9246 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
9247
9248 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
9249
9250 * mouse.el (mouse-move-drag-overlay): New function.
9251 (mouse-drag-region-1): Use it.
9252 Try to simplify a bit the state handling. Handle clicks on links
9253 inside intangible areas.
9254 (mouse-save-then-kill): Minor simplification.
9255 (mouse-secondary-overlay): Make it always non-nil instead of
9256 recreating it each time.
9257 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
9258 (mouse-kill-secondary, mouse-secondary-save-then-kill):
9259 Simplify accordingly.
9260
9261 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
9262
9263 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
9264
9265 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
9266
9267 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
9268 (ediff-file-name-sans-prefix): Treat nil as an empty string.
9269 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
9270 to patch.
9271
9272 * ediff-util.el: Use insert-buffer-substring.
9273
9274 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
9275
9276 * emulation/viper-cmd.el (viper-change-state): Don't move over the
9277 field boundaries in the minibuffer.
9278 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
9279 (viper-minibuffer-post-command-hook): New hook.
9280 (viper-line): Don't move cursor at bolp.
9281
9282 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
9283
9284 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
9285 avoid compiler warnings.
9286
9287 * emulation/viper-macs.el (ex-map): Better messages.
9288
9289 * emulation/viper-utils.el (viper-beginning-of-field): New function.
9290
9291 * emulation/viper.el: Replace make-variable-buffer-local with
9292 viper-make-variable-buffer-local everywhere, to avoid warnings.
9293
9294 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9295
9296 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
9297 Delete unused var `old-selected-window'.
9298 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
9299 (mouse-drag-secondary): Delete unused var `start-frame'.
9300
9301 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
9302
9303 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
9304
9305 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9306
9307 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
9308 Re-indent within 80 columns. Use inhibit-read-only.
9309
9310 2005-09-19 Romain Francoise <romain@orebokech.com>
9311
9312 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
9313
9314 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9315
9316 * font-lock.el (font-lock-default-fontify-region): Don't add a line
9317 unconditionally, since the after-change-function already did it.
9318
9319 2005-09-19 Miles Bader <miles@gnu.org>
9320
9321 * net/newsticker.el: Get rid of CVS keyword.
9322
9323 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan+sf@dd.chalmers.se>
9324
9325 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
9326 The prompt is formatted later.
9327
9328 2005-09-19 David Ponce <david@dponce.com>
9329
9330 * tree-widget.el (tree-widget-value-create): Save the converted
9331 tree :node widget.
9332
9333 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
9334
9335 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
9336 variable `message'.
9337
9338 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
9339
9340 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
9341 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
9342 <slawomir.nowaczyk.847@student.lu.se>.
9343
9344 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
9345
9346 * image.el (image-load-path): Use symbol `data-directory' instead
9347 of its value, for backward compatibility with packages that bind
9348 it during `find-image'. Suggested by Katsumi Yamaoka.
9349 (image-search-load-path): Handle symbols whose values are strings.
9350
9351 2005-09-18 Romain Francoise <romain@orebokech.com>
9352
9353 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
9354 with-current-buffer form in save-excursion.
9355
9356 2005-09-18 D Goel <deego@gnufans.org>
9357
9358 * apropos.el (apropos-command): Fix `message' call: first arg
9359 should be a format spec. In this and all other cases that appear
9360 below and elsewhere in the source code, I made a change only when
9361 two conditions were satisfied: [1] I can think of a possibility
9362 that the arguments would cause an error, for example, the code in
9363 question relies on external variables such as filenames. [2] I
9364 was sure that the arg to `message' could not have been nil in the code.
9365
9366 * textmodes/tildify.el (tildify-region): Ditto.
9367
9368 * textmodes/reftex-index.el (reftex-index-change-entry)
9369 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
9370 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
9371 * textmodes/org.el (org-complete, org-deadline, org-schedule)
9372 (org-priority, org-table-sum):
9373 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
9374 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
9375 (flyspell-word, flyspell-display-next-corrections):
9376 * textmodes/bibtex.el (bibtex-print-help-message):
9377 * textmodes/artist.el (artist-key-set-point-poly):
9378 * term/mac-win.el (mac-services-insert-text):
9379 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
9380 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
9381 (vhdl-port-paste-testbench, vhdl-compose-new-component)
9382 (vhdl-compose-configuration):
9383 * progmodes/sh-script.el (sh-blink, sh-show-indent)
9384 (sh-set-indent, sh-learn-line-indent):
9385 * progmodes/ps-mode.el (ps-mode-target-column):
9386 * progmodes/idlwave.el (idlwave-make-tags)
9387 (idlwave-scan-library-catalogs):
9388 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
9389 * progmodes/gud.el (gud-jdb-analyze-source):
9390 * progmodes/flymake.el (flymake-log):
9391 * progmodes/ebnf2ps.el (ebnf-generate-region):
9392 * progmodes/cmacexp.el (c-macro-expansion):
9393 * progmodes/ada-xref.el (ada-treat-cmd-string):
9394 * progmodes/ada-mode.el (ada-create-case-exception-substring)
9395 (ada-justified-indent-current, ada-batch-reformat):
9396 * play/zone.el (zone):
9397 * play/landmark.el (lm-move):
9398 * play/decipher.el (decipher-show-alphabet):
9399 * net/newsticker.el (newsticker--display-jump)
9400 (newsticker--display-scroll):
9401 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
9402 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
9403 * mail/feedmail.el (feedmail-dump-message-to-queue):
9404 * eshell/esh-proc.el (eshell-remove-process-entry):
9405 * emulation/ws-mode.el (ws-last-error):
9406 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
9407 (viper-record-kbd-macro):
9408 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
9409 * emacs-lisp/lisp-mnt.el (lm-report-bug):
9410 * emacs-lisp/find-func.el (find-function-noselect):
9411 * calendar/timeclock.el (timeclock-status-string)
9412 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
9413 (timeclock-when-to-leave-string):
9414 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
9415 * calc/calc-units.el (calc-enter-units-table):
9416 * calc/calc-mode.el (calc-mode-record-mode):
9417 * woman.el (woman-mini-help):
9418 * wdired.el (wdired-change-to-wdired-mode):
9419 * vc.el (vc-retrieve-snapshot):
9420 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
9421 * startup.el (display-startup-echo-area-message):
9422 * simple.el (set-goal-column):
9423 * ses.el (ses-command-hook, ses-recalculate-cell):
9424 * server.el (server-process-filter):
9425 * printing.el (pr-interface-txt-print, pr-interface-printify)
9426 (pr-interface-ps):
9427 * pcvs.el (cvs-help):
9428 * log-edit.el (log-edit, log-edit-mode-help):
9429 * iswitchb.el (iswitchb-possible-new-buffer):
9430 * isearch.el (isearch-edit-string):
9431 * image-mode.el (image-mode, image-minor-mode):
9432 * ibuf-macs.el (define-ibuffer-filter):
9433 * hi-lock.el (hi-lock-find-patterns):
9434 * files.el (toggle-read-only):
9435 * ediff-util.el (ediff-copy-diff)
9436 (ediff-write-merge-buffer-and-maybe-kill):
9437 * echistory.el (Electric-history-undefined):
9438 * dnd.el (dnd-insert-text):
9439 * dired-aux.el (dired-query):
9440 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
9441 * bookmark.el (bookmark-bmenu-locate):
9442 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
9443 Fix `message' calls to ensure first arg is a format string.
9444 The change was made only when these two conditions were satisfied:
9445 [1] when there is a possibility that the arguments would cause an error
9446 for example, if the code in question relies on external variables
9447 such as filenames, and
9448 [2] if the arg to `message' could not have been nil in the code.
9449
9450 * pcomplete.el (pcomplete--help): Fix `message' format spec.
9451 Not having a %s would be weird, though not technically wrong.
9452
9453 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9454
9455 * term/mac-win.el (mac-add-charset-info): Doc fix.
9456
9457 2005-09-17 Romain Francoise <romain@orebokech.com>
9458
9459 * shell.el (shell-resync-dirs): Handle echoing processes more
9460 reliably. Don't insert resync command if `comint-process-echoes'
9461 is non-nil.
9462
9463 2005-09-17 Magnus Henoch <mange@freemail.hu>
9464
9465 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
9466 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
9467 aspell versions >= 0.60.
9468 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
9469 only if ispell-aspell-supports-utf8 is non-nil.
9470
9471 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
9472
9473 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
9474 buffer-local value to lisp-indent-function.
9475
9476 2005-09-17 Milan Zamazal <pdm@zamazal.org>
9477
9478 * progmodes/glasses.el (glasses-make-readable): If
9479 glasses-separator differs from underscore, put appropriate
9480 overlays over underscore characters.
9481 (glasses-convert-to-unreadable): If glasses-separator differs from
9482 underscore, try to convert glasses-separator characters to
9483 underscores.
9484
9485 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
9486
9487 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
9488 Use with-syntax-table and dolist.
9489
9490 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
9491
9492 * textmodes/reftex-auc.el:
9493 * textmodes/reftex-cite.el:
9494 * textmodes/reftex-dcr.el:
9495 * textmodes/reftex-global.el:
9496 * textmodes/reftex-parse.el:
9497 * textmodes/reftex-ref.el:
9498 * textmodes/reftex-sel.el:
9499 * textmodes/reftex-toc.el:
9500 * textmodes/reftex-vars.el:
9501 * textmodes/reftex.el: Small changes to remove compiler warnings.
9502
9503 * textmodes/reftex-index.el: Likewise.
9504 (reftex-query-index-phrase): More efficient use of markers.
9505
9506 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
9507
9508 * image.el (image-load-path): New variable.
9509 (image-search-load-path): New function.
9510 (find-image): Search for images in `image-load-path'.
9511
9512 2005-09-15 Richard M. Stallman <rms@gnu.org>
9513
9514 * follow.el: Change Maintainer field.
9515
9516 2005-09-15 David Ponce <david@dponce.com>
9517
9518 * recentf.el (recentf-save-file-modes): New option.
9519 (recentf-save-list): Use it.
9520
9521 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
9522
9523 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
9524 (mode-line-mule-info, mode-line-modified): Move bindings from
9525 mouse-3 to mouse-1.
9526
9527 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
9528
9529 * simple.el (sendmail-user-agent-compose): Revert last change.
9530
9531 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
9532
9533 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
9534 Use with-current-buffer.
9535 (ange-ftp-gwp-start): Remove unused var `gw-user'.
9536 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
9537 (ange-ftp-insert-directory): Remove unused var `short'.
9538 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
9539
9540 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
9541 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
9542
9543 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
9544 (check-calendar-holidays, diary-list-entries): Autoload.
9545 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
9546 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
9547
9548 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
9549 which mistakenly removed a call to display-buffer.
9550
9551 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
9552
9553 * obsolete/iso-insert.el: Move to obsolete/ from international/.
9554
9555 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
9556
9557 * progmodes/hideshow.el
9558 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
9559 (hs-allow-nesting): New user var.
9560 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
9561 (hs-hide-block-at-point): When nesting allowed,
9562 if there is already an overlay in place, delete it.
9563 (hs-safety-is-job-n): Delete func; remove call sites.
9564 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
9565 (hs-overlay-at): New func.
9566 (hs-already-hidden-p, hs-show-block): Use it.
9567 (hs-hide-all): Don't pre-clean if nesting allowed.
9568 (hs-show-all): Temporarily disallow
9569 nesting around call to `hs-discard-overlays'.
9570
9571 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
9572
9573 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
9574 Delete unused local var.
9575
9576 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
9577
9578 * help-fns.el (describe-categories): "?\ " -> "?\s".
9579 (help-do-arg-highlight): Recognize also ARG-n, as in
9580 `move-to-left-margin' (ARG+n is already recognized). Simplify.
9581
9582 * international/codepage.el (dos-unsupported-char-glyph):
9583 * net/newsticker.el (tool-bar-map, w3-mode-map)
9584 (w3m-minor-mode-map):
9585 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
9586 (ent-alist):
9587 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
9588
9589 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
9590
9591 * custom.el (custom-push-theme): Handle the case where a symbol is
9592 bound but face properties have not yet been assigned.
9593
9594 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
9595 Fix behavior if noerase is `t' and there is no mail buffer.
9596
9597 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
9598 if `continue' is nil, rather than signal an error.
9599
9600 2005-09-12 Richard M. Stallman <rms@gnu.org>
9601
9602 * font-lock.el (font-lock-keywords): Add autoload.
9603
9604 * help-fns.el (describe-variable): Rearrange to put source link
9605 in a predictable place.
9606
9607 * net/newsticker.el: New file.
9608
9609 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9610
9611 * calendar/calendar.el (calendar-for-loop): Add edebug info.
9612 (calendar-basic-setup): Use the new nil arg.
9613 (number-of-diary-entries): Move to diary-lib.el.
9614
9615 * calendar/diary-lib.el: Use with-current-buffer, match-string.
9616 (diary-list-entries): Use with-syntax-table and dolist.
9617 Rename from list-diary-entries.
9618 Use number-of-diary-entries if `number' is nil.
9619 (diary, diary-view-entries): Use this new name and new nil arg value.
9620 (number-of-diary-entries): Move from calendar.el.
9621 (diary-unhide-everything): New function.
9622 (include-other-diary-files, fancy-diary-display)
9623 (diary-show-all-entries, make-diary-entry): Use it.
9624 (diary-mail-entries): Use buffer-string.
9625 (mark-diary-entries): Fix long standing paren typo.
9626 (diary-sexp-entry): Use count-lines.
9627 (make-diary-entry): Avoid `previous-line'.
9628 (diary-mode-map): New var.
9629 (diary-mode): Redraw cal after saving. Setup header-line.
9630 (fancy-diary-display-mode): Use local-set-key.
9631
9632 * startup.el (command-line): Try calling various terminal-init-foo-bar
9633 functions by stripping hyphenated suffixes from $TERM.
9634
9635 * files.el (normal-mode): Check boundness of font-lock-keywords.
9636
9637 2005-09-12 Richard M. Stallman <rms@gnu.org>
9638
9639 * progmodes/compile.el: Don't decide a file's directory
9640 until the user actually tries to go there.
9641 (compilation-next-error-function):
9642 Pass compilation-find-file the directory from the file-struct.
9643 (compilation-internal-error-properties): Separate local FILE-STRUCT
9644 from FILE. Doc the args better. Rename arg FMT to FMTS.
9645 (compilation-find-file): Arg DIR renamed to DIRECTORY.
9646 Expand it, and if nil, use default-directory.
9647 (compilation-get-file-structure): Don't mix specified directory
9648 with default directory. Put specified directory into
9649 file-struct. Don't make the file name absolute.
9650
9651 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
9652 (compile-command): Add autoload.
9653 (compilation-disable-input): Add autoload.
9654
9655 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
9656
9657 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
9658 strings of the variables it can override.
9659 (time-stamp): New (as yet undocumented) time-stamp-format escapes
9660 %Q and %q, for fully-qualified domain name and unqualified host name.
9661
9662 2005-09-11 Kim F. Storm <storm@cua.dk>
9663
9664 * emacs-lisp/authors.el (authors-aliases): Update list.
9665 (authors-fixed-entries): Update mldrag.el entry.
9666
9667 2005-09-10 Alan Mackenzie <acm@muc.de>
9668
9669 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
9670 from the region narrowed to.
9671
9672 2005-09-10 Magnus Henoch <mange@freemail.hu>
9673
9674 * textmodes/ispell.el (ispell-check-version): Signal an error if
9675 aspell version is less than 0.60.
9676
9677 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
9678
9679 * progmodes/octave-inf.el (inferior-octave-startup):
9680 Resync current dir at the end.
9681
9682 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
9683
9684 * woman.el (woman-topic-at-point-default):
9685 Rename to woman-use-topic-at-point-default.
9686 (woman-topic-at-point): Rename to woman-use-topic-at-point.
9687 (woman-file-name): Reflect renames above. Automatically use the
9688 word at point as topic if woman-use-topic-at-point is non-nil.
9689 Otherwise offer it as default but don't insert it in the
9690 minibuffer. Also use `test-completion' instead of `assoc' as
9691 suggested by Stefan Monnier.
9692
9693 2005-09-10 Andre Spiegel <spiegel@gnu.org>
9694
9695 * vc.el (vc-directory, vc-update-change-log): Throw an error on
9696 the attempt to do it over Tramp. This is not yet supported.
9697
9698 2005-09-10 Eli Zaretskii <eliz@gnu.org>
9699
9700 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
9701 (menu-bar-non-minibuffer-window-p): New functions.
9702 ("Split Window", "Save As..."): Use them.
9703 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
9704 ("Print Buffer", "Truncate Long Lines in this Buffer"):
9705 Use menu-bar-menu-frame-live-and-visible-p.
9706 ("Save Buffer", "Insert File", "Open Directory...")
9707 ("Open File...", "Visit New File..."):
9708 Use menu-bar-non-minibuffer-window-p.
9709 (kill-this-buffer-enabled-p, dired <menu-enable>):
9710 Use menu-bar-non-minibuffer-window-p.
9711
9712 2005-09-09 Eli Zaretskii <eliz@gnu.org>
9713
9714 * cus-start.el (all): Don't complain about fringe-related
9715 built-ins if fringes are not supported. Ditto about
9716 selection-related built-ins. Fix the test for GTK-related built-ins.
9717
9718 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
9719 ("Postscript Print Buffer", "Print Region", "Save As...")
9720 ("Save", "Insert File...", "Open Directory...")
9721 ("Open File...", "Visit New File..."")
9722 ("Truncate Long Lines in this Buffer"): Don't look at
9723 menu-updating-frame if this display does not support multiple frames.
9724
9725 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
9726
9727 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
9728
9729 2005-09-09 Emilio Lopes <eclig@gmx.net>
9730
9731 * woman.el: Format- and whitespace-related changes.
9732
9733 2005-09-09 Eli Zaretskii <eliz@gnu.org>
9734
9735 * woman.el: Fix my email address.
9736
9737 2005-09-08 Richard M. Stallman <rms@gnu.org>
9738
9739 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
9740 (sh-mode): Locally set skeleton-pair-default-alist.
9741
9742 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
9743
9744 * progmodes/flymake.el: Require `compile' unconditionally.
9745
9746 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
9747
9748 * woman.el (woman-file-name): Provide a default, not initial input.
9749
9750 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
9751
9752 * font-lock.el (font-lock-support-mode): Doc fix.
9753
9754 * descr-text.el (describe-property-list): Handle non-symbol prop names.
9755
9756 2005-09-08 Richard M. Stallman <rms@gnu.org>
9757
9758 * simple.el (blink-matching-open): Get rid of text props from
9759 the string shown in echo area. Don't permanently set point.
9760 Some rearrangements.
9761
9762 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
9763
9764 * recentf.el (recentf-filename-handler): Add custom choice
9765 `abbreviate-file-name'.
9766
9767 * msb.el (msb--very-many-menus): Fix typo.
9768
9769 * disp-table.el (standard-display-european): Don't set
9770 enable-multibyte-characters to nil.
9771
9772 2005-09-08 David Ponce <david@dponce.com>
9773
9774 * recentf.el (recentf-show-file-shortcuts-flag): New option.
9775 (recentf-expand-file-name): Doc fix.
9776 (recentf-dialog-mode-map): Define digit shortcuts.
9777 (recentf--files-with-key): New variable.
9778 (recentf-show-digit-shortcut-filter): New function.
9779 (recentf-open-files-items): New function.
9780 (recentf-open-files): Use it.
9781 (recentf-open-file-with-key): New command.
9782
9783 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
9784
9785 * buff-menu.el (Buffer-menu-sort-by-column): New function.
9786 Suggested by Kim F. Storm.
9787 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
9788 (Buffer-menu-make-sort-button): Use global keymap.
9789
9790 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
9791
9792 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
9793 (Man-getpage-in-background-advice): Remove defadvice; it isn't
9794 necessary any longer with the remapped command.
9795 (Man-bgproc-sentinel-advice): Remove defadvice which counts
9796 formatting time only.
9797
9798 * net/tramp.el (tramp-action-password)
9799 (tramp-multi-action-password): Compile the password prompt from
9800 `method', `user' and `host'. Sometimes it isn't obvious which
9801 password to enter, for example with remote files offered by
9802 recentf.el, or with multiple steps. Suggested by Robert Marshall
9803 <robert@chezmarshall.freeserve.co.uk>.
9804
9805 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
9806
9807 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
9808 Fix regexp for when "s///" is at the beginning of line.
9809
9810 2005-09-07 Jay Belanger <belanger@truman.edu>
9811
9812 * calc/calc-poly.el (math-expand-term): Multiply out any powers
9813 when in matrix mode.
9814
9815 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9816
9817 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
9818 non-anonymous functions.
9819
9820 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
9821
9822 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
9823 when using a header line. Otherwise, use mouse-1-click-follows-link.
9824
9825 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
9826 can't be moved; don't signal an error.
9827
9828 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
9829
9830 * cus-theme.el (custom-theme-write-faces): Save the current face
9831 spec, not the defface spec.
9832
9833 * custom.el (custom-known-themes): Clarify meaning of "standard".
9834 (custom-push-theme): Save old values in the standard theme.
9835 (disable-theme): Correct typo.
9836 (custom-face-theme-value) Deleted unused function.
9837 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
9838
9839 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
9840
9841 * progmodes/compile.el (compilation-goto-locus): Take into account
9842 iconified frames when determining whether the buffer is
9843 already visible.
9844 Don't reset window height if the window already existed.
9845
9846 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
9847
9848 * custom.el (load-theme): Rename from require-theme.
9849 Add interactive spec.
9850 (enable-theme): Rename from custom-enable-theme.
9851 Add interactive spec.
9852 (disable-theme): Rename from custom-disable-theme.
9853 Add interactive spec.
9854 (custom-make-theme-feature): Doc fix.
9855 (custom-theme-directory): Doc fix.
9856 (provide-theme): Call enable-theme.
9857
9858 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
9859
9860 * obsolete/lazy-lock.el (lazy-lock-mode):
9861 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
9862 font-lock-mode if it's off. Print a warning instead.
9863
9864 * progmodes/compile.el (compilation-start): Ignore errors if the
9865 process died before we get to send-eof.
9866
9867 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
9868 Undo last change. Enclosing the result in quotes broke things on Unix
9869 since tex-send-command passes it through shell-quote-argument.
9870 (tex-send-command): Pass `file' through convert-standard-filename
9871 when possible.
9872 (tex-uptodate-p): Handle the case where TeX hasn't put additional
9873 info in a transcript.
9874
9875 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
9876
9877 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
9878 fix compilation warning. Reorder the key definitions to group
9879 together keys emitted by the current version of xterm.
9880
9881 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
9882 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
9883 Reorder predicates to correct min-color usage.
9884
9885 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
9886
9887 * longlines.el (longlines-mode): Inhibit read-only when encoding.
9888 Kill local variables when longlines-mode is turned off.
9889
9890 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
9891
9892 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
9893
9894 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
9895
9896 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
9897
9898 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
9899 (font-lock-lines-before): Change default to being inactive.
9900 (font-lock-default-fontify-region): Obey font-lock-lines-before.
9901 (font-lock-after-change-function): Don't handle f-l-lines-before here.
9902
9903 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
9904
9905 * net/tramp.el (tramp-handle-make-auto-save-file-name):
9906 Deactivate temporarily advice if active (not needed for Emacs 22,
9907 but for backwards compatibility).
9908 (tramp-exists-file-name-handler): Rewrite. First implementation
9909 was too simple.
9910 (tramp-advice-make-auto-save-file-name):
9911 Call `tramp-handle-make-auto-save-file-name' (again, just for
9912 backwards compatibility).
9913
9914 2005-08-31 Reto Zimmermann <reto@gnu.org>
9915
9916 * progmodes/vhdl-mode.el
9917 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
9918 (vhdl-end-p): Fix indentation bug "else" after "-- when".
9919 (vhdl-set-default-project): New function (easier setting of default).
9920 (vhdl-port-copy): Handle extended identifiers for generics.
9921 (vhdl-compiler-alist): Better description for error message regexp.
9922 (vhdl-make): Query for target, use previous as default.
9923 (vhdl-port-copy): Fix port copy for port names starting with "signal".
9924 (vhdl-font-lock-keywords-2): Fix fontification for record
9925 el. assign.
9926 (vhdl-speedbar-make-subpack-line): Add package body link.
9927 (vhdl-generate-makefile-1): Not include itself as dependency.
9928 (vhdl-font-lock-init): Highlight c-preprocessor directives.
9929 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
9930 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
9931 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
9932 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
9933 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
9934 (vhdl-import-project): Add string argument for `error'.
9935 (vhdl-compose-configuration)
9936 (vhdl-compose-configuration-architecture): Add configuration
9937 declaration generation.
9938 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
9939 (vhdl-trailer-re): Add "record" keyword (better indentation).
9940 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
9941 "[^ \t-\"]+".
9942 (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
9943 (vhdl-testbench-entity-file-name)
9944 (vhdl-testbench-architecture-file-name): Allow separate
9945 customization of testbench file names.
9946 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
9947 (vhdl-get-visible-signals): Allow newline within alias declaration.
9948 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
9949 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
9950 (member-ignore-case): Alias for missing function in XEmacs.
9951 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
9952 (vhdl-update-sensitivity-list): Ignore case on read signals.
9953 (vhdl-replace-string): Adjust case only for file names.
9954 (vhdl-update-sensitivity-list): Fix search for read signals.
9955 (vhdl-update-sensitivity-list): Exclude formal parameters.
9956 (vhdl-get-visible-signals): Include aliases of signals.
9957 (vhdl-get-visible-signals): Fix signal name searching.
9958 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
9959 (vhdl-fixup-whitespace-region): Fix for character
9960 literals (e.g. `:').
9961
9962 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
9963
9964 * ansi-color.el (comint-last-output-start):
9965 * bs.el (font-lock-verbose):
9966 * diff-mode.el (add-log-buffer-file-name-function):
9967 * dired-x.el (vm-folder-directory):
9968 * faces.el (help-xref-stack-item):
9969 * files.el (font-lock-keywords):
9970 * find-lisp.el (dired-buffers, dired-subdir-alist):
9971 * ido.el (cua-inhibit-cua-keys):
9972 * log-view.el (cvs-minor-wrap-function):
9973 * outline.el (font-lock-warning-face):
9974 * simple.el (compilation-current-error):
9975 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
9976 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
9977 * tooltip.el (comint-prompt-regexp):
9978 * w32-fns.el (explicit-shell-file-name):
9979 * term/mac-win.el (mac-charset-info-alist)
9980 (mac-services-selection, mac-system-script-code):
9981 * term/tty-colors.el (msdos-color-values):
9982 * term/w32-win.el (xlfd-regexp-registry-subnum):
9983 * term/x-win.el (x-keysym-table, x-selection-timeout)
9984 (x-session-id, x-session-previous-id):
9985 * textmodes/ispell.el (mail-yank-prefix):
9986 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
9987 * textmodes/org.el (calc-embedded-close-formula)
9988 (calc-embedded-open-formula)
9989 (font-lock-unfontify-region-function):
9990 * textmodes/reftex-global.el (isearch-next-buffer-function)
9991 (TeX-master):
9992 * textmodes/reftex.el (font-lock-keywords):
9993 * textmodes/tex-mode.el (font-lock-comment-face)
9994 (font-lock-doc-face):
9995 * textmodes/texinfo.el (outline-heading-alist):
9996 Add defvars.
9997
9998 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
9999 (artist-spray-chars, artist-mode-init, artist-replace-string)
10000 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
10001 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
10002 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
10003
10004 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
10005 (conf-align-assignments): "?\ " -> "?\s".
10006
10007 * textmodes/reftex-index.el (TeX-master): Add defvar.
10008 (reftex-index-phrases-marker): Move up defvar.
10009
10010 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
10011 (reftex-toc-include-labels-indicator)
10012 (reftex-toc-include-index-indicator)
10013 (reftex-toc-max-level-indicator): Move up declarations.
10014
10015 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
10016 of args to `tramp-run-real-handler', even if it's empty in this case.
10017
10018 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10019
10020 * dired.el (dired-move-to-filename-regexp): Add date format for
10021 Mac OS X 10.3 in East Asian locales.
10022
10023 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
10024
10025 * files.el (make-auto-save-file-name): Add file name handler call
10026 if applicable.
10027
10028 * net/tramp.el (tramp-file-name-handler-alist)
10029 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
10030 (tramp-handle-make-auto-save-file-name): Rename from
10031 `tramp-make-auto-save-file-name'.
10032 (tramp-exists-file-name-handler): New defun.
10033 (tramp-advice-make-auto-save-file-name): Make defadvice only when
10034 `make-auto-save-file-name' is not a magic file name operation.
10035
10036 2005-08-30 Richard M. Stallman <rms@gnu.org>
10037
10038 * files.el (risky-local-variable-p):
10039 Match `-predicates' and `-commands.
10040
10041 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
10042 (custom-save-all): Visit the file if necessary;
10043 kill the buffer if we created it.
10044 (custom-save-delete): Don't visit file or kill buffer here.
10045
10046 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
10047
10048 * textmodes/org.el (org-special-keyword): New face.
10049 (org-table-copy-down, org-table-eval-formula)
10050 (org-table-recalculate, org-init-section-numbers):
10051 Use `string-to-number' instead of `string-to-int'.
10052 (org-get-location): Use `insert-buffer-substring' instead of
10053 `insert-buffer'.
10054 (org-modify-diary-entry-string): New function.
10055 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
10056 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
10057 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
10058 active region.
10059 (org-export-as-html): Handle QUOTE keyword.
10060 (org-quote-string): New option.
10061 (org-bookmark-jump-unhide): New function, used for
10062 `bookmark-after-jump-hook'.
10063 (org-diary-default-entry): Apply only when not called through
10064 `org-agenda'.
10065
10066 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
10067
10068 * net/eudc.el (mode-popup-menu):
10069 * play/handwrite.el (ps-printer-name, ps-lpr-command):
10070 * progmodes/ada-mode.el (compile-auto-highlight)
10071 (skeleton-further-elements):
10072 * progmodes/autoconf.el (font-lock-syntactic-keywords):
10073 * progmodes/cmacexp.el (msdos-shells):
10074 * progmodes/compile.el (font-lock-extra-managed-props)
10075 (font-lock-keywords, font-lock-maximum-size)
10076 (font-lock-support-mode):
10077 * progmodes/grep.el (font-lock-lines-before):
10078 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
10079 * progmodes/mixal-mode.el (compile-command):
10080 * progmodes/perl-mode.el (font-lock-comment-face)
10081 (font-lock-doc-face, font-lock-string-face):
10082 * progmodes/prolog.el (comint-prompt-regexp):
10083 * progmodes/sh-script.el (font-lock-comment-face)
10084 (font-lock-set-defaults, font-lock-string-face):
10085 * progmodes/sql.el (font-lock-keyword-face)
10086 (font-lock-set-defaults, font-lock-string-face):
10087 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
10088 (itimer-version, lazy-lock-defer-contextually)
10089 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
10090 Add defvars.
10091
10092 * progmodes/cperl-mode.el (cperl-electric-lbrace)
10093 (cperl-electric-keyword, cperl-electric-pod)
10094 (cperl-electric-backspace, cperl-forward-re)
10095 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
10096 (vc-rcs-header, vc-sccs-header): Add defvars.
10097
10098 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
10099 (font-lock-syntactic-keywords, gud-find-expr-function):
10100 Add defvars.
10101
10102 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
10103 (gdb-frame-parameters): Declare before use.
10104
10105 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
10106 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
10107 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
10108 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
10109
10110 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
10111 (idlwave-help-with-source): Use `insert-buffer-substring', not
10112 `insert-buffer'.
10113
10114 2005-08-29 Juri Linkov <juri@jurta.org>
10115
10116 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
10117 Put outline-back-to-heading function call inside save-excursion.
10118
10119 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
10120
10121 * man.el (Man-init-defvars, Man-translate-references)
10122 (Man-support-local-filenames, Man-highlight-references):
10123 * progmodes/sql.el (sql-interactive-mode):
10124 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
10125
10126 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
10127 (compilation-mode-font-lock-keywords): Add defvars.
10128 (checkdoc-interactive-loop): "?\ " -> "?\s".
10129
10130 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
10131 (font-lock-doc-face, font-lock-string-face)
10132 (font-lock-keywords-case-fold-search): Add defvars.
10133 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
10134
10135 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
10136 Don't pass X and Y (they are ignored anyway).
10137 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
10138 (mouse-delete-window): Make arguments optional.
10139
10140 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
10141 (caesar-translate-table, minor-modes, news-buffer-save)
10142 (news-group-name, news-minor-modes): Add defvars.
10143
10144 * emacs-lisp/lselect.el (mouse-highlight-priority)
10145 (x-lost-selection-functions, zmacs-regions):
10146 * emacs-lisp/pp.el (font-lock-verbose):
10147 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
10148 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
10149 (ses-mode-map):
10150 * emacs-lisp/tcover-unsafep.el (safe-functions):
10151 * international/mule-cmds.el (mac-system-coding-system)
10152 (mac-system-locale):
10153 * language/ethio-util.el (rmail-current-message)
10154 (rmail-message-vector):
10155 * language/thai-util.el (thai-auto-composition-mode):
10156 * mail/metamail.el (rmail-current-message, rmail-message-vector):
10157 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
10158 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
10159 (vm-primary-inbox, vm-spool-files):
10160 * mail/rmail.el (deleted-head, font-lock-fontified)
10161 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
10162 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
10163 (total-messages):
10164 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
10165 (rmail-summary-mode-map):
10166 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
10167 (rmail-last-label, rmail-last-multi-labels)
10168 (rmail-summary-vector, rmail-total-messages):
10169 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
10170 * mail/rmailsum.el (msgnum):
10171 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
10172 (rmail-current-message):
10173 * obsolete/fast-lock.el (font-lock-face-list):
10174 * obsolete/rnewspost.el (mail-reply-buffer):
10175 * obsolete/scribe.el (compile-command):
10176 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
10177
10178 2005-08-28 John Paul Wallington <jpw@gnu.org>
10179
10180 * ibuf-ext.el (ibuffer-auto-update-changed):
10181 Use `frame-or-buffer-changed-p' to check whether we need to update.
10182 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
10183 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
10184 as a `frame-or-buffer-changed-p' state vector instead.
10185
10186 2005-08-27 Romain Francoise <romain@orebokech.com>
10187
10188 * textmodes/makeinfo.el (makeinfo-compile):
10189 Use `compilation-start'. Set `next-error-function' according to
10190 `disable-errors'.
10191 (makeinfo-next-error): New function.
10192 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
10193 (makeinfo-buffer): Likewise.
10194
10195 * progmodes/compile.el (compilation-start): Add autoload cookie.
10196
10197 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
10198 * textmodes/sgml-mode.el: Likewise.
10199 * progmodes/python.el: Likewise.
10200
10201 2005-08-27 Eli Zaretskii <eliz@gnu.org>
10202
10203 * simple.el (blink-matching-paren-distance): Document the meaning
10204 of nil value, and allow to customize to nil.
10205
10206 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
10207 command.com, not command.exe.
10208
10209 2005-08-26 John Wiegley <johnw@newartisans.com>
10210
10211 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
10212 code around a bit so that an extraneous nil argument is not added
10213 to a command when no args are given.
10214
10215 * eshell/esh-arg.el (eshell-parse-double-quote): If a
10216 double-quoted argument resolves to nil, return it as an empty
10217 string rather than as nil. This made it impossible to pass "" to
10218 a shell script as a null string argument.
10219
10220 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
10221
10222 * outline.el (outline-invent-heading): New fun.
10223 (outline-promote, outline-demote): Use it.
10224 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
10225 (outline-end-of-subtree): Remove unused var `opoint'.
10226
10227 2005-08-26 David Reitter <david.reitter@gmail.com>
10228
10229 * menu-bar.el (truncate-lines, write-file, print-buffer)
10230 (ps-print-buffer-faces, ps-print-buffer, split-window):
10231 Disable menu items when the frame they refer to is invisible, or when
10232 they refer to a buffer and the minibuffer is selected.
10233
10234 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
10235
10236 * progmodes/flymake.el (flymake-highlight-err-lines):
10237 Use save-excursion around flymake-highlight-line to preserve point.
10238
10239 2005-08-26 Eli Zaretskii <eliz@gnu.org>
10240
10241 * progmodes/octave-mod.el: Change Author and Maintainer address.
10242 (octave-maintainer-address): Change Kurt's email address.
10243 * progmodes/octave-inf.el: Change Author and Maintainer address.
10244 * progmodes/octave-hlp.el: Change Author and Maintainer address.
10245
10246 2005-08-26 Kim F. Storm <storm@cua.dk>
10247
10248 * subr.el (version-list-<, version-list-<=, version-list-=):
10249 Rename from integer-list-*.
10250 (version-list-not-zero): Likewise. Fix while loop.
10251 (version=): Use version-list-= instead of string-equal.
10252
10253 2005-08-26 Richard M. Stallman <rms@gnu.org>
10254
10255 * outline.el (outline-promote): Try shortening the heading.
10256 As last resort, read the heading to use.
10257 (outline-demote): As last resort, read the heading to use.
10258
10259 2005-08-26 Romain Francoise <romain@orebokech.com>
10260
10261 * progmodes/compile.el (compilation-start): Doc fix.
10262
10263 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
10264 (antlr-font-lock-additional-keywords): Fix reference to
10265 `antlr-font-lock-literal-regexp' erroneously changed during the
10266 mass face rename.
10267 (antlr-run-tool): Use `compilation-start'.
10268
10269 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
10270 instead of the obsolete `compile-internal'.
10271
10272 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
10273
10274 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
10275 (number, original-date):
10276 * calendar/cal-china.el (date):
10277 * calendar/cal-coptic.el (date):
10278 * calendar/cal-french.el (date):
10279 * calendar/cal-hebrew.el (date, entry, number, original-date):
10280 * calendar/cal-islam.el (date, number, original-date):
10281 * calendar/cal-iso.el (date):
10282 * calendar/cal-julian.el (date):
10283 * calendar/cal-mayan.el (date):
10284 * calendar/cal-menu.el (date, event):
10285 * calendar/cal-persia.el (date):
10286 * calendar/lunar.el (date):
10287 * calendar/solar.el (date): Add defvars.
10288
10289 * emerge.el:
10290 * ibuffer.el:
10291 * info-xref.el:
10292 * obsolete/bg-mouse.el:
10293 * obsolete/sun-curs.el:
10294 * obsolete/swedish.el: Move the `defvar's to the top level.
10295
10296 * smerge-mode.el (smerge-refined-change): Add :group.
10297
10298 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
10299
10300 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
10301 (smerge-keep-n): Remove props.
10302 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
10303 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
10304 now that it's done in smerge-keep-n.
10305 (smerge-refined-change): New face.
10306 (smerge-refine-chopup-region, smerge-refine-highlight-change)
10307 (smerge-refine): New funs.
10308 (smerge-basic-map): Bind smerge-refine.
10309
10310 2005-08-25 Juri Linkov <juri@jurta.org>
10311
10312 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
10313 compilation-process-setup-function and compilation-disable-input
10314 in grep-mode instead of let-bindings in grep.
10315
10316 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
10317 Delete "Automatic File De/compression" (auto-compression-mode).
10318
10319 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
10320
10321 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
10322 Silence warning about non-existent variable.
10323
10324 2005-08-25 Richard M. Stallman <rms@gnu.org>
10325
10326 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
10327 Rename "Describe Key" to "Describe Key or Mouse Operation".
10328
10329 * mail/mailalias.el (build-mail-aliases): Delete comments
10330 from the contents before processing them.
10331
10332 * isearch.el (isearch-edit-string): Erase the Search prompt
10333 if user enters an empty string and there is no default.
10334
10335 * comint.el (comint-file-name-prefix): Add autoload.
10336
10337 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
10338
10339 * subr.el (play-sound): Rearrange to avoid warning.
10340
10341 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
10342
10343 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
10344 New hook.
10345 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
10346
10347 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
10348
10349 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
10350
10351 * custom.el (custom-theme-set-variables): Sort minor modes last.
10352
10353 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10354
10355 * subr.el (version-separator, version-regexp-alist): New vars used by
10356 version comparison funs.
10357 (integer-list-<, integer-list-=, integer-list-<=)
10358 (integer-list-not-zero): New funs for integer list comparison.
10359 (version-to-list, version=, version<, version<=): New funs for version
10360 comparison.
10361
10362 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
10363
10364 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
10365 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
10366 time to silence the byte-compiler.
10367
10368 * ibuffer.el (ibuffer-compile-make-eliding-form)
10369 (ibuffer-check-formats): Use `with-no-warnings' to hide references
10370 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
10371 so it's silly to get warnings for it).
10372 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
10373 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
10374 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
10375 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
10376 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
10377 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
10378 Defvar at compile time.
10379 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
10380 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
10381 Declare them before use.
10382
10383 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
10384 (info-xref-good, info-xref-bad): Defvar at compile time.
10385
10386 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
10387 Use `let*' instead of `let'.
10388
10389 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
10390 (*mouse-y*, menu, char): Defvar at compile time.
10391 (sc::menu): Declare it before use.
10392 (sc::pack-one-line): Use `let', not `let*'.
10393
10394 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
10395 (mail-send-hook): Defvar at compile time.
10396
10397 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
10398 Defvar at compile time.
10399
10400 * term/sun-mouse.el (current-global-mousemap)
10401 (current-local-mousemap): Declare them before use.
10402
10403 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
10404
10405 * bookmark.el (bookmark-after-jump-hook): New hook.
10406 (bookmark-jump): Run `bookmark-after-jump-hook'.
10407
10408 2005-08-23 Juri Linkov <juri@jurta.org>
10409
10410 * faces.el (minibuffer-prompt): Doc fix.
10411
10412 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
10413
10414 * progmodes/xscheme.el: Trivial changes to silence warnings.
10415 (xscheme-previous-mode, xscheme-previous-process-state):
10416 Add defvars.
10417 (xscheme-last-input-end, xscheme-process-command-line)
10418 (xscheme-process-name, xscheme-buffer-name)
10419 (xscheme-expressions-ring-max, xscheme-expressions-ring)
10420 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
10421 (xscheme-control-g-synchronization-p)
10422 (xscheme-control-g-disabled-p, xscheme-string-receiver)
10423 (default-xscheme-runlight, xscheme-runlight)
10424 (xscheme-runlight-string, xscheme-process-filter-state)
10425 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
10426 Move to beginning of file.
10427 (scheme-interaction-mode-commands-alist)
10428 (scheme-interaction-mode-map, scheme-debugger-mode-map):
10429 Declare them before use. Note: the initialization code for the variables
10430 has not been moved because it uses functions that reference the variables.
10431 (xscheme-control-g-message-string, xscheme-process-filter-alist)
10432 (xscheme-prompt-for-expression-map): Declare them before use.
10433 (scheme-debugger-mode-commands): "?\ " -> "?\s".
10434
10435 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
10436
10437 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
10438
10439 2005-08-22 Juri Linkov <juri@jurta.org>
10440
10441 * faces.el (set-face-underline): Delete this duplicate function
10442 and make an obsolete alias to set-face-underline-p.
10443 (set-face-underline-p): Use docstring of set-face-underline.
10444 (describe-face): Create hyperlink to parent face.
10445
10446 * info.el (Info-insert-dir): Use save-excursion around
10447 insert-buffer-substring.
10448 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
10449 (Info-escape-percent): Delete function.
10450 (Info-fontify-node): Replace Info-escape-percent by
10451 replace-regexp-in-string with REP arg set to lambda that
10452 duplicates `%' and preserves text properties.
10453
10454 * progmodes/compile.el (compilation-disable-input): Doc fix.
10455 (define-compilation-mode): Doc fix and refill.
10456 (kill-compilation): Use `mode-name' in the error message.
10457 (compilation-find-file): Use `compilation-error' in the
10458 read-file-name's prompt.
10459
10460 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
10461
10462 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
10463 (smerge-auto-leave): Make undo re-enable the mode.
10464 (debug-ignored-errors): Add the user-error of impossible resolution.
10465 (smerge-resolve): Move things around a bit, in preparation for later.
10466 (smerge-diff): Don't fail if the buffer has no associated file.
10467 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
10468 (smerge-conflict-overlay): New function.
10469 (smerge-match-conflict): Don't add text properties here.
10470 (smerge-find-conflict): Instead, add an overlay here.
10471 Also check for the case where we're inside a conflict already, so as to
10472 obviate the need for font-lock-multiline, which is unbearably slow with
10473 large conflicts and ciomplex font-lock patterns.
10474 (smerge-remove-props): Remove overlay rather than text-properties.
10475 (smerge-mode): Don't set font-lock-multiline.
10476 Remove overlays when turned off.
10477
10478 2005-08-21 Kim F. Storm <storm@cua.dk>
10479
10480 * ido.el (ido-ignore-item-p): Use save-match-data.
10481 Bind case-fold-search to ido-case-fold locally.
10482
10483 2005-08-20 Richard M. Stallman <rms@gnu.org>
10484
10485 * files.el (normal-mode): If font lock is on, turn it off and on.
10486
10487 * subr.el (replace-regexp-in-string): Doc fix.
10488
10489 * startup.el (command-line-1): Don't suppress startup screen
10490 due to existing processes.
10491
10492 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
10493
10494 * progmodes/compile.el (compilation-disable-input): Default to nil.
10495
10496 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
10497
10498 * progmodes/compile.el (compilation-disable-input): New defcustom.
10499 (compilation-start): If compilation-disable-input is non-nil, send
10500 EOF to the compilation process.
10501
10502 2005-08-20 Eli Zaretskii <eliz@gnu.org>
10503
10504 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
10505 Run the argument of tex-shell-cd-command through
10506 convert-standard-filename, to get the correct style of slashes on
10507 Windows, and enclose the result in quotes, in case the file name
10508 includes whitespace or other special characters.
10509
10510 2005-08-19 Andreas Schwab <schwab@suse.de>
10511
10512 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
10513 process.
10514
10515 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
10516
10517 * cus-start.el (minibuffer-prompt-properties): Correct typo.
10518
10519 2005-08-18 Kim F. Storm <storm@cua.dk>
10520
10521 * scroll-lock.el: Fix errors due to incorrect line wrapping.
10522
10523 2005-08-18 Richard M. Stallman <rms@gnu.org>
10524
10525 * scroll-lock.el: New file.
10526
10527 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
10528
10529 * dired.el (dired-move-to-end-of-filename):
10530 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
10531
10532 2005-08-18 Kim F. Storm <storm@cua.dk>
10533
10534 * ido.el (ido-everywhere): Fix defcustom :set function to disable
10535 rather than toggle mode when custom value is nil.
10536 (ido-everywhere): Fix defun doc string.
10537
10538 2005-08-17 Richard M. Stallman <rms@gnu.org>
10539
10540 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
10541 as tag instead of "Inviolable".
10542
10543 2005-08-17 Kim F. Storm <storm@cua.dk>
10544
10545 * windmove.el (windmove-coordinates-of-position): Remove.
10546 (windmove-coordinates-of-window-position): Remove.
10547 (windmove-reference-loc): Use posn-at-point instead.
10548
10549 * subr.el (insert-for-yank-1): Doc fix.
10550
10551 * ido.el (ido-enter-matching-directory): Rename from
10552 ido-enter-single-matching-directory. Change `slash' choice to
10553 `only'. Add `first' choice.
10554 (ido-exhibit): Adapt to above changes.
10555
10556 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
10557
10558 * Makefile.in: Expand comment about building loaddefs.el.
10559
10560 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
10561
10562 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
10563 Comment use of defadvice.
10564
10565 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
10566
10567 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
10568
10569 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
10570 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
10571 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
10572 * progmodes/idlw-shell.el, progmodes/ld-script.el,
10573 * progmodes/which-func.el, ruler-mode.el, strokes.el,
10574 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
10575 for backward compatibility for faces that did not appear in the
10576 previous Emacs release.
10577
10578 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
10579
10580 2005-08-15 Kim F. Storm <storm@cua.dk>
10581
10582 * emulation/cua-base.el (cua-delete-region): Return t if
10583 deleted region was non-empty.
10584 (cua-replace-region): Inhibit overwrite-mode for
10585 self-insert-command if replaced region was non-empty.
10586 (cua--explicit-region-start, cua--status-string): Make them
10587 buffer-local at top-level...
10588 (cua-mode): ...rather than when mode is enabled.
10589
10590 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
10591
10592 * progmodes/vhdl-mode.el (vhdl-emacs-21):
10593 Set t for Emacs 21, 22, and so on.
10594
10595 2005-08-15 David Ponce <david@dponce.com>
10596
10597 * tree-widget.el: Update Commentary header.
10598 (tree-widget-theme): Doc fix.
10599 (tree-widget-space-width): New option.
10600 (tree-widget-image-properties): Look up in the default theme too.
10601 (tree-widget--cursors): Only for images with arrow pointer shape.
10602 (tree-widget-lookup-image): Pointer shape is hand by default.
10603 (tree-widget-icon): Rename generic icon widget from
10604 `tree-widget-control'.
10605 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
10606 derive from `tree-widget-icon'.
10607 (tree-widget-handle): Improve default look and feel of the text
10608 representation.
10609 (tree-widget): Rename :*-control properties to :*-icon properties.
10610 Add :action and :help-echo properties.
10611 (tree-widget-after-toggle-functions): Move.
10612 (tree-widget-close-node, tree-widget-open-node): Remove.
10613 (tree-widget-before-create-icon-functions): New hook.
10614 (tree-widget-value-create): Update to allow customization of icons
10615 and nodes at run-time via that new hook.
10616 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
10617 (tree-widget-icon-action, tree-widget-icon-help-echo)
10618 (tree-widget-action, tree-widget-help-echo): New functions.
10619
10620 2005-08-15 Kim F. Storm <storm@cua.dk>
10621
10622 * ido.el (ido-buffer-internal): Use with-no-warnings.
10623 (ido-make-merged-file-list): Use while-no-input.
10624
10625 2005-08-15 Richard M. Stallman <rms@gnu.org>
10626
10627 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
10628 (flyspell-large-region): Fix doc and custom type.
10629
10630 2005-08-14 Richard M. Stallman <rms@gnu.org>
10631
10632 * files.el (interpreter-mode-alist): Doc fix.
10633
10634 * mail/rmail.el (rmail-nonignored-headers): New variable.
10635 (rmail-clear-headers): Use it.
10636 (rmail-reply): Better handling of mail-followup-to header.
10637
10638 * progmodes/sh-script.el (sh-font-lock-keywords-var):
10639 Rename variable from sh-font-lock-keywords. In the `shell' entry,
10640 don't try to refer to executable-font-lock-keywords.
10641 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
10642 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
10643 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
10644 (sh-mode): Set comment-start-skip, local-abbrev-table,
10645 imenu-case-fold-search.
10646 (sh-set-shell): Don't set them here.
10647 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
10648 Don't cache the results in the original alist; don't ever modify
10649 that alist.
10650
10651 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
10652
10653 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
10654 empty.
10655
10656 2005-08-15 Andreas Schwab <schwab@suse.de>
10657
10658 * desktop.el: Put autoload cookie at risky-local-variable declarations.
10659
10660 * dired.el, info.el, mail/rmail.el: Revert last change.
10661
10662 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
10663
10664 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
10665 modification in `eval-after-load' form.
10666 * info.el: Likewise.
10667 * mail/rmail.el: Likewise.
10668
10669 2005-08-14 Juri Linkov <juri@jurta.org>
10670
10671 * progmodes/compile.el (compilation-mode-font-lock-keywords):
10672 Remove highlighting of "Compilation started". Highlight only
10673 the word "finished" in "Compilation finished". Add highlighting
10674 of "interrupt", "killed", "terminated" and the exit code.
10675 (compilation-start): Add newline after header. Use exactly the
10676 same time stamp format as the finishing message.
10677 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
10678
10679 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
10680 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
10681 Add highlighting of "interrupt", "killed", "terminated".
10682
10683 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
10684 enabled and the current command is self-insert-command, call it
10685 explicitly with overwrite-mode bound to nil, to not allow it
10686 to delete the character after the selected region.
10687
10688 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
10689
10690 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
10691 move-end-of-line, end-of-line, and beginning-of-line to the list
10692 of commands after which the echo area is updated.
10693
10694 2005-08-12 Eli Zaretskii <eliz@gnu.org>
10695
10696 * cus-edit.el (custom-save-all, custom-save-delete):
10697 Bind recentf-exclude to exclude custom-file.
10698
10699 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
10700
10701 * mail/rmailsum.el (rmail-summary-end-of-message): New command
10702 to go to the bottom of the mail message. Added to
10703 `rmail-summary-mode-map' with key "/".
10704 (rmail-summary-show-message): New (internal) function for use by
10705 both `rmail-summary-beginning/end-of-message'.
10706 (rmail-summary-beginning-of-message): Change to use
10707 rmail-summary-show-message.
10708
10709 * mail/rmail.el (rmail-end-of-message): New command to go to the
10710 end of the current message. Added to `rmail-mode-map' with key "/".
10711 (rmail-beginning-of-message): Fix to work as documented.
10712 (rmail-mode): Change documentation.
10713
10714 * progmodes/compile.el (compilation-start): Add the line
10715 "Compilation started" with compilation start time.
10716 (compilation-mode-font-lock-keywords): Add `started' to keywords.
10717
10718 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
10719
10720 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
10721 of menu items.
10722
10723 2005-08-11 Richard M. Stallman <rms@gnu.org>
10724
10725 * simple.el (pop-global-mark): Reverse test of widen-automatically.
10726
10727 * battery.el (battery-status-function): Don't use ignore-errors.
10728
10729 2005-08-11 Lute Kamstra <lute@gnu.org>
10730
10731 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
10732 define-obsolete-variable-alias.
10733
10734 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
10735
10736 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
10737 (ange-ftp-send-cmd): Revert last change, and expand
10738 the comment explaining the problem.
10739
10740 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
10741
10742 * ldefs-boot.el: Update.
10743
10744 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
10745 item to "Time, Load and Mail". Change help echo text.
10746
10747 * time.el (display-time-use-mail-icon, display-time-format)
10748 (display-time-string-forms): Shorten first line of docstrings.
10749
10750 2005-08-10 Lars Hansen <larsh@soem.dk>
10751
10752 * desktop.el (desktop-buffer-mode-handlers):
10753 Make non-customizable. Add autoload cookie. Change initial value to
10754 nil; add elements in respective modules instead. Fix doc string.
10755 (desktop-load-file): New function.
10756 (desktop-minor-mode-handlers): New autoloaded variable.
10757 (desktop-create-buffer): Call minor mode handlers.
10758 Use desktop-load-file to load major and minor mode modules prior to
10759 checking for a handler.
10760 (desktop-save): Don't add nil to desktop-minor-modes for minor
10761 modes with nil function in desktop-minor-mode-table. Don't delete
10762 desktop file before rewriting it.
10763 (desktop-locals-to-save): Add autoload cookie. Don't make
10764 automatically buffer-local. Add variables column-number-mode,
10765 size-indication-mode, indent-tabs-mode,
10766 indicate-buffer-boundaries, indicate-empty-lines and
10767 show-trailing-whitespace.
10768 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
10769 regexps. Don't use desktop-clear-preserve-buffers-regexp.
10770 (desktop-clear-preserve-buffers-regexp): Delete.
10771 (desktop-clear-preserve-buffers): Update initial value and docstring.
10772 (desktop-save-buffer): Fix doc string.
10773
10774 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
10775 (hilit-chg-desktop-restore): New function.
10776 (highlight-changes-mode): Add highlight-changes-mode to
10777 desktop-locals-to-save.
10778
10779 * dired.el: Add handler to desktop-buffer-mode-handlers.
10780 (dired-restore-desktop-buffer): Remove autoload cookie.
10781 (dired-mode): Add autoload cookie.
10782
10783 * info.el: Add handler to desktop-buffer-mode-handlers.
10784 (Info-restore-desktop-buffer): Remove autoload cookie.
10785 (Info-mode): Add autoload cookie.
10786
10787 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
10788 (mh-restore-desktop-buffer): Remove autoload cookie.
10789 (mh-folder-mode): Add autoload cookie.
10790
10791 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
10792 (rmail-restore-desktop-buffer): Remove autoload cookie.
10793
10794 2005-08-11 Masatake YAMATO <jet@gyve.org>
10795
10796 * hexl.el (hexl-address-region):
10797 (hexl-ascii-region, hexl-font-lock-keywords):
10798 (hexl-highlight-line-range): Use the term "region"
10799 instead of "area" for consistency with the other symbols
10800 defined in hexl.el.
10801
10802 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
10803
10804 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
10805 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
10806 out by Juri Linkov). Add `display-battery-mode'.
10807
10808 2005-08-09 Juri Linkov <juri@jurta.org>
10809
10810 * progmodes/compile.el (compilation-mode-font-lock-keywords):
10811 Remove `-text' from face variable names.
10812 (compilation-error-file-name, compilation-warning-file-name)
10813 (compilation-info-file-name): Delete faces.
10814 (compilation-line-number, compilation-column-number):
10815 Remove face underlining.
10816 (compilation-message-face): Set to `underline' value by default.
10817 (compilation-error-face, compilation-warning-face)
10818 (compilation-info-face): Remove `-file-name' from face names.
10819 (compilation-error-text-face, compilation-warning-text-face)
10820 (compilation-info-text-face): Delete face variables.
10821 (compilation-text-face): Delete function.
10822
10823 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
10824 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
10825 (grep-error-face): Set to `compilation-error' instead of
10826 `compilation-error-face' (which is redefined to `grep-hit-face' in
10827 grep buffers).
10828 (grep-mode-font-lock-keywords): Remove `-text' from face variable
10829 names. Use `grep-error-face' instead of `compilation-error-text-face'.
10830
10831 * dired-aux.el (dired-do-query-replace-regexp):
10832 Use `query-replace-read-args'.
10833
10834 * replace.el (query-replace-read-from, query-replace-read-to)
10835 (query-replace-read-args): Rename arg `string' to `prompt'.
10836
10837 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
10838
10839 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
10840
10841 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
10842 uploading files.
10843 (ange-ftp-canonize-filename): Handle file names beginning with ~
10844 correctly.
10845
10846 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
10847
10848 * textmodes/fill.el (canonically-space-region)
10849 (fill-context-prefix, fill-french-nobreak-p)
10850 (fill-delete-newlines, fill-comment-paragraph)
10851 (justify-current-line): "?\ " -> "?\s".
10852
10853 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
10854
10855 * textmodes/fill.el (fill-nonuniform-paragraphs):
10856 Improve argument/docstring consistency.
10857
10858 2005-08-09 Richard M. Stallman <rms@gnu.org>
10859
10860 * textmodes/ispell.el (ispell-word): More fboundp checks.
10861
10862 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
10863 (find-file-noselect-1): Call it here, only if RAWFILE.
10864 (normal-mode): Always set some major mode.
10865 (save-some-buffers-action-alist): Change some explanation strings.
10866 (file-name-non-special): In the `quote' method, use unwind-protect.
10867
10868 2005-08-09 Magnus Henoch <mange@freemail.hu>
10869
10870 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
10871 (ispell-have-aspell-dictionaries): New variable.
10872 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
10873 (ispell-get-aspell-config-value): New function.
10874 (ispell-aspell-find-dictionary): New function.
10875 (ispell-aspell-add-aliases): New function.
10876 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
10877 appropriate. Don't look for ispell dictionaries if we use aspell.
10878 (ispell-menu-map): Don't build a submenu of dictionaries.
10879
10880 2005-08-09 Richard M. Stallman <rms@gnu.org>
10881
10882 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
10883 (sql-read-passwd): Use read-passwd.
10884
10885 * progmodes/idlw-toolbar.el (idlwave-toolbar)
10886 (idlwave-toolbar-is-possible): Add defvars.
10887
10888 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
10889 Avoid warnings.
10890
10891 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
10892 (idlwave-system-class-info, idlwave-executive-commands-alist):
10893 Use defvar.
10894
10895 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
10896
10897 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
10898 Avoid warnings.
10899
10900 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
10901 and content-type: headers.
10902
10903 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
10904
10905 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
10906 and rename some of them to be more self-explanatory.
10907
10908 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
10909
10910 * startup.el (command-line-1): Implement -scriptload.
10911
10912 * replace.el (occur-engine): Initial *Occur* output not undoable.
10913
10914 * menu-bar.el (menu-bar-file-menu): Rename some menu items
10915 and improve help strings.
10916
10917 * isearch.el (isearch-repeat): When changing direction,
10918 mark search successful.
10919
10920 * ediff-init.el: Use (featurep 'xemacs).
10921
10922 * comint.el (send-invisible): Identify buffer, if not selected.
10923
10924 * align.el: Delete autoload for c-guess-basic-syntax.
10925
10926 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
10927
10928 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
10929 Improve argument/docstring consistency. Doc fixes.
10930 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
10931 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
10932 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
10933 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
10934 (r2bv-organization, r2bv-pages, r2bv-primary-author)
10935 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
10936 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
10937 Defvar at compile time.
10938
10939 2005-08-09 Juri Linkov <juri@jurta.org>
10940
10941 * info.el: Replace `info' with upper-case `Info' where appropriate.
10942 (info-title-1, info-title-2, info-title-3, info-title-4)
10943 (info-menu-header): Move up face definitions.
10944 (info-menu-star): Rename from `info-menu-5'.
10945 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
10946 (Info-fontify-visited-nodes): Fix docstring.
10947 (Info-hide-note-references): Fix docstring.
10948 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
10949 menu items in the same way as on cross-references.
10950 (info-apropos): Fix sorting order and formatting to be like in the
10951 stand-alone Info browser. Display error messages for 1 sec.
10952 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
10953 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
10954 from the menu bar.
10955 (Info-insert-dir): Restore point after calling
10956 `insert-buffer-substring'.
10957
10958 2005-08-08 Richard M. Stallman <rms@gnu.org>
10959
10960 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
10961 (recompute-lucid-menubar): Add defvars.
10962
10963 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
10964
10965 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
10966
10967 * net/net-utils.el (run-dig): Rename from `dig'.
10968
10969 * play/gametree.el (gametree-mode): Use make-local-variable,
10970 not make-variable-buffer-local.
10971
10972 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
10973
10974 * ansi-color.el (ansi-color-make-extent)
10975 (ansi-color-set-extent-face): Use fboundp, not functionp.
10976
10977 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
10978 not make-variable-buffer-local.
10979
10980 * bookmark.el (Info-current-file): Add defvar.
10981 (bookmark-jump-noselect): Use with-no-warnings.
10982
10983 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
10984
10985 * ebuff-menu.el (Helper-return-blurb): Add defvar.
10986
10987 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
10988
10989 * find-file.el (ada-procedure-start-regexp)
10990 (ada-package-start-regexp): Add defvars.
10991
10992 * info.el (Info-insert-dir): Use insert-buffer-substring.
10993
10994 * xml.el (xml-att-def-re): Add defvar.
10995
10996 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
10997 calling convention.
10998
10999 * subr.el (while-no-input): Return t if there is input.
11000
11001 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
11002
11003 * cus-start.el (all): Add `overflow-newline-into-fringe'.
11004
11005 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
11006
11007 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
11008 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
11009
11010 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
11011
11012 * cmuscheme.el (scheme-start-file): Replace reference to
11013 `user-emacs-directory' by "~/.emacs.d/".
11014
11015 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
11016
11017 * info.el (Info-dir-remove-duplicates): Avoid case folding
11018 in loop; instead, keep downcased strings for comparison.
11019 Suggested by Helmut Eller.
11020
11021 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
11022
11023 Sync with Tramp 2.0.50.
11024
11025 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
11026 XEmacs case; not necessary anymore.
11027 (tramp-user-regexp): Allow "@" as part of user name.
11028 (tramp-handle-set-visited-file-modtime)
11029 (tramp-handle-insert-file-contents)
11030 (tramp-handle-write-region): No special handling for
11031 `last-coding-system-used, because this is done in
11032 `tramp-accept-process-output' now.
11033 (tramp-accept-process-output): New defun.
11034 (tramp-process-one-action, tramp-process-one-multi-action)
11035 (tramp-wait-for-regexp, tramp-wait-for-output)
11036 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
11037 Howells <dhowells@redhat.com>.
11038 (clear-visited-file-modtime): Defadvice removed. The check for
11039 unset buffer's modtime does not need to be based on
11040 `tramp-buffer-file-attributes'. Suggested by RMS.
11041 (tramp-message): Insert "\n" if not being at beginning of line.
11042 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
11043 sequence with same logic.
11044 (tramp-completion-handle-expand-file-name): Discard call of
11045 `tramp-drop-volume-letter'. It is not necessary, and there have
11046 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
11047 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
11048 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
11049 should always be visible.
11050 (tramp-handle-insert-directory, tramp-setup-complete)
11051 (tramp-set-process-query-on-exit-flag)
11052 (tramp-append-tramp-buffers): Pacify byte-compiler.
11053 (tramp-bug): Delete non-existing variables from list.
11054 Apply `tramp-load-report-modules' as pre-hook.
11055 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
11056 `shell-prompt-pattern' because of non-7bit characters.
11057 Reported by Sebastian Luque <sluque@mun.ca>.
11058 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
11059 (tramp-match-string-list): Remove function.
11060 (tramp-wait-for-regexp): Remove call of that function.
11061 Suggested by Kim F. Storm <storm@cua.dk>.
11062 (tramp-set-auto-save-file-modes): Use octal integer code #o600
11063 instead of octal character code ?\600. The latter resulted in a
11064 syntax error with XEmacs.
11065
11066 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
11067 XEmacs case; not necessary anymore.
11068 (tramp-smb-handle-write-region): No special handling for
11069 `last-coding-system-used, because this is done in
11070 `tramp-accept-process-output' now.
11071 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
11072
11073 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
11074
11075 * wid-edit.el (widget-choice-value-create):
11076 Unconditionally respect user choice. Set :explicit-choice back to nil
11077 when no longer needed.
11078 (widget-choice-action): Unconditionally respect user choice.
11079 Eliminate :explicit-choice-value.
11080
11081 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
11082
11083 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
11084 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
11085 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
11086 running new function `toggle-indicate-empty-lines'.
11087 Rename "Customize" item to "Customize fringe".
11088 Rename "Indicators" item to "Buffer boundaries" and change help echo.
11089 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
11090 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
11091 Delete "Empty lines only" item.
11092 (menu-bar-showhide-fringe-ind-customize): New function.
11093 (menu-bar-showhide-fringe-ind-mixed)
11094 (menu-bar-showhide-fringe-ind-box)
11095 (menu-bar-showhide-fringe-ind-right)
11096 (menu-bar-showhide-fringe-ind-left)
11097 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
11098 instead of `fringe-indicators'.
11099
11100 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
11101
11102 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
11103 Change the date of last update.
11104
11105 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
11106
11107 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
11108 (viper-exec-yank, viper-put-back): Don't display modification msg
11109 if in the minibuffer.
11110
11111 * viper-init.el (viper-replace-overlay-cursor-color)
11112 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
11113 Make variables frame local.
11114
11115 * viper-util.el (viper-append-filter-alist): Use append instead of
11116 nconc.
11117
11118 * viper.el (viper-vi-state-mode-list)
11119 (viper-emacs-state-mode-list): Move help-mode and
11120 completion-list-mode from the first list to the second.
11121 (viper-mode): Docstring.
11122 (viper-go-away, viper-non-hook-settings): Don't localize
11123 minor-mode-alist in newer Emacsen. Add advice to
11124 set-cursor-color. Don't bind "\C-c\\".
11125
11126 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
11127
11128 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
11129 (scheme-macro-expand-command): New user options.
11130 (scheme-trace-procedure, scheme-expand-current-form): New commands.
11131 (scheme-form-at-point, scheme-start-file)
11132 (scheme-interactively-start-process): New functions.
11133 (scheme-get-process): New function, extracted from `scheme-proc'.
11134 (run-scheme): Call `scheme-start-file' to get start file, and pass
11135 it to `make-comint'.
11136 (switch-to-scheme, scheme-proc):
11137 Call `scheme-interactively-start-process' if no Scheme buffer/process
11138 is available.
11139
11140 2005-08-06 Juri Linkov <juri@jurta.org>
11141
11142 * progmodes/compile.el (compilation-mode-font-lock-keywords):
11143 Use `compilation-text-face', `compilation-info-text-face' and
11144 `compilation-error-text-face' instead of `font-lock-keyword-face'.
11145 (compilation-error): New face.
11146 (compilation-error-file-name): Inherit from
11147 `compilation-error' instead of `font-lock-warning-face'.
11148 (compilation-warning-file-name): Inherit from
11149 `compilation-warning' instead of `font-lock-warning-face'.
11150 (compilation-info, compilation-error-file-name)
11151 (compilation-warning-file-name, compilation-info-file-name)
11152 (compilation-line-number, compilation-column-number): Doc fix.
11153 (compilation-error-text-face, compilation-warning-text-face)
11154 (compilation-info-text-face): New face variables.
11155 (compilation-line-face, compilation-column-face)
11156 (compilation-enter-directory-face)
11157 (compilation-leave-directory-face): Doc fix.
11158 (compilation-text-face): New function.
11159
11160 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
11161 instead of 1 to display binary file names as info file links.
11162 (grep-error-face): Use `compilation-error-face' instead of
11163 `font-lock-keyword-face'.
11164 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
11165 and `compilation-warning-text-face' instead of
11166 `font-lock-keyword-face'. Use `compilation-error-text-face'
11167 instead of `grep-error-face'.
11168
11169 2005-08-05 Kenichi Handa <handa@m17n.org>
11170
11171 * international/code-pages.el: Add autoload cookies for all coding
11172 systems.
11173
11174 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
11175
11176 * cus-start.el (all): Put undo.c where it alphabetically belongs.
11177
11178 2005-08-04 Juri Linkov <juri@jurta.org>
11179
11180 * progmodes/compile.el (compilation-mode-map):
11181 * progmodes/grep.el (grep-mode-map):
11182 Bind TAB to `compilation-next-error' and [backtab] to
11183 `compilation-previous-error'.
11184
11185 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
11186 matching line numbers, column numbers and their ranges with regexp
11187 matching only line numbers.
11188 (grep-context-face): New face variable.
11189 (grep-mode-font-lock-keywords): Use it.
11190
11191 * faces.el (read-face-name): Delete duplicate faces.
11192
11193 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
11194
11195 * thumbs.el (thumbs-find-image): Don't make variables
11196 automatically buffer local.
11197 (thumbs-current-tmp-filename, thumbs-current-image-filename)
11198 (thumbs-image-num): Make automatically buffer local.
11199 (thumbs-show-thumbs-list): Use `make-local-variable', not
11200 `make-variable-buffer-local'.
11201 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
11202
11203 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
11204 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
11205 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
11206 (bother, bye, canyou, chatlst, continue, deathlst, describe)
11207 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
11208 (feelings-about, foullst, found, hello, history, howareyoulst)
11209 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
11210 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
11211 (neglst, obj, object, owner, please, problems, qlist)
11212 (random-adjective, relation, remlst, repetitive-shortness)
11213 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
11214 (shortlst, something, sportslst, stallmanlst, states, subj)
11215 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
11216 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
11217 Defvar at compile time.
11218
11219 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
11220 not `make-variable-buffer-local'.
11221
11222 2005-08-02 Kim F. Storm <storm@cua.dk>
11223
11224 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
11225 rectangle overlay in selected window.
11226
11227 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
11228
11229 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
11230 instead of display group. Make `indicate-buffer-boundaries'
11231 customizable through Custom.
11232
11233 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
11234
11235 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
11236 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
11237 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
11238 (gdb-put-string): Fix typos in docstrings.
11239
11240 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
11241
11242 Update copyright notices of files in progmodes directory for
11243 release of Emacs 22.1.
11244
11245 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
11246
11247 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
11248 Don't barf if the GUD buffer has been killed.
11249
11250 2005-08-01 Kim F. Storm <storm@cua.dk>
11251
11252 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
11253
11254 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
11255
11256 * simple.el (next-error-follow-minor-mode):
11257 make-variable-buffer-local -> make-local-variable.
11258
11259 * emacs-lisp/cl-extra.el: Require CL also when compiling.
11260
11261 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
11262 (byte-compile-form-make-variable-buffer-local): New functions to warn
11263 about misuses of make-variable-buffer-local where make-local-variable
11264 was meant.
11265
11266 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
11267
11268 * bs.el (bs-attributes-list): Doc fix.
11269 (bs): Update url-link.
11270
11271 * desktop.el (desktop-save-buffer): Fix typos in docstring.
11272 (desktop-load-default): Simplify.
11273
11274 * ibuffer.el (ibuffer-columnize-and-insert-list)
11275 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
11276 (ibuffer-unmark-all, ibuffer-toggle-marks)
11277 (ibuffer-unmark-forward, ibuffer-unmark-backward)
11278 (ibuffer-compile-make-format-form, ibuffer-format-column)
11279 (ibuffer-current-buffers-with-marks)
11280 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
11281 (ibuffer): Doc fix.
11282 (ibuffer-mode): Fix typo in docstring.
11283 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
11284 with `define-obsolete-variable-alias'.
11285 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
11286
11287 2005-07-29 Kenichi Handa <handa@m17n.org>
11288
11289 * international/mule-cmds.el (select-message-coding-system):
11290 Be sure to use LF for end-of-line. If no coding system is decided,
11291 return iso-8859-1-unix.
11292
11293 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
11294
11295 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
11296 (ange-ftp-pending-error-line): New vars.
11297 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
11298 to handle the non-fatal no-route-to-host messages.
11299 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
11300
11301 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
11302
11303 * isearch.el (isearch-mode-map, isearch-other-meta-char)
11304 (isearch-quote-char, isearch-printing-char)
11305 (isearch-text-char-description): "?\ " -> "?\s".
11306 (isearch-lazy-highlight-cleanup)
11307 (isearch-lazy-highlight-initial-delay)
11308 (isearch-lazy-highlight-interval)
11309 (isearch-lazy-highlight-max-at-a-time)
11310 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
11311 Declare with define-obsolete-*-alias macros.
11312 (isearch-forward): Fix typo in docstring.
11313 (search-invisible, search-ring-yank-pointer)
11314 (regexp-search-ring-yank-pointer): Doc fixes.
11315
11316 * recentf.el (recentf-menu-append-commands-p): Declare with
11317 `define-obsolete-variable-alias'.
11318 (recentf-max-saved-items, recentf-menu-filter)
11319 (recentf-arrange-by-rule-subfilter): Doc fixes.
11320 (recentf-menu-append-commands-flag)
11321 (recentf-initialize-file-name-history, recentf-expand-file-name)
11322 (recentf-clear-data): Fix typos in docstrings.
11323
11324 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
11325
11326 * progmodes/gdb-ui.el: Smarten comments.
11327 (gdb-info-breakpoints-custom): Use nowarn when finding file.
11328
11329 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
11330
11331 * term/apollo.el (terminal-init-apollo): New function containing
11332 all former top level forms in the file.
11333 * term/bobcat.el (terminal-init-bobcat):
11334 * term/cygwin.el (terminal-init-cygwin):
11335 * term/iris-ansi.el (terminal-init-iris-ansi):
11336 * term/linux.el (terminal-init-linux):
11337 * term/news.el (terminal-init-news):
11338 * term/rxvt.el (terminal-init-rxvt):
11339 * term/sun.el (terminal-init-sun):
11340 * term/tvi970.el (terminal-init-tvi970):
11341 * term/vt100.el (terminal-init-vt100):
11342 * term/vt102.el (terminal-init-vt102):
11343 * term/vt125.el (terminal-init-vt125):
11344 * term/vt200.el (terminal-init-vt200):
11345 * term/vt201.el (terminal-init-vt201):
11346 * term/vt220.el (terminal-init-vt220):
11347 * term/vt240.el (terminal-init-vt240):
11348 * term/vt300.el (terminal-init-vt300):
11349 * term/vt320.el (terminal-init-vt320):
11350 * term/vt400.el (terminal-init-vt400):
11351 * term/vt420.el (terminal-init-vt420):
11352 * term/wyse50.el (terminal-init-wyse50):
11353 * term/xterm.el (terminal-init-xterm): Likewise.
11354
11355 * term/README: Describe the terminal-init-* functionality.
11356
11357 * startup.el (command-line): After loading the terminal initialization
11358 file call the corresponding terminal initialization function.
11359
11360 2005-07-27 Kenichi Handa <handa@m17n.org>
11361
11362 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
11363 negative.
11364
11365 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
11366 (ps-mule-composition-prologue): Fix for the case that
11367 RelativeCompose is false.
11368
11369 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11370
11371 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
11372
11373 * descr-text.el (describe-char): Handle the case where the list of
11374 chars is displayed in a separate frame.
11375 Be a bit more discriminating when looking for the char.
11376
11377 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
11378
11379 * bookmark.el (bookmark-automatically-show-annotations)
11380 (bookmark-read-annotation-text-func): Doc fixes.
11381 (bookmark-save): Improve argument/docstring consistency.
11382 (bookmark-get-bookmark, bookmark-get-bookmark-record)
11383 (bookmark-alist-from-buffer)
11384 (bookmark-upgrade-file-format-from-0)
11385 (bookmark-grok-file-format-version)
11386 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
11387 (bookmark-read-annotation-mode)
11388 (bookmark-insert-current-bookmark, bookmark-jump)
11389 (bookmark-exit-hook): Fix typos in docstrings.
11390 (bookmark-exit-hooks): Define as obsolete alias.
11391 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
11392 not `bookmark-exit-hooks'. Fix docstring.
11393 (bookmark-bmenu-select): "?\ " -> "?\s".
11394
11395 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
11396
11397 * startup.el (command-line): Fix typo.
11398
11399 2005-07-24 Richard M. Stallman <rms@gnu.org>
11400
11401 * tooltip.el (tooltip-mode): Test emacs-basic-display,
11402 not emacs-quick-startup.
11403
11404 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
11405
11406 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
11407 (reb-next-match, reb-show-subexp): Use `with-selected-window'
11408 instead of `reb-with-current-window'.
11409 (reb-prev-match): Likewise. Also, don't move left if the search
11410 was unsuccessful.
11411 (reb-initialize-buffer): New function.
11412 (re-builder, reb-change-syntax): Use it.
11413
11414 * man.el (Man-goto-page): Make second argument NOERROR optional.
11415
11416 2005-07-23 Richard M. Stallman <rms@gnu.org>
11417
11418 * man.el (Man-bgproc-sentinel): Check here for failure to find
11419 any man page in the output, and report the error here.
11420 (Man-arguments): Make it permanent local.
11421 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
11422 (Man-mode): Pass t for NOERROR.
11423
11424 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
11425 (grep-mode-font-lock-keywords):
11426 Don't use compilation-...-face for messages that are not file names.
11427
11428 * progmodes/compile.el (compilation-mode-font-lock-keywords):
11429 Don't use compilation-...-face for messages that are not file names.
11430
11431 2005-07-22 Juri Linkov <juri@jurta.org>
11432
11433 * startup.el (normal-splash-screen): Update menu name.
11434
11435 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
11436
11437 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
11438
11439 * term/xterm.el: Load term/rxvt if the terminal is actually an
11440 rxvt terminal.
11441 (xterm-rxvt-set-background-mode): Remove, not used anymore.
11442
11443 * term/rxvt.el (function-key-map): Use substitute-key-definition
11444 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
11445
11446 * term/cygwin.el: New file.
11447
11448 2005-07-22 Kim F. Storm <storm@cua.dk>
11449
11450 * image-file.el (insert-image-file, image-file-yank-handler):
11451 Fix last change to maintain a (unique) yank-handler on yanked images.
11452
11453 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
11454
11455 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
11456 of the file size (as in "177B" for 177 bytes). This happens with
11457 "ls -lh" on FreeBSD.
11458
11459 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
11460
11461 * hilit-chg.el (highlight-changes-global-initial-state)
11462 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
11463 (hilit-chg-fixup, highlight-changes-mode):
11464 Fix typos in docstrings.
11465 (highlight-changes-global-modes, highlight-changes-rotate-faces):
11466 Doc fixes.
11467
11468 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
11469
11470 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
11471 mode function using `eval-after-load'.
11472
11473 2005-07-21 Kim F. Storm <storm@cua.dk>
11474
11475 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
11476 included when reporting an emacs crash, and tell about the DEBUG file.
11477
11478 * image-file.el (insert-image-file): Add yank-handler.
11479 (image-file-yank-handler): Yank handler to make unique copies of
11480 images when they are yanked into a buffer next to each other.
11481
11482 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
11483
11484 * comint.el (comint-use-prompt-regexp, comint-send-input)
11485 (comint-source-default, comint-extract-string)
11486 (comint-get-source, comint-word, comint-completion)
11487 (comint-source, comint-prompt-read-only, comint-update-fence):
11488 Fix typos in docstrings.
11489 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
11490 Declare with define-obsolete-*-alias macros.
11491 (comint-previous-matching-input-from-input)
11492 (comint-next-matching-input-from-input)
11493 (comint-previous-matching-input, comint-next-matching-input)
11494 (comint-forward-matching-input):
11495 Improve argument/docstring consistency.
11496
11497 * desktop.el (desktop-clear-preserve-buffers-regexp):
11498 Also preserve the *server* buffer.
11499
11500 * simple.el (clone-indirect-buffer): Doc fix.
11501 (fixup-whitespace, just-one-space)
11502 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
11503 (next-error, next-error-highlight)
11504 (next-error-highlight-no-select, next-error-last-buffer)
11505 (next-error-buffer-p, next-error-find-buffer, next-error)
11506 (previous-error, next-error-no-select, previous-error-no-select)
11507 (open-line, split-line, minibuffer-prompt-width, kill-new)
11508 (binary-overwrite-mode): Fix typos in docstrings.
11509 (set-fill-column): Fix typo in message.
11510
11511 * skeleton.el (skeleton-proxy-new): Doc fix.
11512
11513 * strokes.el (strokes-load-hook): Doc fix.
11514 (strokes-grid-resolution, strokes-get-grid-position)
11515 (strokes-renormalize-to-grid, strokes-read-stroke)
11516 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
11517 (strokes-global-map): Fix typos in docstrings.
11518 (strokes-help): Doc fix. Fix help message and pass it through
11519 `substitute-command-keys'.
11520
11521 * tempo.el (tempo-insert-prompt, tempo-interactive)
11522 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
11523 (tempo-insert-string-functions, tempo-local-tags)
11524 (tempo-define-template, tempo-insert-template)
11525 (tempo-insert-prompt-compat, tempo-is-user-element)
11526 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
11527 Fix typos in docstrings.
11528
11529 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
11530 (vcursor-key-bindings, vcursor-use-vcursor-map)
11531 (vcursor-find-window, vcursor-scroll-down)
11532 (vcursor-disable, vcursor-beginning-of-buffer)
11533 (vcursor-end-of-buffer): Fix typos in docstrings.
11534 (vcursor-relative-move, vcursor-get-char-count):
11535 Improve argument/docstring consistency.
11536
11537 * version.el: "?\ " -> "?\s".
11538
11539 * wid-edit.el (widget-default-create, widget-after-change)
11540 (widget-default-format-handler, widget-checklist-add-item)
11541 (widget-radio-add-item, widget-choose, widget-specify-secret)
11542 (widget-field-value-create, widget-field-value-get)
11543 (widget-editable-list-format-handler)
11544 (widget-editable-list-entry-create, widget-group-value-create)
11545 (widget-documentation-link-add)
11546 (widget-documentation-string-value-create): "?\ " -> "?\s".
11547 (widget-convert-text): Doc fix.
11548 (widget-narrow-to-field, widget-field-find)
11549 (widget-url-link-action, widget-emacs-library-link-action)
11550 (widget-color-notify): Fix typos in docstrings.
11551
11552 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
11553 (x-select-text, set-w32-system-coding-system)
11554 (w32-add-charset-info): Fix typos in docstrings.
11555
11556 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
11557 (cua-enable-cua-keys, cua-use-hyper-key)
11558 (cua-virtual-rectangle-edges): Fix typos in docstrings.
11559 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
11560
11561 * net/tramp.el (tramp-handle-load): Fix typo in error message.
11562
11563 * emacs-lisp/re-builder.el (regexp-builder): Declare with
11564 `defalias' instead of faking it.
11565
11566 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
11567 (eshell-ls-missing, eshell-ls-dired-initial-args)
11568 (eshell-ls-use-in-dired): Fix typos in docstrings.
11569
11570 2005-07-20 Kim F. Storm <storm@cua.dk>
11571
11572 * emulation/cua-base.el (cua-mode): Improve doc string.
11573
11574 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
11575
11576 * abbrev.el (expand-region-abbrevs): Doc fix.
11577 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
11578 Improve argument/docstring consistency.
11579
11580 * arc-mode.el (archive-get-descr, archive-alternate-display):
11581 Doc fixes.
11582 (archive-l-e): Improve argument/docstring consistency.
11583 (archive-tmpdir, archive-unixdate, archive-unixtime)
11584 (archive-chmod-entry): Fix typos in docstrings.
11585 (archive-unflag, archive-unflag-backwards)
11586 (archive-unmark-all-files): "?\ " -> "?\s".
11587
11588 * buff-menu.el (Buffer-menu-unmark): Doc fix.
11589 (Buffer-menu-not-modified, Buffer-menu-execute)
11590 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
11591 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
11592
11593 * composite.el (compose-string, encode-composition-rule)
11594 (compose-last-chars): Fix typos in docstrings.
11595
11596 * desktop.el (desktop-enable, desktop-basefilename):
11597 Declare with `define-obsolete-variable-alias'.
11598 (desktop-internal-v2s): Don't quote keywords.
11599 (desktop-clear): "?\ " -> "?\s".
11600
11601 * dired.el (dired-align-file, dired-flag-backup-files)
11602 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
11603 (dired-listing-switches, dired-ls-F-marks-symlinks)
11604 (dired-dwim-target, dired-load-hook, dired-mode-hook)
11605 (dired-directory, dired-faces, dired, dired-revert)
11606 (dired-mode, dired-summary, dired-view-file)
11607 (dired-copy-filename-as-kill, dired-delete-file)
11608 (dired-no-confirm, dired-unmark-all-marks)
11609 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
11610 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
11611 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
11612 Fix typos in message strings.
11613
11614 * dired-x.el (virtual-dired): Declare with `defalias'.
11615 (dired-mark-unmarked-files, dired-local-variables-file)
11616 (dired-omit-here-always): Doc fix.
11617 (dired-omit-mode, dired-find-subdir)
11618 (dired-enable-local-variables, dired-clean-up-buffers-too)
11619 (dired-extra-startup, dired-mark-extension, dired-jump)
11620 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
11621 (dired-smart-shell-command, dired-guess-shell-alist-user)
11622 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
11623 (dired-x-bind-find-file, dired-x-submit-report):
11624 Fix typos in docstrings.
11625 (dired-mark-unmarked-files): "?\ " -> "?\s".
11626
11627 * dirtrack.el (dirtrack-list): Fix typos in docstring.
11628
11629 * faces.el (describe-face): "?\ " -> "?\s".
11630 (read-all-face-attributes, read-face-font, modify-face)
11631 (face-attr-construct, italic): Fix typos in docstrings.
11632 (frame-update-face-colors): Declare with
11633 `define-obsolete-function-alias'.
11634
11635 * files.el (find-file-noselect, recode-file-name): Doc fixes.
11636 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
11637 (magic-mode-alist, buffer-file-numbers-unique)
11638 (write-file-functions, get-free-disk-space):
11639 Fix typos in docstrings.
11640 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
11641 (write-contents-hooks, write-file-hooks):
11642 Declare with `define-obsolete-variable-alias'.
11643
11644 * forms-d2.el (arch-rj): Fix typo in docstrings.
11645 (arch-tocol): Likewise. "?\ " -> "?\s".
11646
11647 * frame.el (set-frame-font, cursor-in-non-selected-windows):
11648 Fix typo in docstring.
11649 (set-screen-width, set-screen-height): Delete redundant info in
11650 doctrings.
11651 (new-frame, screen-height, screen-width): Declare with
11652 `define-obsolete-function-alias'.
11653 (delete-frame-hook, blink-cursor): Declare with
11654 `define-obsolete-variable-alias'.
11655
11656 * paths.el (prune-directory-list): Fix typos in docstring.
11657
11658 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
11659 (cvs-prefix-get): Fix typos in docstrings.
11660
11661 * ps-print.el (ps-extend-face-list, ps-extend-face)
11662 (ps-print-background-image): Fix typos in docstrings.
11663 (ps-default-fg, ps-default-bg): Doc fixes.
11664
11665 * s-region.el (s-region-bind): Doc fix.
11666 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
11667
11668 * textmodes/org.el (org-table-formula-substitute-names)
11669 (org-table-get-vertical-vector): Doc fixes.
11670 (org-table-recalculate): Remove unused argument to `message'.
11671
11672 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
11673
11674 * textmodes/org.el (org-table-column-names)
11675 (org-table-column-name-regexp)
11676 (org-table-named-field-locations): New variables.
11677 (org-archive-subtree): Protect `this-command' when calling
11678 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
11679 the kill buffer.
11680 (org-complete): Remove fixed-formula completion.
11681 (org-edit-formulas-map): New variable.
11682 (org-table-edit-formulas): New command.
11683 (org-finish-edit-formulas, org-abort-edit-formulas)
11684 (org-show-variable, org-table-get-vertical-vector): New functions.
11685 (org-table-maybe-eval-formula): Handle `:=' fields.
11686 (org-table-get-stored-formulas, org-table-store-formulas)
11687 (org-table-get-formula, org-table-modify-formulas)
11688 (org-table-replace-in-formulas): Handle named field formulas.
11689 (org-table-get-specials): Store locations of named fields.
11690
11691 2005-07-19 Juri Linkov <juri@jurta.org>
11692
11693 * progmodes/grep.el (grep-regexp-alist)
11694 (grep-mode-font-lock-keywords, grep-process-setup):
11695 Use default GNU grep match color "01;31m" instead of "01;41m".
11696 (grep-regexp-alist, grep-mode-font-lock-keywords):
11697 Use `\\[[0-9]*m' instead of `\\[00m'.
11698 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
11699 sgr_start where its handling is more important. Use the real
11700 length of sgr_start instead of constant 8.
11701 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
11702 specially. Delete all remaining escape sequences.
11703 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
11704 (grep-regexp-alist): Make hyperlink only for binary file name
11705 instead of the whole line.
11706 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
11707 (grep-mode): Add autoload.
11708
11709 * emacs-lisp/find-func.el (find-function-regexp):
11710 Add `define-compilation-mode'.
11711
11712 2005-07-19 Juri Linkov <juri@jurta.org>
11713
11714 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
11715 (compare-windows-sync-string-size, compare-windows-recenter)
11716 (compare-windows-highlight, compare-windows): Add version 22.1.
11717 (compare-windows) <defface>: Inherit from lazy-highlight instead
11718 of duplicating its default value.
11719
11720 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
11721 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
11722
11723 * descr-text.el (describe-char): Create link buttons for `charset'
11724 and `code point'. Add the current input method name with a link
11725 button to `to input' field. Print face names of display table
11726 characters in `The display table entry is displayed by' section
11727 instead of printing face-id in the `display' field.
11728 Guess hardcoded faces and create a link button for them.
11729 Skip empty fields when calculating max-width.
11730 Treat `widget-create' specially while inserting strings from the
11731 collected field list.
11732 (describe-char-after): Made obsolete in version 22.1, not 21.5.
11733
11734 * diff-mode.el (diff-file-header): Change foreground color from
11735 yellow to green on light backgrounds.
11736 (diff-context): Inherit from `shadow' only for color/grayscale
11737 with more than 88 colors.
11738 (diff-indicator-removed, diff-indicator-added)
11739 (diff-indicator-changed): New faces.
11740 (diff-font-lock-keywords): Use new faces. Regroup rules.
11741 Add "^---$" for `normal' diff format. Fontify `#' lines with
11742 font-lock-comment-delimiter-face and font-lock-comment-face.
11743 Add `#' to ^[^...] in the rule for `diff-context-face'.
11744
11745 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
11746 a button-like box. Inherit from `highlight' on low colors.
11747 (shadow): Use shades of gray only for color/grayscale with
11748 more than 88 colors. Use green for light backgrounds with
11749 8 colors, and yellow for dark backgrounds with 8 colors.
11750
11751 * font-lock.el (font-lock-regexp-grouping-backslash):
11752 Don't inherit from escape-glyph (use bold for all cases).
11753
11754 * info.el (info-xref-visited): Use light foreground color `violet'
11755 for dark backgrounds instead of dark color `magenta3'.
11756 (info-title-1): Use `yellow' color for dark backgrounds.
11757
11758 * isearch.el (isearch): Use not-too-dark magenta3 instead of
11759 too-light magenta2.
11760
11761 * replace.el (match): Use slightly more light RoyalBlue3 instead
11762 of dark RoyalBlue4.
11763
11764 * wid-edit.el (widget-inactive): Inherit from `shadow'.
11765
11766 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
11767
11768 * novice.el (disabled-command-hook): Declare it with
11769 `define-obsolete-variable-alias'.
11770
11771 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
11772 (desktop-buffer-misc-functions, desktop-buffer-handlers)
11773 (desktop-load-default): Add release to obsolescence info.
11774 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
11775 (desktop-append-buffer-args, desktop-read):
11776 Fix typos in docstrings.
11777 (desktop-kill): Fix typo in message.
11778 (desktop-save): Doc fix.
11779
11780 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
11781
11782 * viper-cmd.el (viper-escape-to-state): Bug fix.
11783 (viper-envelop-ESC-key): Change the definition of fast
11784 keysequence so it'll work with keyboard macros.
11785
11786 * ediff.el (ediff-patch-buffer): Change the docstring.
11787
11788 2005-07-19 Kenichi Handa <handa@m17n.org>
11789
11790 * international/mule-cmds.el (select-safe-coding-system): Try to
11791 use an auto-coding (if any) before anything else. If the found
11792 auto-coding is invalid, show a warning message.
11793
11794 * international/mule.el (find-auto-coding): New function created
11795 by modifying the body of set-auto-coding.
11796 (set-auto-coding): Use find-auto-coding to find a coding.
11797
11798 2005-07-18 Richard M. Stallman <rms@gnu.org>
11799
11800 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
11801 not isearch-mode-end-hook-error.
11802 (allout-before-change-protect): Fix error message.
11803
11804 2005-07-18 Juri Linkov <juri@jurta.org>
11805
11806 * allout.el (allout-mode):
11807 * calculator.el (calculator-copy):
11808 * custom.el (custom-known-themes):
11809 * dired.el (dired-desktop-buffer-misc-data)
11810 (dired-restore-desktop-buffer):
11811 * dired-x.el (dired-omit-marker-char):
11812 * files.el (basic-save-buffer):
11813 * font-core.el (font-lock-mode):
11814 * calendar/calendar.el (calendar-goto-hebrew-date)
11815 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
11816 (calendar-goto-persian-date):
11817 * language/ethio-util.el (ethio-sera-to-fidel-region):
11818 * textmodes/picture.el (picture-mode):
11819 Delete duplicate duplicate words.
11820
11821 2005-07-18 Juri Linkov <juri@jurta.org>
11822
11823 * isearch.el (isearch-mode-map): Remove key bindings for regexp
11824 chars * ? } |.
11825 (isearch-fallback): Don't call `isearch-process-search-char'.
11826 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
11827 (isearch-process-search-char): Call `isearch-fallback' for regexp
11828 chars * ? } |.
11829 (isearch-return-char): Make obsolete with `make-obsolete' instead
11830 of simply documenting it as obsolete in the docstring.
11831 (isearch-fallback): Refill docstring.
11832
11833 * international/isearch-x.el
11834 (isearch-process-search-multibyte-characters): Remove unneeded
11835 `concat'. Add intermediate values to `junk-hist' instead of
11836 `minibuffer-history'. Test the length of `str'.
11837
11838 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
11839
11840 * allout.el (allout-resolve-xref): Fix typos in error strings.
11841 (allout-before-change-protect): Remove unneeded `concat'.
11842
11843 * array.el (array-mode, array-reconfigure-rows)
11844 (untabify-backward): Fix typos in docstrings.
11845 (array-reconfigure-rows): Use `insert-buffer-substring', not
11846 `insert-buffer'.
11847
11848 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
11849 * progmodes/ada-mode.el (ada-make-body):
11850 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
11851
11852 * dired.el (dired-log):
11853 * tar-mode.el (tar-subfile-save-buffer):
11854 * play/zone.el (zone-pgm-stress-destress):
11855 Use `insert-buffer-substring', not `insert-buffer'.
11856
11857 2005-07-17 Simon Josefsson <jas@extundo.com>
11858
11859 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
11860
11861 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
11862
11863 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
11864 Add plain auth method.
11865 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
11866
11867 2005-07-17 Kim F. Storm <storm@cua.dk>
11868
11869 * ido.el (dired-other-window): Add ido property.
11870
11871 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
11872
11873 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
11874 Fix typo in docstring.
11875 (byte-compile-interactive-only-functions): Add `insert-buffer' and
11876 `insert-file-literally'.
11877
11878 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
11879 info and delete redundant message. Doc fix.
11880 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
11881 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
11882
11883 2005-07-16 Richard M. Stallman <rms@gnu.org>
11884
11885 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
11886 (byte-compile-and): Use byte-compile-and-recursion.
11887 (byte-compile-or-recursion): New function.
11888 (byte-compile-or): Use that.
11889 (byte-compile-if): Guard the else-clause too.
11890 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
11891
11892 * isearch.el (isearch-mode-end-hook-quit): New variable.
11893 (isearch-done): Bind it.
11894 (isearch-mode-end-hook): Doc fix.
11895
11896 * allout.el (allout-isearch-did-quit): Variable deleted.
11897 (allout-real-isearch-abort): Function name no longer used.
11898 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
11899 (allout-isearch-rectification): isearch-mode always exists.
11900 Don't set allout-isearch-did-quit.
11901 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
11902 allout-isearch-did-quit.
11903 (allout-enwrap-isearch): Just add the hook.
11904 (allout-isearch-abort): Function deleted.
11905 (allout-pre-command-business): Avoid warning.
11906
11907 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
11908 Correctly avoid warnings.
11909 (pascal-outline): Likewise.
11910
11911 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
11912
11913 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
11914
11915 * play/tetris.el (tetris-mode): Avoid warning.
11916
11917 * play/snake.el (snake-mode): Avoid warning.
11918
11919 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
11920 (gamegrid-set-display-table): Avoid warning.
11921 (gamegrid-set-timer): Likewise.
11922 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
11923 (gamegrid-add-score-with-update-game-score-1): Take FILE
11924 as argument.
11925 (gamegrid-add-score-with-update-game-score): Pass that argument.
11926 Rename have-shared-game-dir to gamegrid-shared-game-dir.
11927
11928 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
11929
11930 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
11931 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
11932
11933 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
11934 and insert-file.
11935
11936 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
11937 (sc-ask): Avoid warnings.
11938
11939 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
11940 (eshell-hist-initialize): Use that var the natural way.
11941
11942 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
11943
11944 * emacs-lisp/re-builder.el (reb-cook-regexp):
11945 Avoid warning calling lre-compile-string.
11946 (reb-color-display-p): Avoid warning.
11947
11948 * calculator.el (calculator-last-input): Guard uses
11949 of event-key and key-press-event-p.
11950 (event-key, key-press-event-p): Delete definitions.
11951
11952 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
11953 (find-gc-source-directory, find-gc-subrs-callers)
11954 (find-gc-noreturn-list, find-gc-source-files)
11955 (find-gc-subrs-called): Vars renamed and defvar'd.
11956
11957 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
11958 (checkdoc-overlay-put, checkdoc-delete-overlay)
11959 (checkdoc-overlay-start, checkdoc-overlay-end)
11960 (checkdoc-mode-line-update, checkdoc-char=):
11961 Define such that compiler knows they are defined.
11962 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
11963 (checkdoc-read-event): Delete. Use read-event directly.
11964
11965 * whitespace.el (whitespace-make-overlay)
11966 (whitespace-overlay-put, whitespace-delete-overlay)
11967 (whitespace-overlay-start, whitespace-overlay-end):
11968 Define such that compiler knows they are defined.
11969 (whitespace): Move conditional inside.
11970
11971 * tempo.el (tempo-insert-template): Suppress warning.
11972
11973 * ediff-diff.el (longlines-mode): Add defvar.
11974
11975 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
11976
11977 * server.el: Bind "C-x #" in a way that works even if C-x is
11978 redefined to a command key, not a prefix key.
11979
11980 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
11981
11982 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
11983 cl-make-type-test till execution time.
11984
11985 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
11986
11987 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
11988 arg ARG and use it.
11989
11990 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
11991
11992 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
11993
11994 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
11995
11996 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
11997 a defcustom with two :set or :type keywords.
11998
11999 2005-07-15 Richard M. Stallman <rms@gnu.org>
12000
12001 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
12002 Don't give ^M comment-end syntax.
12003
12004 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
12005
12006 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
12007 Don't consider gdbmi (gdb-mi.el has its own update functions).
12008 (gdb-var-delete): Make it work for gdbmi as well.
12009 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
12010
12011 * progmodes/gud.el (etags, sdb): Only require etags when needed.
12012 (gud-speedbar-menu-items): Correct logic for enabling items.
12013
12014 2005-07-15 Kim F. Storm <storm@cua.dk>
12015
12016 * ido.el: Fix commentary.
12017 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
12018 Use with-no-warnings around ffap-guesser.
12019 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
12020 Let bind minibuffer-completing-file-name to t.
12021
12022 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
12023
12024 * startup.el (site-run-file, keyboard-type): Doc fixes.
12025 (command-line): Check for "--basic-display" argument; also for
12026 "--quick", not "--bare-bones" (which was renamed).
12027 (fancy-splash-text): Add missing item "Getting New Versions".
12028 (normal-splash-screen): Fix typos and improve consistency with
12029 `fancy-splash-text'. Update copyright year.
12030
12031 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
12032 valid binding for `help-char'.
12033
12034 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
12035
12036 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
12037
12038 * term.el (term-mode): Disable cua-mode for term buffers.
12039
12040 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
12041
12042 * add-log.el (add-log-mailing-address, change-log-merge):
12043 Doc fixes.
12044 (change-log-get-method-definition): Fix typo in docstring.
12045
12046 2005-07-14 Kim F. Storm <storm@cua.dk>
12047
12048 * emulation/cua-base.el:
12049 (cua--pre-command-handler-1, cua--pre-command-handler)
12050 (cua--post-command-handler-1, cua--post-command-handler):
12051 Split in two. Check (buffer local) value of cua-mode.
12052 (cua-selection-mode): New command.
12053
12054 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
12055
12056 * custom.el (custom-initialize-safe-set)
12057 (custom-initialize-safe-default): Doc fixes.
12058
12059 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
12060 and simplify :init-value again.
12061
12062 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
12063 and simplify :init-value again. Delete autoload.
12064
12065 * startup.el (command-line): Use `custom-reevaluate-setting' again
12066 for tooltip-mode.
12067
12068 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
12069 a defcustom with two :initialize keywords.
12070
12071 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
12072
12073 * allout.el (my-mark-marker, allout-isearch-prior-pos)
12074 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
12075 (allout-post-command-business, allout-flag-region)
12076 (isearch-reenable-font-lock, allout-yank)
12077 (allout-insert-latex-header, allout-insert-latex-trailer)
12078 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
12079 (allout-latex-verb-quote): Fix typos in docstrings.
12080 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
12081 (allout-unprotected, allout-prefix-data):
12082 Improve argument/docstring consistency.
12083 (allout-chart-subtree): Fix argument spec.
12084 (allout-open-topic): Rename `use_sib_bullet' argument to
12085 `use-sib-bullet'. Doc fix.
12086
12087 * whitespace.el (whitespace-check-buffer-leading)
12088 (whitespace-check-buffer-trailing)
12089 (whitespace-check-buffer-indent)
12090 (whitespace-check-buffer-spacetab)
12091 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
12092 (whitespace-check-leading-whitespace)
12093 (whitespace-check-trailing-whitespace)
12094 (whitespace-check-spacetab-whitespace)
12095 (whitespace-check-indent-whitespace)
12096 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
12097 (whitespace-modes): Fix typos in docstrings.
12098 (defgroup, defcustom): Doc fixes.
12099
12100 * winner.el (winner-mode, winner-boring-buffers)
12101 (winner-pending-undo-ring): Doc fixes.
12102 (winner-ring): Remove unneeded `progn'.
12103 (winner-equal): `defsubst' it.
12104 (winner-redo): Fix message.
12105
12106 2005-07-13 Kim F. Storm <storm@cua.dk>
12107
12108 * simple.el (line-move-1): Always use vertical-motion to
12109 do the last (or only) line move to ensure some movement.
12110 Undo 2005-06-23 change--don't check for overlays.
12111
12112 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12113
12114 * term/mac-win.el (ccl-encode-mac-roman-font)
12115 (ccl-encode-mac-centraleurroman-font)
12116 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
12117 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
12118 Change charset-id boundary of dimension to ?\xef.
12119 (mac-char-fontspec-list): New constant.
12120 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
12121 argument. Nil uses itself as family in font-spec. Previous
12122 behavior for nil is now provided by non-nil non-string argument.
12123 All callers changed. Add font-specs for Mac fonts to
12124 "fontset-default" unless iso8859-1 fonts are installed.
12125
12126 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
12127
12128 * progmodes/sh-script.el (sh-get-indent-info): Only indent
12129 a continuation line if the \ is preceded by SPC or TAB.
12130 (sh-get-indent-info): Simplify.
12131 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
12132 Use with-current-buffer.
12133
12134 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
12135 when the matched text is empty.
12136
12137 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
12138
12139 * startup.el (command-line): Revert to previous handling of
12140 tooltip-mode. Explain in comment why the complexity is needed.
12141
12142 * tooltip.el (tooltip-mode): Revert to previous implementation of
12143 its defcustom.
12144
12145 * frame.el (blink-cursor-mode): Revert to previous implementation
12146 of its defcustom. Update comment.
12147
12148 2005-07-12 Lars Hansen <larsh@soem.dk>
12149
12150 * desktop.el: Update e-mail address.
12151
12152 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12153
12154 * term/mac-win.el (mac-services-mail-selection)
12155 (mac-services-mail-to): New functions.
12156 (mac-application-menu-map): Bind them.
12157
12158 2005-07-12 wulei <milton@wulei.net> (tiny change)
12159
12160 * progmodes/gdb-ui.el: Add note about buffering with Windows.
12161
12162 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
12163
12164 * custom.el (custom-reevaluate-setting): Doc fix.
12165
12166 2005-07-11 Jay Belanger <belanger@truman.edu>
12167
12168 * calc/calc.el (calc-embedded-announce-formula-alist)
12169 (calc-embedded-open-close-plain-alist)
12170 (calc-embedded-open-close-mode-alist): Add checks for additional
12171 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
12172
12173 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
12174
12175 * custom.el (custom-enable-theme): Don't add theme to
12176 `custom-enabled-themes' with `push' because there is no
12177 setf-method for `delq'.
12178
12179 2005-07-11 Richard M. Stallman <rms@gnu.org>
12180
12181 * custom.el (custom-declare-variable): Doc fix.
12182
12183 * dired-aux.el (dired-compare-directories): Remove "." and ".."
12184 from the alists.
12185
12186 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
12187 Do nothing if edebug-active.
12188
12189 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
12190 (edebug-display): Do it here instead.
12191
12192 2005-07-10 Richard M. Stallman <rms@gnu.org>
12193
12194 * cus-face.el (custom-theme-set-faces): Make it work.
12195 (custom-reset-faces): Doc fix.
12196 (custom-theme-reset-internal-face, custom-theme-face-value):
12197 Functions deleted.
12198
12199 * custom.el (custom-push-theme): Maintain list of the settings
12200 of a given theme in its theme-settings property.
12201 Maintain position of old settings in the theme-value
12202 or theme-face property.
12203 (custom-enabled-themes): New variable.
12204 (custom-theme-enabled-p): New function.
12205 (provide-theme): Update custom-enabled-themes.
12206 Disable and reenable the `user' theme.
12207 (require-theme): Doc fix.
12208 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
12209 (custom-theme-value, custom-theme-variable-value): Likewise.
12210 (custom-theme-reset-internal): Likewise.
12211 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
12212 (custom-enable-theme, custom-disable-theme): New functions.
12213 (custom-variable-theme-value, custom-face-theme-value): Likewise.
12214 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
12215 (custom-theme-reset-variables): Simplify.
12216 (deftheme, custom-declare-theme, custom-make-theme-feature):
12217 Definitions moved.
12218
12219 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
12220
12221 * longlines.el (longlines-show-region)
12222 (longlines-unshow-hard-newlines): Recognize hard newlines by
12223 non-nil hard property, instead of t.
12224
12225 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
12226
12227 * viper-cmd.el (viper--key-maps): New variable.
12228 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
12229 emulation-mode-map-alists.
12230 (viper-envelop-ESC-key): Use viper-subseq.
12231 (viper-search-forward/backward/next): Disable debug-on-error.
12232
12233 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
12234 (viper-ESC-key): New defcustoms.
12235
12236 * viper-macs.el (ex-map-read-args): Use viper-subseq.
12237
12238 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
12239 (viper-subseq): Copy of subseq from cl.el.
12240
12241 * viper.el (viper-go-away, viper-set-hooks): Use
12242 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
12243
12244 * viper-mous.el (viper-current-frame-saved): Use defvar.
12245
12246 * viper-init.el: Get rid of -face in face names.
12247
12248 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
12249 Make it work with longlines mode
12250
12251 * ediff-mult.el (ediff-meta-mode-hook): New variable.
12252
12253 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
12254
12255 * ediff-init.el: Get rid of -face in face names.
12256
12257 2005-07-10 Richard M. Stallman <rms@gnu.org>
12258
12259 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
12260 and with-timeout-unsuspend.
12261
12262 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
12263 and with-timeout-unsuspend.
12264
12265 * emacs-lisp/timer.el (with-timeout-timers): New variable.
12266 (with-timeout): Bind that variable to record timers.
12267 (with-timeout-suspend, with-timeout-unsuspend): New functions.
12268
12269 * emacs-lisp/debug.el (debug-help-follow): New function.
12270 (debugger-mode-map): Use that instead of help-follow.
12271 (debugger-setup-buffer): Use eval-buffer-list
12272 to handle eval-buffer frames.
12273
12274 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
12275
12276 * timezone.el (timezone-parse-date): Change first regexp
12277 so it will not mistakenly match dates with no time zone.
12278
12279 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
12280
12281 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
12282
12283 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
12284
12285 * custom.el (custom-initialize-safe-set)
12286 (custom-initialize-safe-default): New functions.
12287
12288 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
12289 and simplify :init-value.
12290
12291 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
12292 and simplify :init-value. Delete obsolete comment.
12293
12294 * startup.el (command-line): Use `custom-reevaluate-setting' to
12295 handle `tooltip-mode'. Delete obsolete comment.
12296
12297 * files.el (set-visited-file-name): Avoid calling
12298 `file-name-nondirectory' with a nil argument.
12299
12300 2005-07-09 Richard M. Stallman <rms@gnu.org>
12301
12302 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
12303 was called with nil for the buffer, handle the read position right.
12304 Handle read position for eval-region, too.
12305
12306 2005-07-09 Juri Linkov <juri@jurta.org>
12307
12308 * fringe.el (fringe-mode): Add period in docstring.
12309 (fringe-query-style): Build prompt depending on `all-frames' arg.
12310
12311 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
12312 to not create links to unrelated functions in the Help buffer.
12313
12314 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
12315 Doc fix.
12316
12317 * simple.el (next-error-hook): New variable.
12318 (next-error): Use it. Doc fix.
12319
12320 * textmodes/ispell.el (ispell-command-loop): Add current
12321 dictionary name and program name to mode-line-format.
12322 (ispell-region, ispell-process-line): Add current dictionary name
12323 and program name to messages.
12324
12325 2005-07-08 Jay Belanger <belanger@truman.edu>
12326
12327 * calc/calc.el (calc-embedded-announce-formula-alist)
12328 (calc-embedded-open-close-formula-alist)
12329 (calc-embedded-open-close-word-alist)
12330 (calc-embedded-open-close-plain-alist)
12331 (calc-embedded-open-close-new-formula-alist)
12332 (calc-embedded-open-close-mode-alist)
12333 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
12334 (calc-embedded-mode-hook): New variables.
12335
12336 * calc/calc-embed.el (calc-embedded-firsttime)
12337 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
12338 New variables.
12339 (calc-do-embedded): Use calc-embedded-firsttime,
12340 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
12341 determine whether or not to run hooks.
12342 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
12343 calc-embedded-firsttime-formula appropriately.
12344 Set calc-embedded delimiter variables according to mode.
12345
12346 2005-07-08 Richard M. Stallman <rms@gnu.org>
12347
12348 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
12349 Check for "emacs", etc., as entire symbol, not just as word.
12350 (checkdoc-file-comments-engine): Use regexp-quote on FN.
12351
12352 * files.el (set-visited-file-name): Report the error
12353 for "empty filename" earlier.
12354 (kill-some-buffers): Ignore buffers already dead.
12355
12356 * fringe.el (fringe-mode): Doc fix.
12357
12358 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
12359 Check for (featurep 'xemacs) and turn off warnings in what it guards.
12360 Use unwind-protect to ensure byte-compile-unresolved-functions
12361 is updated.
12362
12363 * whitespace.el (whitespace-buffer-leading-cleanup):
12364 Simplify w/ skip-chars-forward.
12365 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
12366
12367 * mail/rmail.el (rmail-only-expunge): Fix paren error.
12368 Unconditionally try to leave point at the same old place.
12369
12370 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
12371
12372 * comint.el (comint-postoutput-scroll-to-bottom)
12373 (comint-show-maximum-output): Take scroll-margin into consideration.
12374
12375 2005-07-08 Kim F. Storm <storm@cua.dk>
12376
12377 * ido.el (ido-use-filename-at-point): New choice `guess'.
12378 (ido-file-internal): Try ffap-guesser if selected.
12379
12380 * ido.el (ido-before-fallback-functions): New hook.
12381 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
12382 (ido-read-file-name): Run it.
12383
12384 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
12385
12386 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
12387 strings rather than a list of symbols to the completion function.
12388
12389 2005-07-07 Jay Belanger <belanger@truman.edu>
12390
12391 * calc/calc-units.el (math-apply-units): Change the places in
12392 which units are simplified.
12393
12394 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
12395
12396 * cus-edit.el (customize-option, customize-option-other-window):
12397 Make them handle aliases.
12398
12399 * custom.el (custom-variable-p): Make it recursively follow
12400 aliases. Mention that in the docstring.
12401
12402 2005-07-07 Richard M. Stallman <rms@gnu.org>
12403
12404 * cus-start.el (exec-path): Use `directory' instead of `file'.
12405 Fix tag for nil.
12406
12407 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
12408
12409 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
12410 when called non-interactively. Doc fix.
12411
12412 2005-07-07 Lute Kamstra <lute@gnu.org>
12413
12414 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
12415 new address as well.
12416
12417 2005-07-07 Kenichi Handa <handa@m17n.org>
12418
12419 * international/mule.el (make-coding-system):
12420 Describe `ascii-incompatible' property in the docstring.
12421 (set-file-name-coding-system): Signal an error if coding-system is
12422 ascii-incompatible.
12423 (set-keyboard-coding-system): Likewise.
12424
12425 * international/mule-cmds.el (set-default-coding-systems):
12426 Don't set default-file-name-coding-system and
12427 default-keyboard-coding-system if coding-system is ASCII-incompatible.
12428
12429 * international/utf-16.el: Declare that all UTF-16-based coding
12430 systems are ASCII-incompatible.
12431
12432 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
12433
12434 * progmodes/gud.el: Require font-lock for displaying errors.
12435 Used by gdb-ui.el.
12436
12437 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
12438
12439 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
12440 values for the pattern lists which are `read'able but not
12441 `append'able (like symbols).
12442
12443 2005-07-06 Richard M. Stallman <rms@gnu.org>
12444
12445 * progmodes/flymake.el (flymake-float-time): Instead of
12446 with-no-warnings, test for xemacs.
12447 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
12448 to avoid warning.
12449
12450 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
12451
12452 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
12453
12454 2005-07-05 Lute Kamstra <lute@gnu.org>
12455
12456 * battery.el: Add support for Darwin (with much debugging help
12457 from Samuel Lauber <sam124@operamail.com>).
12458 (battery-status-function, battery-echo-area-format)
12459 (battery-mode-line-format): Add support for pmset on Darwin.
12460 (battery-load-low, battery-load-critical): New user options.
12461 (battery-pmset): New function.
12462
12463 2005-07-05 Lute Kamstra <lute@gnu.org>
12464
12465 Update FSF's address in GPL notices.
12466
12467 * textmodes/page-ext.el: Update FSF's address.
12468
12469 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
12470
12471 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
12472 filling from using prefix when filling a single-line docstring.
12473
12474 * progmodes/flymake.el: Remove useless eval-when-compile.
12475
12476 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
12477
12478 2005-07-04 Richard M. Stallman <rms@gnu.org>
12479
12480 * textmodes/org.el (org-file-apps-defaults-gnu):
12481 Rename from org-file-apps-defaults-linux.
12482 (org-default-apps): Don't test system-type for `linux'.
12483 (org-file-apps): Doc fix.
12484
12485 2005-07-04 David Ponce <david@dponce.com>
12486
12487 * tree-widget.el: Improve header Commentary section.
12488 (tree-widget) [defgroup]
12489 (tree-widget-image-enable, tree-widget-themes-directory)
12490 (tree-widget-theme, tree-widget-image-properties-emacs)
12491 (tree-widget-image-properties-xemacs, tree-widget-create-image)
12492 (tree-widget-image-formats, tree-widget-control)
12493 (tree-widget-empty-control, tree-widget-leaf-control
12494 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
12495 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
12496 (tree-widget-keep, tree-widget-after-toggle-functions)
12497 (tree-widget-open-node, tree-widget-close-node): Doc fix.
12498 (tree-widget-open-control, tree-widget-close-control): Fix doc and
12499 :help-echo message.
12500 (tree-widget-set-theme): Doc fix. Use `string-equal'.
12501 (tree-widget-image-properties): Doc fix. Clearer implementation.
12502 (tree-widget--cursors): New constant.
12503 (tree-widget-lookup-image): New function split from
12504 `tree-widget-find-image'. Clearer implementation.
12505 (tree-widget-find-image): Use it.
12506 (tree-widget-button-keymap): Use `set-keymap-parent'.
12507 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
12508 Define the sub-widgets here.
12509 (tree-widget-node): Check that :node is not a tree-widget.
12510 (tree-widget-get-super, tree-widget-open-control)
12511 (tree-widget-close-control, tree-widget-empty-control)
12512 (tree-widget-leaf-control, tree-widget-guide)
12513 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
12514 (tree-widget-no-handle, tree-widget-value-delete)
12515 (tree-widget-map): Remove.
12516 (tree-widget-children-value-save): Doc fix. Simplified.
12517 (tree-widget-value-create): Update according to previous changes.
12518
12519 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
12520
12521 * textmodes/org.el: Leading space replaced by TABS.
12522 (org-recalc-marks, org-table-rotate-recalc-marks)
12523 (org-table-get-specials): Treat "^" and "_" marks.
12524 (org-table-justify-field-maybe): Optional argument NEW.
12525 (org-table-eval-formula): Parsing of the format simplified.
12526 New modes C,I. Honor the %= parameter in the current table.
12527 Avoid unnecessary re-align by using the NEW argument to
12528 `org-table-justify-field-maybe'.
12529 (org-calc-default-modes): Default for date-format mimicks org-mode.
12530 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
12531
12532 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
12533
12534 * cus-face.el (custom-theme-set-faces): Make it handle face
12535 aliases whose alias declarations are pre- or autoloaded.
12536
12537 2005-07-04 Juri Linkov <juri@jurta.org>
12538
12539 * faces.el (read-face-name): Put the code for getting a face name
12540 from the buffer before adding the faces from the `face' property.
12541 Use `completing-read-multiple' instead of `completing-read'.
12542 Require `crm'. Add default value and post-process the returned
12543 list of faces.
12544
12545 * emacs-lisp/crm.el (crm-find-current-element)
12546 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
12547
12548 * emacs-lisp/lisp-mode.el (eval-defun-1):
12549 * emacs-lisp/edebug.el (edebug-eval-defun):
12550 Remove unnecessary quotes.
12551
12552 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
12553
12554 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
12555 (prolog-indent-level): Fix typo in docstring.
12556
12557 * info.el (Info-history, Info-history-forward)
12558 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
12559
12560 * add-log.el (add-change-log-entry):
12561 * comint.el (comint-dynamic-list-input-ring)
12562 (comint-dynamic-list-completions):
12563 * dabbrev.el (dabbrev-expand):
12564 * delim-col.el (delimit-columns-rectangle-line):
12565 * diff-mode.el (diff-context->unified, diff-reverse-direction)
12566 (diff-unified->context):
12567 * ediff-init.el (ediff-abbrev-jobname):
12568 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
12569 (ediff-replace-session-activity-marker-in-meta-buffer):
12570 * info.el (Info-summary):
12571 * lpr.el (printify-region):
12572 * printing.el (pr-create-interface):
12573 * ps-print.el (ps-print-quote):
12574 * ses.el (ses-column-widths, ses-print-cell)
12575 (ses-adjust-print-width, ses-center):
12576 * shell.el (shell-file-name-quote-list):
12577 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
12578 (strokes-fill-current-buffer-with-whitespace)
12579 (strokes-xpm-for-stroke, strokes-list-strokes)
12580 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
12581 * term.el (term-dynamic-list-input-ring)
12582 (term-dynamic-list-completions):
12583 * calc/calc.el (math-format-stack-value):
12584 * emacs-lisp/edebug.el (edebug-display-freq-count):
12585 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
12586 (delphi-new-comment-line):
12587 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
12588 * progmodes/executable.el (executable-set-magic):
12589 * progmodes/python.el (inferior-python-mode):
12590 * progmodes/scheme.el (scheme-mode-syntax-table):
12591 * progmodes/sh-script.el (sh-maybe-here-document):
12592 * progmodes/sql.el (sql-copy-column):
12593 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
12594 * textmodes/bibtex.el (bibtex-mode):
12595 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
12596 (sgml-auto-attributes):
12597 * textmodes/table.el (table-insert, table-shorten-cell)
12598 (table--generate-source-scan-lines, table-delete-row)
12599 (*table--cell-delete-char, table--spacify-frame)
12600 (table--horizontally-shift-above-and-below)
12601 (table--cell-insert-char, table--cell-blank-str)
12602 (table--fill-region-strictly):
12603 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
12604 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
12605
12606 * add-log.el (change-log):
12607 * apropos.el (apropos):
12608 * comint.el (comint-completion, comint-source):
12609 * dabbrev.el (dabbrev):
12610 * delim-col.el (columns):
12611 * diff-mode.el (diff-mode):
12612 * ediff.el (ediff):
12613 * ediff-diff.el (ediff-diff):
12614 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
12615 * ediff-mult.el (ediff-mult):
12616 * ediff-ptch.el (ediff-ptch):
12617 * ediff-wind.el (ediff-window):
12618 * facemenu.el (facemenu):
12619 * indent.el (indent):
12620 * info.el (info):
12621 * jka-cmpr-hook.el (compression, jka-compr):
12622 * lpr.el (lpr):
12623 * outline.el (outlines):
12624 * pcmpl-cvs.el (pcmpl-cvs):
12625 * pcmpl-rpm.el (pcmpl-rpm):
12626 * printing.el (printing):
12627 * ps-print.el (postscript, ps-print, ps-print-horizontal)
12628 (ps-print-vertical, ps-print-headers, ps-print-font)
12629 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
12630 (ps-print-background, ps-print-printer, ps-print-page)
12631 (ps-print-miscellany):
12632 * ses.el (ses):
12633 * shell.el (shell, shell-directories, shell-faces):
12634 * startup.el (initialization):
12635 * strokes.el (strokes):
12636 * term.el (term):
12637 * uniquify.el (uniquify):
12638 * w32-vars.el (w32):
12639 * calc/calc.el (calc):
12640 * emacs-lisp/bytecomp.el (bytecomp):
12641 * emacs-lisp/cl-indent.el (lisp-indent):
12642 * emacs-lisp/edebug.el (edebug):
12643 * emacs-lisp/elp.el (elp):
12644 * emacs-lisp/testcover.el (testcover):
12645 * emacs-lisp/trace.el (trace):
12646 * emulation/viper-ex.el (viper-ex):
12647 * emulation/viper-mous.el (viper-mouse):
12648 * mail/mailalias.el (mailalias):
12649 * mail/supercite.el (supercite, supercite-frames)
12650 (supercite-attr, supercite-cite, supercite-hooks):
12651 * net/rcompile.el (remote-compile):
12652 * net/rlogin.el (rlogin):
12653 * obsolete/ooutline.el (outlines):
12654 * progmodes/delphi.el (delphi):
12655 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
12656 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
12657 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
12658 (ebnf-optimization):
12659 * progmodes/etags.el (etags):
12660 * progmodes/executable.el (executable):
12661 * progmodes/idlwave.el (idlwave):
12662 * progmodes/pascal.el (pascal):
12663 * progmodes/prolog.el (prolog):
12664 * progmodes/python.el (python):
12665 * progmodes/scheme.el (scheme):
12666 * progmodes/sh-script.el (sh, sh-script):
12667 * progmodes/sql.el (SQL):
12668 * progmodes/tcl.el (tcl):
12669 * textmodes/bibtex.el (bibtex, bibtex-autokey):
12670 * textmodes/enriched.el (enriched):
12671 * textmodes/makeinfo.el (makeinfo):
12672 * textmodes/sgml-mode.el (sgml):
12673 * textmodes/table.el (table-hooks):
12674 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
12675 * textmodes/texinfo.el (texinfo):
12676 * textmodes/two-column.el (two-column):
12677 Finish `defgroup' description with period.
12678
12679 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
12680 * eshell/esh-var.el (eshell-var):
12681 * progmodes/vhdl-mode.el (vhdl-testbench):
12682 * textmodes/org.el (org): Fix typos in docstrings.
12683
12684 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
12685 consistency.
12686
12687 * progmodes/flymake.el (flymake-find-file): Remove.
12688 (flymake-float-time): Use `with-no-warnings'.
12689 (flymake-check-start-time, flymake-check-was-interrupted)
12690 (flymake-err-info, flymake-is-running, flymake-last-change-time)
12691 (flymake-new-err-info): `defvar' at compile time.
12692
12693 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
12694
12695 * replace.el (occur-hook): Doc fix.
12696 (occur-1): Don't call `occur-hook' if there are no matches.
12697
12698 2005-07-03 Richard M. Stallman <rms@gnu.org>
12699
12700 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
12701 global-map, save the same map.
12702 (global-map): Don't alter it at top level.
12703 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
12704 Then alter it here instead.
12705 (tpu-edt-off): Set global-map to the saved one.
12706
12707 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
12708 All references simplified.
12709 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
12710 (zmacs-regions): Add defvar.
12711 (repeat-complex-command-map): Everything about that deleted.
12712
12713 * textmodes/artist.el (artist-key-is-drawing)
12714 (artist-key-endpoint1, artist-key-poly-point-list)
12715 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
12716 (artist-key-compl-table, artist-rb-save-data)
12717 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
12718 Don't put them in eval-when-compile.
12719 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
12720
12721 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
12722 Use with-no-warnings.
12723
12724 * net/browse-url.el (dos-windows-version): Add defvar.
12725
12726 * mail/supercite.el (filladapt-prefix-table): Add defvar.
12727
12728 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
12729 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
12730 (rmail-new-summary-line-count): Rename from new-summary-line-count.
12731 Add defvar.
12732 (rmail-summary-beginning-of-message): Use with-no-warnings.
12733 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
12734
12735 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
12736 Use with-no-warnings.
12737
12738 * emulation/vi.el (vi-mark-region): Use c-mark-function.
12739 (c-mark-function): Add point-moving-unit property.
12740 (vi-goto-line): Use with-no-warnings.
12741
12742 * emulation/edt.el (edt-last-copied-word): Add defvar.
12743 (zmacs-region-stays): Likewise.
12744 (edt-mark-section-wisely): Use c-mark-function for C.
12745 Use makr-defun for Fortran.
12746 (time-string): defvar deleted.
12747 (edt-display-the-time): Don't set time-string.
12748
12749 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
12750
12751 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
12752 Don't warn when name is not constant
12753 or for defining the group `emacs'.
12754
12755 * tooltip.el (gud-tooltip-mode): Add defvar.
12756
12757 * startup.el (default-frame-background-mode): Add defvar.
12758
12759 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
12760
12761 * info.el (tool-bar-map): Add defvar.
12762
12763 * dired.el (dnd-protocol-alist): Add defvar.
12764
12765 * dired-aux.el (dired-query): Display question with answer, when
12766 the user answers.
12767
12768 * custom.el (custom-add-option): Doc fix.
12769
12770 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
12771
12772 2005-07-03 Eli Zaretskii <eliz@gnu.org>
12773
12774 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
12775 bogus name from the last change.
12776
12777 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
12778
12779 * custom.el (custom-declare-variable): Fix typos in comment.
12780 (custom-known-themes): Doc fix.
12781 (custom-theme-directory): New defcustom.
12782 (require-theme): Make it check `custom-theme-directory'.
12783
12784 * cus-theme.el (custom-new-theme-mode): New function.
12785 (custom-theme-name, custom-theme-variables, custom-theme-faces)
12786 (custom-theme-description): Add compiler defvars.
12787 (customize-create-theme): Add doc to the "*New Custom Theme*"
12788 buffer. Use `custom-new-theme-mode'.
12789 (custom-theme-write): Put the created buffer in emacs-lisp-mode
12790 and save it to the `custom-theme-directory'. Make this the
12791 default directory of the buffer.
12792
12793 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
12794
12795 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
12796 Fix unbalanced parentheses.
12797
12798 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
12799
12800 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
12801 into flymake-mode and delegate to flymake-mode.
12802
12803 * find-file.el (ff-which-function-are-we-in): Clean up.
12804
12805 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
12806
12807 * replace.el (occur-rename-buffer): Fix docstring.
12808
12809 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
12810 (edt-last-copied-word, edt-learn-macro-count)
12811 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
12812 (edt-rect-start-point, edt-user-global-map, rect-start-point)
12813 (time-string, zmacs-region-stays):
12814 * emulation/edt-mapper.el (edt-save-function-key-map)
12815 (EDT-key-name): `defvar' to silence the byte-compiler.
12816
12817 2005-07-02 Martin Rudalics <rudalics@gmx.at> (tiny change)
12818
12819 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
12820 font-lock-regexp-backslash. Doc fix.
12821 (font-lock-regexp-backslash-grouping-construct): Rename from
12822 font-lock-regexp-backslash-construct. Doc fix.
12823 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
12824 grouping constructs.
12825
12826 2005-07-02 Eli Zaretskii <eliz@gnu.org>
12827
12828 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
12829 updating all the prerequisites.
12830
12831 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
12832
12833 * textmodes/org.el (org-agenda-start-on-weekday)
12834 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
12835 (org-agenda-use-time-grid, org-archive-location)
12836 (org-allow-space-in-links, org-usenet-links-prefer-google)
12837 (org-enable-table-editor, org-export-default-language)
12838 (org-export-html-show-new-buffer, org-fill-paragraph)
12839 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
12840 (org-goto-quit, org-occur, org-eval-in-calendar)
12841 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
12842 (org-agenda-diary-entry, org-remember-help)
12843 (org-table-convert-region, org-at-table-p)
12844 (org-table-move-row-down, org-table-move-row-up)
12845 (org-table-copy-region, org-table-toggle-vline-visibility)
12846 (org-table-get-stored-formulas, org-table-get-specials)
12847 (org-recalc-commands, org-table-eval-formula)
12848 (org-table-formula-substitute-names, orgtbl-make-binding)
12849 (org-format-org-table-html, org-format-table-table-html)
12850 (org-format-table-table-html-using-table-generate-source)
12851 (org-customize): Fix typos in docstrings.
12852 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
12853 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
12854 (org-back-to-heading): Doc fixes.
12855 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
12856 (org-agenda-change-all-lines, org-get-header):
12857 Improve argument/docstring consistency.
12858 (orgtbl-error): Fix error message.
12859
12860 * progmodes/flymake.el (flymake-find-possible-master-files)
12861 (flymake-master-file-compare, flymake-get-line-err-count)
12862 (flymake-highlight-line, flymake-gui-warnings-enabled):
12863 Fix typos in docstrings.
12864 (flymake-parse-line, flymake-get-project-include-dirs-function)
12865 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
12866 Doc fixes.
12867 (flymake-get-project-include-dirs-function)
12868 (flymake-make-err-menu-data):
12869 Improve argument/docstring consistency.
12870
12871 2005-07-01 Lute Kamstra <lute@gnu.org>
12872
12873 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
12874 Catch errors with ignore-errors. Use temporary buffer.
12875 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
12876
12877 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
12878 background color faces.
12879 (facemenu-set-foreground, facemenu-set-background):
12880 Use facemenu-set-face-from-menu.
12881 (facemenu-set-face-from-menu): Treat face names that start with
12882 "fg:" or "bg:" as special.
12883 (facemenu-add-new-color): Don't create faces. Simplify.
12884
12885 2005-06-30 Richard M. Stallman <rms@gnu.org>
12886
12887 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
12888 (crm-find-current-element): Likewise.
12889
12890 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
12891
12892 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
12893
12894 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
12895
12896 * arc-mode.el (archive-extract): Make it work as a mouse binding.
12897 (archive-mouse-extract): Make it an obsolete alias.
12898 (archive-mode-map): Don't use archive-mouse-extract any more.
12899 (archive-mode, archive-extract): write-contents-hooks ->
12900 write-contents-functions.
12901 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
12902 first arg.
12903 (archive-rename-entry): Update the call.
12904 (archive-zip-summarize): Remove unused var `method'.
12905 (archive-lzh-summarize): Remove unused var `creator'.
12906
12907 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
12908 dedicated frame upon exit.
12909
12910 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
12911 (archive-zip-extract, archive-zip-expunge)
12912 (archive-zip-update, archive-zip-update-case): Use executable-find.
12913 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
12914 Use restore-buffer-modified-p.
12915 (archive-extract, archive-add-new-member, archive-write-file-member):
12916 Use with-current-buffer.
12917 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
12918
12919 2005-06-30 Andreas Schwab <schwab@suse.de>
12920
12921 * progmodes/gud.el (gud-filter): Remove unneeded progn.
12922
12923 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
12924
12925 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
12926
12927 2005-06-30 Juri Linkov <juri@jurta.org>
12928
12929 * faces.el (vertical-border): Inherit from mode-line-inactive
12930 only on tty.
12931
12932 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
12933
12934 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
12935 example, -NLINES in the `occur' docstring).
12936
12937 * replace.el (occur-1): When no matches are found, do not set the
12938 `buffer-read-only' and modified flags for the occur buffer,
12939 because it is deleted.
12940
12941 * emulation/cua-base.el (cua-check-pending-input)
12942 (cua-repeat-replace-region, cua-mode, cua-debug)
12943 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
12944 Fix typos in docstrings.
12945
12946 * emulation/cua-gmrk.el (cua-toggle-global-mark)
12947 (cua-cut-region-to-global-mark)
12948 (cua--cut-rectangle-to-global-mark):
12949 Remove period from end of messages.
12950
12951 * emulation/cua-rect.el (cua-do-rectangle-padding):
12952 Remove period from end of messages.
12953 (cua--rectangle-seq-format): Fix typo in docstring.
12954 (cua-sequence-rectangle, cua-fill-char-rectangle):
12955 Improve argument/docstring consistency.
12956
12957 2005-06-29 Juri Linkov <juri@jurta.org>
12958
12959 * faces.el (default-frame-background-mode): New internal variable.
12960 (frame-set-background-mode): Use it.
12961
12962 * startup.el (normal-top-level): Set default-frame-background-mode
12963 instead of frame-background-mode. Before setting it, test for its
12964 nil value. Remove tests for frame-background-mode and frame
12965 parameter `reverse'. Add test for "unspecified-fg".
12966
12967 * term/xterm.el (xterm-rxvt-set-background-mode):
12968 * term/rxvt.el (rxvt-set-background-mode):
12969 Set default-frame-background-mode instead of frame-background-mode.
12970
12971 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
12972
12973 * simple.el (set-variable): Warn about obsolete user variables.
12974
12975 * imenu.el (imenu--completion-buffer):
12976 * mouse.el (mouse-buffer-menu-alist):
12977 * msb.el (msb-invisible-buffer-p):
12978 * calendar/diary-lib.el (diary-header-line-format):
12979 * emacs-lisp/pp.el (pp-buffer):
12980 * progmodes/cperl-mode.el (cperl-do-auto-fill):
12981 * textmodes/picture.el (picture-replace-match):
12982 Change space constants followed by a sexp to "?\s ".
12983
12984 * play/decipher.el (decipher-loop-with-breaks):
12985 * textmodes/texinfo.el (texinfo-insert-@item): Change space
12986 constants "protected" from end of line by a comment to "?\s".
12987
12988 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
12989
12990 * font-lock.el (save-buffer-state): Use `declare'.
12991
12992 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
12993 reset the syntax-table to cperl-mode-syntax-table.
12994 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
12995 "foo_print_bar" is not matched as a reserved keyword.
12996
12997 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
12998
12999 * textmodes/org.el (orgtbl-setup): New function, for delayed
13000 setup for the orgtbl commands.
13001 (org-calc-default-modes): New option.
13002 (orgtbl-make-binding): Use `defun' to get better help display.
13003 (org-diary): Call `org-compile-prefix-format'.
13004 (org-table-formula-substitute-names): New function.
13005 (org-agenda-day-view, org-agenda-week-view): New commands.
13006 (org-agenda-toggle-week-view): Command removed.
13007 (org-tbl-menu): Split off from org-org-menu.
13008 (org-mode): Move removal of outline-mode menus to here.
13009 (org-table-formula-debug): New option.
13010 (org-table-insert-row): Keep first field if just "#" or "*".
13011 (org-mode): Paragraph regexps fixed.
13012 (org-table-recalculate-regexp): New constant.
13013 (org-table-justify-field-maybe): Avoid replace if not necessary.
13014 (org-copy-special, org-cut-special): Use `call-interactively'.
13015 (org-table-copy-region): Take region from `interactive' call.
13016 (org-trim): Return string even if no match.
13017 (org-formula): New face.
13018 (org-set-font-lock-defaults): No longer highlight "FIXME".
13019 But highlight formula-related fields in table.
13020 (org-table-p): Use regexp, not fontification.
13021 (org-table-align): Handle white space at end of line.
13022 (org-table-formula-evaluate-inline): New option.
13023 (org-mode): Auto-wrapping in comment lines turned off.
13024 (org-table-copy-down): Evaluate only in copied field, not in
13025 destination.
13026 (org-table-current-formula): Variable removed.
13027 (org-table-store-formulas, org-table-get-stored-formulas)
13028 (org-table-modify-formulas, org-table-replace-in-formulas)
13029 (org-table-maybe-eval-formula): New functions.
13030 (org-table-get-formula): Modify to use stored formulas.
13031 (org-table-insert-column, org-table-delete-column)
13032 (org-table-move-column): Call `org-table-modify-formulas'.
13033 (org-complete): Add completion for keyword formulas.
13034 (orgtbl-mode): Pull orgtbl-mode-map to start of
13035 minor-mode-map-alist.
13036
13037 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
13038
13039 * progmodes/python.el (python-check): Require `compile' before
13040 modifying its variables.
13041
13042 * newcomment.el (comment-indent-default): Don't get fooled by an early
13043 end of buffer.
13044
13045 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13046
13047 * ps-print.el (ps-print-version): Fix version number.
13048
13049 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
13050
13051 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
13052
13053 2005-06-28 Richard M. Stallman <rms@gnu.org>
13054
13055 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
13056 (flyspell-local-mouse-map): Declaration deleted.
13057 (flyspell-mouse-map): Bind only mouse-2.
13058 (flyspell-mode-map): Don't test flyspell-use-local-map.
13059 (flyspell-overlay-keymap-property-name): Var deleted.
13060 (flyspell-mode-on): Don't make local bindings for
13061 flyspell-mouse-map and flyspell-mode-map.
13062 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
13063
13064 * textmodes/ispell.el (ispell-word): Do not ignore short words.
13065
13066 * progmodes/compile.el (compilation-next-error-function):
13067 Don't switch buffers; operate on the current buffer.
13068
13069 * progmodes/compile.el (compilation-error-file-name)
13070 (compilation-warning-file-name, compilation-info-file-name)
13071 (compilation-line-number, compilation-column-number): New faces.
13072 (compilation-error-face, compilation-warning-face)
13073 (compilation-info-face, compilation-line-face)
13074 (compilation-column-face): Use them.
13075
13076 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
13077
13078 * comint.el (comint-password-prompt-regexp): Accept ", try again".
13079
13080 * bindings.el (global-map): Bind insertchar and its variants.
13081
13082 2005-06-27 Richard M. Stallman <rms@gnu.org>
13083
13084 * textmodes/artist.el (artist-text-overwrite)
13085 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
13086
13087 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13088
13089 * ps-print.el: It was not working the page selection for printing.
13090 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
13091 (ps-print-version): New version 6.6.7.
13092 (ps-end-sheet): New fun.
13093 (ps-header-sheet, ps-end-job): Call it.
13094
13095 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
13096
13097 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
13098
13099 2005-06-27 Lute Kamstra <lute@gnu.org>
13100
13101 * facemenu.el (facemenu-unlisted-faces): Add foreground and
13102 background color faces.
13103 (facemenu-get-face): Delete function.
13104 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
13105 (facemenu-add-new-color): Make second argument mandatory.
13106 Create the appropriate face and return it. Simplify.
13107 (facemenu-set-foreground, facemenu-set-background): Don't check if
13108 color is defined. Use return value of facemenu-add-new-color.
13109
13110 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
13111
13112 * progmodes/gud.el (gud-filter): Add missing argument to
13113 with-selected-window.
13114
13115 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
13116
13117 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
13118 a :require to the defcustom.
13119
13120 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
13121 defcustoms corresponding to minor modes.
13122
13123 2005-06-26 David Ponce <david@dponce.com>
13124
13125 * recentf.el: Require tree-widget instead of wid-edit.
13126 (recentf-filename-handler): Fix widget :type.
13127 (recentf-cancel-dialog, recentf-open-more-files)
13128 (recentf-open-files-action): Doc fix.
13129 (recentf-dialog-goto-first): New function.
13130 (recentf-dialog-mode-map): Set parent keymap first.
13131 (recentf-dialog-mode): Define with define-derived-mode.
13132 Don't display continuation lines in dialogs.
13133 (recentf-edit-list): Rename from recentf-edit-selected-items.
13134 (recentf-edit-list-select): Rename from recentf-edit-list-action.
13135 Simplify.
13136 (recentf-edit-list-validate): New function.
13137 (recentf-edit-list): Update accordingly.
13138 (recentf-open-files-item-shift): Remove.
13139 (recentf-open-files-item): Convert menu elements into tree and
13140 link widgets. Don't create the widgets.
13141 (recentf-open-files): Update accordingly.
13142 (recentf-save-list): Untabify.
13143
13144 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
13145
13146 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
13147 (keep-lines): Add INTERACTIVE arg. Never delete lines only
13148 partially contained in the active region. Do not take active
13149 region into account when called from Lisp, unless INTERACTIVE arg
13150 is non-nil. Use `forward-line' instead of `beginning-of-line' to
13151 avoid trouble with fields. Make marker point nowhere when no
13152 longer used. Always return nil. Doc fix.
13153 (flush-lines): Add INTERACTIVE arg. Do not take active region
13154 into account when called from Lisp, unless INTERACTIVE arg is
13155 non-nil. Use `forward-line' instead of `beginning-of-line' to
13156 avoid trouble with fields. Make marker point nowhere when no
13157 longer used. Always return nil. Doc fix.
13158 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
13159 interchangeable. Do not take active region into account when
13160 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
13161 message in echo area when called from Lisp, unless INTERACTIVE arg
13162 is non-nil. Avoid saying "1 occurrences". Do not use markers.
13163 Return the number of matches. Doc fix.
13164 (occur): Doc fix.
13165 (perform-replace): Make comment follow double space convention for
13166 the sake of `outline-minor-mode'.
13167
13168 * faces.el (facep): Doc fix.
13169
13170 2005-06-25 Richard M. Stallman <rms@gnu.org>
13171
13172 * facemenu.el (facemenu-enable-faces-p): New function.
13173 (facemenu-background-menu, facemenu-foreground-menu)
13174 (facemenu-face-menu): Add menu-enable property.
13175
13176 * jka-compr.el (jka-compr-insert-file-contents):
13177 Special handling if cannot find the uncompression program.
13178
13179 * cus-face.el (custom-face-attributes): Add autoload.
13180
13181 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13182 Bind comment-indent-function locally.
13183
13184 * window.el (save-selected-window): Use save-current-buffer.
13185
13186 * subr.el (with-selected-window): Use save-current-buffer.
13187
13188 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
13189 and with-current-buffer.
13190
13191 2005-06-24 Richard M. Stallman <rms@gnu.org>
13192
13193 * simple.el (line-move-1): Fix previous change.
13194
13195 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
13196
13197 * replace.el (occur-1): Set `buffer-read-only' and the
13198 buffer-modified flag before running `occur-hook' to protect
13199 against unintentional buffer switches that can lead to data loss.
13200
13201 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
13202
13203 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
13204 (gud-gdb-marker-filter): Use font-lock-warning-face for any
13205 initial error.
13206
13207 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
13208 after fresh input.
13209 (gdb-var-create-handler): Put name of expression in quotes.
13210
13211 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
13212
13213 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
13214 elements of RING in order, and without bogus nil elements.
13215
13216 2005-06-23 Richard M. Stallman <rms@gnu.org>
13217
13218 * simple.el (set-variable): Args renamed; doc fix.
13219 (line-move-1): When there are overlays around, use vertical-motion.
13220
13221 * faces.el (escape-glyph): Use brown against light background.
13222 (nobreak-space): Rename from no-break-space.
13223 Fix previous change.
13224
13225 * dired-aux.el (dired-do-copy): Fix arg prompt.
13226
13227 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
13228
13229 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
13230
13231 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
13232 rather than "Distributor".
13233
13234 2005-06-23 Lute Kamstra <lute@gnu.org>
13235
13236 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
13237 (debug-on-entry): Use it. New interactive declaration that uses
13238 function-called-at-point.
13239
13240 2005-06-23 Kim F. Storm <storm@cua.dk>
13241
13242 * subr.el (save-match-data): Add comment about using evaporate arg
13243 to set-match-data.
13244
13245 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
13246
13247 * cus-edit.el (customize-face)
13248 (customize-face-other-window): Handle face aliases.
13249
13250 * faces.el (face-documentation, set-face-attribute)
13251 (face-spec-set): Handle face aliases.
13252
13253 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
13254
13255 * help-mode.el (help-make-xrefs): If a symbol representing a face
13256 name is not followed by the word "face", it could still be a
13257 function or variable name, so don't bypass other checks.
13258
13259 2005-06-22 Juri Linkov <juri@jurta.org>
13260
13261 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
13262 Replace aliased functions with calls where second arg `inherit' is t.
13263
13264 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
13265
13266 * progmodes/gdb-ui.el (gdb-error): New variable.
13267 (gdb-error): New function.
13268 (gdb-annotation-rules): Act on error-begin and error annotations.
13269 (gdb-concat-output): Use font-lock-warning-face for errors.
13270
13271 2005-06-22 Miles Bader <miles@gnu.org>
13272
13273 * bindings.el (propertized-buffer-identification): Use renamed
13274 `Buffer-menu-buffer' face.
13275
13276 * faces.el (vertical-border): Rename from `vertical-divider'.
13277 (escape-glyph): Change dark-background color back to `cyan'.
13278
13279 2005-06-21 Juri Linkov <juri@jurta.org>
13280
13281 * faces.el (face-user-default-spec): Try getting `customized-face'
13282 prior to `saved-face'.
13283 (frame-background-mode): Refill docstring.
13284
13285 * emacs-lisp/lisp-mode.el (eval-defun-1):
13286 * emacs-lisp/edebug.el (edebug-eval-defun):
13287 Set `saved-face' temporarily to nil before calling form.
13288 Set `customized-face' to the new spec after that.
13289
13290 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
13291
13292 * subr.el (1value, lambda, key-substitution-in-progress):
13293 Doc fixes.
13294
13295 * autoinsert.el (auto-insert-alist):
13296 * ses.el (ses-call-printer):
13297 * subr.el (noreturn):
13298 * emacs-lisp/lisp.el (check-parens):
13299 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
13300 * net/browse-url.el (browse-url-mosaic):
13301 * progmodes/cc-defs.el (c-safe-scan-lists):
13302 * progmodes/ebnf-abn.el (ebnf-abn-lex):
13303 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
13304 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
13305 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
13306 * progmodes/ebnf-iso.el (ebnf-iso-lex):
13307 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
13308
13309 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
13310
13311 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
13312
13313 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
13314
13315 * calendar/appt.el (appt-make-list): Activate the package, if
13316 not already active (for backwards compatibility).
13317
13318 2005-06-20 Kim F. Storm <storm@cua.dk>
13319
13320 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
13321
13322 2005-06-20 Miles Bader <miles@gnu.org>
13323
13324 * faces.el (vertical-divider): New face.
13325
13326 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
13327
13328 * simple.el (kill-whole-line): Doc fix.
13329 (next-error-buffer-p, next-error-find-buffer)
13330 (clone-indirect-buffer): Fix typos in docstrings.
13331 (comment-line-break-function): Doc fix: don't say variable
13332 is automatically buffer-local (it isn't).
13333
13334 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
13335
13336 * net/tramp-ftp.el (top):
13337 * net/tramp-smb.el (top):
13338 * net/tramp-util.el (top):
13339 * net/tramp-uu.el (top):
13340 * net/tramp-vc.el (top):
13341 * net/tramp.el (top): Revert copyright years back to original
13342 ones. Tramp has a life outside GNU Emacs.
13343
13344 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
13345
13346 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
13347
13348 2005-06-18 Juri Linkov <juri@jurta.org>
13349
13350 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
13351 end of first regexp to limit the match to the position between
13352 line number and source line with same separator character as used
13353 between file name and line number. In the second regexp limit
13354 mouse-face area to file name and line number by adding new group
13355 for them and referring it in HYPERLINK arg.
13356 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
13357 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
13358 previous line where grep markers may be already removed.
13359
13360 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
13361
13362 * progmodes/ps-mode.el: Update version and maintainer's email address.
13363
13364 2005-06-18 Steve Youngs <steve@xemacs.org>
13365
13366 * net/browse-url.el (browse-url-browser-function)
13367 (browse-url-default-browser): Add firefox.
13368 (browse-url-firefox-program, browse-url-firefox-arguments)
13369 (browse-url-firefox-startup-arguments)
13370 (browse-url-firefox-new-window-is-tab): New defcustoms.
13371 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
13372
13373 2005-06-17 Richard M. Stallman <rms@gnu.org>
13374
13375 * startup.el (command-line): Warn if specified user name has
13376 no home directory.
13377
13378 * term.el (term-get-old-input, term-input-filter, term-input-sender)
13379 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
13380
13381 * longlines.el (longlines-mode, longlines-show-hard-newlines):
13382 Doc fixes.
13383
13384 * faces.el (underline): Try bold if terminal doesn't support underline.
13385
13386 * mail/sendmail.el (mail-setup-with-from): New variable.
13387 (mail-insert-from-field): New function.
13388 (sendmail-send-it): Call it.
13389 (mail-setup): Optionally call it here.
13390
13391 * term/linux.el: Call tty-no-underline.
13392
13393 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
13394
13395 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
13396
13397 2005-06-17 Miles Bader <miles@gnu.org>
13398
13399 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
13400 (ediff-current-diff-C, ediff-current-diff-Ancestor)
13401 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
13402 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
13403 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
13404 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
13405 Remove "-face" suffix from face names.
13406 (ediff-current-diff-face-A, ediff-current-diff-face-B)
13407 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
13408 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
13409 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
13410 (ediff-even-diff-face-A, ediff-even-diff-face-B)
13411 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
13412 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
13413 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
13414 New backward-compatibility aliases for renamed faces.
13415 (ediff-current-diff-face-A, ediff-current-diff-face-B)
13416 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
13417 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
13418 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
13419 (ediff-even-diff-face-A, ediff-even-diff-face-B)
13420 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
13421 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
13422 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
13423 Use renamed ediff faces.
13424
13425 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
13426 Remove "-face" suffix from face names.
13427 (eshell-test-ok-face, eshell-test-failed-face):
13428 New backward-compatibility aliases for renamed faces.
13429 (eshell-run-test): Use renamed eshell-test faces.
13430
13431 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
13432 face name.
13433 (eshell-prompt-face): New backward-compatibility alias for renamed
13434 face.
13435 (eshell-emit-prompt): Use renamed eshell-prompt face.
13436
13437 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
13438 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
13439 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
13440 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
13441 Remove "-face" suffix from face names.
13442 (eshell-ls-directory-face, eshell-ls-symlink-face)
13443 (eshell-ls-executable-face, eshell-ls-readonly-face)
13444 (eshell-ls-unreadable-face, eshell-ls-special-face)
13445 (eshell-ls-missing-face, eshell-ls-archive-face)
13446 (eshell-ls-backup-face, eshell-ls-product-face)
13447 (eshell-ls-clutter-face):
13448 New backward-compatibility aliases for renamed faces.
13449 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
13450
13451 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
13452 Remove "-face" suffix from face name.
13453 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
13454 instead of literal face.
13455
13456 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
13457
13458 * emacs-lisp/warnings.el (display-warning, lwarn)
13459 (warning-minimum-log-level): Doc fixes.
13460 (warning-minimum-level, warning-minimum-log-level):
13461 Add :debug to :type choices.
13462
13463 * progmodes/ada-mode.el (ada-format-paramlist)
13464 (ada-get-indent-case, ada-check-matching-start)
13465 (ada-check-defun-name, ada-goto-matching-decl-start)
13466 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
13467 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
13468 (ada-make-subprogram-body): Follow error conventions.
13469 (ada-case-exception-file, ada-indent-comment-as-code)
13470 (ada-indent-handle-comment-special, ada-indent-renames)
13471 (ada-indent-return, ada-search-directories-internal)
13472 (ada-tab-policy, ada-case-exception-substring)
13473 (ada-other-file-alist, ada-matching-start-re)
13474 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
13475 (ada-imenu-generic-expression, ada-compile-goto-error)
13476 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
13477 (ada-popup-menu, ada-add-extensions, ada-mode)
13478 (ada-region-selected, ada-create-case-exception)
13479 (ada-create-case-exception-substring, ada-after-keyword-p)
13480 (ada-activate-keys-for-case, ada-adjust-case-region)
13481 (ada-adjust-case-buffer, ada-format-paramlist)
13482 (ada-scan-paramlist, ada-insert-paramlist)
13483 (ada-indent-newline-indent)
13484 (ada-indent-newline-indent-conditional)
13485 (ada-justified-indent-current, ada-goto-previous-word)
13486 (ada-indent-current, ada-get-indent-open-paren)
13487 (ada-get-indent-paramlist, ada-get-indent-end)
13488 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
13489 (ada-get-indent-block-start, ada-get-indent-subprog)
13490 (ada-get-indent-noindent, ada-get-indent-label)
13491 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
13492 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
13493 (ada-goto-stmt-end, ada-goto-next-word)
13494 (ada-check-matching-start, ada-check-defun-name)
13495 (ada-goto-matching-decl-start, ada-goto-matching-start)
13496 (ada-goto-matching-end, ada-search-ignore-string-comment)
13497 (ada-in-decl-p, ada-looking-at-semi-or)
13498 (ada-looking-at-semi-private, ada-in-paramlist-p)
13499 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
13500 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
13501 (ada-next-procedure, ada-previous-procedure, ada-next-package)
13502 (ada-previous-package, ada-create-menu)
13503 (ada-fill-comment-paragraph-justify)
13504 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
13505 (ada-other-file-name, ada-last-which-function-line)
13506 (ada-last-which-function-subprog, ada-which-function)
13507 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
13508 (ada-gen-treat-proc, ada-check-emacs-version)
13509 (ada-continuation-indent, ada-align-region-separate):
13510 Fix typos in docstrings.
13511 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
13512
13513 2005-06-16 Lute Kamstra <lute@gnu.org>
13514
13515 * simple.el (fundamental-mode): Run after-change-major-mode-hook
13516 conditionally.
13517
13518 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
13519
13520 * comint.el (comint-replace-by-expanded-filename)
13521 (comint-prompt-regexp, comint-delimiter-argument-list)
13522 (comint-preinput-scroll-to-bottom):
13523 * info.el (Info-hide-cookies-node):
13524 * ls-lisp.el (ls-lisp-classify):
13525 * find-file.el (ff-search-directories, ff-special-constructs)
13526 (ff-find-other-file):
13527 * font-lock.el (font-lock-keywords):
13528 * shell.el (shell-prompt-pattern)
13529 (shell-dynamic-complete-functions, shell-mode)
13530 (shell-delimiter-argument-list):
13531 * term.el (term-replace-by-expanded-filename)
13532 (term-prompt-regexp, term-delimiter-argument-list):
13533 * woman.el (woman-ignore, woman0-if):
13534 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
13535 * emacs-lisp/elint.el (elint-init-env):
13536 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
13537 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
13538 * language/ethio-util.el (ethio-tilde-escape)
13539 (ethio-use-three-dot-question):
13540 * net/zone-mode.el (zone-mode-load-time-setup):
13541 * progmodes/cc-align.el (c-lineup-argcont):
13542 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
13543 * progmodes/cperl-mode.el (cperl-set-style-back):
13544 * progmodes/inf-lisp.el (inferior-lisp-prompt):
13545 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
13546 Fix spellings in docstrings.
13547
13548 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
13549 * progmodes/modula2.el (m2-for): Fix spellings.
13550
13551 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
13552
13553 * simple.el (undo-more): Don't use `format' on `error' arguments.
13554 Improve argument/docstring consistency.
13555 (pending-undo-list): Doc fix.
13556
13557 * smerge-mode.el (smerge-ensure-match):
13558 * emulation/vip.el (vip-ex):
13559 * net/zone-mode.el (zone-mode-update-serial):
13560 * progmodes/idlwave.el (idlwave-complete):
13561 * progmodes/vhdl-mode.el (vhdl-visit-file)
13562 (vhdl-compose-wire-components):
13563 Don't use `format' on `error' arguments.
13564
13565 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
13566 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
13567 (tooltip-help-tips): Fix typos in docstrings.
13568
13569 2005-06-16 David Ponce <david@dponce.com>
13570
13571 * tree-widget.el (tree-widget-value-create): Simplify last change.
13572
13573 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
13574
13575 * ido.el (ido-incomplete-regexp): New variable.
13576 (ido-set-matches-1): Handle invalid-regexp error and set
13577 ido-incomplete-regexp.
13578 (ido-incomplete-regexp): New face.
13579 (ido-completions): Use it.
13580 (ido-complete, ido-exit-minibuffer, ido-completions):
13581 Handle incomplete regexps.
13582 (ido-completions): Add check for complete match when entering a regexp.
13583
13584 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13585
13586 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
13587
13588 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
13589
13590 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
13591 by field delimiters.
13592
13593 2005-06-15 David Ponce <david@dponce.com>
13594
13595 * tree-widget.el: eval-and-compile inlined functions so they will
13596 be available at run-time too.
13597 (tree-widget-super-format-handler)
13598 (tree-widget-format-handler): Remove.
13599 (tree-widget-value-create): Handle the :indent property.
13600
13601 2005-06-15 Miles Bader <miles@gnu.org>
13602
13603 * progmodes/which-func.el (which-func): Only inherit
13604 `font-lock-function-name-face' when that makes sense against the
13605 default mode-line face, otherwise set the face color explicitly.
13606
13607 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
13608 faces instead of (non-existent) variables.
13609
13610 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
13611
13612 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
13613 (iswitchb-get-matched-buffers): Likewise. Simplify.
13614
13615 2005-06-14 Miles Bader <miles@gnu.org>
13616
13617 * progmodes/ld-script.el (ld-script-location-counter):
13618 Remove "-face" suffix from face name.
13619 (ld-script-location-counter-face):
13620 New backward-compatibility alias for renamed face.
13621 (ld-script-location-counter-face): Use renamed face.
13622
13623 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
13624 (cperl-hash): Remove "-face" suffix from face names.
13625 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
13626 New backward-compatibility aliases for renamed faces.
13627 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
13628 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
13629
13630 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
13631 name.
13632 (which-func-face): New backward-compatibility alias for renamed face.
13633 (which-func-format): Use renamed which-func face.
13634
13635 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
13636 (vhdl-function, vhdl-directive, vhdl-reserved-word)
13637 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
13638 names.
13639 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
13640 (vhdl-speedbar-configuration, vhdl-speedbar-package)
13641 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
13642 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
13643 (vhdl-speedbar-architecture-selected)
13644 (vhdl-speedbar-configuration-selected)
13645 (vhdl-speedbar-package-selected)
13646 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
13647 names.
13648 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
13649 Use renamed faces.
13650 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
13651 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
13652 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
13653 Use renamed faces.
13654 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
13655 names.
13656 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
13657 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
13658 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
13659 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
13660 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
13661 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
13662
13663 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
13664 face name.
13665 (sh-heredoc-face): New backward-compatibility alias for renamed face.
13666 (sh-heredoc-face): Use renamed sh-heredoc face.
13667
13668 * progmodes/idlw-help.el (idlwave-help-link):
13669 Remove "-face" suffix from face name.
13670 (idlwave-help-link-face):
13671 New backward-compatibility alias for renamed face.
13672 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
13673
13674 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
13675 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
13676 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
13677 New backward-compatibility aliases for renamed faces.
13678 (idlwave-shell-disabled-breakpoint-face)
13679 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
13680
13681 * progmodes/flymake.el (flymake-errline, flymake-warnline):
13682 Remove "-face" suffix from face names.
13683 (flymake-errline-face, flymake-warnline-face):
13684 New backward-compatibility aliases for renamed faces.
13685 (flymake-highlight-line): Use renamed flymake faces.
13686
13687 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
13688 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
13689 (ebrowse-member-class, ebrowse-progress):
13690 Remove "-face" suffix from face names.
13691 (ebrowse-tree-mark-face, ebrowse-root-class-face)
13692 (ebrowse-file-name-face, ebrowse-default-face)
13693 (ebrowse-member-attribute-face, ebrowse-member-class-face)
13694 (ebrowse-progress-face):
13695 New backward-compatibility aliases for renamed faces.
13696 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
13697 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
13698 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
13699 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
13700
13701 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
13702 antlr-syntax)
13703 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
13704 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
13705 names.
13706 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
13707 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
13708 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
13709 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
13710 backward-compatibility aliases for renamed faces.
13711 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
13712 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
13713 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
13714 remove "font-lock-". Use renamed antlr-mode faces.
13715 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
13716 literal face-names with face variable references.
13717
13718 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
13719 face name.
13720 (Buffer-menu-buffer-face): New backward-compatibility alias for
13721 renamed face.
13722 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
13723
13724 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
13725
13726 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
13727 Eliminate "-face" suffix.
13728 (makefile-targets): Inherit from font-lock-function-name-face and
13729 eliminate "-face" suffix.
13730 (makefile-shell): Remove attributes and eliminate "-face" suffix.
13731 (makefile-*-font-lock-keywords): Append makefile-targets in rule
13732 actions, instead of prepending, to make it less visible.
13733 (makefile-previous-dependency, makefile-match-dependency):
13734 Don't match a target on a continuation line.
13735
13736 * files.el (auto-mode-alist): Put Makefile in gmake mode.
13737
13738 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
13739
13740 * progmodes/gdb-ui.el (menu): Re-order menu items.
13741 (gdb-tooltip-print): Respect tooltip-use-echo-area.
13742
13743 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
13744 Define in tooltip.el.
13745 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
13746 (gud-tooltip-tips): Respect tooltip-use-echo-area and
13747 gud-tooltip-echo-area.
13748
13749 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
13750 backward compatibility and make obsolete.
13751 (tooltip-help-tips): Use tooltip-use-echo-area.
13752 (tooltip-show-help-function): Rename to...
13753 (tooltip-show-help): ...this, because it is a function.
13754 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
13755
13756 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
13757
13758 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
13759 (edebug-print-length, edebug-print-level, edebug-print-circle)
13760 (edebug-modify-breakpoint, edebug-eval-last-sexp)
13761 (edebug-eval-print-last-sexp): Doc fixes.
13762
13763 2005-06-14 Kim F. Storm <storm@cua.dk>
13764
13765 * ido.el (ido-mode): Make a new keymap every time we enable ido,
13766 as the coverage buffer/file/both may change.
13767
13768 2005-06-14 Lute Kamstra <lute@gnu.org>
13769
13770 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
13771 and run-mode-hooks. Simplify.
13772
13773 * mail/rmailedit.el (rmail-edit-mode):
13774 * progmodes/octave-inf.el (inferior-octave-mode):
13775 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
13776
13777 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
13778 and run-mode-hooks.
13779 (recentf-edit-list, recentf-open-files): Don't call
13780 kill-all-local-variables directly.
13781
13782 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
13783
13784 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
13785
13786 * emacs-lisp/byte-run.el (make-obsolete)
13787 (define-obsolete-function-alias): Rename arguments FUNCTION and
13788 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
13789 (make-obsolete-variable, define-obsolete-variable-alias):
13790 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
13791 respectively.
13792
13793 * isearchb.el (isearchb-activate):
13794 * pcvs.el (cvs-mode):
13795 * ses.el (ses-load):
13796 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
13797 * net/tramp.el (tramp-find-file-exists-command)
13798 (tramp-find-shell):
13799 * progmodes/ada-mode.el (ada-create-case-exception)
13800 (ada-create-case-exception-substring, ada-make-subprogram-body):
13801 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
13802 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
13803 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
13804 * textmodes/org.el (org-promote, org-evaluate-time-range)
13805 (org-agenda-next-date-line, org-agenda-previous-date-line)
13806 (org-agenda-error, org-open-at-point, org-table-move-row)
13807 (org-format-table-table-html-using-table-generate-source)
13808 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
13809 * textmodes/reftex.el (reftex-access-scan-info):
13810 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
13811 (reftex-toc-promote-prepare): Follow error conventions.
13812
13813 * diff-mode.el (diff-mode): Fix typo in docstring.
13814
13815 * forms.el (forms--intuit-from-file): Fix reference to
13816 `forms-number-of-fields' in error message.
13817 (forms-print): Fix quoting in error message.
13818
13819 * forms.el (forms-mode):
13820 * emulation/vi.el (vi-goto-insert-state):
13821 * progmodes/flymake.el (flymake-new-err-info)
13822 (flymake-start-syntax-check-for-current-buffer)
13823 (flymake-simple-cleanup):
13824 * eshell/esh-var.el (eshell/export):
13825 * progmodes/gud.el (xdb):
13826 * textmodes/flyspell.el (flyspell-incorrect-hook)
13827 (flyspell-maybe-correct-transposition)
13828 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
13829
13830 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
13831
13832 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
13833 minibuffer prompt.
13834
13835 2005-06-13 Kim F. Storm <storm@cua.dk>
13836
13837 * subr.el (add-to-ordered-list): New defun.
13838
13839 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
13840 add cua--keymap-alist to emulation-mode-map-alists.
13841
13842 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
13843
13844 * subr.el (complete-in-turn): New macro.
13845 (dynamic-completion-table, lazy-completion-table): Add debug info.
13846
13847 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
13848 in preference to face aliases.
13849
13850 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
13851 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
13852 Remove unused vars `start' and `firstline'.
13853 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
13854 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
13855
13856 2005-06-13 Eli Zaretskii <eliz@gnu.org>
13857
13858 * cus-start.el (all): Don't complain about missing GTK-related
13859 variables, unless either `gtk' is boundp or this isn't a
13860 `windows-nt' build.
13861
13862 2005-06-13 Lute Kamstra <lute@gnu.org>
13863
13864 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
13865 run-mode-hooks.
13866
13867 * ediff-mult.el (ediff-meta-mode):
13868 * ediff-util.el (ediff-mode): Use run-mode-hooks.
13869
13870 * ledit.el (ledit-mode): Use delay-mode-hooks.
13871
13872 * woman.el (woman-mode-line-format): Delete constant.
13873 (woman-mode-map): Initialize it properly.
13874 (woman-mode): Set mode-class property to special.
13875 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
13876 Set major-mode and mode-name. Don't set mode-line-format directly.
13877 (Man-getpage-in-background): Don't reference woman-mode-line-format.
13878
13879 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
13880 string argument obsolete.
13881
13882 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
13883
13884 * textmodes/org.el (org-CUA-compatible): New option.
13885 (org-disputed-keys): New variable.
13886 (org-key): New function.
13887 (orgtbl-make-binding): Add docstring to the created function.
13888 (org-mode): Set paragraph start/separate regexps.
13889 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
13890 (org-archive-location, org-archive-mark-done)
13891 (org-archive-stamp-time): New options.
13892 (org-archive-subtree): New command.
13893 (org-fill-paragraph): New function.
13894 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
13895 (org-fake-empty-table-line): Function removed.
13896 (org-format-org-table-html): Do not create empty table lines at
13897 separator lines. Improved table header treatment.
13898 (org-link-format): New option.
13899 (org-make-link): New function.
13900 (org-insert-link, org-store-link): Use org-make-link.
13901 (org-open-file): Quote file name for shell command, to allow
13902 spaces in file names.
13903 (org-link-regexp): Fix bug with mailto link.
13904 (org-link-maybe-angles-regexp, org-protected-link-regexp):
13905 New constants.
13906 (org-export-as-html): Deal with the optional angles around a link.
13907 Better treatment of file: links.
13908 (org-open-at-point): Replace @{ and @} with < and >.
13909 (org-run-mode-hooks): Function removed.
13910 (org-agenda-mode): No longer use `org-run-mode-hooks'.
13911
13912 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
13913
13914 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
13915 MI command -data-list-register-values.
13916 (gdb-post-prompt): Indent properly.
13917
13918 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
13919
13920 * hilit-chg.el (highlight-changes-colors): Rename from
13921 `highlight-changes-colours'.
13922 (highlight-changes-colours): Keep as obsolete alias.
13923 (highlight-changes-face-list): Doc fix.
13924 (hilit-chg-make-list): Use `highlight-changes-colors'.
13925
13926 2005-06-12 Mark A. Hershberger <mah@everybody.org>
13927
13928 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
13929 defun-prompt-regexp.
13930
13931 2005-06-12 Eli Zaretskii <eliz@gnu.org>
13932
13933 * loadup.el: Don't say we are dumping under 2 names on windows-nt
13934 and cygwin.
13935
13936 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
13937 Don't use an old loaddefs.el, as in Makefile.in.
13938
13939 2005-06-12 Lute Kamstra <lute@gnu.org>
13940
13941 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
13942
13943 * man.el (Man-mode-map): Initialize it properly.
13944 (Man-mode): Set mode-class property to special.
13945
13946 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
13947
13948 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
13949
13950 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
13951 A newline is needed in the docstring there.
13952
13953 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
13954 Doc fixes.
13955
13956 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13957
13958 * printing.el: Doc fix. The menubar is no more changed when printing
13959 is loaded, it only changes when pr-menu-bind or pr-update-menus is
13960 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
13961 (pr-version): New version number (6.8.4).
13962 (pr-menu-bind): New command.
13963 (pr-update-menus): Docstring and code fix.
13964 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
13965 Docstring fix.
13966 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
13967 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
13968
13969 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
13970
13971 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
13972 "Returns" to "return", document useful return values, etc.
13973
13974 2005-06-11 Alan Mackenzie <acm@muc.de>
13975
13976 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
13977 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
13978 (adaptive-file-function): Minor amendment to doc-string.
13979
13980 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
13981
13982 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
13983 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
13984 Fix :type--it is `integer', not `string'.
13985
13986 * faces.el (modeline-highlight): Rename from (the erroneous)
13987 `modeline-higilight'.
13988
13989 2005-06-11 Lute Kamstra <lute@gnu.org>
13990
13991 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
13992 lisp-interaction-mode-map but make it the parent.
13993 (edebug-eval-mode): Use define-derived-mode.
13994
13995 2005-06-11 Andreas Schwab <schwab@suse.de>
13996
13997 * bindings.el: Add binding of `ESC functionkey' for every
13998 `M-functionkey'.
13999 * hexl.el (hexl-mode-map): Likewise.
14000
14001 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
14002
14003 * progmodes/compile.el (compilation-error-regexp-alist-alist)
14004 [msft]: update regexp for newer msft compilers.
14005
14006 2005-06-10 Mark A. Hershberger <mah@everybody.org>
14007
14008 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
14009 ATTLIST portions of included DTDs.
14010 (xml-parse-dtd): Eliminate use of inefficient match-data.
14011
14012 2005-06-10 Miles Bader <miles@gnu.org>
14013
14014 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
14015 (mpuz-text): Remove "-face" suffix from face names.
14016 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
14017 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
14018 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
14019
14020 * play/gomoku.el (gomoku-O, gomoku-X):
14021 Remove "-face" suffix from face names.
14022 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
14023 New backward-compatibility aliases for renamed faces.
14024 (gomoku-font-lock-keywords): Use renamed gomoku faces.
14025
14026 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
14027
14028 * thumbs.el: Fixes for changes of 2005-06-09.
14029 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
14030 as a directory.
14031 (thumbs-thumbname): Remove directory separator from format string;
14032 `thumbs-thumbsdir' now returns a valid directory name.
14033 (thumbs-temp-dir): New defsubst.
14034 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
14035 Use it.
14036
14037 * cus-edit.el (minibuffer):
14038 * files.el (make-backup-file-name-function):
14039 * filesets.el (filesets-external-viewers):
14040 * hilit-chg.el (highlight-changes-colours)
14041 (highlight-changes-face-list, highlight-changes-rotate-faces):
14042 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
14043 * kmacro.el (kmacro-call-macro):
14044 * log-edit.el (log-edit-changelog-full-paragraphs):
14045 * mouse.el (mouse-1-click-follows-link):
14046 * skeleton.el (skeleton-autowrap):
14047 * subr.el (insert-for-yank-1):
14048 * tempo.el (tempo-insert-region):
14049 * terminal.el (terminal-emulator):
14050 * time.el (display-time-mail-face):
14051 * vc.el (vc-annotate):
14052 * vcursor.el (vcursor-copy-line):
14053 * woman.el (woman-bold-headings, woman-ignore)
14054 (woman-default-faces, woman-monochrome-faces):
14055 * calendar/todo-mode.el (todo-insert-threshold):
14056 * emulation/pc-select.el (pc-select-selection-keys-only)
14057 (pc-selection-mode):
14058 * emulation/vip.el (vip-find-char-forward):
14059 * emulation/viper-cmd.el (viper-find-char-forward):
14060 * international/mule-cmds.el
14061 (select-safe-coding-system-accept-default-p)
14062 (input-method-exit-on-invalid-key):
14063 * international/mule-diag.el (describe-coding-system):
14064 * international/ucs-tables.el (unify-8859-on-encoding-mode):
14065 * net/browse-url.el (browse-url-xterm-program):
14066 * obsolete/lazy-lock.el (lazy-lock-mode):
14067 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
14068 (cperl-mode):
14069 * progmodes/cpp.el (cpp-face-light-name-list)
14070 (cpp-face-dark-name-list):
14071 * progmodes/delphi.el (delphi-newline-always-indents):
14072 Fix spellings in docstrings.
14073
14074 * ido.el (ido-mode, ido-file-extensions-order)
14075 (ido-default-file-method, ido-default-buffer-method)
14076 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
14077 (ido-decorations, ido-read-file-name-as-directory-commands)
14078 (ido-read-file-name-non-ido, ido-work-directory-list)
14079 (ido-ignore-item-temp-list, ido-current-directory)
14080 (ido-magic-forward-char, ido-enter-find-file)
14081 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
14082 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
14083
14084 2005-06-10 Lute Kamstra <lute@gnu.org>
14085
14086 * play/dunnet.el (dun-mode): Use define-derived-mode.
14087 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
14088 obsolete alias.
14089
14090 * play/doctor.el (doctor-mode-map): Remove defvar.
14091 (doctor-mode): Use define-derived-mode.
14092
14093 * mail/mspools.el (mspools-mode):
14094 * net/eudc-hotlist.el (eudc-hotlist-mode):
14095 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
14096
14097 2005-06-10 Miles Bader <miles@gnu.org>
14098
14099 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
14100 Remove "-face" suffix from face names.
14101 (flyspell-incorrect-face, flyspell-duplicate-face):
14102 New backward-compatibility aliases for renamed faces.
14103 (flyspell-mode-on, make-flyspell-overlay)
14104 (flyspell-highlight-incorrect-region)
14105 (flyspell-highlight-duplicate-region)
14106 (flyspell-display-next-corrections)
14107 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
14108
14109 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
14110 from face name.
14111 (texinfo-heading-face): New backward-compatibility alias for
14112 renamed face.
14113 (texinfo-heading-face): Use renamed texinfo-heading face.
14114
14115 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
14116 suffix from face names.
14117 (tex-math-face, tex-verbatim-face):
14118 New backward-compatibility aliases for renamed faces.
14119 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
14120 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
14121 literal face name.
14122
14123 * textmodes/table.el (table-cell): Remove "-face" suffix from face
14124 name.
14125 (table-cell-face): New backward-compatibility alias for renamed face.
14126 (table--put-cell-face-property, table--update-cell-face):
14127 Use renamed table-cell face.
14128
14129 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
14130 from face name.
14131 (sgml-namespace-face): New backward-compatibility alias for
14132 renamed face.
14133 (sgml-namespace-face): Use renamed sgml-namespace face.
14134
14135 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
14136 (org-level-4, org-level-5, org-level-6, org-level-7)
14137 (org-level-8, org-warning, org-headline-done)
14138 (org-deadline-announce, org-scheduled-today)
14139 (org-scheduled-previously, org-link, org-done, org-table)
14140 (org-time-grid): Remove "-face" suffix from face names.
14141 (org-level-1-face, org-level-2-face, org-level-3-face)
14142 (org-level-4-face, org-level-5-face, org-level-6-face)
14143 (org-level-7-face, org-level-8-face, org-warning-face)
14144 (org-headline-done-face, org-deadline-announce-face)
14145 (org-scheduled-today-face, org-scheduled-previously-face)
14146 (org-link-face, org-done-face, org-table-face)
14147 (org-time-grid-face):
14148 New backward-compatibility aliases for renamed faces.
14149 (org-level-faces, org-set-font-lock-defaults, org-timeline)
14150 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
14151 (org-agenda-get-timestamps, org-agenda-get-scheduled)
14152 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
14153
14154 * emulation/viper-init.el (viper-search, viper-replace-overlay)
14155 (viper-minibuffer-emacs, viper-minibuffer-insert)
14156 (viper-minibuffer-vi): Remove "-face" suffix from face names.
14157 (viper-search-face, viper-replace-overlay-face)
14158 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
14159 (viper-minibuffer-vi-face):
14160 New backward-compatibility aliases for renamed faces.
14161 (viper-search-face, viper-replace-overlay-face)
14162 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
14163 (viper-minibuffer-vi-face): Use renamed viper faces.
14164
14165 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
14166 Remove "-face" suffix from face names.
14167 (testcover-nohits-face, testcover-1value-face):
14168 New backward-compatibility aliases for renamed faces.
14169 (testcover-mark): Use renamed testcover faces.
14170
14171 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
14172 face name.
14173 (diary-button-face): New backward-compatibility alias for renamed face.
14174 (diary-entry): Use renamed diary-button face.
14175
14176 * calendar/calendar.el (diary, calendar-today, holiday)
14177 (mark-visible-calendar-date): Remove "-face" suffix from face names.
14178 (diary-face, calendar-today-face, holiday-face):
14179 New backward-compatibility aliases for renamed faces.
14180 (eval-after-load "facemenu", diary-entry-marker)
14181 (calendar-today-marker, calendar-holiday-marker, diary-face):
14182 Use renamed calendar faces.
14183
14184 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
14185 (compare-windows-face): New backward-compatibility alias for
14186 renamed face.
14187 (compare-windows-highlight): Use renamed compare-windows face.
14188
14189 * strokes.el (strokes-char): Remove "-face" suffix from face name.
14190 (strokes-char-face): New backward-compatibility alias for renamed face.
14191 (strokes-encode-buffer): Use renamed strokes-char face.
14192
14193 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
14194 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
14195 Remove "-face" suffix from face names.
14196 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
14197 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
14198 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
14199 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
14200 Use renamed pcvs faces.
14201 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
14202 * pcvs-defs.el (cvs-mode-map): Likewise.
14203 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
14204
14205 * info.el (info-title-1, info-title-2, info-title-3)
14206 (info-title-4): Remove "-face" suffix from and downcase face names.
14207 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
14208 (Info-title-4-face):
14209 New backward-compatibility aliases for renamed faces.
14210 (Info-fontify-node): Use renamed info faces.
14211
14212 * hilit-chg.el (highlight-changes, highlight-changes-delete):
14213 Remove "-face" suffix from face names.
14214 (highlight-changes-face, highlight-changes-delete-face):
14215 New backward-compatibility aliases for renamed faces.
14216 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
14217 (hilit-chg-make-list): Use renamed highlight-changes faces.
14218
14219 * generic-x.el (show-tabs-tab, show-tabs-space):
14220 Remove "-face" suffix from face names.
14221 (show-tabs-tab-face, show-tabs-space-face):
14222 New backward-compatibility aliases for renamed faces.
14223 (show-tabs-generic-mode-font-lock-defaults-1)
14224 (show-tabs-generic-mode-font-lock-defaults-2):
14225 Use renamed show-tabs faces.
14226
14227 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
14228 (smerge-markers): Remove "-face" suffix from face names.
14229 (smerge-mine-face, smerge-other-face, smerge-base-face)
14230 (smerge-markers-face):
14231 New backward-compatibility aliases for renamed faces.
14232 (smerge-mine-face, smerge-other-face, smerge-base-face)
14233 (smerge-markers-face): Use renamed smerge faces.
14234
14235 * log-view.el (log-view-file, log-view-message): Remove "-face"
14236 suffix from face names.
14237 (log-view-file-face, log-view-message-face):
14238 New backward-compatibility aliases for renamed faces.
14239 (log-view-file-face, log-view-message-face): Use renamed log-view
14240 faces.
14241
14242 * paren.el (show-paren-match, show-paren-mismatch):
14243 Remove "-face" suffix from face names.
14244 (show-paren-match-face, show-paren-mismatch-face):
14245 New backward-compatibility aliases for renamed faces.
14246 (show-paren-function): Use renamed show-paren faces.
14247
14248 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
14249 (ruler-mode-margins, ruler-mode-fringes)
14250 (ruler-mode-column-number, ruler-mode-fill-column)
14251 (ruler-mode-comment-column, ruler-mode-goal-column)
14252 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
14253 suffix from face names.
14254 (ruler-mode-default-face, ruler-mode-pad-face)
14255 (ruler-mode-margins-face, ruler-mode-fringes-face)
14256 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
14257 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
14258 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
14259 New backward-compatibility aliases for renamed faces.
14260 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
14261 (ruler-mode-column-number, ruler-mode-fill-column)
14262 (ruler-mode-comment-column, ruler-mode-goal-column)
14263 (ruler-mode-tab-stop, ruler-mode-current-column)
14264 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
14265 faces.
14266
14267 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
14268 face name.
14269 (whitespace-highlight-the-space): Use renamed face.
14270 (whitespace-highlight-face): New backward-compatibility alias for
14271 renamed face.
14272
14273 * woman.el (woman-italic, woman-bold, woman-unknown)
14274 (woman-addition, woman-symbol-face):
14275 Remove "-face" suffix from face names.
14276 (woman-italic-face, woman-bold-face, woman-unknown-face)
14277 (woman-addition-face):
14278 New backward-compatibility aliases for renamed faces.
14279 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
14280 (woman-decode-region, woman-replace-match)
14281 (woman-display-extended-fonts, woman-special-characters)
14282 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
14283 Use renamed woman faces.
14284
14285 * longlines.el (longlines-visible-face): Face removed.
14286
14287 * diff-mode.el (diff-header, diff-file-header, diff-index)
14288 (diff-hunk-header, diff-removed, diff-added, diff-changed)
14289 (diff-function, diff-context, diff-nonexistent): Remove "-face"
14290 suffix from face names.
14291 (diff-header-face, diff-file-header-face, diff-index-face)
14292 (diff-hunk-header-face, diff-removed-face, diff-added-face)
14293 (diff-changed-face, diff-function-face, diff-context-face)
14294 (diff-nonexistent-face): New backward-compatibility aliases for
14295 renamed faces.
14296 (diff-header-face, diff-file-header-face)
14297 (diff-index, diff-index-face, diff-hunk-header)
14298 (diff-hunk-header-face, diff-removed, diff-removed-face)
14299 (diff-added, diff-added-face, diff-changed-face, diff-function)
14300 (diff-function-face, diff-context-face, diff-nonexistent)
14301 (diff-nonexistent-face): Use renamed diff-mode faces.
14302
14303 * progmodes/compile.el (compilation-warning-face)
14304 (compilation-info-face): Remove "-face" suffix from face names.
14305 (compilation-warning-face, compilation-info-face):
14306 New backward-compatibility aliases for renamed faces.
14307 (compilation-warning-face, compilation-info-face):
14308 Use renamed compilation faces.
14309
14310 * add-log.el (change-log-date, change-log-name)
14311 (change-log-email, change-log-file, change-log-list)
14312 (change-log-conditionals, change-log-function)
14313 (change-log-acknowledgement): Remove "-face" suffix from face names.
14314 (change-log-date-face, change-log-name-face)
14315 (change-log-email-face, change-log-file-face)
14316 (change-log-list-face, change-log-conditionals-face)
14317 (change-log-function-face, change-log-acknowledgement-face):
14318 New backward-compatibility aliases for renamed faces.
14319 (change-log-font-lock-keywords): Use renamed change-log faces.
14320
14321 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
14322 (custom-set, custom-changed, custom-saved, custom-button)
14323 (custom-button-pressed, custom-documentation, custom-state)
14324 (custom-comment, custom-comment-tag, custom-variable-tag)
14325 (custom-variable-button, custom-face-tag, custom-group-tag-1)
14326 (custom-group-tag): Remove "-face" suffix from face names.
14327 (custom-magic-alist, custom-magic-value-create)
14328 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
14329 (custom-invalid-face, custom-rogue-face, custom-modified-face)
14330 (custom-set-face, custom-changed-face, custom-saved-face)
14331 (custom-button-face, custom-button-pressed-face)
14332 (custom-documentation-face, custom-state-face)
14333 (custom-comment-face, custom-comment-tag-face)
14334 (custom-variable-tag-face, custom-variable-button-face)
14335 (custom-face-tag-face, custom-group-tag-face-1)
14336 (custom-group-tag-face):
14337 New backward-compatibility aliases for renamed faces.
14338
14339 * wid-edit.el (widget-documentation, widget-button)
14340 (widget-field, widget-single-line-field, widget-inactive)
14341 (widget-button-pressed): "-face" suffix removed from face names.
14342 (widget-documentation-face, widget-button-face)
14343 (widget-field-face, widget-single-line-field-face)
14344 (widget-inactive-face, widget-button-pressed-face):
14345 New backward-compatibility aliases for renamed faces.
14346 (widget-documentation-face, widget-button-face)
14347 (widget-button-pressed-face, widget-specify-field)
14348 (widget-specify-inactive): Use renamed widget faces.
14349
14350 2005-06-10 Kenichi Handa <handa@m17n.org>
14351
14352 * term/x-win.el (x-clipboard-yank): Remove condition-case
14353 wrapping.
14354
14355 2005-06-11 Kenichi Handa <handa@m17n.org>
14356
14357 * add-log.el (change-log-font-lock-keywords): Make the regexp for
14358 date lines stricter.
14359
14360 2005-06-10 Zhang Wei <id.brep@gmail.com> (tiny change)
14361
14362 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
14363 of x-get-selection.
14364
14365 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
14366
14367 * comint.el (comint-mode, comint-snapshot-last-prompt):
14368 * frame.el (frame-current-scroll-bars):
14369 * term.el (term-mode, term-check-proc, term-input-sender)
14370 (term-simple-send, term-extract-string, term-word)
14371 (term-match-partial-filename):
14372 * window.el (window-current-scroll-bars):
14373 * emulation/cua-base.el (cua-normal-cursor-color)
14374 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
14375 (cua-global-mark-cursor-color):
14376 * mail/undigest.el (rmail-forward-separator-regex):
14377 Fix typos in docstrings.
14378
14379 * comint.el (comint-check-proc, make-comint-in-buffer)
14380 (comint-source-default): Doc fixes.
14381
14382 * term.el (term-send-string): Improve argument/docstring consistency.
14383
14384 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
14385
14386 * comint.el (comint-send-input): Bind `inhibit-read-only' around
14387 call to `delete-region'.
14388 (comint-mode-hook): Do not enable Font Lock by default.
14389
14390 2005-06-09 Lute Kamstra <lute@gnu.org>
14391
14392 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
14393 could be void.
14394
14395 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
14396
14397 * emacs-lisp/debug.el (debugger-will-be-back): New var.
14398 (debug): Use it.
14399 (debugger-step-through, debugger-continue, debugger-jump)
14400 (debugger-return-value): Set it when needed.
14401 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
14402 Use inhibit-read-only.
14403
14404 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
14405
14406 * window.el (shrink-window-if-larger-than-buffer)
14407 (window-size-fixed): Fix typo in docstring.
14408
14409 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
14410 thumbnails directory on loading.
14411 (thumbs-conversion-program): Use `eq' to check the system type,
14412 not `equal'.
14413 (thumbs-temp-dir): Initialize to `temporary-file-directory',
14414 not "/tmp". Fix docstring.
14415 (thumbs-thumbsdir): New function to return the thumbnails
14416 directory, creating it if needed.
14417 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
14418 (thumbs-temp-file): Delete variable and make it into a function.
14419 (thumbs-resize-image, thumbs-modify-image): Use it.
14420 (thumbs-kill-buffer): Simplify.
14421 (thumbs-gensym): Defalias or duplicate CL `gensym'.
14422 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
14423 docstrings.
14424
14425 2005-06-09 Kim F. Storm <storm@cua.dk>
14426
14427 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
14428 set-match-data to free markers in match-data.
14429
14430 * replace.el (replace-match-data): Pass RESEAT arg `t' to
14431 match-data to unchain markers in match-data.
14432
14433 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
14434
14435 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
14436 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
14437 unnecessary now.
14438
14439 2005-06-08 Richard M. Stallman <rms@gnu.org>
14440
14441 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
14442 give the variable a doc string that doesn't say don't set it directly.
14443
14444 * textmodes/ispell.el (ispell-check-version):
14445 Use match-string-no-properties.
14446 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
14447 (ispell-buffer-local-words): Likewise.
14448
14449 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
14450 except on terminals with enough colors to really display it.
14451 (makefile-dependency-regex): Delete spurious `bb'.
14452
14453 * faces.el (escape-glyph): Use blue once again in last case.
14454 (no-break-space): Redefine so that it isn't invisible on a tty.
14455
14456 2005-06-08 Kim F. Storm <storm@cua.dk>
14457
14458 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
14459 also when reading directory name.
14460
14461 2005-06-08 Lute Kamstra <lute@gnu.org>
14462
14463 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
14464 (flyspell-mode-line-string): Remove autoload cookie.
14465 (flyspell-mode): Remove defvar.
14466
14467 2005-06-07 Lute Kamstra <lute@gnu.org>
14468
14469 * textmodes/org.el (org-run-mode-hooks): New function.
14470 (org-agenda-mode): Use it.
14471
14472 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
14473
14474 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
14475
14476 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
14477
14478 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
14479
14480 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
14481
14482 * font-lock.el (font-lock-add-keywords): Doc fix.
14483
14484 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
14485
14486 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
14487 (tex-compile-default): In the absence of any history, use the order in
14488 tex-compile-alist to choose the preferred command.
14489 (tex-compile-commands): Reorder a bit.
14490
14491 * textmodes/flyspell.el (flyspell-auto-correct-binding)
14492 (flyspell-incorrect-face, flyspell-duplicate-face):
14493 Use (X)Emacs-agnostic code.
14494 (flyspell-mode-map): Don't overwrite at each load. Remove code
14495 redundant with the subsequent add-minor-mode. Merge Emacs and
14496 XEmacs code.
14497 (flyspell-word): Minor simplification.
14498 (flyspell-math-tex-command-p): Quieten the byte-compiler.
14499 (flyspell-external-point-words): Remove unused vars `size' and `start'.
14500 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
14501 Merge the corresponding Emacs code.
14502 (flyspell-correct-word, flyspell-xemacs-popup):
14503 Use flyspell-do-correct.
14504
14505 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
14506 a dedicated window.
14507
14508 * international/latexenc.el (latexenc-find-file-coding-system):
14509 Undo part of last patch, to turn off a compiler warning.
14510
14511 2005-06-06 Juri Linkov <juri@jurta.org>
14512
14513 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
14514 Rename `tmm-inactive-face' to `tmm-inactive'.
14515
14516 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
14517
14518 * iswitchb.el: Rename faces.
14519
14520 2005-06-06 Kim F. Storm <storm@cua.dk>
14521
14522 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
14523 (cua-global-mark): Remove -face suffix from face names.
14524
14525 * emulation/cua-gmrk.el (cua--init-global-mark):
14526 Remove cua-global-mark face setup.
14527
14528 2005-06-06 Richard M. Stallman <rms@gnu.org>
14529
14530 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
14531 just like other allowed characters.
14532 (makefile-match-dependency): Exclude leading and training whitespace
14533 from the range of regexp subexp 1.
14534 (makefile-macroassign-regex): Don't try to match the body,
14535 just the name of the macro being defined.
14536
14537 * info.el (Info-read-node-name-2): New function.
14538 (Info-read-node-name-1): Use that.
14539 Add a completion-base-size-function property.
14540
14541 * simple.el (completion-setup-function): Look for
14542 completion-base-size-function property of minibuffer-completion-table.
14543
14544 * files.el (locate-file-completion): Doc fix.
14545
14546 * printing.el: Don't call pr-update-menus; user must do that.
14547
14548 * emacs-lisp/debug.el (debugger-window): New variable.
14549 (debug): Use debugger-window if it is set and still alive.
14550 Record debugger-window for next entry.
14551
14552 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
14553
14554 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
14555
14556 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
14557 (hack-one-local-variable, hack-local-variables)
14558 (hack-local-variables-prop-line): Pass that arg.
14559
14560 2005-06-06 Kim F. Storm <storm@cua.dk>
14561
14562 * ido.el (ido-first-match, ido-only-match, ido-subdir)
14563 (ido-indicator): Remove -face suffix from face names.
14564
14565 2005-06-06 Juri Linkov <juri@jurta.org>
14566
14567 * font-lock.el (font-lock-regexp-backslash)
14568 (font-lock-regexp-backslash-construct): New faces.
14569 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
14570 after `('. Add `while-no-input' to control structures.
14571
14572 * faces.el (no-break-space, shadow): New faces.
14573 (escape-glyph): Use less loud colors pink2 and red4.
14574
14575 * diff-mode.el (diff-context-face)
14576 * dired.el (dired-ignored)
14577 * rfn-eshadow.el (file-name-shadow)
14578 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
14579
14580 * info.el (Info-title-1-face): Use green instead of yellow because
14581 bold yellow is not readable on light backgrounds.
14582
14583 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
14584 before selecting the desired mode to not spend time fontifying
14585 old contents.
14586
14587 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
14588
14589 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
14590 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
14591
14592 * ps-print.el (ps-default-fg, ps-default-bg):
14593 Fix typos in docstrings.
14594
14595 * isearchb.el (isearchb): Don't pass a spurious second argument to
14596 `iswitchb-completions'.
14597
14598 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
14599
14600 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
14601 to preserve point.
14602 (gdb-find-file-hook): Add doc string.
14603
14604 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
14605 C dereferenced pointer expression.
14606 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
14607
14608 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
14609
14610 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
14611 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
14612 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
14613 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
14614 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
14615 Make background transparent.
14616
14617 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
14618
14619 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
14620 (font-lock-remove-keywords): Doc fix.
14621 (font-lock-mode-major-mode): Compiler defvar.
14622 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
14623
14624 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
14625 (font-lock-mode): Update `font-lock-mode-major-mode'.
14626 (font-lock-set-defaults): Compiler defvar.
14627 (font-lock-default-function): Take `font-lock-mode-major-mode'
14628 into account.
14629
14630 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
14631 keep track of which major mode it enabled the minor mode for.
14632 Use find-file-hook again. Update docstring.
14633
14634 * simple.el (eval-expression-print-level)
14635 (eval-expression-print-length, eval-expression-debug-on-error):
14636 Doc fixes.
14637
14638 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
14639
14640 * iswitchb.el (iswitchb-single-match-face)
14641 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
14642 (iswitchb-invalid-regexp-face): New faces.
14643 (iswitchb-completions): Use them.
14644 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
14645 now marked as an obsolete alias.
14646 (iswitchb-read-buffer): Remove check for bound font variables.
14647 (iswitchb-invalid-regexp): New free variable.
14648 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
14649 set iswitchb-invalid-regexp.
14650 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
14651 invalid regexps.
14652 (iswitchb-completions): Add check for complete match when entering
14653 a regexp.
14654 (iswitchb-completions): Remove require-match argument.
14655 (iswitchb-exhibit): Fix caller.
14656 (iswitchb-common-match-inserted): New variable.
14657 (iswitchb-complete, iswitchb-completion-help): Use it.
14658
14659 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
14660
14661 * url-http.el (url-http-chunked-encoding-after-change-function):
14662 Use `url-http-debug' instead of `message'.
14663
14664 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
14665
14666 * url-http.el (url-http-parse-headers): Pass redirected URL as a
14667 callback argument.
14668
14669 2005-06-04 Kim F. Storm <storm@cua.dk>
14670
14671 * simple.el (line-move): Only call sit-for when moving backwards.
14672
14673 * ido.el (ido-make-merged-file-list-1): New defun split from
14674 ido-make-merged-file-list.
14675 (ido-make-merged-file-list): Bind throw-on-input around call to
14676 ido-make-merged-file-list-1. Return input-pending-p if
14677 interrupted by more input available.
14678 (ido-read-internal): Handle input-pending-p return value from
14679 ido-make-merged-file-list.
14680
14681 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
14682
14683 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
14684 compatibility code.
14685
14686 * international/latexenc.el (latexenc-find-file-coding-system):
14687 Don't inherit the EOL part of the coding-system from the
14688 tex-main buffer. Fit within 80 columns.
14689
14690 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
14691
14692 * tmm.el (tmm-inactive-face): New face.
14693 (tmm-remove-inactive-mouse-face): New function.
14694 (tmm-prompt, tmm-add-one-shortcut)
14695 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
14696 but not selectable.
14697
14698 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
14699
14700 * faces.el (face-equal): Improve argument/docstring consistency.
14701
14702 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
14703
14704 * progmodes/make-mode.el (makefile-targets-face)
14705 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
14706 (makefile-bsdmake-dependency-regex)
14707 (makefile-makepp-rule-action-regex)
14708 (makefile-bsdmake-rule-action-regex): New constants.
14709 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
14710
14711 * progmodes/compile.el (compilation-error-regexp-alist-alist):
14712 Allow (...) within `...' for makepp messages.
14713
14714 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
14715
14716 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
14717
14718 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
14719 "." files are deleted from all file lists before comparison.
14720
14721 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
14722 (viper-ESC-key): Made them customizable.
14723
14724 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
14725
14726 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
14727
14728 * autorevert.el (auto-revert-buffers): Use save-match-data.
14729
14730 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
14731
14732 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
14733 menu items with a nil command binding.
14734
14735 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
14736
14737 * emacs-lisp/cl-macs.el (defsetf):
14738 Improve argument/docstring consistency.
14739
14740 * faces.el (list-faces-display): Improve the formatting by
14741 computing the maximum length required for any face-name (reworked
14742 patch of 1999-01-11, accidentally deleted on 1999-07-21).
14743 (internal-find-face): Remove redundant info in docstring.
14744
14745 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
14746
14747 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
14748 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
14749 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
14750 (gdb-assembler-custom): Improve regexps.
14751 (def-gdb-auto-update-handler): Use window point to preserve point.
14752
14753 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14754
14755 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
14756
14757 2005-05-31 Jay Belanger <belanger@truman.edu>
14758
14759 * calc/calc-embed.el (calc-embedded-word): Change argument passed
14760 to calc-embedded.
14761 (calc-embedded-make-info): Have plain prefix argument select
14762 entire line.
14763
14764 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
14765
14766 * faces.el (list-faces-display): Signal error if passed a regexp
14767 that matches no face name.
14768
14769 * simple.el (filter-buffer-substring): Fix typo in docstring.
14770
14771 2005-05-31 Richard M. Stallman <rms@gnu.org>
14772
14773 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
14774 (vhdl-emacs-21): Doc fix.
14775 (vhdl-mode): Unconditionally set comment-padding.
14776 (vhdl-fixup-whitespace-region): Insert spaces only where
14777 there are none.
14778 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
14779
14780 2005-05-30 John Wiegley <johnw@newartisans.com>
14781
14782 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
14783 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
14784 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
14785 `directory-sep-char' to ?/, and all uses of `string-to-int' to
14786 `string-to-number'.
14787
14788 2005-05-30 Jay Belanger <belanger@truman.edu>
14789
14790 * calc/calc.el (calc-bug-address): Fix docstring.
14791 (calc-window-hook, calc-trail-window-hook): New variables.
14792 (calc-trail-display): Restore use of calc-trail-window-hook.
14793 (calc): Restore use of calc-window-hook.
14794
14795 2005-05-31 Masatake YAMATO <jet@gyve.org>
14796
14797 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
14798
14799 * help-fns.el (help-C-file-name): Add autoload mark for
14800 `find-function-noselect'.
14801
14802 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14803
14804 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
14805 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
14806
14807 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
14808
14809 * calendar/diary-lib.el (mark-included-diary-files): Only kill
14810 included diary buffer if it was not already being visited.
14811 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
14812
14813 * calendar/icalendar.el (top-level): Do not require appt.
14814
14815 * mail/supercite.el (sc-select-attribution): Only use a list
14816 element from sc-attrib-selection-list if it returns a string.
14817 Reported by Davide G. M. Salvetti <salve@debian.org>.
14818
14819 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
14820
14821 * thumbs.el (thumbs-thumbname): The resulting thumbname now
14822 includes a hash value to improve its uniqueness, and has a ".jpg"
14823 extension. Also, it is now a valid filename on all systems.
14824 (thumbs-make-thumb): Use `let', not `let*'.
14825 (thumbs-show-thumbs-list): Check for JPEG availability.
14826
14827 2005-05-30 Richard M. Stallman <rms@gnu.org>
14828
14829 * filesets.el (filesets-menu-ensure-use-cached):
14830 Prevent warning when emacs-version>= is undefined.
14831
14832 * printing.el (pr-interactive-n-up): Use string-to-number.
14833
14834 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
14835
14836 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
14837 Warn only when name to be defined is quoted.
14838
14839 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
14840
14841 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
14842 Make regexp more robust.
14843 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
14844 Force regeneration of disassembly.
14845
14846 2005-05-29 Jay Belanger <belanger@truman.edu>
14847
14848 * calc/calc.el (calc-user-invocation): Check if
14849 calc-invocation-macro is non-nil.
14850
14851 2005-05-29 Juri Linkov <juri@jurta.org>
14852
14853 * add-log.el (change-log-font-lock-keywords):
14854 Add `+' to e-mail regexp to accept mail address with keywords.
14855
14856 * man.el (Man-name-regexp): Add `:' to accept qualified names.
14857
14858 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
14859
14860 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
14861
14862 * ielm.el (inferior-emacs-lisp-mode): Ditto.
14863
14864 2005-05-29 Richard M. Stallman <rms@gnu.org>
14865
14866 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
14867 Undo the change that moves to end of the current word.
14868
14869 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
14870
14871 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
14872 Throw error when count <= 0 to ensure input is a number.
14873 (gdb-read-memory-custom): Pick up address from buffer.
14874 (gdb-memory-mode): Allow user to increment and decrement
14875 memory address from header line.
14876
14877 2005-05-29 Richard M. Stallman <rms@gnu.org>
14878
14879 * flyspell.el (flyspell-version): Function deleted.
14880 (flyspell-auto-correct-previous-hook): Doc fix.
14881
14882 * jit-lock.el (jit-lock-function, jit-lock-after-change):
14883 Do nothing if memory is full.
14884
14885 * font-lock.el (font-lock-fontify-syntactically-region):
14886 Pass t for GREEDY to looking-back.
14887
14888 * saveplace.el (save-place-alist-to-file): Write the file
14889 using write-region.
14890
14891 * subr.el (looking-back): New argument GREEDY.
14892
14893 * progmodes/compile.el (compilation-start): Set the mode
14894 before inserting the initial text.
14895
14896 * progmodes/which-func.el (which-func-update-1): Turn the mode
14897 off in case of error by setting which-func-mode.
14898
14899 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
14900
14901 * flyspell.el (flyspell-auto-correct-previous-word):
14902 Narrow down to what's on the screen, and recenter overlays
14903 at the end of the next word.
14904
14905 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
14906
14907 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
14908 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
14909 (flyspell-abbrev-p): Default to nil.
14910 (flyspell-use-global-abbrev-table-p): Doc fix.
14911 (flyspell-large-region): Allow nil as value.
14912 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
14913
14914 (mail-mode-flyspell-verify): More robust handling
14915 of `mail-header-separator'. More efficient signature detection.
14916 Allow for regexp metacharacters in message-header-separator.
14917 Adding `To' not to be checked in mail-mode-flyspell-verify.
14918
14919 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
14920 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
14921 Bind flyspell-auto-correct-binding.
14922 Bind C-. and C-, .
14923 (flyspell-mode-map): Likewise.
14924 (flyspell-mode): Doc fix.
14925 (flyspell-accept-buffer-local-defs): Preserve current buffer.
14926 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
14927 (flyspell-word-cache-result): New var, always local.
14928 (flyspell-check-pre-word-p): Doc fix.
14929 (flyspell-check-changed-word-p): Handle spc like newline.
14930 (flyspell-post-command-hook): Set flyspell-word-cache-result.
14931 (flyspell-word-search-backward, flyspell-word-search-forward):
14932 New functions.
14933 (flyspell-word): Return t if nothing to check.
14934 When parsing TeX code, check for after } or \.
14935 Use flyspell-word-search-backward to find previous word.
14936 Return nil if duplicated word.
14937 For word already checked, return same value as last time.
14938 Set flyspell-word-cache-result after checking.
14939 Don't clobber the return value.
14940 (flyspell-get-word): Major rewrite.
14941 (flyspell-external-point-words): New locals pword, pcount.
14942 Fix size used in progress message.
14943 Find the proper corresponding word in flyspell-large-region-buffer.
14944 (flyspell-region): Check for flyspell-large-region = nil.
14945 (flyspell-highlight-incorrect-region): Clean up overlays in region.
14946 (flyspell-auto-correct-word): Check that WORD is a cons.
14947 (flyspell-correct-word): Likewise.
14948
14949 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
14950
14951 * progmodes/make-mode.el (makefile-rule-action-regex)
14952 (makefile-macroassign-regex, makefile-makepp-mode)
14953 (makefile-bsdmake-mode): Continuation lines may be empty.
14954 Reported by Joshua Varner.
14955 (makefile-makepp-font-lock-keywords): Add $(stem).
14956
14957 2005-05-28 Karl Berry <karl@gnu.org>
14958
14959 * textmodes/tex-mode.el: Now that tex-send-command calls
14960 shell-quote-argument (2005-03-31 change), remove all calls to
14961 shell-quote-argument; they all end up invoking tex-send-command.
14962 The double quoting loses on filenames with non-safe characters,
14963 such as "@". Reported by Frederik Fouvry.
14964
14965 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
14966
14967 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
14968 about preserving point.
14969
14970 2005-05-27 Jay Belanger <belanger@truman.edu>
14971
14972 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
14973 Info-goto-node.
14974
14975 * calc/calc-embed.el (calc-embed-arg): New variable.
14976 (calc-do-embedded-activate, calc-embedded-activate-formula)
14977 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
14978 variable by new variable.
14979 (calc-embedded-make-info): Replace undeclared variable by new
14980 variable. When selecting region with positive prefix
14981 argument, use end of previous line instead of beginning of line.
14982
14983 * calc/calc-aent.el (calc-arg-values): Declare it.
14984
14985 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
14986 Declare them.
14987
14988 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
14989
14990 * calc/calc.el (calc-alg-map): Declare it.
14991
14992 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
14993
14994 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
14995
14996 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
14997 (gdb-registers-buffer, toggle-gdb-all-registers):
14998 Toggle display of floating point registers.
14999 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
15000
15001 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
15002 (toggle-gud-tooltip-dereference):
15003 Rename from gud-toggle-tooltip-dereference.
15004
15005 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
15006
15007 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
15008
15009 2005-05-27 Jay Belanger <belanger@truman.edu>
15010
15011 * calc/calc-prog.el (calc-kbd-report): Remove.
15012 (calc-kbd-query): Rewrite.
15013
15014 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
15015
15016 * image.el (image-library-alist): Move to image.c.
15017 (image-type-available-p): Doc fix.
15018
15019 2005-05-27 Lute Kamstra <lute@gnu.org>
15020
15021 * calc/calc.el (calc):
15022 * outline.el (outline-1, outline-2, outline-3, outline-4)
15023 (outline-5, outline-6, outline-7, outline-8):
15024 * textmodes/dns-mode.el (dns-mode):
15025 * textmodes/sgml-mode.el (sgml-namespace-face):
15026 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
15027 (tex-verbatim-face, tex-use-reftex):
15028 * textmodes/texinfo.el (texinfo-heading-face):
15029 Specify customization group.
15030
15031 * longlines.el: Don't require easy-mmode.
15032 (longlines-visible-face): Specify customization group.
15033
15034 2005-05-27 Kenichi Handa <handa@m17n.org>
15035
15036 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
15037 encoding table of windows-1251.
15038
15039 * international/ucs-tables.el (ucs-set-table-for-input):
15040 If translation-table-for-input of a coding system is a symbol, get
15041 its translation-table property.
15042
15043 * international/code-pages.el: Don't register a coding system into
15044 non-iso-charset-alist more than once.
15045 (cp-make-coding-system): Likewise.
15046
15047 2005-05-26 John Wiegley <johnw@newartisans.com>
15048
15049 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
15050 `eshell-resume-eval' is wrapped in a list, it indicates that the
15051 command was run asynchronously. In that case, unwrap the value
15052 before checking the delimiter value.
15053
15054 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
15055 character before a space at the end of a line is \, assume the space
15056 is part of the last argument rather than a final argument separator.
15057
15058 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
15059 is in use, and the target is `t' or `nil' (which are the most common
15060 values), don't assume that the symbol target is a buffer.
15061
15062 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
15063
15064 * calendar/calendar.el (calendar-mode-line-format):
15065 Use mode-line-highlight as mouse-face.
15066
15067 * time.el (display-time-string-forms, display-time-update):
15068 Use mode-line-highlight as mouse-face.
15069
15070 2005-05-26 Jay Belanger <belanger@truman.edu>
15071
15072 * calc/calc.el (calc-language-alist): Remove extra defvar.
15073
15074 2005-05-26 Lute Kamstra <lute@gnu.org>
15075
15076 * arc-mode.el (archive-mode):
15077 * bookmark.el (bookmark-read-annotation-mode)
15078 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
15079 * bs.el (bs-mode):
15080 * calc/calc-yank.el (calc-edit-mode):
15081 * calc/calc.el (calc-mode, calc-trail-mode):
15082 * calculator.el (calculator-mode):
15083 * chistory.el (command-history-mode):
15084 * comint.el:
15085 * cus-edit.el (custom-mode):
15086 * descr-text.el (describe-text-mode):
15087 * ebuff-menu.el (Electric-buffer-menu-mode):
15088 * ediff-util.el (ediff-mode):
15089 * emacs-lisp/re-builder.el (reb-mode):
15090 * emulation/vi.el (vi-mode-setup):
15091 * emulation/ws-mode.el (wordstar-mode):
15092 * eshell/esh-mode.el (eshell-mode):
15093 * forms.el (forms-mode):
15094 * help-mode.el (help-mode):
15095 * hexl.el (hexl-mode):
15096 * ibuffer.el (ibuffer-mode):
15097 * ielm.el (inferior-emacs-lisp-mode):
15098 * info.el (Info-mode, Info-edit-mode):
15099 * international/swedish.el:
15100 * ledit.el (ledit-from-lisp-mode):
15101 * locate.el (locate-mode):
15102 * mail/rmail.el (rmail-mode):
15103 * mail/rmailedit.el (rmail-edit-mode):
15104 * mail/rmailsum.el (rmail-summary-mode):
15105 * mail/supercite.el (sc-electric-mode):
15106 * net/eudc.el (eudc-mode):
15107 * net/quickurl.el (quickurl-list-mode):
15108 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
15109 * obsolete/ooutline.el (outline-mode):
15110 * obsolete/options.el (Edit-options-mode):
15111 * obsolete/rnews.el (news-mode):
15112 * obsolete/rnewspost.el (news-reply-mode):
15113 * play/5x5.el (5x5-mode):
15114 * play/decipher.el (decipher-mode, decipher-stats-mode):
15115 * play/gomoku.el (gomoku-mode):
15116 * play/snake.el (snake-mode):
15117 * play/solitaire.el (solitaire-mode):
15118 * play/tetris.el (tetris-mode):
15119 * progmodes/ada-mode.el (ada-mode):
15120 * progmodes/antlr-mode.el (antlr-mode):
15121 * progmodes/autoconf.el (autoconf-mode):
15122 * progmodes/dcl-mode.el (dcl-mode):
15123 * progmodes/delphi.el (delphi-mode):
15124 * progmodes/ebrowse.el (ebrowse-tree-mode)
15125 (ebrowse-electric-list-mode, ebrowse-member-mode)
15126 (ebrowse-electric-position-mode):
15127 * progmodes/f90.el (f90-mode):
15128 * progmodes/fortran.el (fortran-mode):
15129 * progmodes/icon.el (icon-mode):
15130 * progmodes/idlw-help.el (idlwave-help-mode):
15131 * progmodes/idlw-shell.el (idlwave-shell-mode):
15132 * progmodes/idlwave.el (idlwave-mode):
15133 * progmodes/inf-lisp.el (inferior-lisp-mode):
15134 * progmodes/m4-mode.el (m4-mode):
15135 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
15136 * progmodes/modula2.el (modula-2-mode):
15137 * progmodes/octave-inf.el (inferior-octave-mode):
15138 * progmodes/octave-mod.el (octave-mode):
15139 * progmodes/pascal.el (pascal-mode):
15140 * progmodes/sh-script.el (sh-mode):
15141 * progmodes/sql.el (sql-mode, sql-interactive-mode):
15142 * progmodes/vhdl-mode.el (vhdl-mode):
15143 * progmodes/xscheme.el (scheme-interaction-mode):
15144 * replace.el (occur-mode):
15145 * ses.el (ses-mode):
15146 * simple.el (completion-list-mode):
15147 * skeleton.el:
15148 * speedbar.el (speedbar-mode):
15149 * term.el (term-mode):
15150 * terminal.el (terminal-edit-mode):
15151 * textmodes/reftex-index.el (reftex-index-mode)
15152 (reftex-index-phrases-mode):
15153 * textmodes/reftex-sel.el (reftex-select-label-mode)
15154 (reftex-select-bib-mode):
15155 * textmodes/reftex-toc.el (reftex-toc-mode):
15156 * wdired.el (wdired-change-to-wdired-mode):
15157 * wid-browse.el (widget-browse-mode):
15158 Use run-mode-hooks.
15159
15160 * array.el (array-mode):
15161 * calendar/todo-mode.el (todo-mode):
15162 * man.el (Man-mode):
15163 * play/landmark.el (lm-mode):
15164 * play/mpuz.el (mpuz-mode):
15165 Use kill-all-local-variables and run-mode-hooks.
15166
15167 * subr.el (delay-mode-hooks): Specify indentation.
15168
15169 2005-05-26 Mark A. Hershberger <mah@everybody.org>
15170
15171 * xml.el (xml-substitute-special): Don't die for undefined xml
15172 entities.
15173
15174 2005-05-26 Jay Belanger <belanger@truman.edu>
15175
15176 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
15177 of nil.
15178
15179 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
15180
15181 * progmodes/gdb-ui.el (gdb-frame-address):
15182 Rename from gdb-current-address.
15183 (gdb-previous-frame-address): Rename from gdb-previous-address.
15184 (gdb-selected-frame): Rename from gdb-current-frame.
15185 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
15186 (gdb-frame-number): Rename from gdb-current-stack-level.
15187 (gdb-ann3): Match new mode-name for disassembly buffer.
15188 Extend initialization of variables.
15189 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
15190 (gdb-memory-mode): Use mouse-face in header line.
15191 (gdb-assembler-buffer-name): Call it disassembly and give frame
15192 in mode line.
15193 (gdb-source-spec-regexp, gdb-assembler-custom)
15194 (gdb-invalidate-assembler, gdb-frame-handler):
15195 Make robust to leading zeroes in address format.
15196
15197 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
15198
15199 * textmodes/org.el (org-mode): Use `define-derived-mode' to
15200 define `org-mode'.
15201 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
15202
15203 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
15204
15205 * log-edit.el (log-edit-changelog-entries): Distinguish between
15206 filenames like xfns.c and fns.c.
15207
15208 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
15209
15210 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
15211 point after reverting.
15212 (Buffer-menu-make-sort-button): Handle the case where
15213 `Buffer-menu-use-header-line' is nil.
15214
15215 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
15216
15217 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
15218 New funcs. In minibuffer-local-completion-map bind `]', `/'
15219 and `:' to them.
15220
15221 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
15222
15223 * startup.el (normal-top-level): Allow modification of load-path while
15224 we're iterating over it.
15225
15226 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
15227
15228 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
15229 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
15230 (thumbs-resize-interactive, thumbs-insert-image)
15231 (thumbs-insert-thumb, thumbs-dired-show-marked)
15232 (thumbs-find-image-at-point, thumbs-delete-images)
15233 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
15234 (thumbs-increment-image-size, thumbs-decrement-image-size):
15235 Fix typos in docstrings.
15236
15237 2005-05-24 Andre Spiegel <spiegel@gnu.org>
15238
15239 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
15240 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
15241 (cperl-mode): Use them.
15242
15243 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
15244
15245 * window.el (quit-window, shrink-window-if-larger-than-buffer):
15246 Doc fixes.
15247
15248 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
15249
15250 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
15251 Bind C-d to gdb-inferior-io-eof.
15252
15253 * dired.el (dired-dnd-popup-notice): Use message-box.
15254
15255 2005-05-23 Masatake YAMATO <jet@gyve.org>
15256
15257 * bindings.el (mode-line-major-mode-keymap):
15258 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
15259
15260 * faces.el (mode-line-highlight): New face.
15261
15262 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
15263 as mouse-face.
15264
15265 * bindings.el (top-level, help-echo, mode-line-modified)
15266 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
15267 as mouse-face.
15268
15269 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
15270
15271 * progmodes/cc-engine.el (c-guess-basic-syntax):
15272 Remove spurious call to `zerop'.
15273
15274 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
15275
15276 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
15277
15278 CC Mode update to 5.30.10:
15279
15280 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
15281 could go past the limit in decoration level 2, thereby causing
15282 errors during interactive fontification.
15283
15284 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
15285 the file is evaluated interactively.
15286
15287 * cc-engine.el (c-guess-basic-syntax): Handle operator
15288 declarations somewhat better in C++.
15289
15290 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
15291 make use of `run-mode-hooks' which has been added in Emacs 21.1.
15292 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
15293 (awk-mode): Use it.
15294 (make-local-hook): Suppress warning about obsoleteness.
15295
15296 * cc-engine.el, cc-align.el, cc-cmds.el
15297 (c-append-backslashes-forward, c-delete-backslashes-forward)
15298 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
15299 Compensate for return value from `forward-line' when it has moved
15300 but not to a different line due to eob.
15301
15302 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
15303 `objc-method-intro' and `objc-method-args-cont'.
15304
15305 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
15306
15307 CC Mode update to 5.30.10:
15308
15309 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
15310 in the copyright statement. Incidentally, change "along with GNU
15311 Emacs" to "along with this program" where it occurs.
15312
15313 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
15314 so that it is interactive, hence can be found by M-x awk-mode
15315 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
15316 <gmorris+emacs@ast.cam.ac.uk>.
15317
15318 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
15319 Mode's regexps.
15320
15321 2005-05-23 Kevin Ryde <user42@zip.com.au>
15322
15323 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
15324 c-parse-state, to avoid a lisp error (on bad code).
15325
15326 2005-05-23 Lute Kamstra <lute@gnu.org>
15327
15328 * subr.el (font-lock-defaults): Remove defvar as it's already
15329 defined in font-core.el.
15330
15331 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
15332
15333 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
15334
15335 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
15336 more general and work when GDB variable "print pretty" is on,
15337 as with Emacs, for example.
15338
15339 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
15340
15341 * font-core.el: Update comment.
15342
15343 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
15344 Use `after-change-major-mode-hook' instead of `find-file-hook'.
15345
15346 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
15347
15348 2005-05-22 Eli Zaretskii <eliz@gnu.org>
15349
15350 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
15351 and `yank-handler' in the doc strings.
15352
15353 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
15354
15355 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
15356
15357 2005-05-22 Richard M. Stallman <rms@gnu.org>
15358
15359 * help.el (describe-key): Move print-help-return-message call
15360 out of conditional.
15361
15362 * progmodes/etags.el (list-tags): Use with-no-warnings.
15363
15364 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
15365 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
15366 (starttls-extra-args, starttls-extra-arguments): Add defvars.
15367
15368 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
15369
15370 * language/viet-util.el (viet-viscii-nonascii-translation-table):
15371 Add defvar.
15372
15373 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
15374 Use defvar, not defconst.
15375
15376 * hexl.el (hexl-follow-line): Use with-no-warnings.
15377
15378 * emulation/tpu-extras.el: Use write-file-functions instead of
15379 write-file-hooks.
15380
15381 * dired.el (dired-font-lock-keywords): Fontify files with junk
15382 extensions even if marked by -F.
15383
15384 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
15385
15386 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
15387 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
15388 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
15389 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
15390 (concatenate, list-length, get*, getf, cl-remprop):
15391 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
15392 (etypecase, progv, lexical-let, lexical-let*)
15393 (multiple-value-bind, multiple-value-setq, shiftf):
15394 Improve argument/docstring consistency.
15395
15396 * subr.el (focus-frame, unfocus-frame): Revert deletion on 2005-05-01.
15397
15398 2005-05-22 Andre Spiegel <spiegel@gnu.org>
15399
15400 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
15401 doesn't exist.
15402
15403 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
15404 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
15405
15406 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
15407
15408 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
15409 already deleted variables: auto-fill-hook, blink-paren-hook,
15410 lisp-indent-hook, inhibit-local-variables, unread-command-event,
15411 suspend-hooks, comment-indent-hook, meta-flag,
15412 before-change-function, after-change-function,
15413 font-lock-doc-string-face.
15414
15415 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
15416
15417 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
15418
15419 2005-05-21 Eli Zaretskii <eliz@gnu.org>
15420
15421 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
15422 rmail-dont-reply-to.
15423
15424 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
15425
15426 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
15427 literal blank when splitting new-header-values.
15428
15429 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
15430
15431 * calendar/cal-menu.el (cal-menu-update): Add separator as a
15432 string so that tmm doesn't create a completion entry for it.
15433
15434 * textmodes/table.el (table-disable-menu): Ditto.
15435
15436 2005-05-21 Richard M. Stallman <rms@gnu.org>
15437
15438 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
15439
15440 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
15441
15442 * net/rcompile.el (remote-compile): Use compilation-start.
15443
15444 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
15445
15446 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
15447
15448 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
15449 Default to makefile-bsdmake-mode on BSD systems.
15450
15451 * imenu.el (imenu-generic-expression, imenu--generic-function'):
15452 REGEXP may also be a search function now. The part of doc-string
15453 for describing the structure was 95% identical to that of
15454 `imenu--generic-function'. Unify it there.
15455
15456 * progmodes/make-mode.el (makefile-imenu-generic-expression):
15457 Use function to find dependencies, because regexp alone is so complex,
15458 it easily goes into an endless loop.
15459 (makefile-makepp-mode): Also add submenu for Perl functions
15460 defined in the makefile.
15461 (makefile-bsdmake-mode): Special imenu-generic-expression no
15462 longer needed, due to function call.
15463 (makefile-match-dependency): Take BOUND into account when checking
15464 if we're through.
15465
15466 2005-05-20 Jay Belanger <belanger@truman.edu>
15467
15468 * calc/calc-units.el (calc-invalidate-units-table):
15469 Use inhibit-read-only.
15470 (math-build-units-table-buffer): Use view-mode.
15471
15472 2005-05-20 David Kastrup <dak@gnu.org>
15473
15474 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
15475 easy-menu-add is not a nop on Emacs; and clarify when to call it.
15476
15477 2005-05-20 Lute Kamstra <lute@gnu.org>
15478
15479 * diff-mode.el (diff-header-face, diff-file-header-face)
15480 (diff-index-face, diff-hunk-header-face, diff-removed-face)
15481 (diff-added-face, diff-changed-face, diff-function-face)
15482 (diff-context-face, diff-nonexistent-face): Put them in the
15483 diff-mode customization group.
15484
15485 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
15486
15487 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
15488
15489 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
15490
15491 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
15492 Minor regexp-optimization.
15493
15494 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
15495
15496 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
15497 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
15498 (org-agenda-add-time-grid-maybe): New function.
15499 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
15500 (org-table-create): `dotimes' instead of `mapcar'.
15501 (org-xor): Simplify implementation.
15502 (org-agenda): `inhibit-redisplay' turned on.
15503 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
15504 a consistent line after a state change.
15505 (org-agenda-remove-times-when-in-prefix): New option.
15506 (org-prefix-has-time): New variable.
15507 (org-parse-time-string): Optional argument NODEFAULT.
15508 (org-format-agenda-item): Parse items for time-of-day
15509 specifications and move these into the prefix if possible.
15510 (org-agenda-priority): Get current heading, not previous heading
15511 during agenda remote editing.
15512
15513 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
15514
15515 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
15516 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
15517 (remove-duplicates, delete-duplicates, substitute)
15518 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
15519 (nsubstitute-if-not, find, find-if, find-if-not, position)
15520 (position-if, position-if-not, count, count-if, count-if-not)
15521 (mismatch, search, sort*, stable-sort, merge, member*)
15522 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
15523 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
15524 (intersection, nintersection, set-difference, nset-difference)
15525 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
15526 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
15527 (nsublis, tree-equal): Improve argument/docstring consistency.
15528
15529 * subr.el (send-string, send-region): Remove obsolescence declaration.
15530 (window-dot, set-window-dot, read-input, show-buffer)
15531 (eval-current-buffer, string-to-int):
15532 Add release number to obsolescence declarations.
15533
15534 2005-05-19 Kim F. Storm <storm@cua.dk>
15535
15536 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
15537 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
15538
15539 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
15540
15541 * faces.el (list-faces-display): Make back button respect optional
15542 regexp arg.
15543
15544 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
15545
15546 * calculator.el (calculator-radix-grouping-mode)
15547 (calculator-radix-grouping-digits, calculator-displayer)
15548 (calculator-radix-grouping-separator, calculator-copy-displayer):
15549 * dabbrev.el (dabbrev-search-these-buffers-only):
15550 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
15551 (diff-advance-after-apply-hunk, diff-mode-hook)
15552 (diff-minor-mode-prefix):
15553 * imenu.el (imenu-use-popup-menu):
15554 * jit-lock.el (jit-lock-context-time):
15555 * newcomment.el (comment-fill-column, comment-column)
15556 (comment-style, comment-padding, comment-multi-line)
15557 (comment-empty-lines, comment-auto-fill-only-comments):
15558 * reveal.el (reveal-around-mark):
15559 * uniquify.el (uniquify-buffer-name-style)
15560 (uniquify-after-kill-buffer-p)
15561 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
15562 (uniquify-min-dir-content, uniquify-separator)
15563 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
15564 * w32-vars.el (w32-fixed-font-alist):
15565 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
15566 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
15567 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
15568 * progmodes/perl-mode.el (perl-indent-level)
15569 (perl-continued-statement-offset, perl-continued-brace-offset)
15570 (perl-brace-offset, perl-brace-imaginary-offset)
15571 (perl-label-offset, perl-indent-continued-arguments)
15572 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
15573 * progmodes/tcl.el (tcl-indent-level)
15574 (tcl-continued-indent-level, tcl-auto-newline)
15575 (tcl-tab-always-indent, tcl-electric-hash-style)
15576 (tcl-help-directory-list, tcl-use-smart-word-finder)
15577 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
15578 (inferior-tcl-source-command):
15579 * textmodes/fill.el (enable-kinsoku):
15580 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
15581 * textmodes/table.el (table-yank-handler):
15582 Specify missing group (and type, if simple) in defcustom.
15583
15584 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
15585
15586 * progmodes/compile.el (compilation-finish-function): Fix defvar.
15587
15588 2005-05-19 Richard M. Stallman <rms@gnu.org>
15589
15590 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
15591
15592 * subr.el (event-basic-type): Don't get an error.
15593 (left-fringe-p): Function deleted.
15594
15595 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
15596 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
15597
15598 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
15599 in recursive copy.
15600
15601 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
15602
15603 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
15604
15605 * emacs-lisp/bytecomp.el
15606 (byte-compile-file-form-custom-declare-variable):
15607 Call byte-compile-nogroup-warn if appropriate.
15608
15609 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
15610 (compilation-set-window): Don't call left-fringe-p; do it directly.
15611
15612 2005-05-19 Jay Belanger <belanger@truman.edu>
15613
15614 * calc/calc-graph.el (calc-graph-format-data): Make sure
15615 var-PlotRejects is bound before trying to check its value.
15616
15617 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
15618
15619 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
15620 definition of this variable from reftex-global.el to reftex.el,
15621 because it is needed in the menu.
15622
15623 2005-05-19 Lute Kamstra <lute@gnu.org>
15624
15625 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
15626 years are fixed. Don't insert a space after a dash.
15627
15628 2005-05-19 Kim F. Storm <storm@cua.dk>
15629
15630 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
15631
15632 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
15633
15634 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
15635 strings, because (eq ... ?\\) is fairly frequent.
15636
15637 * progmodes/make-mode.el (makefile-add-this-line-targets):
15638 Simplify and integrate into `makefile-pickup-targets'.
15639 (makefile-add-this-line-macro): Simplify and integrate into
15640 `makefile-pickup-macros.
15641 (makefile-pickup-filenames-as-targets): Simplify.
15642 (makefile-previous-dependency, makefile-match-dependency):
15643 Don't stumble over `::'.
15644
15645 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
15646
15647 * subr.el (post-command-idle-hook, post-command-idle-delay):
15648 Remove obsoletion of post-command-idle-hook and
15649 post-command-idle-delay.
15650
15651 * faces.el (list-faces-display): Provide button when describe-face
15652 is called to take user back to the list of faces.
15653
15654 * help-fns.el (describe-variable): Remove hyperlinks in a
15655 variable's value as these are quite frequently inappropriate.
15656
15657 * follow.el (follow-submit-feedback, follow-mode):
15658 Remove references to post-command-idle-hook.
15659
15660 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
15661
15662 * progmodes/make-mode.el (makefile-previous-dependency)
15663 (makefile-match-dependency): Check for := (and in bsd mode also
15664 !=) to give a better result, even when font-lock is not on.
15665
15666 2005-05-18 Jay Belanger <belanger@truman.edu>
15667
15668 * calc/calc-help.el (calc-s-prefix-help):
15669 Add `calc-copy-special-constant' to help string.
15670
15671 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
15672
15673 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
15674
15675 2005-05-18 Jay Belanger <belanger@truman.edu>
15676
15677 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
15678 in linear factors are in proper order.
15679
15680 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
15681
15682 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
15683 Support for jurabib.
15684
15685 * textmodes/reftex.el (featurep): Define aliases for overlay
15686 commands, for XEmacs compatibility, and use these aliases in
15687 overlay initializations.
15688 (reftex-highlight): Use `reftex-move-overlay'.
15689 (reftex-unhighlight): Use `reftex-delete-overlay'.
15690 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
15691 (reftex-access-search-path): Use `reftex-uniquify' instead of
15692 `reftex-uniq'
15693
15694 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
15695 `before-string' property modification enables for Emacs as well.
15696 (reftex-select-item): Use `reftex-delete-overlay'.
15697 (reftex-select-mark): Use `reftex-make-overlay' and
15698 `reftex-overlay-put'.
15699 (reftex-select-unmark): Use `reftex-delete-overlay' and
15700 `reftex-overlay-put'.
15701
15702 2005-05-18 Lute Kamstra <lute@gnu.org>
15703
15704 * emacs-lisp/lisp.el (check-parens): Fix docstring.
15705
15706 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
15707
15708 * add-log.el (add-change-log-entry):
15709 * array.el (array-make-template, array-reconfigure-rows)
15710 (array-init-max-row, array-init-max-column)
15711 (array-init-columns-per-line, array-init-field-width):
15712 * replace.el (replace-match-maybe-edit, perform-replace):
15713 * textmodes/spell.el (spell-region):
15714 Replace `read-input' by `read-string'.
15715
15716 * forms.el (forms-mode):
15717 * finder.el (finder-compile-keywords):
15718 * shadowfile.el (shadow-read-files):
15719 Replace `eval-current-buffer' by `eval-buffer'.
15720
15721 * terminal.el (te-pass-through):
15722 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
15723 (ange-ftp-raw-send-cmd):
15724 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
15725 (send-process-next-char, telnet-initial-filter, telnet):
15726 Replace `send-string' by `process-send-string'.
15727
15728 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
15729 (prolog-consult-region): Replace `send-string' by
15730 `process-send-string'; replace `send-region' by `process-send-region'.
15731
15732 * progmodes/delphi.el (delphi-log-msg):
15733 Replace `set-window-dot' by `set-window-point'.
15734
15735 * subr.el (window-dot, set-window-dot, read-input, send-string)
15736 (send-region, show-buffer, eval-current-buffer):
15737 Make really obsolete, as the comment says.
15738
15739 2005-05-17 Kim F. Storm <storm@cua.dk>
15740
15741 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
15742 (cua--init-keymaps): Bind C-return instead of S-return to set
15743 rectangle mark.
15744
15745 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
15746 instead of S-return to toggle/clear rectangle mark.
15747
15748 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
15749
15750 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
15751 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
15752 Also fontify plain strings assigned to variables, mostly so that a
15753 colon has a face and is thus not taken as a dependency separator.
15754 (makefile-previous-dependency): Inline the new matcher, because it
15755 is too complex to work in both directions.
15756 (makefile-match-dependency): Eliminate `backward' arg (see above).
15757 Completely reimplemented so as to not sometimes go into an endless
15758 loop. It should also be more efficient, because first it only
15759 searches for `:', instead of applying the very complex regexp.
15760 (makefile-mode): Cancel `font-lock-support-mode', because blocks
15761 to be fontified in one piece can be too long for JIT.
15762 Makefiles are never *that* big.
15763
15764 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
15765
15766 * dired.el (dired-mode): Simplify.
15767
15768 2005-05-17 Lute Kamstra <lute@gnu.org>
15769
15770 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
15771 defcustom for the mode hook variable.
15772
15773 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
15774 Emacs Lisp Reference Manual.
15775
15776 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
15777
15778 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
15779 (evenp, list*):
15780 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
15781 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
15782
15783 * net/tramp-smb.el (tramp-smb-open-connection):
15784 Pass `tramp-chunksize' as fifth (required) argument.
15785
15786 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
15787
15788 * font-lock.el (lisp-font-lock-keywords-1):
15789 Set `font-lock-negation-char-face' for [^...] char group.
15790 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
15791
15792 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
15793 a var, and refine it to mask one more level of nested vars.
15794 (makefile-rule-action-regex): Turn it into a var, and refine it so
15795 it recognizes backslashed continuation lines as belonging to the
15796 same command.
15797 (makefile-macroassign-regex): Refine it so it recognizes
15798 backslashed continuation lines as belonging to the same command.
15799 (makefile-var-use-regex): Don't look at the next char, because it
15800 might be the same one to be skipped by the initial [^$], leading
15801 to an overlooked variable use.
15802 (makefile-make-font-lock-keywords): Remove two parameters, which
15803 are now variables that some of the modes set locally.
15804 Handle dependency and rule action matching through functions, because
15805 regexps alone match too often. Dependency matching now comes
15806 last, so it can check, whether a colon already matched something else.
15807 (makefile-mode): Inform that font-lock improves makefile parsing
15808 capabilities.
15809 (makefile-match-dependency, makefile-match-action): New functions.
15810
15811 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
15812
15813 * emacs-lisp/cl-extra.el (equalp): Doc fix.
15814
15815 * align.el (align-regexp):
15816 * ansi-color.el (ansi-color-get-face):
15817 * array.el (array-reconfigure-rows, array-init-max-row)
15818 (array-init-max-column, array-init-columns-per-line)
15819 (array-init-field-width):
15820 * dired-aux.el (dired-trample-file-versions):
15821 * dired-x.el (dired-mark-sexp):
15822 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
15823 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
15824 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
15825 * faces.el (face-read-integer):
15826 * files.el (backup-extract-version, insert-directory):
15827 * hexl.el (hexl-insert-decimal-char):
15828 * server.el (server-process-filter):
15829 * shell.el (shell-extract-num):
15830 * startup.el (command-line-1):
15831 * term.el (term-command-hook):
15832 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
15833 (time-stamp-do-number):
15834 * time.el (display-time-update):
15835 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
15836 (timezone-fix-time):
15837 * vms-patch.el (vms-suspend-resume-hook):
15838 * calendar/appt.el (appt-convert-time):
15839 * calendar/cal-bahai.el (mark-bahai-diary-entries):
15840 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
15841 * calendar/cal-islam.el (mark-islamic-diary-entries):
15842 * calendar/calendar.el (calendar-cursor-to-date)
15843 (calendar-star-date):
15844 * calendar/diary-lib.el (diary-attrtype-convert)
15845 (mark-diary-entries, diary-entry-time):
15846 * calendar/solar.el (solar-get-number):
15847 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
15848 * emacs-lisp/re-builder.el (reb-display-subexp):
15849 * emulation/edt.el (edt-set-scroll-margins):
15850 * emulation/tpu-extras.el (tpu-set-scroll-margins):
15851 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
15852 (vip-get-ex-count):
15853 * emulation/viper-ex.el (viper-get-ex-token)
15854 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
15855 * international/fontset.el (fontset-plain-name):
15856 * mail/feedmail.el (feedmail-look-at-queue-directory):
15857 * mail/mailalias.el (mail-get-names):
15858 * mail/rmail.el (rmail-convert-to-babyl-format):
15859 * mail/rmailsum.el (rmail-make-basic-summary-line)
15860 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
15861 (rmail-summary-goto-msg):
15862 * mail/smtpmail.el (smtpmail-read-response):
15863 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
15864 (ange-ftp-vms-add-file-entry):
15865 * play/gametree.el (gametree-looking-at-ply)
15866 (gametree-current-branch-score):
15867 * progmodes/ada-xref.el (ada-prj-find-prj-file)
15868 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
15869 * progmodes/cperl-mode.el (condition-case):
15870 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
15871 (ebrowse-set-member-buffer-column-width)
15872 (ebrowse-select-1st-to-9nth):
15873 * progmodes/etags.el (etags-snarf-tag):
15874 * progmodes/flymake.el (flymake-parse-line):
15875 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
15876 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
15877 (idlwave-shell-menu-def):
15878 * progmodes/ps-mode.el (ps-run-goto-error):
15879 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
15880 (vhdl-speedbar-contract-level):
15881 * term/mac-win.el (x-handle-numeric-switch):
15882 * term/sun-mouse.el (sun-get-frame-data):
15883 * term/w32-win.el (x-handle-numeric-switch):
15884 * term/x-win.el (x-handle-numeric-switch):
15885 * textmodes/ispell.el (ispell-parse-output):
15886 * textmodes/nroff-mode.el (nroff-outline-level):
15887 * textmodes/reftex-cite.el (reftex-bib-sort-year)
15888 (reftex-bib-sort-year-reverse, reftex-format-citation):
15889 * textmodes/reftex-parse.el (reftex-init-section-numbers)
15890 (reftex-section-number):
15891 * textmodes/texinfmt.el (texinfo-paragraphindent):
15892 Replace `string-to-int' by `string-to-number'.
15893
15894 * international/latexenc.el: Add page marker to force the "Local
15895 Variables:" string out of the last page.
15896
15897 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
15898
15899 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
15900 tooltip-change-major-mode.
15901 (gud-tooltip-print-command): Remove case where gud-minor-mode
15902 is gdb ("--fullname").
15903 (gud-tooltip-tips): Turn GUD tooltips off for this case and
15904 explain to user.
15905
15906 2005-05-16 Jay Belanger <belanger@truman.edu>
15907
15908 * calc/calc-store.el (calc-copy-special-constant): New function.
15909
15910 * calc/calc-ext.el (calc-init-extensions): Add binding for
15911 `calc-copy-special-constant'.
15912
15913 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
15914 for the `calc-copy-special-constant' command.
15915
15916 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
15917
15918 * subr.el (left-fringe-p): New function.
15919
15920 * progmodes/compile.el (compilation-setup): Set local value of
15921 overlay-arrow-string to "" always.
15922 (compilation-set-window): Left fringe then don't scroll.
15923 No left fringe then no arrow and scroll message to top.
15924 (compilation-context-lines): Adjust doc string accordingly.
15925
15926 2005-05-16 Kim F. Storm <storm@cua.dk>
15927
15928 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
15929 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
15930 (ido-wide-find-dir-or-delete-dir): New command for M-d.
15931 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
15932 (ido-read-file-name): Handle commands with ido property value
15933 equal to find-file as reading a file name, to allow C-d to enter dired.
15934 (ibuffer-find-file): Add ido property with value find-file.
15935
15936 2005-05-15 Kim F. Storm <storm@cua.dk>
15937
15938 * subr.el (open-network-stream-nowait): Remove.
15939 (open-network-stream-server): Remove.
15940
15941 2005-05-15 Richard M. Stallman <rms@gnu.org>
15942
15943 * faces.el (describe-face): Output a definition link button.
15944
15945 * help-mode.el (help-face-def): New button type.
15946
15947 * emacs-lisp/copyright.el (copyright-fix-years):
15948 Match properly if the first year is 2-digit.
15949 Don't mess up the whitespace after the years by filling.
15950
15951 * dired-aux.el (dired-mark-confirm):
15952 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
15953
15954 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
15955 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
15956 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
15957
15958 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
15959 Set font-lock-comment-start-skip.
15960
15961 * font-lock.el (font-lock-comment-start-skip): New variable.
15962 (font-lock-comment-end-skip): New variable.
15963 (font-lock-fontify-syntactically-region): Use them if non-nil.
15964
15965 2005-05-15 Jay Belanger <belanger@truman.edu>
15966
15967 * calc/calc-store.el (calc-store-value): Return a string rather
15968 than display it as a message.
15969 Use calc-var-name for variable name.
15970 (calc-store-into): Add the result of calc-store-value to message.
15971 (calc-copy-variable): Add a message.
15972 (calc-store-exchange): Improve error messages.
15973 (calc-store-binary, calc-store-map): Don't reset the values of
15974 special constants.
15975
15976 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
15977
15978 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
15979 manual to docstring.
15980
15981 * files.el (hack-local-variables-confirm): Add STRING argument.
15982 Make the function handle non file visiting buffers correctly.
15983 (hack-local-variables-prop-line, hack-local-variables)
15984 (hack-one-local-variable): Use STRING arg of
15985 `hack-local-variables-confirm'.
15986
15987 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
15988
15989 Sync with Tramp 2.0.49.
15990
15991 * net/tramp.el (tramp-handle-dired-call-process)
15992 (tramp-handle-insert-directory):`insert-buffer' cannot be used
15993 because the contents of the Tramp buffer is changed before
15994 insertion (`expand-file' and alike).
15995 (tramp-handle-insert-directory): If `localname' has an empty
15996 nondirectory name, it must not be quoted.
15997 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
15998 variable `tramp-chunksize'. Change callees.
15999 (tramp-open-connection-setup-interactive-shell): Check remote host
16000 for buggy `send-process-string' implementation.
16001 Set `tramp-chunksize' if found. Reported by Michael Kifer
16002 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
16003 (tramp-handle-shell-command): `insert-buffer' cannot be used
16004 because the contents of the Tramp buffer is changed before
16005 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
16006 <frederic.bothamy@free.fr>.
16007 (tramp-set-auto-save): Actions should be done for Tramp file name
16008 handler only. Ange-FTP has its own auto-save mechanism.
16009 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
16010 (tramp-set-auto-save-file-modes): Set file modes of
16011 `buffer-auto-save-file-name' to ?\600 as fallback solution.
16012 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
16013 (tramp-bug): Remove obsolete variable.
16014 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
16015 for presence of `mml-mode'. Make it running for older Emacsen as well.
16016
16017 2005-05-14 John Paul Wallington <jpw@pobox.com>
16018
16019 * ibuf-ext.el (define-ibuffer-filter filename):
16020 If `dired-directory' is a list, use its car.
16021
16022 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
16023
16024 * ibuffer.el (define-ibuffer-column filename):
16025 If `dired-directory' is a list, use its car.
16026
16027 2005-05-14 Richard M. Stallman <rms@gnu.org>
16028
16029 * subr.el (symbol-file): Doc fix.
16030
16031 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
16032 (byte-compile-form): Call byte-compile-nogroup-warn.
16033 (byte-compile-warning-types): Doc fix.
16034
16035 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
16036
16037 * progmodes/cc-engine.el (c-literal-faces):
16038 Add font-lock-comment-delimiter-face.
16039
16040 * net/net-utils.el (dig): Use with-no-warnings.
16041
16042 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
16043 (sc-recite-frame-alist, sc-default-cite-frame)
16044 (sc-default-uncite-frame, sc-default-recite-frame)
16045 (sc-attrib-selection-list, sc-rewrite-header-list):
16046 Mark as risky-local-variable.
16047
16048 * international/ogonek.el (ogonek-jak, ogonek-how):
16049 Don't use beginning-of-buffer.
16050
16051 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
16052
16053 * calendar/solar.el (solar-data-list): Move definition up.
16054
16055 * dnd.el (dnd-protocol-alist): Add autoload.
16056
16057 * progmodes/sh-script.el: Many doc usage fixes.
16058 (sh-indent-after-do): Change default to match common styles.
16059
16060 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
16061
16062 * files.el (interpreter-mode-alist)
16063 (auto-mode-interpreter-regexp): Doc fixes.
16064
16065 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
16066
16067 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
16068
16069 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
16070
16071 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16072
16073 * dired.el (dired-mode): make-variable-buffer-local =>
16074 make-local-variable.
16075
16076 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16077
16078 * term/mac-win.el (mac-select-convert-to-string): Try coding
16079 systems in mac-script-code-coding-systems if specified one cannot
16080 encode string for `com.apple.traditional-mac-plain-text'.
16081
16082 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
16083
16084 * progmodes/make-mode.el (makefile-targets-face)
16085 (makefile-shell-face, makefile-makepp-perl-face): New faces.
16086 (makefile-dependency-regex): Fix it to not make the colon in
16087 $(var:a=b) special.
16088 (makefile-rule-action-regex): New regexp for highlighting embedded
16089 Shell strings.
16090 (makefile-macroassign-regex): Handle != for highlighting as
16091 embedded Shell strings.
16092 (makefile-var-use-regex): New const.
16093 (makefile-statements, makefile-automake-statements)
16094 (makefile-gmake-statements, makefile-makepp-statements)
16095 (makefile-bsdmake-statements): New consts.
16096 (makefile-make-font-lock-keywords): New function.
16097 (makefile-automake-font-lock-keywords)
16098 (makefile-gmake-font-lock-keywords)
16099 (makefile-makepp-font-lock-keywords)
16100 (makefile-bsdmake-font-lock-keywords): New consts.
16101 (makefile-mode-map): Add switchers between the various submodes.
16102 (makefile-mode): Document the availability of the variants.
16103 (makefile-automake-mode, makefile-gmake-mode)
16104 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
16105
16106 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
16107 new variants of makefile-mode.
16108
16109 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
16110
16111 * font-lock.el (font-lock-comment-delimiter-face): Fix up
16112 the inheritance.
16113
16114 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
16115
16116 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
16117 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
16118
16119 * files.el (normal-mode): Extend the scope of the
16120 `enable-local-variables' binding to include the `set-auto-mode' call.
16121 (magic-mode-alist): Doc fix.
16122
16123 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
16124
16125 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
16126 font-lock-comment-face rather than copying its setting.
16127
16128 2005-05-12 Andreas Schwab <schwab@suse.de>
16129
16130 * eshell/esh-mode.el (eshell-send-input): Doc fix.
16131
16132 2005-05-12 Lute Kamstra <lute@gnu.org>
16133
16134 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
16135 defcustom for the mode hook variable. Delete the last argument.
16136 * generic-x.el: Fix callers of define-generic-mode.
16137 (generic-x-modes): Delete group.
16138 (show-tabs-tab-face, show-tabs-space-face): Put them in the
16139 generic-x customization group.
16140
16141 2005-05-12 Kim F. Storm <storm@cua.dk>
16142
16143 * font-lock.el (font-lock-negation-char-face): Default to "off".
16144
16145 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
16146 font-lock-negation-char-face to ! in !=.
16147
16148 2005-05-12 Masatake YAMATO <jet@gyve.org>
16149
16150 * add-log.el (find-change-log): Fix typos in the docstring
16151 of function.
16152
16153 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
16154
16155 * international/latexenc.el (latexenc-find-file-coding-system):
16156 Avoid `re-search-forward' when looking for input encoding because
16157 of speed and safety. Better regular expressions for recognizing
16158 input encoding. Limit a search for TeX-master/tex-main-file to
16159 the local variable section.
16160
16161 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
16162
16163 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
16164 syntax of $ to "'" (quote).
16165
16166 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
16167
16168 * dnd.el (dnd-protocol-alist): Improve custom type.
16169
16170 * dired.el (dired-dnd-protocol-alist): New variable.
16171 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
16172 `dired-mode-hook' to the end.
16173
16174 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
16175
16176 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
16177 comment-end if comment-start-skip is not set.
16178 Obey the font-lock-comment-delimiter-face variables.
16179
16180 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
16181
16182 * files.el (executable-find): Move from executable.el. Use
16183 locate-file.
16184 * progmodes/executable.el (executable-find): Move to files.el.
16185
16186 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
16187 when trying to ensure forward progress.
16188
16189 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
16190
16191 * mouse-sel.el (mouse-sel-follow-link-p): New function.
16192 (mouse-select, mouse-select-internal, mouse-extend-internal):
16193 Use it to implement mouse-1-click-follows-link functionality.
16194
16195 2005-05-11 Richard M. Stallman <rms@gnu.org>
16196
16197 * font-lock.el (font-lock-fontify-syntactically-region):
16198 Use font-lock-comment-delimiter-face for comment delimiters.
16199
16200 2005-05-10 Jay Belanger <belanger@truman.edu>
16201
16202 * calc/calc-help.el (calc-m-prefix-help): Add mention of
16203 preserving embedded modes.
16204
16205 2005-05-10 Richard M. Stallman <rms@gnu.org>
16206
16207 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
16208
16209 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
16210 Move from ada-stmt.el.
16211 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
16212
16213 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
16214 Move to ada-mode.el.
16215 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
16216
16217 * cus-edit.el (custom-file): Call file-chase-links.
16218
16219 * files.el (read-directory-name): Fix previous change.
16220 (hack-local-variables-confirm): New function.
16221 (hack-local-variables-prop-line, hack-local-variables)
16222 (hack-one-local-variable): Use it.
16223
16224 2005-05-10 Lute Kamstra <lute@gnu.org>
16225
16226 * font-lock.el (font-lock-keywords-alist)
16227 (font-lock-removed-keywords-alist): Clarify docstrings.
16228
16229 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
16230
16231 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
16232 (gdb-source-info): Check for preprocessor info.
16233 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
16234 a macro for a function.
16235 (gdb-info-breakpoints-custom): Try to find file again if not already
16236 found (user might have used GDB dir command).
16237 (gdb-get-location): Update gdb-location-alist correctly for change
16238 to gdb-info-breakpoints-custom.
16239
16240 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
16241 (gud-tooltip-print-command): Add gdbmi case.
16242 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
16243 preprocessor info.
16244
16245 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
16246
16247 * startup.el (fancy-splash-insert): Fix typo in doc string.
16248
16249 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
16250
16251 * obsolete/float.el (string-to-float):
16252 * obsolete/hilit19.el (hilit-add-pattern):
16253 * obsolete/rnews.el (news-parse-range, news-select-message)
16254 (news-get-pruned-list-of-files): Replace `string-to-int' by
16255 `string-to-number'.
16256
16257 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
16258 `find-file-not-found-hooks'; use `add-hook'.
16259 (uncompress-while-visiting): Set `write-file-functions', not
16260 `write-file-hooks'; use `add-hook'.
16261
16262 2005-05-09 Kim F. Storm <storm@cua.dk>
16263
16264 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
16265 (cua-paste): Handle clipboard action.
16266 (cua--init-keymaps): Remap clipboard-kill-region and
16267 clipboard-kill-ring-save.
16268
16269 2005-05-08 Eli Zaretskii <eliz@gnu.org>
16270
16271 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
16272 Improve commentary.
16273
16274 * simple.el (next-error-overlay-arrow-position): Revert the change
16275 made on 2005-04-30.
16276
16277 2005-05-07 Jay Belanger <belanger@truman.edu>
16278
16279 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
16280 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
16281 `calc-sel-reselect'.
16282
16283 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
16284 Calc is in embedded mode.
16285
16286 2005-05-07 Eli Zaretskii <eliz@gnu.org>
16287
16288 * progmodes/compile.el (compilation-setup):
16289 Set overlay-arrow-string to an empty string on text terminals.
16290
16291 * textmodes/ispell.el (ispell-program-name): Try looking for
16292 "aspell" along exec-path, and if found, use it as the default
16293 speller program.
16294
16295 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
16296
16297 * international/mule.el (sgml-xml-auto-coding-function):
16298 Recognize encoding='FOO' in single quotes as well as in double quotes.
16299
16300 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
16301
16302 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
16303 as well as `interactive', so that defmacro* would recognize
16304 `declare' forms.
16305
16306 2005-05-07 Eli Zaretskii <eliz@gnu.org>
16307
16308 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
16309 Explain more about the LIGHTER arg's usage in the doc string.
16310 Add commentary to clarify what the code does. Fix the regexp that
16311 strips whitespace from LIGHTER. Quote LIGHTER before using it,
16312 since it could have characters special to regular expressions.
16313
16314 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
16315
16316 * replace.el (occur-1): Bind inhibit-read-only so that
16317 erase-buffer doesn't barf on read-only text properties (likewise
16318 for add-text-properties in occur-engine). Mark buffer as unmodified.
16319 (occur-engine): Don't set buffer-read-only here.
16320
16321 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
16322
16323 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
16324 list-buffers-directory. This caused the *cvs-commit* buffer to be
16325 sometimes mistakenly reused as a *cvs* buffer.
16326
16327 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
16328
16329 * tooltip.el: Move code for GUD tooltips into gud.el.
16330 (require): CL no longer needed to compile case.
16331 (tooltip-mode): Do not toggle functions for GUD tooltips.
16332 (tooltip-gud-tips-p): Remove. Replace with minor mode
16333 gud-tooltip-mode in gud.el.
16334 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
16335 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
16336 tooltip-gud prefix with gud-tooltip and obsolete.
16337 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
16338 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
16339 (tooltip-mouse-motion): Mouse movement functions/variable.
16340 Rename in gud.el by adding gud prefix.
16341 (tooltip-gud-original-filter, tooltip-gud-dereference)
16342 (tooltip-gud-event, tooltip-toggle-gud-tips)
16343 (tooltip-gud-process-output, tooltip-gud-print-command)
16344 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
16345 gud.el by replacing tooltip-gud prefix with gud-tooltip.
16346 (gdb-tooltip-print): Move to gdb-ui.el.
16347
16348 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
16349 (require): CL needed to compile case.
16350 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
16351 tooltip-gud-tips-p. Make it a minor-mode.
16352 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
16353 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
16354 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
16355 (gud-tooltip-change-major-mode)
16356 (gud-tooltip-activate-mouse-motions-if-enabled)
16357 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
16358 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
16359 (gud-tooltip-original-filter, gud-tooltip-dereference)
16360 (gud-tooltip-event, tooltip-toggle-gud-tips)
16361 (gud-tooltip-process-output, gud-tooltip-print-command)
16362 (gud-tooltip-tips): Move from tooltip.el.
16363
16364 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
16365 (gdb-cpp-define-alist-flags): Doc fix.
16366 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
16367 gud-tooltip-mode is t.
16368
16369 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
16370
16371 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
16372 evaporate if their text is deleted.
16373 (goto-address-at-point): Make it work as a mouse binding as well.
16374 (goto-address-at-mouse): Obsolete it. Update users.
16375
16376 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
16377
16378 * calendar/appt.el (top-level): No longer activate on load.
16379
16380 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
16381
16382 * calendar/cal-bahai.el (mark-bahai-diary-entries):
16383 * net/webjump.el (webjump):
16384 * progmodes/idlw-help.el (idlwave-do-context-help1)
16385 (idlwave-highlight-linked-completions):
16386 * textmodes/po.el (po-find-file-coding-system-guts):
16387 Replace `assoc-ignore-case' by `assoc-string'.
16388
16389 2005-05-06 Eli Zaretskii <eliz@gnu.org>
16390
16391 * files.el (locate-file): Doc fix.
16392
16393 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
16394 Remove the redundant test for ms-dos.
16395
16396 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
16397 look for the preprocessor with exec-suffixes. If not found in
16398 standard places, look in exec-path. Remove most of the tests that
16399 used system-type.
16400
16401 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
16402
16403 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
16404
16405 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
16406 file-name clash with jka-compr.el on 8+3 filesystems.
16407
16408 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16409
16410 * term/mac-win.el: Don't define or bind scroll bar functions if
16411 x-toolkit-scroll-bars is t.
16412 (x-select-text, x-get-selection-value): Clear
16413 x-last-selected-text-clipboard if x-select-enable-clipboard is
16414 nil.
16415 (PRIMARY): Put mac-scrap-name property.
16416 (mac-select-convert-to-file-url): New function.
16417 (public.file-url): New selection target type. Add to
16418 selection-converter-alist.
16419 (x-get-selection, x-selection-value): Handle it.
16420 (x-cut-buffer-or-selection-value): New alias.
16421
16422 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16423
16424 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
16425 entry to avoid calling bibtex-find-entry with arg global
16426 being t. Remove arg key.
16427 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
16428 (bibtex-copy-summary-as-kill): Change accordingly.
16429
16430 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
16431
16432 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
16433 (org-agenda-date-later): Use with-current-buffer.
16434
16435 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
16436
16437 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
16438 (define-obsolete-variable-alias): Doc Fixes.
16439
16440 2005-05-06 Kim F. Storm <storm@cua.dk>
16441
16442 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
16443 vertical-motion when selective-display is active.
16444
16445 * ido.el (ido-setup-hook): New hook.
16446 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
16447 (ido-input-stack): New var.
16448 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
16449 ido-next-work-file binding to M-O.
16450 Bind M-f to ido-wide-find-file-or-pop-dir.
16451 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
16452 (ido-read-internal): Run ido-setup-hook.
16453 Catch quit in read-file-name and read-string to cancel edit.
16454 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
16455 Automatically pop-all when completing a directory name (RET).
16456 (ido-file-internal): Add with-no-warnings around ffap and dired code.
16457 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
16458 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
16459 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
16460 New functions for M-b/M-f to move among the directory components.
16461 (ido-make-merged-file-list): Catch quit to cancel merge.
16462 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
16463 (ido-completion-help): No warnings for ido-completion-buffer-full.
16464
16465 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
16466
16467 * font-lock.el (font-lock-negation-char-face): New face and variable.
16468 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
16469 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
16470 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
16471 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
16472
16473 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
16474
16475 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
16476 Fix typo in docstring.
16477
16478 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
16479 (ebrowse-print-statistics-line)
16480 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
16481
16482 * term/w32-win.el (image-library-alist): Add additional name for
16483 Xpm library.
16484
16485 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
16486
16487 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
16488 use gcc instead of cpp.
16489
16490 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
16491 (gdb-create-define-alist): Use it.
16492 (gdb-cpp-define-alist-program): Update for MS-DOS.
16493
16494 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
16495
16496 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
16497
16498 2005-05-04 Richard M. Stallman <rms@gnu.org>
16499
16500 * help.el (describe-key): No error when UNTRANSLATED is nil.
16501
16502 * simple.el (line-move-1): Fix previous change to signal errors
16503 appropriately.
16504
16505 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
16506
16507 * calendar/icalendar.el (icalendar-version): Now at 0.12.
16508 (icalendar-duration-correction): Remove.
16509 (icalendar--get-event-properties): Split result at commas.
16510 (icalendar--decode-isoduration): New optional argument
16511 DURATION-CORRECTION.
16512 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
16513 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
16514 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
16515 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
16516 (icalendar--convert-anniversary-to-ical): New functions, extracted
16517 from icalendar-export-region, with bug fixes.
16518 (icalendar-export-region): Use the above functions.
16519 (icalendar-import-buffer): Check before saving diary file.
16520 (icalendar--convert-recurring-to-diary)
16521 (icalendar--convert-non-recurring-all-day-to-diary)
16522 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
16523 extracted from icalendar--convert-ical-to-diary, with bug fixes.
16524 (icalendar--convert-ical-to-diary): Use the above functions.
16525
16526 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
16527
16528 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
16529 Remove these recent additions.
16530 (c-mode): Restore to before 2005-04-28.
16531
16532 * progmodes/cc-vars.el (cc-define-list-program): Remove this
16533 recent addition.
16534
16535 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
16536 (gdb-define-alist): New variables.
16537 (gdb-create-define-alist): New function.
16538 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
16539 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
16540 with string-to-number.
16541 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
16542
16543 * progmodes/gud.el: Replace string-to-int with string-to-number.
16544 (gud-find-file): Handle gdb-define-alist.
16545
16546 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
16547
16548 2005-05-02 Jay Belanger <belanger@truman.edu>
16549
16550 * calc/calc-aent.el (math-read-token):
16551 * calc/calc-bin.el (calc-word-size):
16552 * calc/calc-ext.el (calc-read-number-fancy):
16553 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
16554 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
16555 * calc/calc-frac.el (calc-over-notation):
16556 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
16557 (calc-graph-num-points, calc-graph-init):
16558 * calc/calc-prog.el (calc-read-parse-table-part)
16559 (calc-edit-macro-repeats):
16560 * calc/calc-yank.el (calc-do-grab-rectangle):
16561 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
16562 Replace `string-to-int' by `string-to-number'.
16563
16564 2005-05-02 Kim F. Storm <storm@cua.dk>
16565
16566 * kmacro.el: Use executing-kbd-macro-index variable.
16567
16568 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
16569
16570 * net/rlogin.el (rlogin-parse-words): Delete func.
16571 (rlogin): Use split-string, not rlogin-parse-words.
16572 Also, if there are option-like elements in the parsed args,
16573 take the host to be the first arg immediately following them.
16574 Suggested by Michael Mauger.
16575
16576 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
16577
16578 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
16579
16580 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
16581
16582 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
16583 (cc-mode-cpp-program): Rename to cc-define-list-program and
16584 move to cc-vars.el.
16585
16586 * progmodes/cc-vars.el (cc-define-list-program):
16587 Change to "gcc -E -dM -". Make customizable.
16588
16589 2005-05-02 Kim F. Storm <storm@cua.dk>
16590
16591 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
16592
16593 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
16594
16595 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
16596
16597 * international/mule-util.el (truncate-string): Remove alias and
16598 obsolete declaration.
16599
16600 * international/mule-cmds.el (update-iso-coding-systems):
16601 Remove alias and obsolete declaration.
16602
16603 * international/mule.el (coding-system-parent): Remove alias and
16604 obsolete declaration.
16605
16606 * subr.el (define-function, sref): Remove aliases and obsolete
16607 declarations.
16608 (chars-in-region): Remove obsolete declaration.
16609
16610 2005-05-01 Richard M. Stallman <rms@gnu.org>
16611
16612 * info.el (Info-mode): Set widen-automatically to nil, locally.
16613
16614 * simple.el (widen-automatically): New variable.
16615 (pop-global-mark): Obey widen-automatically.
16616
16617 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
16618
16619 * term/xterm.el (function-key-map): Call substitute-key-definition
16620 before the keymap size is increased by a lot of define-key calls.
16621
16622 2005-05-01 Richard M. Stallman <rms@gnu.org>
16623
16624 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
16625 Rename ARG to ELEMENT. Doc fix.
16626
16627 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
16628
16629 * allout.el (allout-exposure): Remove macro and obsolete declaration.
16630 Remove references to allout-exposure/change to allout-new-exposure.
16631
16632 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
16633 bytecode symbols.
16634
16635 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
16636 (compiled-function-p, focus-frame, unfocus-frame):
16637 Remove aliases and obsolete declarations.
16638 Back out inadvertent changes from previous commit.
16639
16640 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
16641
16642 * files.el (require-final-newline): Make Custom tags consistent
16643 with mode-require-final-newline.
16644 (mode-require-final-newline): Doc fix.
16645
16646 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
16647
16648 * international/latexenc.el (latexenc-find-file-coding-system):
16649 Fix regular expressions.
16650
16651 2005-05-01 David Kastrup <dak@gnu.org>
16652
16653 * international/latexenc.el (latexenc-find-file-coding-system):
16654 Fix regular expressions.
16655
16656 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
16657
16658 * subr.el (string-to-int): Make obsolete.
16659
16660 2005-04-30 Richard M. Stallman <rms@gnu.org>
16661
16662 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
16663
16664 * loadup.el: load jka-comp-hook.
16665
16666 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
16667 (jka-compr-handler): Add autoload. `put' calls moved
16668 to jka-comp-hook.el.
16669 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
16670 (jka-compr-inhibit): Autoload.
16671
16672 * jka-comp-hook.el: New file.
16673 Enable the mode by default.
16674
16675 * files.el (backup-buffer-copy): Use copy-file instead
16676 of write-region, and put back the 'excl.
16677
16678 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
16679
16680 * progmodes/flymake.el (flymake-split-string)
16681 (flymake-split-string, flymake-log, flymake-pid-to-names)
16682 (flymake-reg-names, flymake-get-source-buffer-name)
16683 (flymake-unreg-names, flymake-add-line-err-info)
16684 (flymake-add-err-info): Clarify docstrings.
16685 (flymake-popup-menu, flymake-make-emacs-menu)
16686 (flymake-make-xemacs-menu): Add docstrings.
16687 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
16688 Set variables directly throughout.
16689
16690 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
16691
16692 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
16693 exists. Initialize cc-define-alist.
16694 (c-mode): Add cc-create-define-alist locally to after-save-hook.
16695 If there is no file (Macroexpansion) don't create an alist.
16696
16697 2005-04-29 Sam Steingold <sds@gnu.org>
16698
16699 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
16700 (cc-create-define-alist): Use it instead of the hard-coded string.
16701
16702 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
16703
16704 * international/mule-conf.el (file-coding-system-alist): Fix regexp
16705 for latexenc.
16706
16707 2005-04-29 Lute Kamstra <lute@gnu.org>
16708
16709 * emacs-lisp/generic.el: Improve commentary section.
16710 (define-generic-mode): Improve docstring.
16711
16712 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
16713
16714 * textmodes/org.el (many places): Change to quiet the byte compiler.
16715 (org-prefix-format-compiled): New variable.
16716 (org-compile-prefix-format): New function.
16717 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
16718 (org-agenda-prefix-format, org-timeline-prefix-format): New options.
16719 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
16720 (org-get-entries-from-diary): Use `org-get-time-of-day' for
16721 consistency with entries from `org-mode' files.
16722 (org-get-time-of-day): Fix bug with partial matches early in a line.
16723 (org-non-link-chars): New constant.
16724 (org-link-regexp): Respect `org-non-link-chars'.
16725 (org-agenda-day-view): Remove command.
16726 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
16727 (org-follow-bbdb-link, org-store-link): Search also company field.
16728 (org-highlight-overlay): New variable.
16729 (org-highlight, org-unhighlight): New functions.
16730 (org-agenda-mode): Add pre-command-hook to remove highlight.
16731 (org-evaluate-time-range): Behavior depends upon whether time stamp
16732 contains a time or not.
16733 (org-show-subtree, org-show-entry): New functions.
16734 (org-agenda-cleanup-fancy-diary): Remove empty lines.
16735
16736 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
16737
16738 * comint.el (comint-output-filter-functions): Add autoload cookie.
16739
16740 2005-04-28 Kim F. Storm <storm@cua.dk>
16741
16742 * ido.el (ido-everywhere): Fix last change.
16743
16744 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
16745
16746 * international/latexenc.el: New file.
16747 * international/mule-conf.el (file-coding-system-alist): For .tex,
16748 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
16749
16750 2005-04-28 Lute Kamstra <lute@gnu.org>
16751
16752 * font-lock.el (font-lock-add-keywords)
16753 (font-lock-remove-keywords): Clarify docstring.
16754 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
16755 Don't start docstrings with a `*'.
16756 (font-lock-update-removed-keyword-alist): Give it a docstring.
16757
16758 * generic-x.el: Update commentary section.
16759 Only require font-lock when compiling.
16760 Define all modes conditionally.
16761 Place all generic modes in the generic-x-modes customization group.
16762 (generic-x-modes): New customization group.
16763 (generic-default-modes, generic-mswindows-modes)
16764 (generic-unix-modes, generic-other-modes): New constants.
16765 (generic-define-mswindows-modes, generic-define-unix-modes):
16766 Update docstrings. Make them obsolete.
16767 (generic-extras-enable-list): New default value. Update docstring.
16768 Improve :type. Change :set function.
16769 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
16770 Fix docstring.
16771
16772 * emacs-lisp/generic.el (generic-mode-internal):
16773 Simplify font-lock-defaults.
16774 (define-generic-mode): Fix docstring.
16775
16776 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
16777
16778 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
16779 font-lock-face property to highlight matches.
16780
16781 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
16782
16783 * progmodes/cc-mode.el (cc-create-define-alist): New function.
16784 (cc-define-alist): New variable.
16785 (c-mode): Make it local and initialize it.
16786
16787 * progmodes/gdb-ui.el (gdb-active-process): New variable.
16788 (gdb-exited): New function.
16789 (gdb-annotation-rules): Use it.
16790 (gdb-starting): Set gdb-active-process to t.
16791 (gdb-stopping): Amend doc string.
16792 (gdb-reset): Set gdb-active-process to nil.
16793
16794 * tooltip.el (tooltip-gud-tips): Show the associated #define
16795 directives when a C program under GDB is not executing.
16796
16797 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
16798
16799 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
16800 font-lock-fontify-syntactic-keywords.
16801
16802 * font-lock.el (font-lock-default-fontify-region): Don't force
16803 parse-sexp-lookup-properties to nil.
16804
16805 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
16806
16807 * man.el (man-mode-syntax-table): Set up `:' to have
16808 word-constituent syntax.
16809
16810 2005-04-27 Lute Kamstra <lute@gnu.org>
16811
16812 * novice.el (disable-command): Don't add spurious newlines to the
16813 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
16814
16815 2005-04-26 Jay Belanger <belanger@truman.edu>
16816
16817 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
16818 than one window before deleting window.
16819
16820 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
16821
16822 * shell.el (shell-prompt-pattern): Doc fix.
16823 (shell-mode): Set paragraph-separate buffer locally to "\\'".
16824
16825 * comint.el (comint-prompt-regexp, comint-get-old-input)
16826 (comint-use-prompt-regexp)
16827 (comint-use-prompt-regexp-instead-of-fields)
16828 (comint-replace-by-expanded-history, comint-send-input)
16829 (comint-output-filter, comint-get-old-input-default)
16830 (comint-line-beginning-position, comint-bol, comint-show-output)
16831 (comint-backward-matching-input, comint-forward-matching-input)
16832 (comint-next-prompt, comint-previous-prompt):
16833 Rename `comint-use-prompt-regexp-instead-of-fields' to
16834 `comint-use-prompt-regexp'. Keep old name as alias and declare
16835 obsolete.
16836 (comint-use-prompt-regexp): Shorten first line of doc string.
16837
16838 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
16839 Set paragraph-separate buffer locally to "\\'".
16840
16841 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
16842 Adapt to above name change.
16843
16844 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
16845 (smbclient-prompt-regexp): Ditto.
16846
16847 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
16848
16849 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
16850
16851 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
16852 gdb-location-list.
16853 Break lines that are over 80 characters wide.
16854
16855 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
16856
16857 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
16858 New fun and var, to preserve compatibility.
16859
16860 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
16861
16862 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
16863
16864 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
16865 name to file-newer-than-file-p.
16866
16867 2005-04-26 Richard M. Stallman <rms@gnu.org>
16868
16869 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
16870
16871 * progmodes/python.el (python-mode):
16872 Use new name eldoc-documentation-function.
16873
16874 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
16875
16876 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
16877 (eldoc-documentation-function):
16878 Rename from eldoc-print-current-symbol-info-function. Calls changed.
16879
16880 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
16881
16882 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
16883
16884 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
16885
16886 * term/xterm.el (function-key-map): Fix strings for
16887 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
16888 {C,S,A,C-S}-{f1-f12}.
16889
16890 2005-04-26 Kenichi Handa <handa@m17n.org>
16891
16892 * international/mule-cmds.el (select-safe-coding-system):
16893 Fix previous change.
16894
16895 2005-04-26 Lute Kamstra <lute@gnu.org>
16896
16897 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
16898
16899 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
16900 (font-lock-comment-delimiter-face): Ditto.
16901
16902 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
16903
16904 2005-04-25 Jay Belanger <belanger@truman.edu>
16905
16906 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
16907 to t while inserting information; use help-mode.
16908
16909 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
16910
16911 * term.el (ansi-term-color-vector): Use the xterm colors.
16912 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
16913
16914 2005-04-25 Lute Kamstra <lute@gnu.org>
16915
16916 * font-core.el (font-lock-defaults): Fix docstring.
16917
16918 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
16919
16920 2005-04-25 Kenichi Handa <handa@m17n.org>
16921
16922 * international/mule-cmds.el (select-safe-coding-system):
16923 Don't check consistency with coding: spec, etc if raw-text or
16924 no-conversion was found to be safe.
16925
16926 2005-04-24 Richard M. Stallman <rms@gnu.org>
16927
16928 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
16929 citation markers at start of each line.
16930
16931 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
16932 citation markers at start of each line.
16933
16934 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
16935
16936 * files.el (mode-require-final-newline): Fix previous change.
16937 (require-final-newline): Fix type label.
16938
16939 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
16940
16941 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
16942 statement in buffer (broken by 2004-11-24 change).
16943
16944 2005-04-24 Kim F. Storm <storm@cua.dk>
16945
16946 * ido.el (ido-everywhere): Save and restore old read-buffer-function
16947 and read-file-name-function values. Don't overwrite existing
16948 non-nil values if ido-mode is enabled without ido-everywhere.
16949
16950 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
16951
16952 * files.el (mode-require-final-newline): Minor doc fix.
16953
16954 2005-04-24 Eli Zaretskii <eliz@gnu.org>
16955
16956 * subr.el (syntax-after): Doc fix.
16957 (syntax-class): If argument is nil, return nil. Mask off upper 16
16958 bits, not 8 bits.
16959
16960 * files.el (mode-require-final-newline): Doc fix.
16961 (backup-buffer-copy): Fix last change.
16962
16963 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16964
16965 * term/mac-win.el: Require select. Set selection-coding-system to
16966 mac-system-coding-system. Call menu-bar-enable-clipboard.
16967 (x-last-selected-text-clipboard, x-last-selected-text-primary)
16968 (x-select-enable-clipboard): New variables.
16969 (x-select-text, x-get-selection, x-selection-value)
16970 (x-get-selection-value, mac-select-convert-to-string)
16971 (mac-services-open-file, mac-services-open-selection)
16972 (mac-services-insert-text): New functions.
16973 (CLIPBOARD, FIND): Put mac-scrap-name property.
16974 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
16975 (public.tiff): Put mac-ostype property.
16976 (selection-converter-alist): Add entries for them.
16977 (mac-application-menu-map): New keymap.
16978 (interprogram-cut-function, interprogram-paste-function): Set to
16979 x-select-text and x-get-selection-value, respectively.
16980 (split-window-keep-point): Set to t.
16981
16982 2005-04-23 Richard M. Stallman <rms@gnu.org>
16983
16984 * files.el (read-directory-name): Always pass non-nil
16985 DEFAULT-FILENAME arg to read-file-name.
16986 (backup-buffer-copy, basic-save-buffer-2): Take care against
16987 writing thru an unexpected existing symlink.
16988 (revert-buffer): In indirect buffer, revert the base buffer.
16989 (magic-mode-alist): Doc fix.
16990 (buffer-stale-function): Doc fix.
16991 (minibuffer-with-setup-hook): Avoid warning.
16992 (mode-require-final-newline): Doc and custom fix.
16993
16994 * follow.el (follow-end-of-buffer): Use with-no-warnings.
16995
16996 * font-lock.el (font-lock-comment-face): On terminals with few colors,
16997 use the default appearance.
16998 (font-lock-comment-delimiter-face): New face, new variable.
16999
17000 * imenu.el (imenu--generic-function): The official position of a
17001 definition is the start of the line that BEG is in.
17002
17003 * midnight.el (midnight-timer): Move defvar up.
17004
17005 * mouse.el (mouse-drag-region-1): Delete some debugging code.
17006
17007 * saveplace.el (save-place-to-alist): Use with-no-warnings.
17008
17009 * startup.el (command-line): Use with-no-warnings.
17010
17011 * window.el (window-size-fixed): New defvar.
17012
17013 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
17014
17015 * mail/rmail.el (rmail-font-lock-keywords):
17016 Use font-lock-comment-delimiter-face.
17017
17018 * mail/sendmail.el (mail-font-lock-keywords):
17019 Use font-lock-comment-delimiter-face.
17020
17021 * progmodes/compile.el (next-error-highlight-timer): New defvar.
17022
17023 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
17024
17025 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17026 Specify t for LAXMATCH when matching directories.
17027 Save match data around compilation-compat-error-properties form.
17028
17029 2005-04-23 David Kastrup <dak@gnu.org>
17030
17031 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
17032 Mention that the autoloaded aliases should be kept for AUCTeX.
17033
17034 2005-04-23 Andreas Schwab <schwab@suse.de>
17035
17036 * isearch.el (isearch-forward): Doc fix.
17037
17038 2005-04-23 Eli Zaretskii <eliz@gnu.org>
17039
17040 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
17041 (jit-lock-stealth-nice): Change default value to 0.5.
17042
17043 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
17044
17045 * abbrev.el (write-abbrev-file): Write table entries in
17046 alphabetical order by table name.
17047
17048 2005-04-22 Kim F. Storm <storm@cua.dk>
17049
17050 * ido.el (ido-read-internal): Fix `list' completion.
17051
17052 2005-04-22 Kenichi Handa <handa@m17n.org>
17053
17054 * recentf.el (recentf-save-file-coding-system): New variable.
17055 (recentf-save-list): Encode the file by
17056 recentf-save-file-coding-system and add coding: tag.
17057
17058 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
17059
17060 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
17061
17062 2005-04-21 Lute Kamstra <lute@gnu.org>
17063
17064 * loadhist.el (unload-feature): Don't remove a function from hooks
17065 if it is about to be restored to an autoload . Remove functions
17066 that will become unbound from auto-mode-alist. Simplify the code.
17067
17068 * subr.el (assq-delete-all): New implementation that is linear,
17069 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
17070 (rassq-delete-all): New function.
17071
17072 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
17073 Add size-indication-mode.
17074
17075 2005-04-21 Kenichi Handa <handa@m17n.org>
17076
17077 * international/mule-cmds.el: Add autoload for widget-value in
17078 eval-when-compile.
17079
17080 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
17081
17082 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
17083 Add tooltip-mode.
17084
17085 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
17086
17087 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
17088
17089 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
17090 (inferior-lisp-filter-regexp, inferior-lisp-program)
17091 (inferior-lisp-load-command, inferior-lisp-prompt)
17092 (inferior-lisp-mode-hook, lisp-source-modes)
17093 (inferior-lisp-load-hook): defvar->defcustom.
17094 (inferior-lisp-program, inferior-lisp-prompt)
17095 (inferior-lisp-load-hook): Doc fixes.
17096 (inferior-lisp-install-letter-bindings): Small change in
17097 introductory comment.
17098
17099 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
17100
17101 * vc.el (vc-annotate-color-map): Change some colors so that text
17102 using them as foreground is readable on both white and black
17103 backgrounds.
17104
17105 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
17106
17107 * international/mule-conf.el (translation-table-for-input):
17108 Remove redundant declaration.
17109
17110 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
17111
17112 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
17113
17114 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
17115 (tooltip-toggle-gud-tips): New function.
17116
17117 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17118
17119 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
17120 right angle brackets.
17121
17122 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
17123
17124 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
17125
17126 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
17127
17128 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
17129 Remove. Update callers to use expand-file-name instead.
17130
17131 * subr.el (syntax-class): New function.
17132
17133 * simple.el (blink-matching-open): Use it.
17134
17135 * paren.el (show-paren-function): Use it to recognize parens that are
17136 also used in 2-char comment markers.
17137
17138 2005-04-19 Lute Kamstra <lute@gnu.org>
17139
17140 * loadhist.el (unload-feature): Update for new format of
17141 load-history. Simplify the code.
17142
17143 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17144
17145 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
17146 (mac-add-charset-info): New function. Initialize variable
17147 mac-charset-info-alist using it.
17148 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
17149 for translation.
17150 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
17151 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
17152 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
17153 New CCL programs.
17154
17155 2005-04-19 Kim F. Storm <storm@cua.dk>
17156
17157 * simple.el (next-buffer, prev-buffer, next-error)
17158 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
17159 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
17160
17161 * bindings.el (next-buffer, prev-buffer, next-error)
17162 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
17163 (clone-indirect-buffer-other-window): Move bindings from simple.el.
17164 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
17165 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
17166
17167 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
17168
17169 * isearch.el (isearch-edit-string): Make the search-ring available for
17170 minibuffer history commands.
17171 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
17172 the default history commands now work just as well.
17173 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
17174
17175 2005-04-18 Kim F. Storm <storm@cua.dk>
17176
17177 * emulation/cua-base.el (cua--pre-command-handler): Add more
17178 elaborate check for shift modifier on non-window systems.
17179
17180 2005-04-18 Lars Hansen <larsh@math.ku.dk>
17181
17182 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
17183
17184 2005-04-18 Kim F. Storm <storm@cua.dk>
17185
17186 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
17187 and make it optional. Don't test tooltip-gud-echo-area here.
17188 (tooltip-gud-process-output, gdb-tooltip-print):
17189 Pass tooltip-gud-echo-area to tooltip-show.
17190 (tooltip-help-tips): Remove second optional arg to tooltip-show.
17191
17192 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17193
17194 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
17195 `display-graphic-p' may not be bound yet.
17196
17197 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
17198
17199 * startup.el (command-line): No longer enable Xterm Mouse mode by
17200 default in terminals compatible with xterm.
17201
17202 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
17203
17204 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
17205
17206 * tooltip.el (tooltip-gud-echo-area): Rename from
17207 tooltip-use-echo-area.
17208 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
17209 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
17210 area independently of where help tooltips are displayed.
17211
17212 2005-04-17 David Kastrup <dak@gnu.org>
17213
17214 * cus-theme.el (custom-theme-write-variables): Quote variables
17215 where necessary.
17216
17217 2005-04-17 Richard M. Stallman <rms@gnu.org>
17218
17219 * simple.el (yank-excluded-properties): Add follow-link to value.
17220
17221 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
17222
17223 * startup.el (fancy-splash-max-time): Just 30 seconds.
17224 (fancy-splash-delay): Just 7.
17225 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
17226
17227 * loadhist.el (unload-feature): Update for new format of load-history.
17228 Simplify the code.
17229
17230 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
17231 (rmail-font-lock-keywords): Don't fontify the text of a citation.
17232
17233 * mail/sendmail.el (mail-font-lock-keywords):
17234 Don't fontify subject text.
17235 Don't fontify the text of a citation.
17236
17237 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
17238
17239 * comint.el (comint-output-filter): Run comint-output-filter-functions
17240 with point where the user had it.
17241
17242 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
17243
17244 * international/ucs-tables.el (ucs-set-table-for-input):
17245 Disable when using unify-on-decoding.
17246
17247 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
17248
17249 * emulation/cua-base.el (cua-global-mark-face): Add special case
17250 for displays supporting a high number of colors.
17251
17252 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
17253
17254 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
17255
17256 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
17257
17258 * filesets.el (filesets-add-buffer): If user supplies a name of a
17259 non-existing fileset, create a new fileset.
17260
17261 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
17262
17263 * textmodes/org.el (org-up-heading-all): Fix bug with
17264 `outline-up-heading-all'.
17265
17266 2005-04-16 Andreas Schwab <schwab@suse.de>
17267
17268 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
17269 /etc/permissions.d/* and /etc/aliases.d/*.
17270
17271 2005-04-16 Kenichi Handa <handa@m17n.org>
17272
17273 * international/code-pages.el (cp-make-coding-system):
17274 Set `translation-table-for-input' property value to the symbol
17275 ucs-mule-to-mule-unicode, not to that value.
17276 (pt154): Escape guillemet by `\'.
17277
17278 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
17279
17280 * loadup.el: Load tooltip if x-show-tip is fboundp.
17281
17282 * startup.el (command-line): Add comment.
17283
17284 * tooltip.el (tooltip-mode): Specify correct standard value for
17285 Custom in init-value.
17286
17287 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
17288
17289 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
17290 possible.
17291
17292 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
17293
17294 * textmodes/org.el (org-agenda-date-prompt): Rename from
17295 `org-agenda-date-today'.
17296 (org-evaluate-time-range): Insert at point instead of directly
17297 after time range.
17298 (org-first-headline-recenter, org-subtree-end-visible-p)
17299 (org-optimize-window-after-visibility-change): New functions
17300 (org-agenda-post-command-hook): Don't allow point at end of line,
17301 to make sure it always hits the text properties.
17302 (org-agenda-next-date-line, org-agenda-previous-date-line):
17303 New commands.
17304 (org-set-regexps-and-options): Category may contain white space.
17305 (org-agenda-get-deadlines, org-agenda-get-scheduled):
17306 Improve marker positions.
17307 (org-agenda-new-marker): Argument POS made optional.
17308 (org-agenda-get-timestamps): Deadlines which are done are listed
17309 in org-done-face now.
17310 (org-agenda-get-todos, org-agenda-get-timestamps)
17311 (org-agenda-get-deadlines, org-agenda-get-scheduled):
17312 Set `undone-face' and `done-face' properties.
17313 (org-last-todo-state-is-todo): New variable.
17314 (org-todo): Set `org-last-todo-state-is-todo'.
17315 (org-agenda-todo): Change face according to
17316 `org-last-todo-state-is-todo'. And change other lines referring to
17317 the same entry.
17318 (org-calendar-goto-agenda): New command.
17319 (org-calendar-to-agenda-key): New option.
17320 (org-startup-folded): New allowed value `content'.
17321 (org-set-regexps-and-options): Accept new value `content' for
17322 `org-startup-folded'.
17323 (org-get-current-options): Handle new value `content' for
17324 `org-startup-folded'.
17325 (org-insert-todo-heading): New command.
17326 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
17327 interactively in empty file and option
17328 `org-insert-mode-line-in-empty-file' has been set.
17329 (org-agenda-todo, org-agenda-priority): Modify to use
17330 `org-agenda-change-all-lines'.
17331 (org-warning-face): Change color on dark background
17332
17333 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17334
17335 * international/mule-cmds.el (set-locale-environment): On Mac OS,
17336 use preferences AppleLocale and AppleLanguages, and variable
17337 mac-system-locale for default locale. On Mac OS Classic, use
17338 mac-system-coding-system for default coding systems.
17339
17340 * term/mac-win.el: Don't set file-name-coding-system.
17341 Decode variables system-name, emacs-build-system, user-login-name, and
17342 user-full-name by mac-system-coding-system on Mac OS Classic.
17343 (mac-system-coding-system): New variable.
17344
17345 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
17346
17347 * startup.el (command-line): Handle `xterm-mouse-mode' before
17348 reading init file.
17349
17350 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
17351
17352 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
17353
17354 * progmodes/sh-script.el (sh-here-document-word): Make it a
17355 defcustom. Doc fix.
17356 (sh-add): Bash uses $(( )) for arithmetic.
17357 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
17358 (sh-maybe-here-document): Remove quotes and leading whitespace
17359 from heredoc word when closing. Indent heredoc with tabs if word
17360 starts with "-".
17361
17362 2005-04-13 Richard M. Stallman <rms@gnu.org>
17363
17364 * simple.el (undo): Fix previous change.
17365
17366 * custom.el (defface): Doc fix.
17367
17368 2005-04-13 Lute Kamstra <lute@gnu.org>
17369
17370 * Makefile.in (DONTCOMPILE): Remove list.
17371 (compile, compile-always): Don't use DONTCOMPILE.
17372 (update-authors): Load the library in which batch-update-authors
17373 is defined.
17374 * makefile.w32-in (DONTCOMPILE): Remove list.
17375 (compile, compile-always): Fix comments.
17376 (update-authors): Load the library in which batch-update-authors
17377 is defined.
17378
17379 * generic-x.el (generic-mode-ini-file-find-file-hook):
17380 Rename to ini-generic-mode-find-file-hook.
17381 Keep generic-mode-ini-file-find-file-hook as an alias.
17382 (ini-generic-mode-find-file-hook): Rename from
17383 generic-mode-ini-file-find-file-hook. Fix docstring.
17384 (ini-generic-mode): Docstring change.
17385 (bat-generic-mode-run-as-comint): Silence the byte compiler.
17386
17387 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
17388 called from lisp.
17389
17390 * generic.el: Move to the emacs-lisp subdir.
17391
17392 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
17393
17394 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
17395 and C-S- function and cursor motion keys.
17396
17397 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
17398
17399 * startup.el (command-line): Enable Xterm Mouse mode by default.
17400 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
17401 for Custom. No longer show "Mouse" in mode line when enabled.
17402 Doc fix.
17403
17404 2005-04-12 Kim F. Storm <storm@cua.dk>
17405
17406 * emulation/cua-base.el (cua-rectangle-face)
17407 (cua-rectangle-noselect-face): Define face attributes here.
17408
17409 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
17410
17411 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17412
17413 * startup.el (command-line): Turn off blinking cursor if
17414 cursorBlink in resources is off or false.
17415
17416 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17417
17418 * term/mac-win.el (dnd): Require dnd.
17419 (mac-drag-n-drop): Call dnd-handle-one-url.
17420 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
17421 (kTextEncodingISOLatin2): Remove constants.
17422 (mac-script-code-coding-systems): New constant.
17423 (mac-handle-language-change): New function.
17424 (special-event-map): Bind it to `language-change' event.
17425 (mac-centraleurroman, mac-cyrillic): New coding systems.
17426 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
17427 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
17428 and mac-cyrillic-encoder to encode-mac-centraleurroman and
17429 encode-mac-cyrillic, respectively.
17430
17431 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
17432
17433 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
17434 Don't set overlay-arrow-string to "=>" as this is done
17435 globally in C now.
17436
17437 2005-04-12 Lute Kamstra <lute@gnu.org>
17438
17439 * generic-x.el (rc-generic-mode, rul-generic-mode):
17440 Fix auto-mode-alist entries.
17441 (etc-fstab-generic-mode): Tweak fontification.
17442
17443 * generic.el (generic-make-keywords-list): Fix docstring.
17444 (generic-mode-internal): Simplify generic-font-lock-keywords.
17445
17446 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
17447
17448 * whitespace.el (whitespace-buffer-leading)
17449 (whitespace-buffer-trailing): Revert the incorrect test inversion.
17450 However, fix the highlight area for the leading and
17451 trailing whitespaces to show space.
17452
17453 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
17454
17455 * whitespace.el (whitespace-version): Bump to 3.5
17456
17457 (whitespace-buffer-leading, whitespace-buffer-trailing):
17458 Invert sense of the test to highlight the whitespace.
17459
17460 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
17461
17462 * progmodes/gud.el (gud-display-line): GUD uses its own
17463 overlay arrow now so don't set overlay-arrow-string.
17464 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
17465
17466 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
17467
17468 * term.el (term-ansi-current-bold, term-ansi-current-underline)
17469 (term-ansi-current-reverse, term-ansi-current-invisible)
17470 (term-ansi-face-already-done): Change to boolean.
17471 (term-reset-terminal, term-handle-colors-array): Handle the above
17472 vars accordingly.
17473 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
17474 (term-emulate-terminal): Use the new name.
17475
17476 * faces.el (secondary-selection): Use yellow1, not yellow.
17477 (trailing-whitespace): Use red1, not red.
17478
17479 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17480
17481 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
17482 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
17483 (dired-dnd-handle-file): Call dnd-get-local-file-uri
17484
17485 * cus-edit.el (dnd): New group.
17486
17487 * term/w32-win.el (dnd): Require dnd
17488 (w32-drag-n-drop): Call dnd-handle-one-url.
17489
17490 * x-dnd.el: Require dnd.
17491 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
17492 Call dnd-handle-one-url.
17493 (x-dnd-types-alist, x-dnd-insert-utf8-text)
17494 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
17495 to dnd-insert-text.
17496 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
17497 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
17498 (x-dnd-get-local-file-name, x-dnd-open-local-file)
17499 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
17500
17501 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
17502
17503 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
17504
17505 * wdired.el: Doc fixes.
17506 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
17507 (wdired-use-dired-vertical-movement): Rename from
17508 wdired-always-move-to-filename-beginning.
17509 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
17510 (wdired-change-to-wdired-mode): Change mode name.
17511 (wdired-newline): Delete.
17512
17513 2005-04-11 Richard M. Stallman <rms@gnu.org>
17514
17515 * whitespace.el (whitespace-highlight-the-space):
17516 Don't call whitespace-unhighlight-the-space here.
17517
17518 * simple.el (undo): Record t in undo-equiv-table
17519 for the redo record made by an undo-in-region.
17520
17521 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
17522
17523 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
17524 (gdb-frame-inferior-io-buffer): New Functions to control
17525 display of separate IO buffer.
17526 (menu): Add them to menu-bar.
17527 (gdb-display-buffer): Check for buffer another frame.
17528 Protect GUD buffer.
17529 (gdb-setup-windows): Create IO buffer if not already there.
17530 (gdb-memory-mode): Remove purecopy noops.
17531
17532 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
17533
17534 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
17535 and pass to self-insert-command.
17536
17537 2005-04-11 Lute Kamstra <lute@gnu.org>
17538
17539 * generic.el: Commentary section cleanup.
17540 (generic): Delete.
17541 (generic-use-find-file-hook, generic-lines-to-scan)
17542 (generic-find-file-regexp, generic-ignore-files-regexp)
17543 (default-generic-mode, generic-mode-find-file-hook)
17544 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
17545 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
17546 (generic-use-find-file-hook, generic-lines-to-scan)
17547 (generic-find-file-regexp, generic-ignore-files-regexp)
17548 (default-generic-mode, generic-mode-find-file-hook)
17549 (generic-mode-ini-file-find-file-hook): Move from generic.el.
17550
17551 2005-04-10 Karl Fogel <kfogel@red-bean.com>
17552
17553 * bookmark.el (bookmark-write-file): Catch errors writing file.
17554 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
17555
17556 2005-04-10 Richard M. Stallman <rms@gnu.org>
17557
17558 * startup.el (fancy-splash-tail): Update copyright year.
17559 (command-line): Split part of -Q into -D.
17560 (emacs-basic-display): New defvar.
17561 (fancy-splash-text): Correct name of menu item.
17562
17563 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
17564
17565 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
17566 lines in one node.
17567
17568 * comint.el (comint-send-input): New arg ARTIFICIAL.
17569 Callers in this file changed.
17570
17571 * abbrev.el (define-abbrevs): Read system abbrevs properly.
17572
17573 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
17574
17575 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
17576
17577 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
17578 `ldap-search-internal'.
17579
17580 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
17581
17582 * files.el (set-auto-mode-1): Use line-end-position.
17583
17584 * international/latin-1.el:
17585 * international/latin-2.el:
17586 * international/latin-3.el:
17587 * international/latin-4.el:
17588 * international/latin-5.el:
17589 * international/latin-8.el:
17590 * international/latin-9.el: Give punctuation syntax to NBSP.
17591
17592 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
17593 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
17594 Use char-classes to accept non-ascii letters, accepted in some recent
17595 bibtex implementations.
17596
17597 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
17598
17599 * custom.el (custom-set-minor-mode): Any non-nil value for the
17600 variable should enable the mode when set through Custom.
17601
17602 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
17603
17604 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
17605 TAB binding so tab-always-indent is obeyed.
17606 (vhdl-minibuffer-local-map): Move initialization into declaration.
17607 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
17608 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
17609 (vhdl-hooked-abbrev): Avoid test for XEmacs.
17610 (vhdl-current-line): Use line-beginning-position.
17611 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
17612 with-output-to-temp-buffer, so the current position can be recorded.
17613
17614 2005-04-10 Masatake YAMATO <jet@gyve.org>
17615
17616 * progmodes/compile.el (compilation-error-regexp-alist-alist):
17617 Add regexp for gcov.
17618
17619 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
17620
17621 * calendar/time-date.el (time-to-seconds, seconds-to-time)
17622 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
17623 syntax which Emacs 20 doesn't support.
17624
17625 2005-04-09 Richard M. Stallman <rms@gnu.org>
17626
17627 * help.el (describe-key-briefly, describe-key):
17628 Replace strings as event types with "(any string)".
17629
17630 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
17631
17632 * arc-mode.el (archive-mode-map): Move initialization into
17633 the declaration. Override *all* bindings of `undo'.
17634 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
17635
17636 2005-04-09 Jay Belanger <belanger@truman.edu>
17637
17638 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
17639
17640 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
17641
17642 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
17643 (xterm-register-default-colors): Update color values computation
17644 to match xterm-200.
17645
17646 2005-04-09 Kenichi Handa <handa@m17n.org>
17647
17648 * international/code-pages.el (iso-latin-7): Fix the map.
17649
17650 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
17651
17652 * emacs-lisp/lisp.el (defun-prompt-regexp)
17653 (parens-require-spaces, buffer-end, end-of-defun)
17654 (insert-parentheses): Doc fixes.
17655
17656 2005-04-08 Kim F. Storm <storm@cua.dk>
17657
17658 * comint.el (comint-highlight-prompt): Fix face spec.
17659 * hi-lock.el (hi-green): Likewise.
17660
17661 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
17662
17663 * cus-edit.el (custom-modified-face):
17664 * comint.el (comint-highlight-input): Fix previous changes.
17665 * term.el (term-handle-ansi-escape): Add a comment.
17666
17667 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
17668
17669 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
17670 in the buffer and in whitespace-highlighted-space.
17671 (whitespace-unhighlight-the-space): Simplify.
17672 (whitespace-buffer): Simplify.
17673
17674 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
17675
17676 * textmodes/table.el (table-cell-face): Add special case for
17677 displays supporting a high number of colors.
17678 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
17679 (vhdl-font-lock-reserved-words-face)
17680 (vhdl-speedbar-architecture-face)
17681 (vhdl-speedbar-instantiation-face)
17682 (vhdl-speedbar-architecture-selected-face)
17683 (vhdl-speedbar-instantiation-selected-face): Likewise.
17684 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
17685 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
17686 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
17687 (ebrowse-root-class-face, ebrowse-member-attribute-face)
17688 (ebrowse-progress-face): Likewise.
17689 * progmodes/compile.el (compilation-info-face): Likewise.
17690 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
17691 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
17692 * calendar/calendar.el (diary-face): Likewise.
17693 * woman.el (woman-italic-face, woman-bold-face)
17694 (woman-unknown-face): Likewise.
17695 * wid-edit.el (widget-button-pressed-face): Likewise.
17696 * whitespace.el (whitespace-highlight-face): Likewise.
17697 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
17698 * pcvs-info.el (cvs-marked-face): Likewise.
17699 * info.el (info-xref): Likewise.
17700 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
17701 * hilit-chg.el (highlight-changes-face)
17702 (highlight-changes-delete-face): Likewise.
17703 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
17704 (hi-red-b): Likewise.
17705 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
17706 * font-lock.el (font-lock-keyword-face)
17707 (font-lock-function-name-face, font-lock-warning-face): Likewise.
17708 * cus-edit.el (custom-invalid-face, custom-modified-face)
17709 (custom-set-face, custom-changed-face, custom-variable-tag-face)
17710 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
17711 * comint.el (comint-highlight-prompt): Likewise.
17712
17713 2005-04-08 Lute Kamstra <lute@gnu.org>
17714
17715 * font-lock.el (font-lock-keywords): Docstring fixes.
17716
17717 2005-04-08 Kenichi Handa <handa@m17n.org>
17718
17719 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
17720 chars are more than a limit, print " and more..." at the tail.
17721
17722 2005-04-08 Kim F. Storm <storm@cua.dk>
17723
17724 * emacs-lisp/authors.el (authors-aliases): Update list.
17725 (authors-ignored-files): New list.
17726 (authors-fixed-entries): Fix typo.
17727 (authors-renamed-files-alist): Update list.
17728 (authors-add): Check authors-ignored-files.
17729
17730 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
17731
17732 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
17733 optional, to ensure backward compatibility.
17734
17735 2005-04-08 Stephen Eglen <stephen@gnu.org>
17736
17737 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
17738
17739 2005-04-08 Kim F. Storm <storm@cua.dk>
17740
17741 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
17742
17743 * mouse.el (mouse-on-link-p): Doc fix.
17744
17745 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
17746
17747 * ielm.el (ielm-prompt-read-only): Doc fix.
17748
17749 * comint.el (comint-prompt-read-only): Doc fix.
17750
17751 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
17752
17753 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
17754 ensure dired always handles wildcards passed to ffap.
17755 (find-file-at-point): Use it.
17756 (ffap-dired-wildcards): Doc fix.
17757
17758 2005-04-07 Juri Linkov <juri@jurta.org>
17759
17760 * simple.el (next-error-overlay-arrow-position): New defvar.
17761 Put "=>" on its property `overlay-arrow-string'. Add it to
17762 `overlay-arrow-variable-list'.
17763
17764 * progmodes/compile.el (compilation-setup):
17765 Set `next-error-overlay-arrow-position' to nil. Also set it to
17766 nil in the local hook `kill-buffer-hook'. Make local variable
17767 `overlay-arrow-string' and set it to "=>".
17768 (compilation-goto-locus): Set BOL position to
17769 `next-error-overlay-arrow-position' instead of
17770 `overlay-arrow-position'.
17771
17772 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
17773 locally instead of adding it to the global hook.
17774 (Info-kill-buffer): Move up.
17775
17776 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
17777
17778 * term/xterm.el (xterm-standard-colors): Update color values from
17779 xterm-200.
17780
17781 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
17782
17783 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
17784
17785 * fast-lock.el:
17786 * lazy-lock.el: Move them to the obsolete subdir.
17787
17788 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
17789
17790 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
17791 (wdired-add-replace-advice): Remove.
17792 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
17793
17794 2005-04-06 Kim F. Storm <storm@cua.dk>
17795
17796 * startup.el (command-line): Add --bare-bones alias for -Q.
17797
17798 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17799
17800 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
17801 create the startup fontset if a font specification ends with
17802 `mac-roman'.
17803
17804 2005-04-06 Lute Kamstra <lute@gnu.org>
17805
17806 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
17807 change.
17808
17809 * emacs-lisp/copyright.el (copyright-update-year): Replace the
17810 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
17811
17812 2005-04-05 Lute Kamstra <lute@gnu.org>
17813
17814 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
17815 (define-generic-mode): Ditto. Fix debug declaration.
17816
17817 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
17818 Put them in the generic-x group.
17819
17820 * calendar/timeclock.el (timeclock): Doc fix.
17821
17822 * generic.el (define-generic-mode): Don't use custom-current-group.
17823 Document default :group value.
17824 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
17825 (define-global-minor-mode): Don't use custom-current-group.
17826
17827 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
17828
17829 * startup.el (command-line-1): Display startup-echo-area-message
17830 when fancy splash screen is in use.
17831
17832 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
17833 (sh-escaped-newline): New face.
17834 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
17835 newline, and use sh-escaped-newline face.
17836
17837 * progmodes/tcl.el (tcl-escaped-newline): New face.
17838 (tcl-builtin-list): New variable.
17839 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
17840 newlines. Fix keywords subexpression number.
17841
17842 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
17843
17844 * textmodes/org.el (org-diary-default-entry): Fix call to
17845 `add-to-diary-entry'.
17846
17847 2005-04-05 Kim F. Storm <storm@cua.dk>
17848
17849 * ediff-init.el: Use (featurep 'xemacs).
17850
17851 2005-04-05 David Ponce <david@dponce.com>
17852
17853 * cus-edit.el (face): Derive from symbol widget. Display sample
17854 of the current face on the fly.
17855 (widget-face-sample-face-get, widget-face-notify): New functions.
17856 (widget-face-value-create): Remove.
17857
17858 * wid-edit.el (widget-field-end): Temporarily remove field
17859 narrowing before to call `get-char-property'.
17860
17861 2005-04-04 Jay Belanger <belanger@truman.edu>
17862
17863 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
17864 (math-read-subscripts): New variable.
17865 (math-read-preprocess-string): Process subscripts.
17866
17867 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
17868
17869 * comint.el (comint-prompt-read-only): Doc fix.
17870
17871 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
17872 `-1'. Doc fix.
17873
17874 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
17875
17876 * textmodes/org.el (org-insert-mode-line-in-empty-file):
17877 Change default value to nil.
17878
17879 2005-04-04 Lute Kamstra <lute@gnu.org>
17880
17881 * autorevert.el (auto-revert-mode): Specify :group.
17882 * battery.el (display-battery-mode): Specify :group.
17883 * diff-mode.el (diff-minor-mode): Specify :group.
17884 * font-core.el (font-lock-mode): Specify :group.
17885 * hl-line.el (hl-line-mode): Specify :group.
17886 * iimage.el (iimage): New customization group.
17887 (iimage-mode): Specify :group.
17888 * longlines.el (longlines-mode): Specify :group.
17889 * master.el: Don't require easy-mmode.
17890 (master): New customization group.
17891 (master-mode): Specify :group.
17892 * msb.el (msb-mode): Specify :group.
17893 * reveal.el (reveal-mode): Specify :group.
17894 * simple.el (next-error-follow-minor-mode): Specify :group.
17895 * smerge-mode.el (smerge-mode): Specify :group.
17896 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
17897 * emulation/cua-base.el (cua-mode): Specify :group.
17898 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
17899 * language/thai-util.el (thai-auto-composition-mode)
17900 (thai-word-mode): Specify :group.
17901 * mail/supercite.el (sc-minor-mode): Specify :group.
17902 * progmodes/cwarn.el (cwarn-mode): Specify :group.
17903 * progmodes/flymake.el (flymake-mode): Specify :group.
17904 * progmodes/glasses.el (glasses-mode): Specify :group.
17905 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
17906 * textmodes/enriched.el (enriched-mode): Specify :group.
17907 * textmodes/refill.el (refill-mode): Specify :group.
17908
17909 * add-log.el (change-log-font-lock-keywords): Names in
17910 parenthesized lists can contain spaces.
17911
17912 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
17913
17914 * startup.el (fancy-splash-text): Shorten default text of
17915 "Emacs Tutorial" line. Also, if the current language env
17916 indicates an available tutorial file other than TUTORIAL,
17917 extract its title and append it to the line in parentheses.
17918 (fancy-splash-insert): If arg is a thunk, funcall it.
17919
17920 2005-04-04 Jay Belanger <belanger@truman.edu>
17921
17922 * calc.el (calc-language-alist): Add tags to customization type.
17923
17924 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
17925
17926 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
17927 Doc fix.
17928
17929 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
17930
17931 * add-log.el (change-log-font-lock-keywords): The manual
17932 describing a Change Log entry, says: (...) "Aside from these
17933 header lines, every line in the change log starts with a space or
17934 a tab.". The font-lock was not highlighting lines started with
17935 spaces, added support for it.
17936
17937 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
17938
17939 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
17940 (bibtex-generate-url-list): Update docstring accordingly. Put the
17941 complex example in the docstring.
17942 (bibtex-font-lock-url): Use pop.
17943
17944 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
17945
17946 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
17947
17948 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
17949
17950 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
17951
17952 * filesets.el (filesets-set-default): Doc fix.
17953
17954 2005-04-03 Lute Kamstra <lute@gnu.org>
17955
17956 * generic.el (define-generic-mode): Add argument to specify
17957 keywords for defcustom.
17958 (default-generic-mode): Specify :group.
17959
17960 * generic-x.el: Specify :group for all generic modes.
17961
17962 * desktop.el (desktop-no-desktop-file-hook)
17963 (desktop-after-read-hook): Doc fix.
17964
17965 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
17966
17967 * simple.el (visible-mode): Use explicit :group keyword.
17968 This changes the group of `visible-mode-hook' from paren-blinking
17969 to editing-basics.
17970
17971 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
17972
17973 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
17974 mailbox specifications as well as URLs.
17975 (rmail-insert-inbox-text): Remove unused conditional branches.
17976
17977 2005-04-01 Jay Belanger <belanger@truman.edu>
17978
17979 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
17980 (calc-gnuplot-print-command): Move definitions to calc.el.
17981
17982 * calc/calc-embed.el (calc-embedded-announce-formula)
17983 (calc-embedded-open-formula, calc-embedded-close-formula)
17984 (calc-embedded-open-word, calc-embedded-close-word)
17985 (calc-embedded-open-plain, calc-embedded-close-plain)
17986 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
17987 (calc-embedded-open-mode, calc-embedded-close-mode):
17988 Move definitions to calc.el.
17989
17990 * calc/calc.el (calc-settings-file, calc-language-alist):
17991 Make customizable.
17992 (calc-embedded-announce-formula, calc-embedded-open-formula)
17993 (calc-embedded-close-formula, calc-embedded-open-word)
17994 (calc-embedded-close-word, calc-embedded-open-plain)
17995 (calc-embedded-close-plain, calc-embedded-open-new-formula)
17996 (calc-embedded-close-new-formula, calc-embedded-open-mode)
17997 (calc-embedded-close-mode, calc-gnuplot-name)
17998 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
17999 from other files and make customizable.
18000
18001 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
18002
18003 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
18004 Use buffer-live-p.
18005 (cvs-mode-run): Don't call cvs-update-header here.
18006 (cvs-run-process): Call cvs-update-header.
18007 Use process properties for cvs-postprocess and cvs-buffer so that
18008 the sentinel can behave better if the temp buffer is killed.
18009 Use a pipe rather than a tty, to better handle unexpected prompts.
18010 (cvs-sentinel): Rewrite. Call cvs-update-header.
18011
18012 2005-04-01 Andre Spiegel <spiegel@gnu.org>
18013
18014 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
18015 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
18016
18017 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
18018
18019 * generic.el (define-generic-mode): Add indentation rule.
18020
18021 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
18022
18023 * files.el (mode-require-final-newline): Make Custom correctly
18024 report a nil value and allow to set it to nil via Custom.
18025 Doc fix.
18026
18027 2005-04-01 Kenichi Handa <handa@m17n.org>
18028
18029 * international/characters.el: Enable the correct case setting for
18030 dotless-i and dotted-I.
18031
18032 2005-04-01 Kim F. Storm <storm@cua.dk>
18033
18034 * ido.el (ido-file-internal): Fall back to non-ido command if
18035 initial directory is on slow ftp (or tramp) host.
18036
18037 2005-03-31 Richard M. Stallman <rms@gnu.org>
18038
18039 * emacs-lisp/autoload.el (make-autoload):
18040 Handle define-global-minor-mode.
18041
18042 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
18043 Rename from easy-mmode-define-global-mode.
18044 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
18045
18046 * progmodes/scheme.el (scheme-mode-syntax-table):
18047 Update syntax of | and # for two-character comment syntax.
18048
18049 2005-03-31 Lute Kamstra <lute@gnu.org>
18050
18051 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
18052 (define-minor-mode): Call custom-current-group at load-time.
18053
18054 * generic.el (define-generic-mode): Add debug declaration.
18055 Add defcustom for the mode hook.
18056 (generic-mode-internal): Use run-mode-hooks.
18057
18058 2005-03-31 Kim F. Storm <storm@cua.dk>
18059
18060 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
18061 (mouse-fixup-help-message): New defun called by show_help_echo
18062 to fixup mouse-2 prefix in help messages when applicable.
18063
18064 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
18065
18066 2005-03-31 Kenichi Handa <handa@m17n.org>
18067
18068 * language/thai-word.el (thai-find-word-ends): Pay attention to
18069 the case that we reach the end of buffer.
18070
18071 * textmodes/fill.el (fill-text-properties-at): New function.
18072 (fill-newline): Use fill-text-properties-at instead of
18073 text-properties-at.
18074
18075 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
18076
18077 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
18078 not comint-quote-filename.
18079
18080 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
18081
18082 * help-fns.el (help-with-tutorial): Revert last change.
18083
18084 2005-03-31 Kim F. Storm <storm@cua.dk>
18085
18086 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
18087
18088 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
18089
18090 * calendar/cal-china.el: Update reference to "Calendrical
18091 Calculations" book; there's a new edition.
18092 * calendar/cal-coptic.el: Likewise.
18093 * calendar/cal-french.el: Likewise.
18094 * calendar/cal-hebrew.el: Likewise.
18095 * calendar/cal-islam.el: Likewise.
18096 * calendar/cal-iso.el: Likewise.
18097 * calendar/cal-julian.el: Likewise.
18098 * calendar/cal-mayan.el: Likewise.
18099 * calendar/cal-persia.el: Likewise.
18100 * calendar/calendar.el: Likewise.
18101 * calendar/holidays.el: Likewise.
18102 * calendar/lunar.el: Likewise.
18103 * calendar/solar.el: Likewise.
18104
18105 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
18106 white space from doc string.
18107
18108 2005-03-30 Jay Belanger <belanger@truman.edu>
18109
18110 * calc/calc-help.el (calc-full-help): Remove email address.
18111
18112 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
18113
18114 * help-fns.el (help-with-tutorial): Delete title line.
18115
18116 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
18117
18118 * calendar/cal-x.el (calendar-one-frame-setup)
18119 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
18120 rather than `symbol' for set-window-dedicated-p.
18121
18122 * calendar/appt.el (appt-buffer-name): Make it a constant.
18123 (appt-add): Doc fix.
18124
18125 * filesets.el (filesets-menu-path, filesets-menu-before)
18126 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
18127 (filesets-menu-cache-file): Use directory ~/.emacs.d.
18128 (filesets-add-submenu): Delete and use add-submenu instead.
18129
18130 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
18131
18132 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
18133 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
18134 (org-diary-default-entry): New function.
18135 (org-get-entries-from-diary): Better parsing of diary entries.
18136 (org-agenda-check-no-diary): New function.
18137 ("diary-lib"): Advice to function `add-to-diary-list', to allow
18138 linking to diary entries.
18139 (org-agenda-execute-calendar-command): New function.
18140 (org-agenda): Improve visible section in window.
18141 Use `org-fit-agenda-window'.
18142 (org-fit-agenda-window): New option.
18143 (org-move-subtree-down): Better handling of empty lines
18144 at end of subtree.
18145 (org-cycle): Numeric prefix is interpreted now as show-subtree N
18146 levels up.
18147 (org-fontify-done-headline): New option.
18148 (org-headline-done-face): New face.
18149 (org-set-font-lock-defaults): Use `org-headline-done-face'.
18150 (org-table-copy-down): Rename from `org-table-copy-from-above'.
18151 When current field is non-empty, it is copied to next row.
18152 (org-table-copy-from-above): Fix bug which made it
18153 impossible to copy fields containing only a single non-white character.
18154
18155 2005-03-30 Kim F. Storm <storm@cua.dk>
18156
18157 * kmacro.el (kmacro-end-macro): Isearch may store this command
18158 into the macro -- so ignore it when executing keyboard macro.
18159
18160 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
18161
18162 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
18163
18164 2005-03-29 Kenichi Handa <handa@m17n.org>
18165
18166 * language/thai.el ("Thai"): Set setup-function and exit-function
18167 for Thai language environment.
18168
18169 * language/thai-util.el: Require thai-word.
18170 (thai-word-mode-map): New variable.
18171 (thai-word-mode): New minor mode.
18172 (setup-thai-language-environment-internal): New function.
18173 (exit-thai-language-environment-internal): New function.
18174
18175 * language/thai-word.el (thai-word-table): Declare it by defvar,
18176 use dolist to initialize it.
18177 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
18178 (thai-fill-find-break-point): New functions.
18179
18180 2005-03-29 Richard M. Stallman <rms@gnu.org>
18181
18182 * simple.el (idle-update-delay): Move definition up.
18183 (set-mark): Doc fix.
18184
18185 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
18186
18187 * longlines.el: New file.
18188
18189 * simple.el (buffer-substring-filters): New variable.
18190 (filter-buffer-substring): New function.
18191 (kill-region, copy-region-as-kill): Use it.
18192
18193 * register.el (copy-to-register, append-to-register)
18194 (prepend-to-register): Use filter-buffer-substring.
18195
18196 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
18197
18198 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
18199 (gud-filter-pending-text): Move in front of gdb.
18200 (gud-overlay-arrow-position): New variable.
18201 (gud-sentinel, gud-display-line): Use it in place of
18202 overlay-arrow-position.
18203
18204 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
18205
18206 * progmodes/fortran.el (fortran-if-indent): Doc fix.
18207 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
18208 (fortran-font-lock-keywords-4): New variable.
18209 (fortran-blocks-re, fortran-end-block-re)
18210 (fortran-start-block-re): New constants, for hideshow.
18211 (hs-special-modes-alist): Add a Fortran entry.
18212 (fortran-mode-map): Bind fortran-end-of-block,
18213 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
18214 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
18215 (fortran-looking-at-if-then, fortran-end-of-block)
18216 (fortran-beginning-of-block): New functions, for hideshow.
18217
18218 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
18219 Doc fix. Tweak regexp.
18220 (f90-beginning-of-block): Push mark first.
18221
18222 2005-03-29 Jay Belanger <belanger@truman.edu>
18223
18224 * calc/calc.el: Update copyright date.
18225 (calc-version): Increase to 2.1.
18226 (calc-version-date): Remove.
18227
18228 * calc/calc-help.el: Update copyright date.
18229 (calc-full-help): Remove reference to calc-version-date.
18230 Update copyright date.
18231
18232 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
18233
18234 * vc.el (vc-do-command): Use a pipe for async processes, so password
18235 prompts don't show up at places where the user can't reply.
18236
18237 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
18238
18239 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
18240 on the file name we pass to the inferior shell.
18241
18242 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
18243
18244 * progmodes/which-func.el (which-function): Be robust in the face of an
18245 imenu--make-index-alist failure.
18246
18247 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
18248
18249 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
18250
18251 * progmodes/python.el (python-preoutput-filter): Fix last change.
18252
18253 2005-03-29 Lute Kamstra <lute@gnu.org>
18254
18255 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
18256 functions and compiled macros.
18257 (debug-convert-byte-code): Handle macros too.
18258 (debug-on-entry-1): Don't signal an error when trying to clear a
18259 function that is not set to debug on entry.
18260
18261 2005-03-29 Jay Belanger <belanger@truman.edu>
18262
18263 * calc/calc-lang.el: Add functions to math-function-table
18264 properties of tex and math.
18265
18266 2005-03-29 Kenichi Handa <handa@m17n.org>
18267
18268 * ps-mule.el (ps-mule-plot-string): Translate characters by
18269 ps-print-translation-table.
18270 (ps-mule-begin-job): Call find-charset-region/string with
18271 ps-print-translation-table.
18272 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
18273
18274 * ps-print.el (ps-print-translation-table): New variable.
18275 (ps-plot-region): Translate characters by ps-print-translation-table.
18276
18277 2005-03-29 Juri Linkov <juri@jurta.org>
18278
18279 * simple.el (next-error-highlight-timer): New variable.
18280
18281 * progmodes/compile.el (compilation-goto-locus):
18282 Use `next-error-highlight-timer' instead of `sit-for'.
18283
18284 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
18285
18286 * mail/supercite.el (sc-mail-field): Use assoc-string.
18287 (sc-get-address): Simplify regexps.
18288
18289 * files.el (minibuffer-with-setup-hook): New macro.
18290 (find-file-read-args): Use it to avoid let-binding
18291 minibuffer-with-setup-hook (which breaks turning on/off
18292 file-name-shadow-mode while in the prompt).
18293
18294 * complete.el (PC-read-include-file-name-internal):
18295 Use test-completion.
18296
18297 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
18298
18299 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
18300
18301 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
18302
18303 * window.el (window-buffer-height): Use count-screen-lines.
18304
18305 * progmodes/python.el (python-preoutput-leftover): New var.
18306 (python-preoutput-filter): Use it.
18307 (python-send-receive): Loop until all the result has been received.
18308
18309 2005-03-28 Juri Linkov <juri@jurta.org>
18310
18311 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
18312
18313 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
18314 "Recover Crashed Session".
18315 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
18316 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
18317 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
18318 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
18319 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
18320 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
18321 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
18322 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
18323
18324 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
18325 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
18326 Ediff Sessions", "Toggle use of separate control buffer frame",
18327 "Use separate frame for Ediff control buffer".
18328
18329 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
18330 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
18331 "Rename Bookmark", "Delete Bookmark".
18332
18333 * info.el (Info-mode-menu): Remove ellipsis from "Index".
18334 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
18335 Add `:active Info-index-alternatives' to "Next Matching Item".
18336
18337 * wdired.el (wdired-change-to-wdired-mode):
18338 Mention `wdired-abort-changes' key in the initial message.
18339
18340 * international/mule.el (auto-coding-alist): Associate non-ascii
18341 image filename extensions with `no-conversion'.
18342
18343 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
18344
18345 * international/iso-acc.el:
18346 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
18347
18348 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
18349
18350 * textmodes/sgml-mode.el (html-mode): Doc update.
18351
18352 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
18353
18354 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
18355
18356 * term.el (term-move-columns): Fix face after extending a line.
18357 (term-insert-spaces): Likewise.
18358 (term-reset-terminal): Fix off by one error.
18359
18360 2005-03-26 Eli Zaretskii <eliz@gnu.org>
18361
18362 * international/mule.el (auto-coding-alist): Add .xpi files.
18363
18364 * files.el (auto-mode-alist): Add .xpi files.
18365
18366 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
18367
18368 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
18369
18370 2005-03-26 Eli Zaretskii <eliz@gnu.org>
18371
18372 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
18373
18374 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
18375
18376 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
18377 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
18378
18379 * calendar/cal-move.el (calendar-beginning-of-year): Move the
18380 cursor to Jan 1 when needed.
18381 (calendar-end-of-year): Fix -/+ typo.
18382 Reported by Chong Yidong <cyd@stupidchicken.com>.
18383
18384 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
18385
18386 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
18387
18388 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
18389 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
18390
18391 2005-03-25 Richard M. Stallman <rms@gnu.org>
18392
18393 * filesets.el (filesets-init): Add autoload.
18394
18395 * mail/mailalias.el (mail-directory): Doc fix.
18396
18397 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
18398
18399 * mail/mailalias.el (mail-directory-process): Do nothing if
18400 mail-directory-process is an atom.
18401 (mail-get-names): Ignore mail-directory-names if it is an atom.
18402 (mail-directory-process defvar): Doc fix.
18403 (mail-names): Doc fix.
18404
18405 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
18406
18407 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
18408
18409 2005-03-26 Kenichi Handa <handa@m17n.org>
18410
18411 * international/mule-util.el (detect-coding-with-priority):
18412 Call update-coding-systems-internal before detect-coding-region.
18413
18414 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
18415
18416 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
18417 (gdb-frames-mode-map): Add follow-link property.
18418
18419 2005-03-25 Jay Belanger <belanger@truman.edu>
18420
18421 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
18422 for variables.
18423
18424 2005-03-25 Juri Linkov <juri@jurta.org>
18425
18426 * image-mode.el: Optimize image filename extension regexps in
18427 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
18428 in `auto-mode-alist'.
18429 (image-mode): Add `image-toggle-display-text' to local hook
18430 `change-major-mode-hook'. Display the image as an image by
18431 default. Set `cursor-type' and `truncate-lines' if the image
18432 is already displayed. Take into account the current mode (image
18433 or text) in message.
18434 (image-minor-mode): New minor mode.
18435 (image-mode-maybe, image-toggle-display-text): New functions.
18436 (image-toggle-display): Use called-interactively-p.
18437 Let-bind `inhibit-read-only' to t.
18438
18439 * image-mode.el (image-minor-mode): Set `cursor-type' and
18440 `truncate-lines' if the image is already displayed. Add turning
18441 image-minor-mode off to `change-major-mode-hook'. Add message.
18442 Call `image-toggle-display-text' after turning image-minor-mode off.
18443
18444 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
18445
18446 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
18447 Terminal.app, use utf-8.
18448 (set-display-table-and-terminal-coding-system): Add coding-system arg.
18449 (set-locale-environment): Use it.
18450
18451 * term/xterm.el: Undo last change, better done in mule-cmds.el.
18452
18453 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
18454
18455 * progmodes/python.el (python-close-block-statement-p)
18456 (python-outdent-p, python-current-defun): Use symbol-end.
18457
18458 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
18459
18460 * files.el (save-some-buffers): Doc fix.
18461
18462 2005-03-25 Werner Lemberg <wl@gnu.org>
18463
18464 * complete.el, thumbs.el: Replace `legal' with `valid'.
18465 * calendar/calendar.el: Replace `legal' with `valid'.
18466 * emacs-lisp/advice.el: Replace `legal' with `valid'.
18467 * mail/supercite.el: Replace `legal' with `valid'.
18468 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
18469 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
18470 Replace `legal' with `valid'.
18471 * textmodes/reftex-vars.el, textmodes/reftex.el:
18472 Replace `legal' with `valid'.
18473
18474 2005-03-25 Werner Lemberg <wl@gnu.org>
18475
18476 * calc/calc-forms.el, calc/calc-sel.el
18477 * midnight.el, vc-cvs.el
18478 * emacs-lisp/cl-macs.el
18479 * emulation/vip.el
18480 * eshell/esh-io.el, eshell/esh-var.el
18481 * mail/supercite.el
18482 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
18483 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
18484 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
18485 * progmodes/sh-script.el, progmodes/xscheme.el
18486 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
18487 * textmodes/reftex-index.el, textmodes/reftex-parse.el
18488 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
18489 * textmodes/reftex.el, textmodes/org.el:
18490 Replace `illegal' with `invalid'.
18491
18492 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
18493
18494 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
18495 (flymake-find-buildfile, flymake-find-possible-master-files)
18496 (flymake-check-include, flymake-parse-line): Replace loops over the
18497 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
18498
18499 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
18500 Substitute file-name-as-directory in the rest of the file.
18501 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
18502 (flymake-replace-region): Remove unused arg `buffer'.
18503 (flymake-check-patch-master-file-buffer): Update calls to it.
18504 (flymake-add-err-info): Remove unused var `count'.
18505 (flymake-mode): Use define-minor-mode.
18506
18507 * progmodes/flymake.el: Use with-current-buffer.
18508 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
18509 flymake-replace-regexp-in-string, flymake-line-beginning-position)
18510 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
18511 Avoid testing for `xemacs'.
18512 (flymake-nop): Move.
18513 (flymake-region-has-flymake-overlays): Return the computed value.
18514 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
18515 Remove unused var `endline'.
18516 (flymake-get-line-count): Remove unused function.
18517 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
18518
18519 * emulation/vi.el:
18520 * generic.el:
18521 * hilit-chg.el (global-highlight-changes):
18522 * hi-lock.el (hi-lock-mode):
18523 * follow.el: find-file-hooks -> find-file-hook.
18524
18525 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
18526
18527 2005-03-24 Juri Linkov <juri@jurta.org>
18528
18529 * dired.el (dired-mode-map): Add menu item "Compare directories"
18530 for dired-compare-directories.
18531
18532 * dired-aux.el (dired-compare-directories): Add autoload cookie.
18533 Doc fix. Replace `read-file-name' with `read-directory-name'.
18534
18535 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
18536
18537 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
18538
18539 2005-03-24 Jay Belanger <belanger@truman.edu>
18540
18541 * calc/calc-embed.el (calc-embedded-mode-change): Save all
18542 relevant mode settings in calc-embedded-original-modes when modes
18543 are permanently changed.
18544
18545 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
18546
18547 * autoinsert.el: find-file-hooks -> find-file-hook.
18548
18549 2005-03-24 Lute Kamstra <lute@gnu.org>
18550
18551 * generic.el (generic-font-lock-defaults): Make it obsolete.
18552 (generic-font-lock-keywords): New variable to replace
18553 generic-font-lock-defaults.
18554 (generic-mode-set-font-lock): Delete it.
18555 (generic-mode-internal): Don't call generic-mode-set-font-lock.
18556 (generic-bracket-support): Add docstring.
18557
18558 * generic-x.el: Rename generic-font-lock-defaults to
18559 generic-font-lock-keywords throughout.
18560 (mailagent-rules-setup-function): Delete it.
18561 (mailagent-rules-generic-mode): Use anonymous function instead.
18562 (show-tabs-generic-mode-font-lock-defaults-1)
18563 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
18564 Quote faces.
18565 (show-tabs-tab-face, show-tabs-space-face): Specify background,
18566 not foreground.
18567
18568 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
18569 Recognize define-generic-mode.
18570
18571 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
18572
18573 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
18574 if there's no completion table.
18575
18576 2005-03-23 Miles Bader <miles@gnu.org>
18577
18578 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
18579 Remove tty-specific variants, as they're no longer needed.
18580
18581 2005-03-23 Lute Kamstra <lute@gnu.org>
18582
18583 * generic-x.el: Code cleanup: make args constant whenever possible.
18584 (installshield-statement-keyword-list)
18585 (installshield-system-functions-list)
18586 (installshield-system-variables-list, installshield-types-list)
18587 (installshield-funarg-constants-list): Make them constants.
18588
18589 * generic.el (generic-make-keywords-list): Add autoload cookie.
18590
18591 * calendar/time-date.el: Add comment on time value formats.
18592 Don't require parse-time.
18593 (with-decoded-time-value): New macro.
18594 (encode-time-value): New function.
18595 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
18596 (days-to-time): Return a valid time value when arg is huge.
18597 (time-since): Use time-subtract.
18598 (time-to-number-of-days): Use time-to-seconds.
18599
18600 2005-03-23 David Ponce <david@dponce.com>
18601
18602 * recentf.el (recentf-keep): New option.
18603 (recentf-menu-action): Default to `find-file'.
18604 (recentf-keep-non-readable-files-flag)
18605 (recentf-keep-non-readable-files-p)
18606 (recentf-file-readable-p, recentf-find-file)
18607 (recentf-cleanup-remote): Remove.
18608 (recentf-include-p): More robust.
18609 (recentf-keep-p): New function.
18610 (recentf-remove-if-non-kept): Rename from
18611 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
18612 All callers updated.
18613 (recentf-menu-items-for-commands): Fix help string.
18614 (recentf-track-closed-file): Update. Doc fix.
18615 (recentf-cleanup): Update. Count removed files. Doc fix.
18616
18617 2005-03-23 Kim F. Storm <storm@cua.dk>
18618
18619 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
18620 Don't inherit from fringe face (now happens automatically).
18621
18622 2005-03-22 Kim F. Storm <storm@cua.dk>
18623
18624 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
18625 position values.
18626
18627 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
18628
18629 * menu-bar.el (showhide-date-time): Remove.
18630 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
18631 (menu-bar-make-mm-toggle): Simplify.
18632
18633 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
18634
18635 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
18636 Accept qualified variable and function names.
18637
18638 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
18639
18640 * bindings.el (completion-ignored-extensions):
18641 Remove ".lis" for `vax-vms'.
18642
18643 2005-03-22 Andreas Schwab <schwab@suse.de>
18644
18645 * generic-x.el: Revert last change.
18646 * ldefs-boot.el: Update.
18647
18648 2005-03-22 Jay Belanger <belanger@truman.edu>
18649
18650 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
18651 (calc-embedded-save-original-modes)
18652 (calc-embedded-restore-original-modes): New functions.
18653 (calc-do-embedded): Save original modes when entering embedded mode
18654 and restore when leaving embedded mode.
18655 (calc-embedded-modes-change): Change the value of
18656 calc-embedded-original-modes to reflect permanent changes.
18657
18658 2005-03-22 Lute Kamstra <lute@gnu.org>
18659
18660 * generic-x.el: Require generic again.
18661
18662 2005-03-22 Miles Bader <miles@gnu.org>
18663
18664 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
18665 Tweak details to look good on both ttys and bitmap displays, light
18666 or dark background, etc.
18667
18668 2005-03-21 Kim F. Storm <storm@cua.dk>
18669
18670 * tooltip.el (tooltip-show-help-function): Check car and cdr of
18671 mouse position.
18672
18673 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
18674
18675 * icomplete.el: Don't forcibly turn on the mode upon load.
18676 (icomplete-mode): Use define-minor-mode.
18677 (icomplete-eoinput): Default to nil.
18678 (icomplete-minibuffer-setup): Remove autoload.
18679 (icomplete-tidy): Simplify.
18680 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
18681 in the initial state or if the user has modified the field.
18682 Fix handling of icomplete-max-delay-chars.
18683 Remove code that handles the oddball case where
18684 minibuffer-completion-table is an integer.
18685 Wrap icomplete-completions in while-no-input in case building
18686 completions takes more time than expected.
18687 (icomplete-completions): Simplify.
18688
18689 2005-03-21 Richard M. Stallman <rms@gnu.org>
18690
18691 * jka-compr.el (jka-compr-really-do-compress):
18692 Make variable buffer-local.
18693
18694 * image-mode.el: Handle .xpm files too.
18695 (image-toggle-display): Preserve modification flag.
18696
18697 * help.el (where-is): Don't mention aliases with no key bindings.
18698
18699 2005-03-21 Lute Kamstra <lute@gnu.org>
18700
18701 * generic.el: Fix commentary section. Don't require cl for
18702 compilation.
18703 (generic-mode-list): Add autoload cookie.
18704 (generic-use-find-file-hook, generic-lines-to-scan)
18705 (generic-find-file-regexp, generic-ignore-files-regexp)
18706 (generic-mode, generic-mode-find-file-hook)
18707 (generic-mode-ini-file-find-file-hook): Fix docstrings.
18708 (define-generic-mode): Make it a defmacro. Fix docstring.
18709 (generic-mode-internal): Code cleanup. Add autoload cookie.
18710 (generic-mode-set-comments): Code cleanup.
18711 * generic-x.el: Don't prevent compilation. Don't require generic.
18712 Follow coding conventions. Minor code cleanup.
18713 (etc-fstab-generic-mode): Add some keywords.
18714 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
18715 define-generic-mode like a function declaration.
18716
18717 2005-03-21 Jay Belanger <belanger@truman.edu>
18718
18719 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
18720 changing modes.
18721
18722 2005-03-21 Sam Steingold <sds@gnu.org>
18723
18724 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
18725
18726 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
18727
18728 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
18729 Add underscore to "f$ lexicals" regexp.
18730
18731 2005-03-20 Juri Linkov <juri@jurta.org>
18732
18733 * subr.el (progress-reporter-do-update): When `min-value' is equal
18734 to `max-value', set `percentage' to 0 and prevent division by zero.
18735
18736 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
18737
18738 Sync with Tramp 2.0.48.
18739
18740 * net/tramp.el (all): Change all addresses to .gnu.org.
18741 (tramp-append-tramp-buffers): New defun.
18742 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
18743 Catch `dont-send' signal.
18744 (tramp-set-auto-save-file-modes): Set always permissions, because
18745 there might be an old auto-saved file belonging to another
18746 original file. This could be a security threat. Reported by
18747 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
18748 Check for Emacs 21.3.50 removed.
18749
18750 * net/tramp-smb.el (all): Remove debug construct for
18751 `with-parsed-tramp-file-name'.
18752 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
18753 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
18754 No error message if DIRECTORY or FILENAME doesn't exist.
18755 (tramp-smb-open-connection): Check existence of
18756 `tramp-smb-program'.
18757
18758 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
18759
18760 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
18761 Properly handle the case where the `m' or `s' command's argument is not
18762 yet terminated.
18763 (perl-indent-new-calculate): New function.
18764 (perl-indent-line): Use it.
18765
18766 2005-03-20 Miles Bader <miles@gnu.org>
18767
18768 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
18769 in text-mode too. Change to new face names.
18770 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
18771 Add `:weight bold' attribute.
18772 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
18773
18774 2005-03-19 Juri Linkov <juri@jurta.org>
18775
18776 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
18777
18778 * international/mule.el (auto-coding-alist): Sync with
18779 `auto-mode-alist' by adding upper case archive file extensions
18780 and adding ear/war to jar extension.
18781
18782 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
18783
18784 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
18785 running, restart it.
18786
18787 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
18788
18789 * finder.el (finder-current-item): Throw an error on an empty line.
18790
18791 * man.el (Man-follow-manual-reference): If current-word returns
18792 nil, use "".
18793
18794 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
18795
18796 * simple.el (goto-line): Doc fix.
18797
18798 2005-03-19 Aaron Hawley <Aaron.Hawley@uvm.edu> (tiny change)
18799
18800 * files.el (save-buffer): Doc fix.
18801
18802 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
18803
18804 * recentf.el (recentf-cleanup-remote): New variable.
18805 (recentf-cleanup): Use it to conditionally check availability of
18806 remote files.
18807
18808 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
18809
18810 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
18811 function names.
18812
18813 2005-03-19 Eli Zaretskii <eliz@gnu.org>
18814
18815 * language/thai-word.el: New file.
18816
18817 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
18818
18819 * files.el (backup-buffer): If the file's directory is not
18820 writable, use copy instead of move to backup the file.
18821
18822 2005-03-19 Eli Zaretskii <eliz@gnu.org>
18823
18824 * obsolete/keyswap.el: Moved to obsolete/ from term/.
18825
18826 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
18827
18828 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
18829 Use functionp instead of symbolp and fboundp. Reported by Drkm
18830 <darkman_spam@yahoo.fr>.
18831 (ps-print-version): New version 6.6.6.
18832
18833 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
18834
18835 * textmodes/table.el (table--line-column-position): New idiom.
18836 (table--row-column-insertion-point-p): New function to test
18837 validity of row and column insertion operation at a location.
18838 (table-global-menu, table-cell-menu): Use above functions for
18839 deterministic test operation.
18840 (table--editable-cell-p): Behave in deterministic fashion.
18841
18842 2005-03-18 Juri Linkov <juri@jurta.org>
18843
18844 * isearch.el (isearch-lazy-highlight-new-loop):
18845 Make arguments beg and end optional.
18846 (isearch-update): Remove optional arguments nil from
18847 isearch-lazy-highlight-new-loop.
18848 (isearch-lazy-highlight-search): Let-bind case-fold-search to
18849 isearch-lazy-highlight-case-fold-search instead of
18850 isearch-case-fold-search, and let-bind isearch-regexp to
18851 isearch-lazy-highlight-regexp.
18852 Use isearch-lazy-highlight-last-string instead of isearch-string.
18853
18854 * replace.el (perform-replace): Remove bindings of global
18855 variables isearch-string, isearch-regexp, isearch-case-fold-search.
18856 Add three new arguments to `replace-highlight'.
18857 (replace-highlight): Add arguments string, regexp, case-fold.
18858 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
18859 to allow isearch-lazy-highlight-new-loop to use these values
18860 to set corresponding isearch-lazy-highlight-* internal
18861 variables whose values lazy highlighting will use regardless of
18862 changes to global variables isearch-string, isearch-regexp,
18863 isearch-case-fold-search during lazy highlighting loop.
18864 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
18865 to `lazy-highlight-cleanup'.
18866
18867 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
18868 (ispell-highlight-face): Set default face to `isearch' when
18869 lazy highlighting is enabled.
18870 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
18871 priority to 1. Add lazy highlighting.
18872 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
18873 from `isearch-dehighlight'.
18874
18875 2005-03-18 David Ponce <david@dponce.com>
18876
18877 * files.el (hack-local-variables): Do a case-insensitive search
18878 for End.
18879
18880 2005-03-18 Juri Linkov <juri@jurta.org>
18881
18882 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
18883 `isearch-lazy-highlight-cleanup', add alias to old name and
18884 declare obsolete. Add release numbers to other obsolete vars.
18885 (isearch-done, isearch-lazy-highlight-new-loop):
18886 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
18887 (lazy-highlight-cleanup) <variable>: Doc fix.
18888 (isearch-lazy-highlight-update): Rename obsolete
18889 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
18890
18891 2005-03-18 Kenichi Handa <handa@m17n.org>
18892
18893 * language/thai-util.el: Fix categorization of Thai characters in
18894 thai-category-table.
18895 (thai-composition-pattern): Adjust it for the above change.
18896 (thai-self-insert-command, thai-compose-syllable): New functions.
18897 (thai-compose-region): Use thai-compose-syllable.
18898 (thai-compose-string): Likewise.
18899 (thai-composition-function): Likewise.
18900 (thai-auto-composition): New function.
18901 (thai-auto-composition-mode): New minor mode.
18902
18903 * language/thai.el: Fix patterns to be registered in
18904 composition-function-table.
18905
18906 * international/quail.el (quail-input-method): Locally bind
18907 inhibit-modification-hooks to t.
18908
18909 2005-03-17 Richard M. Stallman <rms@gnu.org>
18910
18911 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
18912 (perl-mode): Use run-mode-hooks.
18913
18914 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
18915 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
18916 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
18917
18918 * mail/sendmail.el (sendmail-send-it): Reenable the code
18919 to compute resend-to-address and use it.
18920
18921 * tar-mode.el (tar-mode): Turn off undo unconditionally.
18922
18923 * image-mode.el: New file.
18924
18925 * image.el (insert-sliced-image): Add autoload cookie.
18926
18927 * font-lock.el (font-lock-lines-before): New user option.
18928 (font-lock-after-change-function): Obey it.
18929
18930 * bindings.el (esc-map): Make M-g a prefix.
18931 Bind M-g g and M-g M-g to goto-line.
18932
18933 * faces.el (face-id): Doc fix.
18934
18935 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
18936
18937 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
18938 (rmail-show-message): Use rmail-unknown-mail-followup-to.
18939 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
18940
18941 * mail/sendmail.el (mail-yank-ignored-headers)
18942 (mail-font-lock-keywords, mail-mode-fill-paragraph):
18943 Add Mail-Followup-To and Mail-Reply-To headers.
18944 (mail-citation-hook): Add autoload cookie.
18945 (mail-mode): Doc fix.
18946 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
18947 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
18948 (mail-mode-fill-paragraph): Handle those headers.
18949 (mail-mailing-lists): New variable.
18950 (mail-mail-reply-to, mail-mail-followup-to): New functions.
18951
18952 2005-03-17 Juri Linkov <juri@jurta.org>
18953
18954 * isearch.el (isearch-fallback): Check for `(car previous)'
18955 before calling `isearch-other-end-state'.
18956
18957 2005-03-17 Kim F. Storm <storm@cua.dk>
18958
18959 * simple.el (move-beginning-of-line): Move to beginning of buffer
18960 line, as well as beginning of screen line.
18961
18962 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
18963
18964 * calendar/diary-lib.el (mark-diary-entries): Use new optional
18965 argument REDRAW rather than calendar-redrawing variable.
18966 * calendar/calendar.el (calendar-redrawing): Delete.
18967 (redraw-calendar): Do not bind calendar-redrawing.
18968
18969 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
18970
18971 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
18972 diary-file buffer.
18973
18974 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
18975
18976 * help.el (describe-mode): Allow a :minor-mode-function property to
18977 specify a different minor mode toggle function than the variable.
18978 * simple.el (auto-fill-function):
18979 * subr.el (add-minor-mode): Use it.
18980
18981 2005-03-16 Kenichi Handa <handa@m17n.org>
18982
18983 * language/ethio-util.el (sera-being-called-by-w3): New variable.
18984 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
18985 (ethio-fidel-to-sera-buffer): Likewise.
18986
18987 2005-03-16 Juri Linkov <juri@jurta.org>
18988
18989 * emacs-lisp/find-func.el (find-function-regexp):
18990 Add defun-emitting macro `menu-bar-make-toggle'.
18991
18992 * isearch.el: Put `isearch-scroll' property to
18993 `split-window-horizontally'.
18994
18995 * info.el: Update error messages for `debug-ignored-errors'.
18996 (Info-isearch-search): Doc fix.
18997 (Info-find-node): Move up code to go into info buffer before
18998 recording the node to the history.
18999 (Info-fontify-node): Fontify titles only if the next line
19000 has two or more `*', `=', `-', `.'.
19001 Display "go to this node" for empty (match-string 3).
19002
19003 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19004
19005 * term/mac-win.el: Add mouse pointer shape constants.
19006
19007 2005-03-15 Kim F. Storm <storm@cua.dk>
19008
19009 * simple.el (move-beginning-of-line): Use vertical-motion.
19010
19011 2005-03-15 Juri Linkov <juri@jurta.org>
19012
19013 * isearch.el (isearch-error): New variable.
19014 (isearch-invalid-regexp, isearch-within-brackets): Remove.
19015 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
19016 (isearch-within-brackets-state): Remove.
19017 (isearch-case-fold-search-state, isearch-pop-fun-state):
19018 Decrease frame index.
19019 (isearch-mode, isearch-top-state, isearch-push-state)
19020 (isearch-edit-string, isearch-abort, isearch-search-and-update)
19021 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
19022 (isearch-search, isearch-lazy-highlight-new-loop):
19023 Replace `isearch-invalid-regexp' with `isearch-error'.
19024 Remove `isearch-within-brackets'.
19025 (isearch-search): Add `search-failed' handler to `condition-case'.
19026 (isearch-lazy-highlight-search): Add `condition-case' to catch
19027 errors and allow `isearch-lazy-highlight-update' to try
19028 highlighting from the beginning of the window.
19029 (isearch-repeat): Move up code to set isearch-wrapped to t
19030 before calling isearch-wrap-function.
19031
19032 * info.el (Info-isearch-initial-node): New internal variable.
19033 (Info-search): Signal an error in isearch mode when search leaves
19034 the initial node. Signal an error when `bound' is non-nil and
19035 nothing was found in the current subfile.
19036 (Info-isearch-search): Remove `condition-case'.
19037 (Info-isearch-wrap): Don't wrap when search failed during leaving
19038 the initial node. If `Info-isearch-search' is nil, wrap around
19039 the current node.
19040 (Info-isearch-start): New fun.
19041 (Info-mode): Add buffer-local hook `Info-isearch-start' to
19042 `isearch-mode-hook'.
19043
19044 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19045
19046 * simple.el (normal-erase-is-backspace): Set default to t if
19047 running on Mac.
19048
19049 * term/mac-win.el (function-key-map): Sync with x-win.el.
19050
19051 2005-03-15 Kenichi Handa <handa@m17n.org>
19052
19053 * international/mule-cmds.el (locale-language-names): Modify the
19054 format of elements and add more entries.
19055 (locale-preferred-coding-systems): Add more entries.
19056 (set-locale-environment): Adjust for the change of
19057 locale-language-names.
19058
19059 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
19060
19061 * pcvs.el (smerge-ediff): Remove bogus autoload.
19062
19063 2005-03-14 Lute Kamstra <lute@gnu.org>
19064
19065 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
19066 Ignore a `*' at the beginning of a line.
19067
19068 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
19069 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
19070 subr.el.
19071 (dont-compile, eval-when-compile, eval-and-compile): Use declare
19072 to specify indentation.
19073
19074 * generic.el (define-generic-mode): Let generic-mode-list be a
19075 list of strings; test membership with equal.
19076
19077 2005-03-14 Kim F. Storm <storm@cua.dk>
19078
19079 * simple.el (next-line, previous-line): Add optional try-vscroll
19080 arg to recognize interactive use. Pass it on to line-move.
19081 (line-move): Don't perform auto-window-vscroll when defining or
19082 executing keyboard macro to ensure consistent behavior.
19083
19084 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
19085
19086 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
19087
19088 2005-03-13 Lute Kamstra <lute@gnu.org>
19089
19090 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
19091 debugger-setup-buffer so that backtrace marks the frames set to
19092 debug-on-exit and we don't have to do it manually. Set an extra
19093 debug-on-exit for macro's.
19094 (debugger-setup-buffer): Don't mark the top frame manually.
19095
19096 2005-03-12 Lute Kamstra <lute@gnu.org>
19097
19098 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
19099 lisp-indent-function throughout.
19100 (with-no-warnings): Set lisp-indent-function property.
19101
19102 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
19103
19104 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
19105 Add entry for backslash.
19106
19107 2005-03-12 Juri Linkov <juri@jurta.org>
19108
19109 * info.el (Info-search): Four fixes for backward search.
19110
19111 2005-03-11 Jay Belanger <belanger@truman.edu>
19112
19113 * calc/calc.el (calc-language-alist): New variable.
19114 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
19115 (calc-embedded-find-modes): Use calc-language-alist instead of
19116 calc-embedded-language-alist.
19117
19118 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
19119
19120 * calendar/calendar.el (calendar-redrawing): New internal
19121 variable.
19122 (redraw-calendar): Remove bogus save-excursion from previous
19123 change. Bind calendar-redrawing to t for mark-diary-entries.
19124 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
19125 calendar if that is why we were called.
19126
19127 2005-03-11 Kenichi Handa <handa@m17n.org>
19128
19129 * international/mule.el (make-coding-system): Set property
19130 coding-system-define-form to nil.
19131 (define-coding-system-alias): Likewise.
19132
19133 2005-03-11 Kenichi Handa <handa@m17n.org>
19134
19135 These changes are suggested by Dave Love <fx@gnu.org>.
19136
19137 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
19138 coding: tag.
19139 (adaptive-fill-regexp): Add more bullets.
19140 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
19141 regexps.
19142
19143 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
19144
19145 * help.el (describe-mode): Properly handle non-trivial lighters.
19146 Don't ignore minor modes that are not listed in minor-mode-list.
19147
19148 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
19149 feature ON when the user requests to turn it OFF.
19150
19151 2005-03-10 Lute Kamstra <lute@gnu.org>
19152
19153 * emacs-lisp/debug.el (debug-entry-code): Delete it.
19154 (implement-debug-on-entry): New function to replace debug-entry-code.
19155 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
19156 second argument as the 2005-03-07 change makes it obsolete.
19157 (debug-on-entry, cancel-debug-on-entry): Update call to
19158 debug-on-entry-1.
19159 (debug, debugger-setup-buffer): Comment update.
19160 (debugger-frame-number): Update to work with implement-debug-on-entry.
19161
19162 2005-03-10 Jay Belanger <belanger@truman.edu>
19163
19164 * calc/calc-embed.el (math-ms-args): Declare it.
19165 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
19166 math-ms-args.
19167 (calc-embedded-subst): Use math-multi-subst-rec to substitute
19168 variables.
19169
19170 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
19171
19172 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
19173 Use message-box.
19174
19175 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
19176 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
19177 (tooltip-gud-tips): Simplify.
19178 (tooltip-gud-tips-p): Remove superfluous :set.
19179 (tooltip-gud-modes): Add fortran-mode.
19180 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
19181
19182 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
19183
19184 2005-03-09 Kim F. Storm <storm@cua.dk>
19185
19186 * play/animate.el (animate-place-char): Use forward-line instead
19187 of next-line to improve performance.
19188
19189 2005-03-09 Simon Josefsson <jas@extundo.com>
19190
19191 * net/browse-url.el (browse-url-default-browser): Doc fix.
19192
19193 2005-03-09 Miles Bader <miles@gnu.org>
19194
19195 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
19196 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
19197
19198 2005-03-09 Kenichi Handa <handa@m17n.org>
19199
19200 * international/latin-1.el: Set case and syntax for 255 only if
19201 set-case-syntax-set-multibyte is nil.
19202
19203 * textmodes/ispell.el (ispell-insert-word): New function.
19204 (ispell-word): Use ispell-insert-word to insert a new word.
19205 (ispell-process-line): Likewise.
19206 (ispell-complete-word): Likewise.
19207
19208 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
19209
19210 * calendar/calendar.el (redraw-calendar): Preserve point.
19211 Reported by Matt Hodges <MPHodges@member.fsf.org>.
19212 (calendar-week-start-day): Move after definition of
19213 redraw-calendar. Delete buffer test, since redraw-calendar has
19214 that now.
19215
19216 * calendar/diary-lib.el (mark-diary-entries): Only call
19217 redraw-calendar in the first of any recursive calls.
19218 Reported by Alan Shutko <ats@acm.org>.
19219
19220 2005-03-08 Juri Linkov <juri@jurta.org>
19221
19222 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
19223 (html-horizontal-rule, html-line, html-image, html-checkboxes)
19224 (html-radio-buttons): Add a space before the trailing `/>' where
19225 sgml-xml-mode is non-nil.
19226 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
19227 the subsequent tag of the empty XML tag.
19228 (html-href-anchor): Don't set initial input to "http:".
19229 (html-image): Ask for the image URL and set point inside alt="".
19230 (html-name-anchor): Duplicate the name in the `id' attribute when
19231 sgml-xml-mode is non-nil.
19232 (html-paragraph): Remove \n before <p>.
19233 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
19234 instead of `checked' when sgml-xml-mode is non-nil.
19235
19236 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
19237 Remove 1 space before #RRGGBB to not truncate it on terminal
19238 windows w/o fringes. Remove 1 space between bg and fg examples
19239 to get more space.
19240 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
19241 avoid byte-compile warnings.
19242
19243 * image-file.el (image-file-handler): Put `safe-magic' property to
19244 `image-file-handler'.
19245
19246 * info.el (Info-isearch-search): Emulate word search in
19247 isearching through multiple Info nodes with Info-search.
19248 (Info-isearch-wrap): Allow isearch-word.
19249
19250 2005-03-08 Lute Kamstra <lute@gnu.org>
19251
19252 * emacs-lisp/debug.el (debugger-step-through): Make sure that
19253 stepping into the debugger's code is not possible.
19254 (debugger-jumping-flag): Docstring update.
19255
19256 2005-03-08 Jay Belanger <belanger@truman.edu>
19257
19258 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
19259 embedded mode begins.
19260 (calc-embedded-language-alist): New variable.
19261 (calc-embedded-find-modes): Use calc-embedded-language-alist to
19262 set default language mode.
19263
19264 2005-03-08 Kenichi Handa <handa@m17n.org>
19265
19266 * international/ccl.el (define-ccl-program): Fix docstring about
19267 extra 256 bytes assured for the output buffer.
19268
19269 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
19270 Fix BUFFER_MAGNIFICATION to 2.
19271 (ccl-encode-mule-utf-16be-with-signature): Likewise.
19272
19273 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
19274
19275 * align.el (align-rules-list): Added an alignment rule for CSS
19276 declarations (applies to css-mode and html-mode buffers).
19277
19278 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
19279
19280 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
19281
19282 2005-03-07 Kim F. Storm <storm@cua.dk>
19283
19284 * simple.el (move-beginning-of-line): New command.
19285
19286 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
19287
19288 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
19289
19290 * emulation/cua-base.el: Put CUA move property on move-end-of-line
19291 and move-beginning-of-line.
19292
19293 * apropos.el (apropos-print): Omit command from M-x ... RET.
19294
19295 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
19296
19297 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
19298 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
19299
19300 2005-03-06 Richard M. Stallman <rms@gnu.org>
19301
19302 * bindings.el (esc-map): Bind M-g to goto-line.
19303
19304 * facemenu.el (global-map): Bind M-o, not M-g.
19305
19306 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
19307
19308 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
19309 "Open Directory" as for "Open File".
19310
19311 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
19312
19313 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
19314 (push-mark-command): Run activate-mark-hook.
19315
19316 2005-03-06 Richard M. Stallman <rms@gnu.org>
19317
19318 * help-mode.el (help-mode-finish): Don't alter the element
19319 in view-return-to-alist if there already is one.
19320
19321 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
19322 make sure the current buffer is the expected one.
19323
19324 * novice.el (disabled-command-function): Output in *Disabled Command*.
19325 Explicitly ignore non-keyboard events, and explicitly handle C-g.
19326
19327 * textmodes/flyspell.el (flyspell-large-region):
19328 Pass args differently for aspell.
19329
19330 * files.el (mode-require-final-newline): Doc fix.
19331
19332 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
19333
19334 * progmodes/which-func.el (which-function):
19335 Specify NOERROR when calling imenu--make-index-alist.
19336
19337 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
19338
19339 * simple.el (normal-erase-is-backspace): Define default value.
19340
19341 * custom.el (custom-theme-set-variables): Remove unused var
19342 `immediate'.
19343 (custom-reevaluate-setting): Simple function to handle variables
19344 that are defined before their default value can really be
19345 computed.
19346
19347 * startup.el (command-line): Use it for temporary-file-directory,
19348 small-emporary-file-directory, auto-save-file-name-transforms,
19349 blink-cursor-mode, and normal-erase-is-backspace.
19350
19351 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
19352 progress, even with buggy anchored keywords.
19353
19354 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
19355
19356 * simple.el (goto-line): Remove unbalanced final parenthesis.
19357
19358 2005-03-05 Richard M. Stallman <rms@gnu.org>
19359
19360 * simple.el (goto-line): Use a number at point as the default.
19361 With C-u as arg, switch buffers.
19362
19363 2005-03-05 Juri Linkov <juri@jurta.org>
19364
19365 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
19366 with `no-blinking-cursor'.
19367
19368 * startup.el (no-blinking-cursor): New defvar.
19369 (command-line): Add `--no-blinking-cursor' to longopts.
19370 Set `no-blinking-cursor' to t for command line arguments
19371 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
19372 with `no-blinking-cursor' in the condition for calling
19373 `blink-cursor-mode'.
19374
19375 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
19376
19377 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
19378 (menu-bar-options-save): Add blink-cursor-mode.
19379 (menu-bar-options-menu): Add blink-cursor-mode.
19380
19381 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
19382
19383 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
19384 (icalendar-export-file, icalendar-export-region)
19385 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
19386 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
19387
19388 2005-03-04 Lute Kamstra <lute@gnu.org>
19389
19390 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
19391 (debug-function-list): Ditto.
19392
19393 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
19394
19395 * textmodes/texinfmt.el (texinfo-append-refill):
19396 Redefine the types of line to which @refill
19397 is not appended by replacing a search for `@refill\\|@bye' with
19398 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
19399 itemize@refill' bug and the unfilled long lines bug.
19400 (texinfmt-version): Update number and date.
19401
19402 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
19403
19404 * international/code-pages.el (windows-1250, windows-125[2-8])
19405 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
19406
19407 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
19408
19409 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
19410 bound yet.
19411
19412 2005-03-02 Romain Francoise <romain@orebokech.com>
19413
19414 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
19415 buffer after removing limits.
19416 (ibuffer-pop-filter): Ditto.
19417 Update copyright.
19418
19419 2005-03-02 Miles Bader <miles@gnu.org>
19420
19421 * button.el (make-text-button): If the user doesn't specify a
19422 type, use the default. Rewrite to use `add-text-properties' and
19423 plist functions.
19424
19425 2005-03-01 Lute Kamstra <lute@gnu.org>
19426
19427 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
19428 (debugger-jumping-flag): New var.
19429 (debug-entry-code): Use it.
19430 (debugger-jump): Use debugger-jumping-flag and add
19431 debugger-reenable to post-command-hook.
19432 (debugger-reenable): Use debugger-jumping-flag and remove itself
19433 from post-command-hook.
19434 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
19435 debugger-reenable.
19436
19437 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
19438
19439 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
19440 inclusion of "itemize\\|", which may be unnecessary, is certainly
19441 inelegant, and stops refilling in itemize lists when formatting
19442 Japanese Texinfo files to Info.
19443 Update copyright to 2005.
19444
19445 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
19446
19447 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
19448 of an error if GDB can't find the source file.
19449
19450 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
19451
19452 * calendar/calendar.el (redraw-calendar): Work from any buffer,
19453 not just the calendar.
19454
19455 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
19456 first.
19457 (diary-redraw-calendar): New function.
19458 (make-diary-entry): Add diary-redraw-calendar to local
19459 write-contents-functions. Turn off selective display before
19460 inserting in diary.
19461
19462 2005-03-01 Kim F. Storm <storm@cua.dk>
19463
19464 * emacs-lisp/copyright.el (copyright-fix-years): New command.
19465
19466 2005-03-01 Lute Kamstra <lute@gnu.org>
19467
19468 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
19469 that debug-entry-code can be safely removed from a function while
19470 this code is being evaluated. Revert the 2005-02-27 change as the
19471 new implementation no longer requires it. Make sure that a
19472 function body containing just a string is not mistaken for a docstring.
19473 (debug): Skip one more frame in case of debug on entry.
19474 (debugger-setup-buffer): Delete one more frame line in case of
19475 debug on entry.
19476 (debugger-frame-number): Update to use the new text introduced by
19477 the 1999-11-03 change. Skip one more frame in case of debug on entry.
19478
19479 2005-02-28 Kim F. Storm <storm@cua.dk>
19480
19481 * double.el (double-translate-key): Call force-window-update after
19482 read-event to avoid crash in redisplay.
19483
19484 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
19485
19486 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
19487 (debug): Use it. Move the inhibit-trace earlier.
19488 (debug-entry-code): New const.
19489 (debug-on-entry-1): Use it.
19490
19491 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
19492
19493 * international/utf-16.el (ccl-encode-mule-utf-16le):
19494 Fix BUFFER_MAGNIFICATION to 2.
19495 (ccl-encode-mule-utf-16be): Likewise.
19496
19497 2005-02-28 Kenichi Handa <handa@m17n.org>
19498
19499 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
19500 Fix BUFFER_MAGNIFICATION to 4.
19501 (ccl-encode-mule-utf-16be-with-signature): Likewise.
19502
19503 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
19504
19505 * speedbar.el (speedbar-update-flag): Doc fix.
19506 (speedbar-show-info-under-mouse): Give set-mouse-position the right
19507 argument.
19508
19509 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
19510
19511 * reveal.el (reveal-post-command): Don't try to reveal overlays which
19512 have a non-nil `invisible' property but are actually visible.
19513
19514 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
19515 for perldoc sections.
19516 (perl-outline-regexp, perl-outline-level): New var and function.
19517 (perl-mode): Use them.
19518
19519 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
19520
19521 * calendar/diary-lib.el (diary-remind): Discard any mark portion
19522 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
19523
19524 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
19525
19526 * cus-edit.el: Comment change.
19527 (custom-buffer-create-internal): Slightly reword text at top of
19528 Custom buffers. Mention there that saving an option edits the
19529 init file. Add link to Emacs manual node on `custom-file'.
19530 (custom-magic-alist): Rewrite individual State messages to use
19531 capitalized keywords. Doc fix.
19532
19533 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
19534
19535 * calendar/calendar.el (calendar-buffer): Move above
19536 calendar-week-start-day.
19537 (calendar-week-start-day): Doc fix. Add :set function.
19538 (calendar-minimum-window-height): New variable.
19539 (generate-calendar-window): Only resize window if selected-window
19540 is displaying the calendar buffer. Use new variable
19541 calendar-minimum-window-height.
19542 (generate-calendar): Reword error message.
19543 (calendar-mode-map): Bind DEL to scroll-other-window-down.
19544
19545 2005-02-27 Andreas Schwab <schwab@suse.de>
19546
19547 * vc.el (vc-do-command): Don't run command asynchronously when
19548 operating in a remote directory.
19549
19550 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
19551 change from sync with Tramp 2.0.47.
19552
19553 2005-02-27 Richard M. Stallman <rms@gnu.org>
19554
19555 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
19556
19557 * textmodes/flyspell.el (flyspell-mode-on):
19558 Call ispell-change-dictionary only if necessary.
19559
19560 * emacs-lisp/re-builder.el (regexp-builder): New function.
19561
19562 * register.el (describe-register-1): Explicitly handle
19563 yank-excluded-properties = t.
19564
19565 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
19566 (custom-magic-alist): Change the status descriptions again.
19567 (face widget-type): Total rewrite based on `restricted-sexp'
19568 to eliminate the confusing double hiding levels.
19569
19570 * emacs-lisp/debug.el (debug-on-entry-1):
19571 If function body is empty, add nil as body form.
19572
19573 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
19574
19575 * emacs-lisp/trace.el (inhibit-trace): New var.
19576 (trace-make-advice): Use it.
19577
19578 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
19579
19580 2005-02-26 Kim F. Storm <storm@cua.dk>
19581
19582 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
19583 (mouse-on-link-p, mouse-drag-region-1): Use it.
19584
19585 2005-02-25 Lute Kamstra <lute@gnu.org>
19586
19587 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
19588
19589 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
19590
19591 * frame.el (blink-cursor-mode): Add :group keyword.
19592
19593 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
19594
19595 * calendar/icalendar.el (icalendar--decode-isodatetime):
19596 New optional argument DAY-SHIFT.
19597 (icalendar-export-region): Fix coding-system-for-write.
19598 (icalendar--convert-ical-to-diary): Shift end-day of all-day
19599 events by one.
19600
19601 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
19602
19603 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
19604
19605 2005-02-24 Kim F. Storm <storm@cua.dk>
19606
19607 * international/iso-acc.el (iso-accents-compose): Fix crash
19608 during redisplay. Call force-window-update after read-event
19609 and delete-region to signal that window is not accurate.
19610
19611 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
19612
19613 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
19614 Remove unused and inexistent var `inhibit-trace'.
19615 (debugger-mode): Use run-mode-hooks.
19616 (debugger-list-functions): Add buttons; setup xref stack.
19617
19618 2005-02-23 Richard M. Stallman <rms@gnu.org>
19619
19620 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
19621 appointment says it was explicitly made.
19622 (appt-add): Set the 3rd element.
19623 (appt-make-list): Preserve explicit appointments.
19624
19625 * subr.el (find-tag-default): Catch errors in forward-sexp.
19626
19627 2005-02-23 Juri Linkov <juri@jurta.org>
19628
19629 * info.el (Info-isearch-search): New defcustom.
19630 (Info-isearch-search): Call the default isearch function
19631 when Info-isearch-search is nil.
19632 (Info-isearch-wrap): Use variable Info-isearch-search.
19633
19634 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
19635
19636 * cus-edit.el: Comment change.
19637
19638 2005-02-22 Kim F. Storm <storm@cua.dk>
19639
19640 * progmodes/hideif.el (hide-ifdef-use-define-alist):
19641 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
19642
19643 2005-02-22 Simon Josefsson <jas@extundo.com>
19644
19645 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
19646 New variable.
19647 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
19648 Oskarsson" <myrkraverk@users.sourceforget.net>.
19649
19650 2005-02-22 Kim F. Storm <storm@cua.dk>
19651
19652 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
19653 check that window of that event is the selected window.
19654 (mouse-drag-region-1): Compare mouse event window to selected
19655 window before setting point.
19656
19657 * tooltip.el (tooltip-show-help-function): Pass event to
19658 mouse-on-link-p so it can check selected window.
19659
19660 2005-02-22 Kenichi Handa <handa@m17n.org>
19661
19662 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
19663 (ps-mule-show-warning): New function.
19664 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
19665 characters are found.
19666
19667 * ps-print.el (ps-header-footer-string): Return a list of header
19668 and footer strings.
19669
19670 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
19671
19672 * pcvs.el (cvs-retrieve-revision): Fix thinko.
19673
19674 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
19675
19676 * frame.el (blink-cursor-mode): Use define-minor-mode.
19677
19678 * term/mac-win.el (function-key-map): Use char-names more consistently.
19679 (file-name-coding-system): Only set it for MacOS-9. The other case is
19680 already handled in mule-cmds.el (where it also works when mac-win.el
19681 is not used).
19682
19683 2005-02-21 Kenichi Handa <handa@m17n.org>
19684
19685 * international/mule.el (ctext-pre-write-conversion): Always use
19686 " *code-converting-work*" buffer for work.
19687
19688 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
19689
19690 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
19691
19692 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
19693
19694 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
19695
19696 * ses.el (undo-more): Restore defadvice, but only the part that
19697 allows changes outside the restricted area of the buffer.
19698
19699 2005-02-20 Kim F. Storm <storm@cua.dk>
19700
19701 * simple.el (line-move): Add fourth optional arg try-vscroll which
19702 must be set to perform auto-window-vscroll.
19703 When moving backwards and doing auto-window-vscroll, automatically
19704 vscroll to the last part of lines which are taller than the window.
19705 (next-line, previous-line): Set try-vscroll arg on line-move.
19706
19707 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
19708
19709 * replace.el (query-replace, query-replace-regexp)
19710 (replace-string, replace-regexp): When operating on region, make
19711 the minibuffer prompt say so.
19712
19713 * isearch.el (isearch-forward): Document isearch-query-replace and
19714 isearch-query-replace-regexp keybindings.
19715
19716 2005-02-19 Jay Belanger <belanger@truman.edu>
19717
19718 * calc/calc-aent.el (math-read-token): Add local variable.
19719
19720 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
19721 (calc-edit-top): Move declaration to earlier in file.
19722 (calc-edit-macro-repeats): Add local variables.
19723
19724 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
19725 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
19726 calcFunc-tanh.
19727 Adjust integration rule for calcFunc-tan.
19728
19729 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
19730
19731 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
19732 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
19733 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
19734 (viper-skip-separators): Bug fix.
19735 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
19736 particular major mode.
19737 (viper-del-backward-char-in-replace): Don't put deleted char on the
19738 kill ring.
19739
19740 * viper-ex.el (viper-color-display-p): New function.
19741 (viper-has-face-support-p): Use viper-color-display-p.
19742
19743 * viper-keym.el (viper-gnus-modifier-map): New keymap.
19744
19745 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
19746
19747 * viper-util.el (viper-glob-unix-files): Fix shell status check.
19748 (viper-file-remote-p): Make equivalent to file-remote-p.
19749
19750 * viper.el (viper-major-mode-modifier-list):
19751 Use viper-gnus-modifier-map.
19752
19753 2005-02-19 David Kastrup <dak@gnu.org>
19754
19755 * subr.el (subregexp-context-p): Fix garbled doc string by adding
19756 quoting.
19757
19758 2005-02-19 Jay Belanger <belanger@truman.edu>
19759
19760 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
19761 Remove extra definitions.
19762 (calc-coth): New function.
19763 (calcFunc-cot): Fix `let'.
19764
19765 2005-02-19 Eli Zaretskii <eliz@gnu.org>
19766
19767 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
19768 the reasons we use "type pc" in these faces.
19769
19770 * button.el (button): Ditto.
19771
19772 2005-02-19 Michael Mauger <mmaug@yahoo.com>
19773
19774 * replace.el (query-replace-read-from): Set the value of
19775 query-replace-from-history-variable to handle the case of an empty
19776 string entered to accept the suggested default.
19777
19778 * net/tramp.el (tramp-file-name-for-operation):
19779 Use dired-call-process instead of dired-call-process-command.
19780
19781 2005-02-19 Jay Belanger <belanger@truman.edu>
19782
19783 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
19784 (math-div-non-trig): New variables.
19785 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
19786 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
19787 (math-combine-prod, math-div-symb-fancy): Add simplifications for
19788 trig expressions.
19789
19790 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
19791
19792 * progmodes/gdb-ui.el (gdb-var-update-handler)
19793 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
19794 for watch expressions,
19795 (gdb-var-create-handler): Don't set speedbar-update-flag.
19796 (gdb-post-prompt): Simplify test for speedbar.
19797
19798 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
19799
19800 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
19801 (ediff-set-fine-overlays-in-one-buffer, ediff-goto-word): Make sure
19802 we use the syntax table of the correct buffer.
19803 (ediff-same-file-contents, ediff-same-contents): Enhancements thanks to
19804 Felix Gatzemeier.
19805
19806 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
19807 (ediff-file-remote-p): Make synonymous with file-remote-p.
19808 In all deffaces ediff-*-face-*, use min-colors.
19809
19810 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
19811 ediff-recurse-to-subdirectories.
19812 (ediff-mark-if-equal): Check that the arguments are strings, use
19813 ediff-same-contents (after to Felix Gatzemeier).
19814
19815 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
19816 nil.
19817
19818 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
19819
19820 * log-view.el (log-view-message-re): Fix up Subversion regexp.
19821
19822 2005-02-18 David Kastrup <dak@gnu.org>
19823
19824 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
19825 use `mark-active' when defined.
19826
19827 2005-02-18 Kenichi Handa <handa@m17n.org>
19828
19829 * ps-print.el (ps-font-info-database): New entry
19830 ZapfChancery-MediumItalic with correct font name. Fix font name
19831 of the entry Zapf-Chancery-MediumItalic.
19832
19833 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
19834
19835 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
19836
19837 2005-02-16 Kim F. Storm <storm@cua.dk>
19838
19839 * ido.el (ido-fallback-command): Pass user input to fallback command.
19840
19841 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
19842
19843 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
19844 (gdb-find-file-hook): Add server prefix.
19845
19846 2005-02-16 Richard M. Stallman <rms@gnu.org>
19847
19848 * replace.el (perform-replace): Pass new args to replace-highlight.
19849 (replace-highlight): Take region args,
19850 and pass them to isearch-lazy-highlight-new-loop.
19851
19852 * novice.el (disabled-command-hook): Autoload the defalias
19853 and the make-obsolete-variable call.
19854
19855 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
19856
19857 * isearch.el (isearch-lazy-highlight-start-limit)
19858 (isearch-lazy-highlight-end-limit): New variables limit
19859 the region for highlighting.
19860 (isearch-lazy-highlight-new-loop): New args BEG and END.
19861 (isearch-lazy-highlight-search): Use the new vars.
19862 (isearch-lazy-highlight-update): Likewise.
19863
19864 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
19865
19866 * cus-start.el (all): Use default-boundp.
19867
19868 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
19869
19870 * menu-bar.el (menu-bar-select-frame): Handle current frame.
19871
19872 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
19873
19874 * autorevert.el (auto-revert-stop-on-user-input)
19875 (auto-revert-verbose): Doc fixes.
19876
19877 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
19878
19879 * international/mule-cmds.el (set-locale-environment): Remove call
19880 to set-selection-coding-system on Windows.
19881
19882 2005-02-15 Jay Belanger <belanger@truman.edu>
19883
19884 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
19885 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
19886 calcFunc-coth.
19887 (math-simplify-sqrt): Add simplifications.
19888
19889 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
19890 to list.
19891
19892 * calc/calc-ext.el: Add functions to autoloads.
19893
19894 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
19895 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
19896 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
19897 (math-csc-raw, math-cot-raw): New functions.
19898
19899 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
19900
19901 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
19902 the variable name in a message.
19903
19904 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
19905 calcFunc-csc, calcFunc-cot.
19906
19907 * calc/calcalg2.el: Add derivative and integration rules for
19908 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
19909 calcFunc-csch, calcFunc-coth.
19910 (math-do-integral-methods): Add to checks for when to use
19911 substitutions.
19912
19913 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
19914
19915 2005-02-15 Lute Kamstra <lute@gnu.org>
19916
19917 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
19918 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
19919 <monnier@iro.umontreal.ca>
19920 (lisp-outline-level): Improve efficiency. Suggested by David
19921 Kastrup <dak@gnu.org>.
19922
19923 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
19924
19925 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
19926 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
19927 (gdb-set-gud-minor-mode-existing-buffers): New functions.
19928 (gdb-find-file-hook): New hook. Add it to find-file-hook.
19929 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
19930
19931 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
19932
19933 * cus-start.el (all): Comment change.
19934
19935 2005-02-14 Lute Kamstra <lute@gnu.org>
19936
19937 * cus-start.el (all): Check if symbol is void.
19938
19939 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
19940
19941 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
19942 optional argument to \cite.
19943
19944 2005-02-14 Richard M. Stallman <rms@gnu.org>
19945
19946 * cus-edit.el (custom-buffer-create-internal): Update help message.
19947 (custom-magic-alist): Update help messages.
19948
19949 * cus-start.el (all): Allow a var to specify a standard value.
19950
19951 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
19952
19953 * custom.el (custom-theme-set-variables): Handle variable aliases.
19954
19955 * frame.el (blink-cursor-timer): Doc fix.
19956 (blink-cursor): Make it an alias for `blink-cursor-mode' and
19957 declare obsolete.
19958 (blink-cursor-mode): Define with defcustom and use correct
19959 standard expression in that defcustom.
19960 * startup.el (command-line): Adapt to above changes in frame.el.
19961
19962 2005-02-11 Lute Kamstra <lute@gnu.org>
19963
19964 * apropos.el (apropos-score-doc): Prevent division by zero.
19965
19966 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
19967
19968 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
19969 (icalendar--get-event-property-attributes)
19970 (icalendar--get-event-properties)
19971 (icalendar--datetime-to-diary-date): New functions.
19972 (icalendar--split-value): Doc fix.
19973 (icalendar--datetime-to-noneuropean-date)
19974 (icalendar--datetime-to-european-date): New optional argument
19975 SEPARATOR. Return result as a string instead of a list.
19976 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
19977 (icalendar--convert-string-for-export): Rename arg S to STRING.
19978 (icalendar-export-region): Doc fix. Change name of error buffer.
19979 Save output buffer.
19980 (icalendar-import-file): Add blank at end of prompt.
19981 (icalendar-import-buffer): Doc fix. Do not switch to error
19982 buffer. Indicate status in return value.
19983 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
19984 buffer. Save output buffer. Handle exception from recurrence
19985 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
19986 events. Fix problems with weekly all-day events.
19987
19988 2005-02-10 Richard M. Stallman <rms@gnu.org>
19989
19990 * simple.el (eval-expression-print-format):
19991 Avoid warning about edebug-active.
19992
19993 * help.el (help-for-help-internal): Rename from help-for-help.
19994 (help-for-help): Define with defalias.
19995
19996 * font-core.el (font-lock-default-function): Use with-no-warnings.
19997
19998 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
19999
20000 * custom.el (defface): Doc fix.
20001
20002 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
20003
20004 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
20005 width 0" to prevent word wrapping problems.
20006
20007 2005-02-09 Kim F. Storm <storm@cua.dk>
20008
20009 * ido.el (ido-file-extensions-order): New defcustom.
20010 (ido-file-extension-lessp, ido-file-extension-aux)
20011 (ido-file-extension-order): New advanced file ordering.
20012 (ido-file-lessp): New simple file ordering.
20013 (ido-sort-list): Remove.
20014 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
20015 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
20016
20017 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
20018
20019 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
20020 that some versions of grep produce.
20021 (grep-mode-font-lock-keywords): Likewise.
20022
20023 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
20024
20025 * progmodes/gdb-ui.el (gdb-location-list): New variable.
20026 (gdb-cdir): Delete.
20027 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
20028 (gdb-source-info): Treat case when source file is in another
20029 directory properly.
20030 (gdb-get-location): New function.
20031
20032 2005-02-07 Jay Belanger <belanger@truman.edu>
20033
20034 * calc/calc-prog.el (calc-write-parse-table-part)
20035 (calc-fix-token-name): Fix a check for language type.
20036
20037 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
20038
20039 2005-02-07 Andre Spiegel <spiegel@gnu.org>
20040
20041 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
20042 as directory not writable.
20043
20044 2005-02-07 Kim F. Storm <storm@cua.dk>
20045
20046 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
20047 (cua--standard-movement-commands): Remove list.
20048 Instead, set CUA property value to move for movement commands.
20049 (cua-movement-commands): Remove. Users must set CUA prop instead.
20050 (cua--pre-command-handler): Check CUA property.
20051 (cua--init-keymaps): Don't remap undo commands.
20052 (cua-mode): Don't call cua--rectangle-on-off.
20053
20054 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
20055 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
20056 (cua--rect-undo-set-point): New var.
20057 (cua--rectangle-undo-boundary): Setup undo apply entry.
20058 (cua--rect-undo-handler): New function for rectangle undo.
20059 (cua--rect-start-position, cua--rect-end-position): Add.
20060 (cua--rectangle-post-command): Call cua--rectangle-set-corners
20061 for restored rectangle. Set point if cua--rect-undo-set-point.
20062
20063 2005-02-06 Jay Belanger <belanger@truman.edu>
20064
20065 * calc/calc-lang.el (calc-tex-language): Display more information
20066 in messages.
20067
20068 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
20069 in TeX mode.
20070
20071 2005-02-06 Richard M. Stallman <rms@gnu.org>
20072
20073 * emacs-lisp/lisp.el (buffer-end): Doc fix.
20074
20075 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
20076
20077 * net/ldap.el (ldap-search-internal): Support attributes with
20078 optional descriptions separated by a semi-colon, as in
20079 "userCertificate;binary".
20080
20081 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
20082
20083 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
20084 isn't a cons (i.e. the version is 0).
20085
20086 2005-02-05 Eli Zaretskii <eliz@gnu.org>
20087
20088 * help.el (help-for-help): Doc fix.
20089
20090 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
20091
20092 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
20093 GDB-Windows on the menu-bar as this works better.
20094
20095 2005-02-04 Jay Belanger <belanger@truman.edu>
20096
20097 * calc/calc-embed.el (calc-embedded-update): Don't put in
20098 unnecessary newlines. Adjust the end of formula marker.
20099
20100 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
20101 (math-latex-parse-two-args): New function.
20102
20103 2005-02-03 Lute Kamstra <lute@gnu.org>
20104
20105 * help-fns.el (help-with-tutorial): Make sure that users cannot
20106 remove the entire text of the tutorial by means of `undo'.
20107
20108 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
20109
20110 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
20111 in recent changes, where the ispell process was repeatedly
20112 killed & restarted.
20113
20114 * international/mule-cmds.el (set-locale-environment): Set file-name
20115 coding system to utf-8 on Darwin systems.
20116 (set-default-coding-systems): Don't set default-file-name-coding-system
20117 on Darwin systems.
20118
20119 2005-02-03 Richard M. Stallman <rms@gnu.org>
20120
20121 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
20122
20123 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
20124
20125 * faces.el (list-faces-display): Add optional argument.
20126
20127 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
20128
20129 * font-core.el (font-lock-default-function): Handle the rare case where
20130 only font-lock-keywords is set.
20131
20132 2005-02-02 Kenichi Handa <handa@m17n.org>
20133
20134 * international/characters.el: Cancel previous change for
20135 I-WITH-DOT-ABOVE and DOTLESS-i.
20136
20137 * international/latin-5.el: Cancel previous change.
20138
20139 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
20140
20141 * progmodes/gud.el: Correction to syntax in gud-menu-map.
20142
20143 2005-02-02 Kenichi Handa <handa@m17n.org>
20144
20145 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
20146 DOTLESS-i.
20147
20148 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
20149 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
20150
20151 * case-table.el (get-upcase-table): New function.
20152 (copy-case-table): Copy upcaes table too if non-nil.
20153 (set-case-syntax-delims): Maintain upcase table too.
20154 (set-case-syntax-pair): Likewise.
20155 (set-upcase-syntax, set-downcase-syntax): New functions.
20156 (set-case-syntax): Maintain upcase table too.
20157
20158 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
20159
20160 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
20161
20162 * progmodes/gud.el (gud-goto-info): New function.
20163 (gud-tool-bar-map): Use correct icon.
20164
20165 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
20166
20167 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
20168 When delegating, order args in the funcall correctly.
20169
20170 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
20171
20172 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
20173
20174 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
20175
20176 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
20177 buffer not visiting a file.
20178
20179 2005-01-31 Jay Belanger <belanger@truman.edu>
20180
20181 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
20182 bound on the line with the formula.
20183
20184 2005-01-31 Kim F. Storm <storm@cua.dk>
20185
20186 * ses.el (ses-create-cell-variable-range)
20187 (ses-destroy-cell-variable-range, ses-reset-header-string)
20188 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
20189 (ses-insert-row): Fix format of apply undo entries.
20190
20191 2005-01-31 Jay Belanger <belanger@truman.edu>
20192
20193 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
20194 parts.
20195
20196 * calc/calc-embed.el (calc-embedded-open-formula)
20197 (calc-embedded-close-formula): Ignore matrix environments.
20198
20199 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
20200 TeX mode.
20201
20202 * calc/calc-lang.el (math-function-table, math-oper-table)
20203 (math-variable-table): Adjust the LaTeX portions.
20204
20205 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
20206 (math-latex-ignore-words): New constant.
20207
20208 2005-01-31 Richard M. Stallman <rms@gnu.org>
20209
20210 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
20211 (ispell-local-dictionary): Doc fix.
20212 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
20213 Don't reinitialize at run time. Don't defcustom.
20214 All uses changed to append ispell-local-dictionary-alist,
20215 or check it first.
20216 (ispell-current-dictionary): New variable for dictionary in use.
20217 (ispell-dictionary): Now used only for global default.
20218 (ispell-start-process): Set ispell-current-dictionary,
20219 not ispell-dictionary.
20220 (ispell-change-dictionary): Use this only for setting
20221 user preferences.
20222 (ispell-internal-change-dictionary): New function
20223 to change the current dictionary in use.
20224 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
20225 Use ispell-current-dictionary.
20226 Handle ispell-local-dictionary-overridden.
20227 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
20228
20229 2005-01-31 Jay Belanger <belanger@truman.edu>
20230
20231 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
20232
20233 * calc/calc-ext.el: Add calc-latex-language to autoloads.
20234 (calc-mode-map): Add calc-latex-language.
20235
20236 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
20237 (math-latex-print-frac): New functions.
20238 (math-oper-table, math-function-table, math-variable-table)
20239 (math-complex-format, math-input-filter): Add latex properties.
20240 (calc-set-language): Set math-expr-special-function-mapping.
20241
20242 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
20243 (calc-write-parse-table-part): Add LaTeX support.
20244
20245 * calc/calc.el (calc-language): Adjust docstring.
20246 (calc-set-mode-line): Add LaTeX support.
20247 (math-expr-special-function-mapping): New variable.
20248 (math-tex-ignore-words): Add to list.
20249
20250 * calc/calccomp.el (math-compose-expr, math-compose-rows):
20251 Add LaTeX support.
20252 (math-compose-expr): Add support for special functions.
20253
20254 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
20255
20256 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
20257
20258 * progmodes/gdb-ui.el (gdb-memory-address)
20259 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
20260 (gdb-memory-mode-map, gdb-memory-format-keymap)
20261 (gdb-memory-format-menu, gdb-memory-unit-keymap)
20262 (gdb-memory-unit-menu): New variables for a buffer
20263 that lets the user examine program memory.
20264 (gdb-memory-set-address, gdb-memory-set-repeat-count)
20265 (gdb-memory-format-binary, gdb-memory-format-octal)
20266 (gdb-memory-format-unsigned, gdb-memory-format-signed)
20267 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
20268 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
20269 (gdb-memory-unit-word, gdb-memory-unit-halfword)
20270 (gdb-memory-unit-byte, gdb-memory-unit-menu)
20271 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
20272 (gdb-memory-mode, gdb-memory-buffer-name)
20273 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
20274 New functions for above buffer.
20275
20276 2005-01-30 Richard M. Stallman <rms@gnu.org>
20277
20278 * cus-edit.el (custom-bury-buffer): Function deleted.
20279 (custom-buffer-done-function): Option deleted.
20280 (custom-buffer-done-kill): New replacement option.
20281 (Custom-buffer-done): Call quit-window.
20282 (custom-buffer-create-internal): Update for above changes.
20283
20284 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
20285
20286 * simple.el (undo-ask-before-discard): New var.
20287 (undo-outer-limit-truncate): Implement it.
20288 (undo-extra-outer-limit): Doc update.
20289
20290 2005-01-29 Richard M. Stallman <rms@gnu.org>
20291
20292 * ses.el (undo-more): Delete defadvice.
20293 (ses-begin-change): Doc fix.
20294
20295 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
20296 instead of rebinding C-x u and C-_.
20297
20298 * files.el (normal-backup-enable-predicate): Return nil for files
20299 in /tmp, regardless of temporary-file-directory.
20300
20301 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
20302
20303 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
20304 (open-rectangle, delete-whitespace-rectangle-line)
20305 (clear-rectangle-line): If FILL, pass t instead of FILL
20306 for move-to-column's 2nd arg.
20307
20308 * simple.el (undo): Fix the test for continuing a series of undos.
20309 (undo-more): Set pending-undo-list to t when we reach end.
20310 (pending-undo-list): Move up defvar.
20311
20312 * wid-edit.el (widget-button-click):
20313 Shorten the range of the track-mouse binding.
20314
20315 * comint.el (comint-insert-input): Undo previous changes;
20316 use last-input-event in interactive spec.
20317
20318 2005-01-29 Eli Zaretskii <eliz@gnu.org>
20319
20320 * progmodes/compile.el (compilation-start): Bind buffer-read-only
20321 to nil before invoking call-process. Reset buffer's modified flag
20322 after fontifying it in the no-async branch.
20323
20324 * wid-edit.el (widget-specify-button): If mouse pointer shape
20325 cannot be changed, use mouse face instead.
20326
20327 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
20328
20329 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
20330 (gdb-goto-breakpoint): Make breakpoint handling work on template
20331 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
20332 (gdb-assembler-custom): Update to recognize breakpoint information
20333 added on 2005-01-19.
20334
20335 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
20336
20337 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
20338 (dsssl-mode): Use define-derived-mode.
20339 (scheme-mode-initialize): Remove.
20340 (scheme-mode): Use run-mode-hooks.
20341
20342 * cus-edit.el (customize-group-other-window)
20343 (custom-buffer-create-other-window): Don't override special-display-*.
20344 (custom-mode-map): Make it dense.
20345
20346 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
20347 sets the default value.
20348
20349 2005-01-28 Eli Zaretskii <eliz@gnu.org>
20350
20351 * descr-text.el: Add more keywords.
20352
20353 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
20354
20355 * speedbar.el: Avoid unnecessary use of locate-library.
20356
20357 * international/mule-cmds.el (standard-display-european-internal):
20358 Don't fiddle with latin-1 non-break space any more since it's now
20359 special cased in the C code.
20360 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
20361
20362 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
20363
20364 * cus-start.el (all): Add `undo-outer-limit'.
20365
20366 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
20367
20368 * textmodes/bibtex.el (bibtex-format-entry):
20369 Use `bibtex-empty-field-re' only on the text of fields, not on entire
20370 field lines.
20371 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
20372 not on part of a buffer.
20373
20374 2005-01-25 Lute Kamstra <lute@gnu.org>
20375
20376 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
20377 nonempty field text strings like "{letters\\macro{}more letters}".
20378 Clarify docstring.
20379 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
20380 (bibtex-entry-offset, bibtex-parse-association)
20381 (bibtex-parse-field-name): Fix typos in docstrings.
20382 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
20383
20384 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
20385
20386 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
20387 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
20388 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
20389 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
20390
20391 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
20392 isearch minor mode.
20393
20394 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
20395
20396 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
20397
20398 2005-01-24 Lute Kamstra <lute@gnu.org>
20399
20400 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
20401 CASECHARS and NOT-CASECHARS regular expressions of the
20402 "nederlands" and "nederlands8" dictionaries to prevent a "Range
20403 striding over charsets" error.
20404
20405 2005-01-24 Jay Belanger <belanger@truman.edu>
20406
20407 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
20408 display variable name.
20409
20410 2005-01-24 Kenichi Handa <handa@m17n.org>
20411
20412 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
20413 Fix setting of the element of encoded-kbd-iso2022-invocations.
20414
20415 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
20416
20417 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
20418 (gdb-threads-select): Change to also accept mouse events.
20419 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
20420 (gdb-threads-mouse-select): Delete.
20421
20422 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
20423
20424 * files.el (insert-directory): Take care of empty directory,
20425 listed without -a switch.
20426
20427 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
20428
20429 * textmodes/refill.el (refill-post-command-function):
20430 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
20431 to the list of functions that we should be careful not to undo.
20432 (refill-late-fill-paragraph-function): Remove.
20433 (refill-saved-state): New var.
20434 (refill-mode): Use it to save fill-paragraph-function.
20435 Save also the value of auto-fill-function.
20436
20437 * term/w32-win.el: Simplify code.
20438
20439 2005-01-23 Kim F. Storm <storm@cua.dk>
20440
20441 * simple.el (line-move): Adapt to new return value from
20442 pos-visible-in-window-p.
20443
20444 * simple.el (line-move): Fix last change. Check partial
20445 visibility at point rather than at window-start.
20446
20447 2005-01-22 Jason Rumney <jasonr@gnu.org>
20448
20449 * term/w32-win.el (xw-defined-colors): Remove debug-message.
20450
20451 2005-01-22 David Kastrup <dak@gnu.org>
20452
20453 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
20454
20455 2005-01-22 Eli Zaretskii <eliz@gnu.org>
20456
20457 * type-break.el (type-break-mode): Add a test for
20458 type-break-file-name being non-nil.
20459
20460 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
20461
20462 * net/eudc.el (top level): Call (message "") via progn, so that
20463 eudc-options-file is loaded.
20464
20465 2005-01-22 Kim F. Storm <storm@cua.dk>
20466
20467 * simple.el (line-move-1): Rename from line-move.
20468 (line-move): New function that adjusts vscroll for partially
20469 visible rows, and calls line-move-1 otherwise.
20470
20471 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
20472
20473 * pcomplete.el: Define pcomplete-read-event instead of read-event,
20474 since it's not a complete read-event implementation
20475
20476 2005-01-20 Jay Belanger <belanger@truman.edu>
20477
20478 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
20479 for called function.
20480
20481 2005-01-20 Steven Tamm <steventamm@mac.com>
20482
20483 * term/mac-win.el (process-connection-type): Remove.
20484 Controlled now by s/darwin.h:PTY_ITERATION.
20485
20486 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
20487
20488 * window.el (handle-select-window): Don't switch window when we're
20489 in the minibuffer.
20490
20491 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
20492
20493 * subr.el (dotimes-with-progress-reporter): New macro.
20494
20495 * ses.el (ses-dotimes-msg): Remove macro.
20496 Use `dotimes-with-progress-reporter' instead.
20497
20498 2005-01-19 Steven Tamm <steventamm@mac.com>
20499
20500 * term/mac-win.el (process-connection-type): Use new
20501 operating-system-release variable to use ptys on Darwin 7 (OS X
20502 10.3) when using carbon build.
20503
20504 2005-01-19 Jay Belanger <belanger@truman.edu>
20505
20506 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
20507 flags if the last command was a tab or M-tab.
20508
20509 * calc/calc-prog.el (calc-user-define-edit): Put original formula
20510 in formula editing buffer.
20511
20512 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
20513
20514 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
20515 breakpoint image symbol in margin.
20516
20517 2005-01-19 Jay Belanger <belanger@truman.edu>
20518
20519 * calc/calc-prog.el (calc-execute-kbd-macro):
20520 Ignore calc-keep-arg-flag.
20521
20522 2005-01-19 Kenichi Handa <handa@m17n.org>
20523
20524 * textmodes/ispell.el (ispell-looking-at): New function.
20525 (ispell-process-line): Use ispell-looking-at to compare the ispell
20526 output and the buffer contents.
20527
20528 2005-01-18 Jay Belanger <belanger@truman.edu>
20529
20530 * calc/calc.el (calc-display-raw): Fix docstring.
20531
20532 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
20533
20534 * simple.el (blink-matching-open): Strip extra info from syntax.
20535
20536 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
20537 funny chars in the end-of-here-doc marker.
20538
20539 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
20540
20541 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
20542 that enable/disabled state of breakpoints is shown correctly in
20543 fringe and on ttys.
20544 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
20545 Add breakpoint information as text properties.
20546 (gdb-mouse-toggle-breakpoint):
20547 Rename to gdb-mouse-set-clear-breakpoint.
20548 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
20549 breakpoints in the margin.
20550 (gdb-remove-strings): Simplify.
20551
20552 2005-01-17 Jay Belanger <belanger@truman.edu>
20553
20554 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
20555 erasing buffer.
20556
20557 2005-01-17 Richard M. Stallman <rms@gnu.org>
20558
20559 * progmodes/grep.el (grep-find): Copy from `grep' the condition
20560 for calling grep-compute-defaults.
20561
20562 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
20563 if buffer is empty.
20564
20565 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
20566
20567 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
20568
20569 * hilit-chg.el (highlight-changes-mode): Don't autoload.
20570
20571 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
20572 non-preloaded variables.
20573
20574 2005-01-17 Steven Tamm <steventamm@mac.com>
20575
20576 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
20577 tex-shell cause to force interactivity when using pipes.
20578
20579 2005-01-17 Kim F. Storm <storm@cua.dk>
20580
20581 * simple.el (just-one-space): Make arg optional.
20582
20583 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
20584
20585 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
20586 posn-at-x-y to t to access left-margin.
20587
20588 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
20589
20590 Sync with Tramp 2.0.47.
20591
20592 * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
20593 catching keep-date problems in cp/scp operations.
20594 (tramp-handle-copy-file): Don't call `set-file-modes'
20595 unconditionally. Specialized functions should know better what is
20596 necessary. This improves performance a little bit, and the
20597 functions could catch errors with `cp -p' and `scp -p'.
20598 (tramp-do-copy-or-rename-file-via-buffer)
20599 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
20600 when appropriate.
20601 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
20602 Call `set-file-modes' when appropriate.
20603 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
20604 Johnsson <isak@hypergene.com>
20605 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
20606 of both Tramp buffer and debug buffer. Reported by Joakim Verona
20607 <joakim@verona.se>
20608 (tramp-file-name-for-operation): Mark `shell-command' as magic for
20609 Emacs only.
20610
20611 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
20612 `find-file-hooks' and `dired-mode-hook'.
20613 (tramp-minor-mode-map): Respective map. Add remapping for
20614 `compile' and `recompile'.
20615 (tramp-remap-command, tramp-recompile): New defuns.
20616 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
20617 in buffer "*Compilation*". Call the commands asynchronously.
20618
20619 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
20620 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
20621 `shell-command', because it isn't magic in XEmacs. Reported by
20622 Adrian Aichner <adrian@xemacs.org>.
20623
20624 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
20625 `substitute-in-file-name.
20626 (tramp-smb-handle-substitute-in-file-name): New defun.
20627 (tramp-smb-advice-PC-do-completion): Delete advice.
20628
20629 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
20630
20631 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
20632 Fix error in deleting region.
20633
20634 2005-01-15 Richard M. Stallman <rms@gnu.org>
20635
20636 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
20637 In non-temp buffer, switch syntax table temporarily.
20638
20639 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
20640
20641 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
20642
20643 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
20644
20645 * imenu.el (imenu--split-menu): Copy menulist before sorting.
20646 (imenu--generic-function): Use START, not BEG, as pos of definition.
20647
20648 * simple.el (just-one-space): Argument specifies number of spaces.
20649
20650 * simple.el (eval-expression-print-format): Avoid warning
20651 about edebug-active.
20652
20653 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (Tiny change)
20654
20655 * progmodes/sh-script.el: Code copied from make-mode.el
20656 with small changes,
20657 (sh-mode-map): Bind C-c C-\.
20658 (sh-backslash-column, sh-backslash-align): New variables.
20659 (sh-backslash-region, sh-append-backslash): New functions.
20660
20661 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
20662
20663 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
20664 (rmail-pop-password, rmail-pop-password-required): Move to
20665 rmail-obsolete group.
20666 (rmail-set-pop-password): Rename to rmail-set-remote-password.
20667 All callers updated.
20668 (rmail-get-pop-password): Rename to rmail-get-remote-password.
20669 Take an argument specifying whether it is POP or IMAP mailbox we
20670 are using. All callers updated.
20671 (rmail-pop-password-error): Rename to
20672 rmail-remote-password-error. Added mailutils-specific error message.
20673 (rmail-movemail-search-path)
20674 (rmail-movemail-variant-in-use): New variables.
20675 (rmail-remote-password, rmail-remote-password-required):
20676 New customization variables.
20677 (rmail-probe, rmail-autodetect, rmail-movemail-variant-p): New funs.
20678 (rmail-parse-url): New function.
20679 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
20680 with GNU mailutils movemail.
20681
20682 2005-01-15 Kevin Ryde <user42@zip.com.au>
20683
20684 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
20685 suffix to space, $ or '$, to correctly position point when going
20686 to @table style constants like DBL_MAX.
20687
20688 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
20689
20690 * type-break.el (type-break-mode, type-break-file-time)
20691 (type-break-file-keystroke-count, type-break-choose-file):
20692 Don't store data in or load data from the file if type-break-file-name
20693 is nil.
20694 (type-break-file-name): Doc update as per the above.
20695
20696 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
20697
20698 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
20699 lookup-key might return nil; handle that.
20700
20701 2005-01-15 Alan Mackenzie <acm@muc.de>
20702
20703 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
20704 rather than the element found, thus enabling the tree to be setcar'd.
20705
20706 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
20707
20708 * textmodes/org.el (org-show-following-heading): New option.
20709 (org-show-hierarchy-above): Use `org-show-following-heading'.
20710 (org-cycle): Documentation fix.
20711
20712 * textmodes/org.el (orgtbl-optimized): New option
20713 (orgtbl-mode): New command, a minor mode.
20714 (orgtbl-mode-map): New variable.
20715 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
20716 (orgtbl-error, orgtbl-self-insert-command)
20717 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
20718
20719 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
20720 a local variable in each org-mode buffer.
20721
20722 * textmodes/org.el (org-set-regexps-and-options): Rename from
20723 `org-set-regexps'. Added checking for STARTUP keyword.
20724 (org-get-current-options): Add STARTUP options.
20725 (org-table-insert-row): Make mode intelligent about when
20726 realignment is needed.
20727 (org-self-insert-command, org-delete-backward-char, org-delete-char):
20728 New commands.
20729 (org-enable-table-editor): New default value `optimized'.
20730 (org-table-blank-field): Support blanking regions if active.
20731
20732 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
20733
20734 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
20735 if the year is not given.
20736
20737 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
20738 Add new escapes %m and %M, fixed bug with %F by adding
20739 save-match-data.
20740 (reftex-reference): Remove ?. from list of spaces.
20741 (reftex-label-info): Add automatic label prefix recognition.
20742
20743 * textmodes/reftex-index.el (reftex-index-next-phrase):
20744 Add slave parameter to call of `reftex-index-this-phrase'.
20745 (reftex-index-this-phrase): New optional argument.
20746 (reftex-index-region-phrases): Add slave parameter to call of
20747 `reftex-index-this-phrase'.
20748 (reftex-display-index): New argument redo.
20749 (reftex-index-rescan): Add `redo' to arguments of
20750 `reftex-display-index'.
20751 (reftex-index-Rescan, reftex-index-revert)
20752 (reftex-index-switch-index-tag): Add `redo' to arguments of
20753 `reftex-display-index'.
20754 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
20755 indexing. Fix bug with matching is there is a quote before or
20756 after the word.
20757
20758 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
20759 Fix bug when collecting citation keys in lines with comments.
20760 (reftex-citation): Prefix argument no longer rescans the document,
20761 but forces prompting for optional arguments of cite macros.
20762 (reftex-do-citation): Prompting for optional arguments implemented.
20763
20764 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
20765 Add optional arguments to most cite commands.
20766 (reftex-cite-cleanup-optional-args): New option
20767 (reftex-cite-prompt-optional-args): New option.
20768 (reftex-trust-label-prefix): New option.
20769
20770 * textmodes/reftex-toc.el (reftex-toc-find-section):
20771 Add push-mark before changing the position in the buffer.
20772
20773 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
20774 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
20775
20776 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
20777
20778 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
20779 more carefully.
20780
20781 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
20782
20783 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
20784 (sgml-mode): Use it.
20785 (sgml-get-context): Better keep track of implicitly closed tags.
20786
20787 2005-01-13 Kenichi Handa <handa@m17n.org>
20788
20789 * textmodes/ispell.el: These changes are to fix misalignment error
20790 caused by equivalent characters of different Emacs charsets.
20791 (ispell-unified-chars-table): New variable.
20792 (ispell-get-decoded-string): New function.
20793 (ispell-get-casechars, ispell-get-not-casechars)
20794 (ispell-get-otherchars): Call ispell-get-decoded-string.
20795
20796 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
20797
20798 * custom.el (custom-declare-variable): Just put symbol instead
20799 of (defvar . symbol) in `current-load-list'.
20800
20801 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
20802
20803 * emacs-lisp/elint.el: Fixed typo in Commentary section.
20804
20805 2005-01-12 Jay Belanger <belanger@truman.edu>
20806
20807 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
20808 to create a Calc summary.
20809
20810 2005-01-12 Kim F. Storm <storm@cua.dk>
20811
20812 * mouse.el (mouse-on-link-p): Change functionality and doc
20813 string to comply with latest description in lisp ref.
20814
20815 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
20816
20817 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
20818 Enable mouse clicks on mode-line, header-line and margin.
20819 (event-type): Give mouse event symbols an `event-kind' property
20820 with value `mouse-click'.
20821
20822 2005-01-12 Juri Linkov <juri@jurta.org>
20823
20824 * facemenu.el (list-colors-display): Add new arg buffer-name.
20825 Use it. Fix docstring. Replace code for identifying duplicate
20826 colors by the name with call to `list-colors-duplicates' which
20827 identifies duplicate colors by the value unless the color
20828 is one of special Windows colors. Set truncate-lines to t.
20829 Print sorted duplicate color names on each line. Indent to 22
20830 \(the longest color name in rgb.txt) instead of 20. Optimize.
20831 (list-colors-duplicates): New function.
20832 (facemenu-color-name-equal): Delete function.
20833
20834 * facemenu.el (list-colors-print): New function created from code
20835 in list-colors-display. Print #RRGGBB at the window right edge.
20836 (list-colors-display): When temp-buffer-show-function is not
20837 defined, call list-colors-print from temp-buffer-show-hook
20838 to get the right value of window-width in list-colors-print
20839 after the buffer is displayed.
20840
20841 * simple.el (pop-mark): Move deactivate-mark out of conditional
20842 part to deactivate the active mark regardless of the state of the
20843 mark ring.
20844
20845 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
20846 variables line in desktop files.
20847
20848 2005-01-12 Juri Linkov <juri@jurta.org>
20849
20850 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
20851 Bring together isearch highlight related options.
20852 (lazy-highlight): Replace group `replace' by `matching'.
20853 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
20854 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
20855 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
20856 and declare them obsolete.
20857 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
20858 (isearch-faces): Remove defgroup.
20859 (isearch-overlay, isearch-highlight, isearch-dehighlight):
20860 Move isearch highlighting code closer to lazy highlighting code.
20861
20862 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
20863 (query-replace-highlight, query-replace-lazy-highlight)
20864 (query-replace): Move definitions to the beginning of the file.
20865
20866 2005-01-11 Juri Linkov <juri@jurta.org>
20867
20868 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
20869 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
20870 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
20871
20872 * info.el (Info-history-forward): New variable.
20873 (Info-select-node): Reset Info-history-forward to nil.
20874 (Info-last): Turn into defalias.
20875 (Info-history-back): Rename from Info-last.
20876 Add current node to Info-history-forward.
20877 (Info-history-forward): New fun.
20878 (Info-mode-map): Replace Info-last by Info-history-back.
20879 Bind Info-history-forward to "r".
20880 (Info-mode-menu): Replace Info-last by Info-history-back.
20881 Fix menu item text. Add menu item for Info-history-forward.
20882 (info-tool-bar-map): Replace Info-last by Info-history-back.
20883 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
20884 for Info-history-forward.
20885 (Info-mode): Replace Info-last by Info-history-back in docstring.
20886 Add local variable Info-history-forward.
20887 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
20888
20889 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
20890
20891 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
20892 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
20893 Ignore select-window events rather than fiddle with
20894 mouse-autoselect-window.
20895
20896 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
20897
20898 * type-break.el (type-break-mode): Fix previous change.
20899
20900 2005-01-10 Jay Belanger <belanger@truman.edu>
20901
20902 * calc/calc-ext.el (calc-reset): Reset when inside embedded
20903 calculator; only reset when point is inside a calculator.
20904 Don't adjust the window height if the window takes up the whole height
20905 of the frame.
20906
20907 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
20908
20909 * ebuff-menu.el (Electric-buffer-menu-mode):
20910 Preserve value of buffer-local var header-line-format.
20911
20912 2005-01-09 Jay Belanger <belanger@truman.edu>
20913
20914 * calc/calc.el (calc-mode-var-list-restore-saved-values):
20915 Make sure settings file exists before accessing it.
20916
20917 * calc/calc-embed.el (calc-embedded-subst):
20918 Replace math-multi-subst-rec, which is only supposed to be called
20919 by math-multi-subst, by math-multi-subst.
20920
20921 2005-01-09 Andre Spiegel <spiegel@gnu.org>
20922
20923 * vc.el (vc-allow-async-revert): New user option.
20924 (vc-disable-async-diff): New internal variable.
20925 (vc-revert-buffer): Use them to disable asynchronous diff.
20926
20927 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
20928 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
20929 asynchronously if vc-disable-async-diff is t.
20930
20931 2005-01-09 Jay Belanger <belanger@truman.edu>
20932
20933 * calc/calc.el (defcalcmodevar): New macro.
20934 (calc-mode-var-list-restore-default-values)
20935 (calc-mode-var-list-restore-saved-values): New functions.
20936 (calc-mode-var-list): Use defcalcmodevar to define it.
20937 (calc-always-load-extensions, calc-line-numbering)
20938 (calc-line-breaking, calc-display-just, calc-display-origin)
20939 (calc-number-radix, calc-leading-zeros, calc-group-digits)
20940 (calc-group-char, calc-point-char, calc-frac-format)
20941 (calc-prefer-frac, calc-hms-format, calc-date-format)
20942 (calc-float-format, calc-full-float-format, calc-complex-format)
20943 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
20944 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
20945 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
20946 (calc-matrix-brackets, calc-language, calc-language-option)
20947 (calc-left-label, calc-right-label, calc-word-size)
20948 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
20949 (calc-display-raw, calc-internal-prec, calc-angle-mode)
20950 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
20951 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
20952 (calc-window-height, calc-display-trail, calc-show-selections)
20953 (calc-use-selections, calc-assoc-selections)
20954 (calc-display-working-message, calc-auto-why, calc-timing)
20955 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
20956 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
20957 (calc-gnuplot-default-device, calc-gnuplot-default-output)
20958 (calc-gnuplot-print-device, calc-gnuplot-print-output)
20959 (calc-gnuplot-geometry, calc-graph-default-resolution)
20960 (calc-graph-default-resolution-3d, calc-invocation-macro)
20961 (calc-show-banner): Use defcalcmodevar to declare them and set
20962 their default values.
20963
20964 * calc/calc-ext.el (calc-reset): Restore saved values of variables
20965 instead of default values (but restore default values if there is
20966 an argument of 0).
20967
20968 2005-01-09 David Kastrup <dak@gnu.org>
20969
20970 * desktop.el (desktop-restore-eager): Fix typo in type.
20971
20972 2005-01-08 Richard M. Stallman <rms@gnu.org>
20973
20974 * cus-edit.el (customize): Delete :link.
20975
20976 2005-01-08 Jay Belanger <belanger@truman.edu>
20977
20978 * calc/calc.el (calc-mode): Remove the extension from the
20979 `calc-settings-file' file name when loading it.
20980
20981 2005-01-08 Kim F. Storm <storm@cua.dk>
20982
20983 * info.el (Info-mode-map, Info-next-link-keymap)
20984 (Info-prev-link-keymap, Info-up-link-keymap):
20985 Map follow-link to mouse-face.
20986 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
20987
20988 2005-01-08 Jay Belanger <belanger@truman.edu>
20989
20990 * calc/calc.el (calc-settings-file): Change default value.
20991 Suggested by cgw in a comment in calc-mode.el.
20992
20993 * calc/calc-mode.el (calc-settings-file-name):
20994 Compare calc-settings-file to user-init-file instead of ~/.emacs.
20995 Replace ~/.emacs in a prompt by calc-settings-file.
20996
20997 2005-01-07 Lars Hansen <larsh@math.ku.dk>
20998
20999 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
21000 (desktop-lazy-idle-delay): New customizable variables.
21001 (desktop-buffer-args-list): New variable.
21002 (desktop-append-buffer-args): New function.
21003 (desktop-save): Call desktop-append-buffer-args for some buffers.
21004 (desktop-lazy-create-buffer): New function.
21005 (desktop-idle-create-buffers): New function.
21006 (desktop-read): Add message about buffers to restore lazily.
21007 (desktop-lazy-abort): New command.
21008 (desktop-clear): Call desktop-lazy-abort.
21009 (desktop-lazy-complete): New command.
21010
21011 2005-01-06 Richard M. Stallman <rms@gnu.org>
21012
21013 * emacs-lisp/find-func.el (find-face-definition):
21014 Rename from find-face.
21015
21016 2005-01-06 Kim F. Storm <storm@cua.dk>
21017
21018 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
21019
21020 * man.el (Man-xref-man-page, Man-xref-header-file)
21021 (Man-xref-normal-file): Add follow-link property.
21022
21023 2005-01-06 Jay Belanger <belanger@truman.edu>
21024
21025 * calc/calc-units.el: Make sure the proper macro definitions are
21026 available when compiling.
21027
21028 2005-01-06 Juri Linkov <juri@jurta.org>
21029
21030 * isearch.el (isearch-lazy-highlight-update):
21031 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
21032
21033 2005-01-06 Miles Bader <miles@gnu.org>
21034
21035 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
21036 (isearch-lazy-highlight-face): Use new name.
21037
21038 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
21039
21040 * uniquify.el (uniquify-rationalize-file-buffer-names):
21041 Re-add an interactive spec.
21042 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
21043 to the same name.
21044
21045 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
21046 (isearch-update, isearch-done): Adjust calls accordingly.
21047
21048 2005-01-05 Richard M. Stallman <rms@gnu.org>
21049
21050 * custom.el (custom-set-variables, custom-theme-set-variables):
21051 Clarify documentation.
21052
21053 * emacs-lisp/find-func.el (find-variable)
21054 (find-variable-other-window, find-variable-other-frame):
21055 Fix the TYPE args to find-function-read and find-function-do-it.
21056 (find-function): Doc fix.
21057 (find-function-at-point): Replace function-at-point alias.
21058
21059 2005-01-04 Richard M. Stallman <rms@gnu.org>
21060
21061 * cus-face.el (custom-declare-face):
21062 Record defface in current-load-list.
21063
21064 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
21065
21066 * emacs-lisp/find-func.el: Doc fixes.
21067 (find-face-regexp): New variable.
21068 (find-function-regexp-alist): New variable.
21069 (find-function-C-source): Third arg is now TYPE.
21070 (find-function-search-for-symbol): Handle general TYPE.
21071 (find-function-read, find-function-do-it): Handle general TYPE.
21072 (find-definition-noselect, find-face): New functions.
21073 (function-at-point): Alias deleted.
21074
21075 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
21076
21077 * battery.el (display-battery-mode): Rename from display-battery.
21078 Handle the case where it gets turned off.
21079
21080 2005-01-04 Richard M. Stallman <rms@gnu.org>
21081
21082 * cus-edit.el (customize): Make :link point to user doc.
21083
21084 * man.el (Man-fontify-manpage): Turn off undo generation.
21085
21086 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
21087
21088 2005-01-04 Andreas Schwab <schwab@suse.de>
21089
21090 * files.el (insert-directory): Only look for error lines in
21091 inserted text. Don't move too far after processing --dired markers.
21092
21093 2005-01-04 Richard M. Stallman <rms@gnu.org>
21094
21095 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
21096 Don't expand if the character is @, period, dash, etc.
21097 (define-mail-abbrev): Quote names that contain problem characters.
21098
21099 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
21100
21101 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
21102
21103 2005-01-03 Richard M. Stallman <rms@gnu.org>
21104
21105 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
21106 (query-replace-highlight, query-replace-lazy-highlight)
21107 (query-replace): Definitions moved up. Doc fix.
21108
21109 2005-01-03 Richard M. Stallman <rms@gnu.org>
21110
21111 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
21112 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
21113 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
21114 (lazy-highlight-face): Rename from isearch-lazy-...
21115 Change all references to them.
21116
21117 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
21118
21119 * cus-edit.el (custom-file): Doc fix for defcustom.
21120 (custom-file): The function no longer sets the variable
21121 `custom-file' to its return value.
21122
21123 * startup.el (command-line): No longer load `custom-file'.
21124
21125 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
21126
21127 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
21128
21129 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
21130 Don't confuse module-prefixed identifiers for labels.
21131 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
21132
21133 2005-01-02 Richard M. Stallman <rms@gnu.org>
21134
21135 * files.el (basic-save-buffer-1): Fix previous change.
21136
21137 * loadhist.el (file-loadhist-lookup): New function.
21138 (file-provides, file-requires): Use it.
21139
21140 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
21141 instead of calculating the right size.
21142
21143 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
21144
21145 * vc-svn.el (vc-svn-diff): Stay local if possible.
21146
21147 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
21148
21149 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
21150
21151 * files.el (hack-local-variables): Fix last change.
21152
21153 2005-01-02 Jay Belanger <belanger@truman.edu>
21154
21155 * calc/calc-yank.el (calc-edit-top): New variable.
21156 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
21157 object. Change header properties.
21158 (calc-edit-finish, calc-edit-finish-stack-object)
21159 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
21160 edited object.
21161 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
21162 for the beginning of the edited object.
21163 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
21164 for the beginning of the edited object.
21165 * calc/calc-prog.el (calc-edit-macro-finish-edit)
21166 (calc-finish-formula-edit, calc-macro-repeats)
21167 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
21168 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
21169 beginning of the edited object.
21170 (calc-user-define-edit): Change the header for editing macros.
21171 Remove unnecessary variable.
21172
21173 2005-01-01 Jay Belanger <belanger@truman.edu>
21174
21175 * calc/calc-yank.el (calc-edit-mode): Change default header.
21176 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
21177 * calc/calc-store.el (calc-edit-variable): Change title to match new
21178 header.
21179 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
21180 mode to match new header.
21181 (calc-user-define-edit): Change titles to include names of commands.
21182 (calc-finish-formula-edit): Adjust to handle new header.
21183 (calc-finish-macro-edit): Remove.
21184 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
21185 (calc-edit-macro-command, calc-edit-macro-command-type)
21186 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
21187 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
21188 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
21189 (calc-edit-macro-finish-edit): New functions.
21190 (calc-user-define-edit): Use new functions to edit named calc macros.
21191
21192 2005-01-01 Stefan <monnier@iro.umontreal.ca>
21193
21194 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
21195
21196 * ses.el (copy-region-as-kill): Deactivate mark.
21197
21198 2005-01-01 Richard M. Stallman <rms@gnu.org>
21199
21200 * replace.el (occur-1): If the output buffer is also an input,
21201 don't kill it, rename it.
21202
21203 * faces.el (set-face-background, set-face-foreground): Doc fix.
21204
21205 * cus-face.el (custom-face-attributes): Fix :help-echo strings
21206 for :foreground and :background.
21207
21208 * dired.el (dired-view-command-alist): Variable deleted.
21209 (dired-view-file, dired-mouse-find-file-other-window):
21210 Delete the code to use it.
21211
21212 2005-01-01 Kim F. Storm <storm@cua.dk>
21213
21214 * image.el (insert-sliced-image): Use t for line-height property.
21215
21216 See ChangeLog.11 for earlier changes.
21217
21218 ;; Local Variables:
21219 ;; coding: iso-2022-7bit
21220 ;; End:
21221
21222 Copyright (C) 2005, 2006 Free Software Foundation, Inc.
21223 Copying and distribution of this file, with or without modification,
21224 are permitted provided the copyright notice and this notice are preserved.
21225
21226 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1