]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
* progmodes/compile.el (compilation-error-regexp-alist-alist):
[gnu-emacs] / lisp / ChangeLog
1 2006-09-15 Chong Yidong <cyd@stupidchicken.com>
2
3 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4 Disallow filenames containing " -" to avoid confusion with libtool
5 compilation messages. Suggested by Stefan Monnier.
6
7 2006-09-15 David Kastrup <dak@gnu.org>
8
9 * mouse-sel.el (mouse-sel-follow-link-p): Use event position
10 instead of buffer position for `mouse-on-link-p'.
11
12 * mouse.el (mouse-posn-property): New function looking up the
13 properties at a click position in overlays and text properties in
14 either buffer or strings.
15 (mouse-on-link-p): Use `mouse-posn-property' to streamline lookup
16 of both `follow-link' as well as `mouse-face' properties.
17 (mouse-drag-track): Check `mouse-on-link-p' on event position, not
18 buffer position.
19
20 * help.el (describe-key-briefly): When reading a down-event on
21 mode lines or scroll bar, swallow the following up event, too.
22 Use the new mouse sensitity of `key-binding' for lookup.
23 (describe-key): The same here.
24
25 2006-09-15 Juanma Barranquero <lekktu@gmail.com>
26
27 * play/life.el (life-patterns): Add a few more interesting patterns.
28 (life-setup): Force `show-trailing-whitespace' to nil.
29
30 2006-09-14 Richard Stallman <rms@gnu.org>
31
32 * startup.el (fancy-splash-text): Change text to improve alignment.
33 (fancy-splash-screens): Don't set non-standard tab width.
34 Bind cursor-type temporarily, and make it easy to patch to
35 preserve the splash buffer.
36 (normal-splash-screen, fancy-splash-tail): Spell out "Meta-x".
37 (fancy-splash-screens): Display echo-area message explicitly.
38 Don't set fancy-splash-help-echo.
39
40 * simple.el (line-number-mode): Group mode-line instead of
41 editing-basics.
42 (column-number-mode, size-indication-mode): Likewise.
43
44 * faces.el (mode-line-faces): Group mode-line instead of modeline.
45
46 * time.el (display-time): Group mode-line instead of modeline.
47
48 * cus-edit.el (mode-line): Renamed from modeline. All uses changed.
49
50 2006-09-14 Ken Manheimer <ken.manheimer@gmail.com>
51
52 * allout.el (allout-regexp, allout-line-boundary-regexp)
53 (allout-bob-regexp): Correct grouping and boundaries to fix
54 backwards traversal.
55 (allout-depth-specific-regexp, allout-depth-one-regexp): New
56 versions that exploit \\{M\\} regexp syntax, to avoid geometric or
57 worse time in allout-ascend.
58 (allout-doublecheck-at-and-shallower): Identify depth threshold
59 below which topics are checked for and disqualified by containment
60 discontinuities.
61 (allout-hotspot-key-handler): Correctly handle multiple-key
62 strokes. Remove some unused variables.
63 (allout-mode-leaders): Clarify that mode-specific comment-start
64 will be used
65 (set-allout-regexp): Correctly regexp-quote allout regexps to
66 properly accept alternative header-leads and primary bullets with
67 regexp-specific characters (eg, C "/*", mathematica "(*").
68 Include new regular expressions among those configured.
69 (allout-infer-header-lead-and-primary-bullet): Rename
70 allout-infer-header-lead.
71 (allout-recent-depth): Manifest as a variable as well as a function.
72 (allout-prefix-data): Simplify into an inline instead of a macro,
73 assuming current match data rather than being explicitly passed it.
74 Establish allout-recent-depth value as well as
75 allout-recent-prefix-beginning and allout-recent-prefix-end.
76 (allout-aberrant-container-p): True when an item's immediate
77 offspring discontinuously contained. Useful for disqualifying
78 unintended topic prefixes, likely at low depths.
79 (allout-goto-prefix-doublechecked): Elaborated version of
80 allout-goto-prefix which disqualifies aberrant pseudo-items.
81 (allout-end-of-prefix, allout-pre-next-prefix)
82 (allout-end-of-subtree): Disqualify aberrant containers.
83 (allout-beginning-of-current-entry): Position at start of buffer
84 when in container (depth 0) entry.
85 (nullify-allout-prefix-data): Invalidate allout-recent-* prefix data.
86 (allout-current-bullet): Strip text properties.
87 (allout-get-prefix-bullet): Use right match groups.
88 (allout-beginning-of-line, allout-next-heading): Disqualify
89 aberrant containers.
90 (allout-previous-heading): Disqualify aberrant containers.
91 (allout-get-invisibility-overlay): Increment so progress is made
92 when the first overlay is not the sought one.
93 (allout-end-of-prefix): Disqualify aberrant containers.
94 (allout-end-of-line): Cycle something like allout-beginning-of-line.
95 (allout-mode): Make allout-old-style-prefixes (ie, enabling use with
96 outline.el outlines) functional again. Change the primary bullet
97 along with the header-lead - level 1 new-style bullets now work.
98 Engage allout-before-change-handler in mainline emacs, not just
99 xemacs, to do undo handling.
100 (allout-before-change-handler): Expose undo changes occurring in
101 hidden regions. Use allout-get-invisibility-overlay instead of
102 reimplementing it inline.
103 (allout-chart-subtree): Use start rather than end of prefix in
104 charts. Use allout-recent-depth variable.
105 (allout-chart-siblings): Disqualify aberrant topics.
106 (allout-beginning-of-current-entry): Position correctly.
107 (allout-ascend): Use new allout-depth-specific-regexp and
108 allout-depth-one-regexp for linear instead of O(N^2) or worse behavior.
109 (allout-ascend-to-depth, allout-up-current-level): Depend on
110 allout-ascend, rather than reimplementing an algorithm.
111 (allout-descend-to-depth): Use allout-recent-depth var instead of fun.
112 (allout-next-sibling): On traversal of numerous intervening
113 topics, resort to economical allout-next-sibling-leap.
114 (allout-next-sibling-leap): Specialized version of
115 allout-next-sibling that uses allout-ascend cleverly, to depend on
116 a regexp search to leap large numbers of contained topics, rather
117 than arbitrarily many one-by-one traversals.
118 (allout-next-visible-heading): Disqualify aberrant topics.
119 (allout-previous-visible-heading): Position consistently when
120 interactive.
121 (allout-forward-current-level): Base on allout-previous-sibling
122 rather than reimplmenting the algorithm. Remove unused vars.
123 (allout-solicit-alternate-bullet): Present default choice stripped
124 of text properties.
125 (allout-rebullet-heading): Use bullet stripped of text properties.
126 Register changes using allout-exposure-change-hook. Disregard
127 aberrant topics.
128 (allout-shift-in): With universal-argument, make topic a peer of
129 it's former offspring. Simplify the code by separating out
130 allout-shift-out functionality.
131 (allout-shift-out): With universal-argument, make offspring peers
132 of their former container, and its siblings. Implement the
133 functionality here, rather than inappropriately muddling the
134 implementation of allout-shift-in.
135 (allout-rebullet-topic): Respect additional argument for new
136 parent-child separation function.
137 (allout-yank-processing): Use allout-ascend directly.
138 (allout-show-entry): Disqualify aberrant topics.
139 (allout-show-children): Handle discontinuous children gracefully,
140 extending the depth being revealed to expose them and posting a
141 message indicating the situation.
142 (allout-show-to-offshoot): Remove obsolete and incorrect comment.
143 Leave cursor in correct position.
144 (allout-hide-current-subtree): Use allout-ascend directly.
145 Disqualify aberrant topics.
146 (allout-kill-line, allout-kill-topic): Preserve exposure layout in
147 a way that the yanks can restore it, as used to happen.
148 (allout-yank-processing): Restore exposure layout as recorded by
149 allout-kill-*, as used to happen.
150 (allout-annotate-hidden, allout-hide-by-annotation): New routines
151 for preseving and restoring exposure layout across kills.
152 (allout-toggle-subtree-encryption): Run allout-exposure-change-hook.
153 (allout-encrypt-string): Strip text properties.
154 Rearranged order and outline-headings for some of the
155 miscellaneous functions.
156 (allout-resolve-xref): No need to quote the error name in the
157 condition-case handler section.
158 (allout-flatten): Classic recursive (and recursively intensive,
159 without tail-recursion) list-flattener, needed by allout-shift-out
160 when confronted with discontinuous children.
161
162 2006-09-14 Chong Yidong <cyd@stupidchicken.com>
163
164 * startup.el (fancy-splash-text): Move editing instructions to
165 fancy-splash-head.
166 (fancy-splash-head): Issue editing instructions.
167 (fancy-splash-screens): Fixup whitespace.
168
169 2006-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
170
171 * bindings.el (mode-line-buffer-identification-keymap):
172 Remove duplicate line.
173
174 2006-09-14 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
175
176 * ido.el (ido-ignore-item-p): Allow any kind of functions in
177 ignore lists.
178
179 2006-09-14 Kim F. Storm <storm@cua.dk>
180
181 * jit-lock.el (jit-lock-fontify-again): New function.
182 (jit-lock-fontify-now): Use it instead of lambda form.
183
184 2006-09-13 Agustin Martin <agustin.martin@hispalinux.es>
185
186 * textmodes/flyspell.el (flyspell-word, flyspell-correct-word)
187 (flyspell-auto-correct-word): Make ispell-filter local to these
188 functions. Check that ispell-filter has new stuff before calling
189 ispell-parse-output.
190
191 2006-09-13 Kim F. Storm <storm@cua.dk>
192
193 * simple.el (line-move-partial): Optimize.
194
195 2006-09-13 Richard Stallman <rms@gnu.org>
196
197 * thingatpt.el (thing-at-point-bounds-of-url-at-point):
198 Delete spurious backquote.
199
200 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
201
202 * net/rcirc.el (rcirc-print): Fix last change.
203
204 2006-09-12 Jay Belanger <belanger@truman.edu>
205
206 * calc/calc.el (calc-dispatch): Remove unnecessary `sit-for'.
207
208 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
209
210 * net/rcirc.el (rcirc-scroll-show-maximum-output): Rename from
211 rcirc-show-maximum-output.
212 (rcirc-mode): Remove window-scroll-function hook.
213 (rcirc-scroll-to-bottom): Remove function.
214 (rcirc-print): Recenter so point stays at the bottom of the window
215 if point was already there.
216
217 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
218
219 * comint.el (comint-exec-1): Set EMACS to the full name of Emacs,
220 not to "t".
221 * progmodes/compile.el (compilation-start): Likewise.
222 * progmodes/idlwave.el (idlwave-rescan-asynchronously):
223 Don't use expand-file-name on invocation-directory, since this
224 might mishandle special characters in invocation-directory.
225
226 2006-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
227
228 * pcvs-defs.el: Remove * in defcustom's docstrings.
229
230 2006-09-12 Nick Roberts <nickrob@snap.net.nz>
231
232 * progmodes/compile.el (compilation-directory-properties):
233 Doc fix for help-echo.
234
235 2006-09-12 Lars Hansen <larsh@soem.dk>
236
237 * desktop.el (desktop-read): Add comment.
238
239 2006-09-12 Kim F. Storm <storm@cua.dk>
240
241 * simple.el (next-error-highlight, next-error-highlight-no-select):
242 Fix spelling error.
243
244 * subr.el (sit-for): Rework to use input-pending-p and cond.
245 Return nil input is pending on entry also for SECONDS <= 0.
246 (while-no-input): Use input-pending-p instead of sit-for.
247
248 2006-09-11 Richard Stallman <rms@gnu.org>
249
250 * simple.el (next-error-highlight, next-error-highlight-no-select):
251 Fix custom type and doc strings.
252
253 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
254
255 * diff-mode.el (diff-apply-hunk-to-backup-file): New var.
256 (diff-apply-hunk): Use it to ask for confirmation.
257
258 2006-09-11 Reiner Steib <Reiner.Steib@gmx.de>
259
260 * emacs-lisp/cl.el (pushnew): Add missing `,'.
261
262 2006-09-11 David Kastrup <dak@gnu.org>
263
264 * help.el (string-key-binding, describe-key-briefly)
265 (describe-key): Remove `string-key-binding' and its callers since
266 `key-binding' already caters for the proper lookup now.
267
268 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
269
270 * progmodes/cfengine.el (cfengine-font-lock-syntactic-keywords): Newvar.
271 (cfengine-mode): Use it. Fix \ syntax to be like /.
272
273 * bindings.el (mode-line-buffer-identification-keymap):
274 Move initialization into declaration.
275
276 2006-09-10 Kim F. Storm <storm@cua.dk>
277
278 * ido.el (ido-edit-input, ido-complete, ido-take-first-match)
279 (ido-push-dir-first, ido-kill-buffer-at-head, ido-exhibit)
280 (ido-delete-file-at-head): Pass head of ido-matches through ido-name
281 in case of merged directories. Reported by Micha\e,Ak\e(Bl Cadilhac.
282
283 2006-09-10 Richard Stallman <rms@gnu.org>
284
285 * dired-aux.el: Handle errors in recursive copy usefully.
286 (dired-create-files-failures): New variable.
287 (dired-copy-file): Remove condition-case.
288 (dired-copy-file-recursive): Check for errors on all file
289 operations, and add them to dired-create-files-failures.
290 Check file file-date-erorr here too.
291 (dired-create-files): Check dired-create-files-failures
292 and report those errors too.
293
294 * emacs-lisp/cl.el (pushnew): Use add-to-list when convenient.
295
296 * subr.el (add-to-list): New argument COMPARE-FN.
297
298 2006-09-10 Reiner Steib <Reiner.Steib@gmx.de>
299
300 * filecache.el (file-cache-add-directory)
301 (file-cache-add-directory-list, file-cache-add-file)
302 (file-cache-add-directory-using-find)
303 (file-cache-add-directory-using-locate)
304 (file-cache-add-directory-recursively): Add autoloads.
305
306 2006-09-09 Richard Stallman <rms@gnu.org>
307
308 * textmodes/conf-mode.el (conf-space-mode):
309 Use hack-local-variables-hook instead of calling hack-local-variables.
310 (conf-space-keywords-override): New variable.
311 (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
312 (conf-space-mode): Always make conf-space-keywords and
313 conf-space-keywords-override local.
314 Call conf-space-mode-internal directly as well as via hook.
315
316 2006-09-09 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
317
318 * progmodes/python.el (python-font-lock-keywords): Add `self' and other
319 quasi-keywords.
320
321 2006-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
322
323 * progmodes/python.el: Quieten the compiler about hippie-expand vars.
324 (python-send-string): Be slightly more careful about adding \n.
325
326 * startup.el (normal-splash-screen): Don't display the buffer if we'll
327 kill it right away anyway.
328
329 2006-09-09 Eli Zaretskii <eliz@gnu.org>
330
331 * international/codepage.el (cp850-decode-table): Fix a few codes.
332 (cp858-decode-table): New variable.
333
334 2006-09-09 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
335
336 * net/ldap.el (ldap-search-internal): Doc fix.
337
338 2006-09-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
339
340 * play/life.el (life-display-generation): Test for input manually if
341 `sleeptime' is negative or null.
342
343 * lpr.el (lpr-page-header-switches): Page title switch is one of them.
344 (print-region-1): Substitute `%s' with the page title.
345
346 2006-09-09 Matt Hodges <MPHodges@member.fsf.org>
347
348 * locate.el (locate-current-search): New variable.
349 (locate): Set buffer local value. Use current buffer if it is
350 in Locate mode.
351 (locate-mode): Disable undo here.
352 (locate-do-setup): Use locate-current-filter from buffer to be killed.
353 (locate-update): Use locate-current-search and locate-current-filter.
354
355 2006-09-08 David Kastrup <dak@gnu.org>
356
357 * desktop.el (desktop-read): When loading a desktop, disable
358 saving it while the load progresses, and switch off a pending lazy
359 load by calling `desktop-lazy-abort'.
360
361 2006-08-27 Martin Rudalics <rudalics@gmx.at>
362
363 * window.el (mouse-autoselect-window-timer)
364 (mouse-autoselect-window-position)
365 (mouse-autoselect-window-window)
366 (mouse-autoselect-window-now): New vars.
367 (mouse-autoselect-window-cancel)
368 (mouse-autoselect-window-select)
369 (mouse-autoselect-window-start): New functions.
370 (handle-select-window): Call `mouse-autoselect-window-start' when
371 delayed window autoselection is enabled.
372
373 * cus-start.el (mouse-autoselect-window): Handle delayed window
374 autoselection.
375
376 * emacs-lisp/eldoc.el: Add `handle-select-window' to the set of
377 commands after which it is allowed to print in the echo area.
378
379 2006-09-08 Richard Stallman <rms@gnu.org>
380
381 * textmodes/fill.el (adaptive-fill-regexp): Don't match `(1)' or `1.'
382
383 * mail/rmail.el (rmail-get-new-mail): Say whether all msgs are spam.
384 (rmail-convert-to-babyl-format): Don't record undo, leave list empty.
385
386 * emacs-lisp/timer.el (timer-create, timer-activate): Doc fixes.
387 (cancel-timer-internal): Add doc string.
388 (cancel-function-timers): Doc fix.
389 (with-timeout-handler, timer-event-last*): Add doc strings.
390
391 * emacs-lisp/bindat.el (bindat-unpack): Doc fix.
392
393 * files.el (risky-local-variable-p): Match ...-bindat-spec.
394
395 * dired.el (dired-log-summary): Add doc string.
396
397 * cus-edit.el (custom-menu-create): Bind deactivate-mark here
398 (custom-group-menu-create): Not here.
399
400 2006-09-08 Carsten Dominik <dominik@science.uva.nl>
401
402 * textmodes/org.el (org-dblock-write:clocktable): Avoid infinite loop.
403
404 2006-09-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
405
406 * term/mac-win.el: (show-hide-font-panel): New HI command ID symbol.
407 (mac-apple-event-map): Define its handler.
408
409 2006-09-07 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
410
411 * net/ldap.el (ldap-search-internal): Handle `auth' key.
412
413 2006-09-07 Magnus Henoch <mange@freemail.hu>
414
415 * net/rcirc.el (rcirc-activity-string): Don't quote value in case
416 clause.
417
418 2006-09-07 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
419
420 * info.el (Info-index): Bind completion-ignore-case.
421
422 2006-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
423
424 * progmodes/prolog.el (inferior-prolog-flavor): New var left out of
425 previous commit.
426 (inferior-prolog-guess-flavor): New fun left out of previous commit.
427 (prolog-consult-region-and-go): Don't hard code "*prolog*" and don't
428 burp in dedicated windows.
429 (inferior-prolog-self-insert-command): New command.
430 (inferior-prolog-mode-map): Use it.
431
432 2006-09-07 Reiner Steib <Reiner.Steib@gmx.de>
433
434 * international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
435
436 * international/code-pages.el: Add cp858.
437
438 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
439
440 * dnd.el: Fix bootstrapping.
441
442 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
443
444 * dnd.el (dnd-protocol-alist): Add what url-handler-mode can handle.
445 (dnd-open-remote-url): New function.
446 (dnd-open-remote-file-function): Set to dnd-open-remote-url if
447 not windows-nt.
448
449 2006-09-07 Jason Rumney <jasonr@gnu.org>
450
451 * dnd.el (dnd-open-remote-file-function): New variable.
452 (dnd-open-unc-file): New function.
453 (dnd-open-file): Call dnd-open-remote-file-function if set.
454
455 2006-09-06 Daiki Ueno <ueno@unixuser.org>
456
457 * pgg-gpg.el (pgg-gpg-process-region): Encode passphrase with
458 pgg-passphrase-coding-system rather than locale-coding-system.
459 * pgg-def.el (pgg-passphrase-coding-system): New user option.
460
461 2006-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
462
463 * progmodes/prolog.el: Remove * in docstrings.
464 (prolog-program-name): Add SWI prolog.
465 (prolog-mode-menu): New menu.
466 (prolog-mode): Set comment-add.
467 (prolog-indent-line): Simplify. Use indent-line-to.
468 (inferior-prolog-buffer): New var.
469 (inferior-prolog-run, inferior-prolog-process): New funs.
470 (run-prolog, switch-to-prolog): Rewrite, using them.
471 (prolog-consult-region): Use inferior-prolog-buffer.
472 (inferior-prolog-load-file): New function.
473 (prolog-mode-map): Add bindings for load-file and switch-to-prolog.
474
475 * textmodes/fill.el (fill-single-word-nobreak-p): Allow breaking before
476 last word, if it's not the end of the paragraph.
477
478 * files.el (abbreviate-file-name): Don't mistakenly match newlines in
479 file name.
480
481 2006-09-06 Ralf Angeli <angeli@caeruleus.net>
482
483 * frame.el (display-mm-dimensions-alist): New defcustom.
484 (display-mm-height, display-mm-width): Use it.
485
486 2006-09-06 Simon Josefsson <jas@extundo.com>
487
488 * mail/smtpmail.el (smtpmail-starttls-credentials): Doc fix.
489
490 2006-09-06 Nick Roberts <nickrob@snap.net.nz>
491
492 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
493 (gdb-var-list-children-regexp-1): Tweak regexps to catch full
494 string values.
495
496 2006-09-06 Kim F. Storm <storm@cua.dk>
497
498 * simple.el (line-move-partial): New function to do vscrolling for
499 partially visible images / tall lines. Rewrite based on code
500 previously in line-move. Simplify backwards vscrolling.
501 (line-move): Use it. Simplify.
502
503 2006-09-05 Kim F. Storm <storm@cua.dk>
504
505 * emulation/cua-base.el (cua--pre-command-handler-1): Rewrite.
506
507 2006-09-05 Chong Yidong <cyd@stupidchicken.com>
508
509 * progmodes/compile.el (compilation-error-regexp-alist-alist):
510 Process the `gcc-include' after the `gnu' rule.
511
512 2006-09-05 Kim F. Storm <storm@cua.dk>
513
514 * ido.el (ido-visit-buffer): Use buffer name if buffer arg is a buffer.
515
516 2006-09-05 Daiki Ueno <ueno@unixuser.org>
517
518 * pgg.el (pgg-clear-string): Alias to clear-string for backward
519 compatibility.
520
521 * pgg-gpg.el (pgg-gpg-process-region): Avoid display blinking with
522 inhibit-redisplay; encode passphrase with locale-coding-system.
523
524 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
525
526 * term/xterm.el (terminal-init-xterm): Add more C-M- bindings.
527
528 2006-09-05 Nick Roberts <nickrob@snap.net.nz>
529
530 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
531 (gdb-var-list-children-regexp): Make type field optional.
532
533 * progmodes/gud.el (gud-speedbar-buttons): Allow for no type
534 e.g public, protected in C++.
535
536 2006-09-04 John Paul Wallington <jpw@pobox.com>
537
538 * simple.el (completion-show-help): New defcustom.
539 (completion-setup-function): Heed it.
540
541 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
542
543 * term/xterm.el (terminal-init-xterm): Add C-M- bindings.
544
545 2006-09-04 Richard Stallman <rms@gnu.org>
546
547 * mail/rmail-spam-filter.el (rsf-scanning-messages-now): Doc fix.
548 (rsf-min-region-to-spam-list): Doc fix.
549 (rsf-add-content-type-field): Doc fix.
550
551 * simple.el (kill-region): Explicitly test there is a region.
552
553 2006-09-04 Chong Yidong <cyd@stupidchicken.com>
554
555 * mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
556 sendmail in several common directories.
557
558 * mail/sendmail.el (sendmail-program): Moved here from paths.el.
559
560 * paths.el (sendmail-program): Removed.
561
562 2006-09-04 Daiki Ueno <ueno@unixuser.org>
563
564 * pgg-gpg.el (pgg-gpg-process-region): Revert two patches from Satyaki
565 Das. http://article.gmane.org/gmane.emacs.gnus.general/49947
566 http://article.gmane.org/gmane.emacs.gnus.general/50457
567
568 2006-09-03 Chong Yidong <cyd@stupidchicken.com>
569
570 * cus-edit.el (custom-group-menu-create): Avoid deactivating the
571 mark after running the menu filter.
572
573 2006-09-03 Juri Linkov <juri@jurta.org>
574
575 * international/quail.el (quail-defrule-internal): Add a check
576 if a key is a vector.
577
578 2006-09-02 Juri Linkov <juri@jurta.org>
579
580 * man.el (Man-topic-history): New variable.
581 (man): Use it.
582
583 * woman.el (woman-topic-history): Change defvar to defvaralias
584 for symbol `Man-topic-history'.
585
586 * shell.el (shell-filter-ctrl-a-ctrl-b): Check if
587 `comint-last-output-start' is a marker by using `markerp' and
588 check if it has a position by using `marker-position', and use
589 this position for `goto-char'.
590
591 * international/quail.el (quail-defrule-internal): Add missing
592 `error' call for null key.
593
594 2006-09-02 Ryan Yeske <rcyeske@gmail.com>
595
596 * rcirc.el (rcirc-keywords): New variable.
597 (rcirc-bright-nicks, rcirc-dim-nicks): New variables.
598 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Remove
599 variables.
600 (rcirc-responses-no-activity): New function.
601 (rcirc-handler-generic): Check for responses in above.
602 (rcirc-process-command): Add ?: character to arguments of raw
603 server commands.
604 (rcirc-format-response-string): Use `rcirc-bright-nicks' and
605 `rcirc-dim-nicks'.
606 (rcirc-gray-toggle): Remove unused variable.
607 (rcirc-print): Remove some tracking logic, which is moved into
608 markup functions.
609 (rcirc-activity-types): Was `rcirc-activity-type', now a list of
610 types.
611 (rcirc-activity-string): Look for 'keyword in activity-types.
612 (rcirc-window-configuration-change): Don't erase overlay-arrow
613 unnecessarily.
614 (rcirc-add-or-remove): New function.
615 (rcirc-cmd-ignore): Use it.
616 (rcirc-message-leader): Remove unused function.
617 (rcicr-cmd-bright, rcirc-cmd-dim, rcirc-cmd-keyword): New commands.
618 (rcirc-add-face): New function.
619 (rcirc-facify): Use rcirc-add-face.
620 (rcirc-url-regexp): Add parens.
621 (rcirc-map-regexp): Remove function.
622 (rcirc-mangle-regexp): Remove function.
623 (rcirc-markup-text-functions): New variable.
624 (rcirc-markup-text): New function (replaces `rcirc-mangle-text').
625 (rcirc-markup-body-text, rcirc-markup-attributes)
626 (rcirc-markup-my-nick, rcirc-markup-urls, rcirc-markup-keywords)
627 (rcirc-markup-bright-nicks): New markup handler functions.
628 (rcirc-nick-in-message-full-line): New face.
629 (rcirc-track-nick): Rename from `rcirc-mode-line-nick'.
630 (rcirc-track-keyword, rcirc-url, rcirc-keyword): New faces.
631
632 2006-09-02 Martin Rudalics <rudalics@gmx.at>
633
634 * cus-start.el (hscroll-margin, hscroll-step)
635 (mode-line-in-non-selected-windows, mouse-autoselect-window)
636 (x-use-underline-position-properties): Change version to "22.1"
637 since they will appear there for the first time.
638
639 2006-09-01 Chong Yidong <cyd@stupidchicken.com>
640
641 * imenu.el (imenu-update-menubar): Use buffer-chars-modified-tick.
642
643 2006-08-31 Richard Stallman <rms@gnu.org>
644
645 * cus-edit.el (custom-save-variables): Slight cleanup.
646 (Custom-no-edit): Renamed from custom-no-edit.
647 (Custom-newline): Renamed from custom-newline.
648 (custom-mode-map): Use new names.
649
650 * emacs-lisp/easy-mmode.el (define-minor-mode): Reference manual
651 about customization, rather than M-x customize, in the doc string
652 made for the defcustom.
653
654 * emacs-lisp/trace.el (trace-function-background): Doc fix.
655
656 2006-08-31 Romain Francoise <romain@orebokech.com>
657
658 * dired-x.el (dired-guess-shell-alist-default): Update.
659
660 2006-08-31 Michael Mauger <mmaug@yahoo.com>
661
662 * custom.el (custom-theme-set-variables): Autoload packages before
663 sorting the variables.
664
665 2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu>
666
667 * viper-cmd.el (viper-special-read-and-insert-char): Convert events to
668 chars if XEmacs.
669 (viper-after-change-undo-hook): Check if undo-in-progress is bound.
670
671 2006-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
672
673 * progmodes/python.el (python-eldoc-function): Re-enable quit while
674 waiting for process.
675
676 2006-08-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
677
678 * term/mac-win.el (mac-string-to-utxt): If adjustment for MacJapanese
679 results in ASCII-only string, encode original one directly.
680
681 2006-08-29 Romain Francoise <romain@orebokech.com>
682
683 * startup.el (normal-splash-screen, fancy-splash-screens):
684 Make buffer read-only and arrange to enter view mode if necessary.
685
686 2006-08-29 Chong Yidong <cyd@stupidchicken.com>
687
688 * hl-line.el (hl-line): New face.
689 (hl-line-face): Use it.
690
691 * image-mode.el (image-mode): Fix last fix.
692 Suggested by Kim F. Storm.
693
694 2006-08-29 Michael Albinus <michael.albinus@gmx.de>
695
696 Sync with Tramp 2.0.54.
697
698 * net/tramp.el (tramp-convert-file-attributes): Call `eql' instead
699 of `=', because `tramp-get-remote-gid' might not always return an
700 integer when expected.
701 (tramp-register-file-name-handlers): `partial-completion-mode' is
702 unknown to XEmacs.
703 (tramp-time-diff): Don't use `floor', it might fail for large
704 differences.
705 (tramp-handle-make-auto-save-file-name): For Emacs 21, set
706 `tramp-auto-save-directory' if unset in order to guarantee unique
707 auto-save file names.
708
709 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
710
711 * image-mode.el (image-mode): Display image as text on a terminal.
712
713 2006-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
714
715 * progmodes/python.el (python-send-command): Simplify.
716 (run-python): Don't generate a new buffer unless `new' was specified.
717 Make sure we send `import emacs' to the proper process.
718
719 * progmodes/python.el (python-send-command): Don't wait for the command
720 to terminate. Don't fiddle with compilation-parsing-end.
721
722 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
723
724 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
725 Insert commentary after first line summary.
726
727 * woman.el (woman-follow): New function, based on `man-follow'.
728 (woman-mode-map): Use it.
729
730 * ibuffer.el (ibuffer-do-sort-by-recency): Perform full update
731 since ibuffer-do-sort-by-recency does not define a sorter.
732
733 2006-08-28 Kim F. Storm <storm@cua.dk>
734
735 * find-dired.el (find-dired): Use shell-quote-argument to properly
736 escape ( and ) args. Also use it on {} and ; args in default
737 value of find-ls-option string.
738 (find-grep-dired): Use shell-quote-argument on {} and ; args.
739
740 2006-08-27 Michael Olson <mwolson@gnu.org>
741
742 * emacs-lisp/tq.el: Small grammar fix in comments.
743 (tq-enqueue): Check for existence of queue rather than the
744 head queue item's question, which was a no-op.
745 (tq-filter, tq-process-buffer): Make sure the process buffer
746 exists before making it the current buffer.
747
748 2006-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
749
750 * term/mac-win.el (mac-apple-event-map): Rename hicommand to hi-command.
751 (mac-dnd-drop-data): Apply 2006-08-22 change for x-dnd-drop-data.
752 (special-event-map): Apply 2006-08-16 change for x-win.el.
753
754 2006-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
755
756 * progmodes/python.el (python-send-receive): Wait in the
757 process's buffer so as to check the right buffer-local variables.
758
759 2006-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
760
761 * emacs-lisp/checkdoc.el: Remove * in defcustoms.
762 (defgroup checkdoc): Move to beginning.
763
764 * progmodes/python.el (python-preoutput-skip-next-prompt): New var.
765 (python-preoutput-continuation): Remove.
766 (python-preoutput-filter): Simplify correspondingly.
767 Remove handling of _emacs_ok. Make sure we skip _emacs_out's prompts.
768 Loop around to catch embedded _emacs_out output.
769 (run-python): Send the import&print command on a single line.
770 (python-send-command): Send command&print on a single line.
771 (python-send-string): Only add double \n if needed.
772 (python-send-receive): Loop until the result comes.
773 (python-mode-running): Defvar it.
774 (python-setup-brm): Remove unused var `menu'.
775 Only bind py-mode-map and `features' around brm-init.
776 (python-calculate-indentation): Remove unused var `point'.
777 (python-beginning-of-defun): Remove unused var `def-line'.
778
779 2006-08-25 Richard Stallman <rms@gnu.org>
780
781 * kmacro.el (kmacro-repeat-on-last-key): Doc fix.
782
783 2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
784
785 * viper.el (viper-set-hooks): Use frame bindings for
786 viper-vi-state-cursor-color.
787 (viper-non-hook-settings): Don't set default
788 mode-line-buffer-identification.
789
790 * viper-util.el (viper-set-cursor-color-according-to-state): New fun.
791 (viper-set-cursor-color-according-to-state)
792 (viper-get-saved-cursor-color-in-replace-mode)
793 (viper-get-saved-cursor-color-in-insert-mode): Make conditional on
794 viper-emacs-state-cursor-color.
795
796 * viper-cmd.el (viper-envelop-ESC-key): Bug fix.
797 (viper-undo): Use point if undo-beg-posn is nil.
798 (viper-insert-state-post-command-sentinel, viper-change-state-to-emacs)
799 (viper-after-change-undo-hook): Don't use
800 viper-emacs-state-cursor-color by default.
801 (viper-undo): More sensible positioning after undo.
802
803 * viper-ex.el (ex-splice-args-in-1-letr-cmd): Get rid of caddr.
804 (viper-emacs-state-cursor-color): Default to nil, since this feature
805 doesn't work well yet.
806
807 * ediff-mult.el (ediff-intersect-directories)
808 (ediff-get-directory-files-under-revision, ediff-dir-diff-copy-file):
809 always expand filenames.
810
811 2006-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
812
813 * tumme.el: Remove * in defcustoms's docstrings.
814
815 2006-08-24 Chong Yidong <cyd@stupidchicken.com>
816
817 * emacs-lisp/timer.el (timer-set-idle-time, run-with-idle-timer):
818 Accept internal time format for SECS arg.
819 (timer-relative-time): Doc fix.
820
821 * jit-lock.el: "Stealth fontification by requeuing timers" patch,
822 adapted from Martin Rudalics.
823 (jit-lock-stealth-repeat-timer, jit-lock-stealth-buffers): New vars.
824 (jit-lock-mode): Create jit-lock-stealth-repeat-timer.
825 (jit-lock-stealth-fontify): Reschedule as a idle timer instead of
826 using sit-for.
827
828 2006-08-24 Francesc Rocher <francesc.rocher@gmail.com>
829
830 * cus-start.el (all): Add `overline-margin' and
831 `x-underline-at-descent-line'.
832
833 2006-08-24 Kim F. Storm <storm@cua.dk>
834
835 * progmodes/grep.el (grep-find-use-xargs): Use explicit value `exec'
836 to mean "use find -exec"; nil now unambiguously means auto-detect.
837 (grep-compute-defaults): Set grep-find-use-xargs to `exec' if not `gnu'.
838 Use shell-quote-argument to build grep-find-command and
839 grep-find-template.
840 (rgrep): Use shell-quote-argument to properly quote arguments to find.
841 Reported by Tom Seddon.
842
843 2006-08-23 Chong Yidong <cyd@stupidchicken.com>
844
845 * startup.el (fancy-splash-head): Give instructions for dismissing
846 the splash screen for default startup too.
847 (display-startup-echo-area-message, fancy-splash-screens)
848 (use-fancy-splash-screens-p): New arg hide-on-input. If nil, show
849 all splash text at once and keep the splash buffer around.
850 (command-line-1): Give display-startup-echo-area-message a t arg.
851
852 2006-08-23 Carsten Dominik <dominik@science.uva.nl>
853
854 * textmodes/org.el (org-follow-gnus-link): Make sure the dedicated
855 gnus frame is selected.
856
857 2006-08-23 Nick Roberts <nickrob@snap.net.nz>
858
859 * progmodes/gdb-ui.el (gdb-starting): Reset gdb-signalled to nil.
860
861 2006-08-22 Kim F. Storm <storm@cua.dk>
862
863 * ido.el (ido-set-matches-1): Fix full matching for subdirs.
864 Add suffix matching for subdirs.
865
866 2006-08-22 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
867
868 * x-dnd.el (x-dnd-drop-data): Don't call goto-char if
869 mouse-yank-at-point is non-nil.
870
871 2006-08-22 Nick Roberts <nickrob@snap.net.nz>
872
873 * progmodes/gdb-ui.el (gdb-frame-memory-buffer): Make frame
874 a bit wider and remove fringes to fit initial output on line.
875
876 2006-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
877
878 * frame.el (blink-cursor-end): Only ignore the error we care about.
879 (blink-cursor-mode): Use blink-cursor-end to simplify the code.
880
881 2006-08-21 Richard Stallman <rms@gnu.org>
882
883 * whitespace.el (whitespace-cleanup): Doc fix.
884
885 2006-08-20 Ryan Yeske <rcyeske@gmail.com>
886
887 * net/rcirc.el (rcirc-show-maximum-output): New var.
888 (rcirc-buffer-process): If no buffer argument is supplied, use
889 current-buffer.
890 (rcirc-complete-nick): Complete to the last completed nick first.
891 (rcirc-mode): Preserve the value of `rcirc-urls' across
892 connections. Setup scroll function.
893 (rcirc-scroll-to-bottom): New function.
894 (rcirc-print): Use nick syntax around regexp work.
895 Notice dim-nicks speaking only if they say our nick.
896 (rcirc-update-activity-string): Do not show the modeline indicator
897 if there are no live rcirc processes.
898 (rcirc-cmd-ignore): Ignore case.
899 (rcirc-browse-url-at-point): Fix off-by-one error.
900
901 2006-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
902
903 * progmodes/python.el: Remove * in defcustom docstrings.
904 (run-python, python-proc, python-try-complete): Use derived-mode-p.
905 (python-mode): Set tab-width and indent-tabs-mode.
906
907 2006-08-20 Dave Love <fx@gnu.org>
908
909 * progmodes/python.el: Update to Dave Love's latest version.
910 (python-font-lock-keywords, python-mode): Don't use
911 font-lock-syntax-table, but match symbol elements explicitly instead.
912 (python-mode-map): Add help, and a few more key bindings.
913 (python-skip-comments/blanks): Move out of comments as well.
914 (python-continuation-line-p): Behave better with unbalanced parens.
915 (python-blank-line-p): New fun.
916 (python-open-block-statement-p): Don't use a heuristic.
917 (python-outdent-p): Better handle blocks-in-the-same-line.
918 (python-calculate-indentation): Misc improvements.
919 (python-comment-indent): Remove.
920 (python-block-pairs): New var.
921 (python-first-word): New fun.
922 (python-indentation-levels): Handle more common cases.
923 (python-indent-line-1): Add `leave' argument.
924 (python-indent-region): New fun.
925 (python-skip-out): New fun.
926 (python-beginning-of-statement, python-end-of-statement): Use it.
927 (python-next-statement): Return correct count even at eob.
928 (python-end-of-block): Fix paren-typo.
929 (python-imenu-create-index): Add module variables.
930 (run-python): Add `new' arg.
931 Check we're at a prompt before returning.
932 (python-send-command): Move to end of buffer.
933 Wait for prompt to return.
934 (python-set-proc): New fun.
935 (python-imports): New var.
936 (python-describe-symbol): Use it. Adjust to new interface of `ehelp'.
937 (python-eldoc-function): Try to move out of arg list.
938 (python-outline-level): Offset by 1.
939 (python-find-imports): New fun.
940 (python-symbol-completions): Use python-imports.
941 (python-module-path, ffap-alist): Add support for ffap.
942 (python-skeletons, python-mode-abbrev-table, def-python-skeleton)
943 (pythin-insert-*, python-default-template, python-expand-template):
944 Add templates/skeletons.
945 (python-setup-brm): Support for Bicycle Repair Man.
946 (python-abbrev-syntax-table): New var.
947 (python-abbrev-pc-hook, python-pea-hook): New funs.
948
949 2006-08-20 Chong Yidong <cyd@stupidchicken.com>
950
951 * frame.el (blink-cursor-start): Set timer first.
952 (blink-cursor-end): Ignore timer cancelling errors.
953 Suggested by Ken Manheimer.
954
955 2006-08-20 Juanma Barranquero <lekktu@gmail.com>
956
957 * newcomment.el (comment-box): Call `comment-normalize-vars'.
958 Add autoload cookie.
959
960 2006-08-20 Richard Stallman <rms@gnu.org>
961
962 * simple.el (line-number-at-pos): Doc fix.
963
964 * emacs-lisp/timer.el (run-with-idle-timer): Pass t to
965 timer-activate-when-idle, so timer can run before Emacs becomes
966 non-idle again.
967
968 2006-08-18 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change)
969
970 * whitespace.el (whitespace-cleanup-internal): New optional arg
971 REGION-ONLY. If it's non-nil, modify the message to the user
972 accordingly.
973 (whitespace-cleanup-region): Call whitespace-cleanup-internal with
974 a non-nil argument.
975
976 2006-08-18 Gustav H\e,Ae\e(Bllberg <gustav@gmail.com> (tiny change)
977
978 * rect.el (spaces-string): Simplify and add doc string.
979
980 2006-08-17 Romain Francoise <romain@orebokech.com>
981
982 * progmodes/gdb-ui.el (gdb-edit-locals-value): Balance parens.
983
984 2006-08-17 Richard Stallman <rms@gnu.org>
985
986 * compare-w.el (compare-windows): lambda's take an arg and pass
987 it to compare-windows-skip-whitespace.
988
989 2006-08-17 Martin Rudalics <rudalics@gmx.at>
990
991 * jit-lock.el (jit-lock-fontify-now): Protect the modified status of
992 the right buffer.
993
994 2006-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
995
996 * pcvs-parse.el (cvs-parse-table): Accept the new `...' format for
997 removed files.
998
999 2006-08-17 Nick Roberts <nickrob@snap.net.nz>
1000
1001 * progmodes/gdb-ui.el (gdb-locals-watch-map)
1002 (gdb-locals-watch-map-1): Suppress keymap first.
1003 (gdb-edit-locals-map-1): New variable.
1004 (gdb-edit-locals-value): New function.
1005 (gdb-stack-list-locals-handler): Use them.
1006
1007 2006-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
1008
1009 * mouse.el (global-map): Allow yanking with mouse-2 at a spot whose
1010 cursor would normally be drawn in the fringe.
1011
1012 * font-lock.el (font-lock-extend-region-wholelines): Fix up typo.
1013 Reported by Martin Rudalics <rudalics@gmx.at>.
1014
1015 2006-08-16 Richard Stallman <rms@gnu.org>
1016
1017 * term/x-win.el (x-clipboard-yank): Specify * in interactive spec.
1018 (special-event-map): Process drag-n-drop events this way.
1019
1020 * simple.el (move-beginning-of-line): Test whether fields
1021 would prevent motion back to line's first visible character.
1022 If so, stop where the fields would stop the motion.
1023
1024 * newcomment.el (comment-indent): Fully update INDENT
1025 before checking to see if it will change the text.
1026
1027 * cus-edit.el (custom-newline): New function.
1028 (custom-mode-map): Bind newline to custom-newline.
1029
1030 * compare-w.el (compare-windows): Factor compare-ignore-whitespace
1031 into ignore-whitespace.
1032 Check each buffer for its skip-function.
1033 Handle compare-windows-skip-whitespace special-case test
1034 by returning t from default skip function.
1035
1036 2006-08-15 Carsten Dominik <dominik@science.uva.nl>
1037
1038 * textmodes/org.el (org-clock-special-range)
1039 (org-clock-update-time-maybe): New functions.
1040 (org-stamp-time-of-day-regexp): Allow weekday to be of word chars,
1041 not only a-z.
1042 (org-agenda-get-blocks): Allow multiple blocks per headline.
1043 (org-timestamp-change): Call `org-clock-update-time-maybe'.
1044 (org-export-html-title-format)
1045 (org-export-html-toplevel-hlevel): New options.
1046 (org-export-language-setup): Add support for Czech.
1047 (org-mode, org-insert-todo-heading, org-find-visible)
1048 (org-find-invisible, org-invisible-p, org-invisible-p2)
1049 (org-back-to-heading, org-on-heading-p, org-up-heading-all)
1050 (org-show-subtree, org-show-entry, org-make-options-regexp):
1051 Remove compatibility support for old outline-mode.
1052 (org-check-occur-regexp): Funtion removed.
1053 (org-on-heading-p, org-back-to-heading): Made defalias.
1054 (org-set-local): New defsubst.
1055 (org-set-regexps-and-options, org-mode)
1056 (org-set-font-lock-defaults, org-edit-agenda-file-list)
1057 (org-timeline, org-agenda-list, org-todo-list, org-tags-view)
1058 (org-remember-apply-template, org-table-edit-field)
1059 (org-table-edit-formulas, orgtbl-mode, org-export-as-ascii)
1060 (org-set-autofill-regexps): Use `org-set-local'.
1061 (org-table-eval-formula): Fix bug with parsing of display flags.
1062
1063 2006-08-15 Nick Roberts <nickrob@snap.net.nz>
1064
1065 * progmodes/gdb-ui.el (gdb-info-stack-custom): Indicate selected
1066 frame with fringe arrow. Suggested by Simon Marshall
1067 <simon.marshall@misys.com>.
1068 (gdb-stack-position): New variable.
1069 (gdb-starting, gdb-exited): Reset gdb-stack-position to nil.
1070 (gdb-frames-mode): Set gdb-stack-position to nil.
1071 Add to overlay-arrow-variable-list
1072 (gdb-reset): Delete gdb-stack-position from above list.
1073
1074 2006-08-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1075
1076 * term/x-win.el (menu-bar-edit-menu): Disable paste if buffer is
1077 read only.
1078
1079 2006-08-13 Romain Francoise <romain@orebokech.com>
1080
1081 * cus-theme.el (customize-create-theme)
1082 (custom-theme-visit-theme): End `y-or-n-p' prompt with a space.
1083
1084 * filesets.el (filesets-add-buffer): Ditto.
1085
1086 * pcvs.el (cvs-change-cvsroot): Ditto.
1087
1088 2006-08-13 Nick Roberts <nickrob@snap.net.nz>
1089
1090 * progmodes/gdb-ui.el (gdb-frame-separate-io-buffer)
1091 (gdb-use-separate-io-buffer, menu): Avoid using `inferior' in text.
1092 (gdb-memory-mode, gdb-locals-watch-map): Don't quote lambda
1093 expressions.
1094 (gdb-info-breakpoints-custom): Use gdb-breakpoint-regexp.
1095 Only search till end of line.
1096 Add face to function names in case of no filename.
1097 Add face to variable names of watchpoints.
1098
1099 2006-08-12 Robert Thorpe <rthorpe@realworldtech.com> (tiny change)
1100
1101 * cus-start.el <indent-tabs-mode>: Move to the `indent'
1102 customization group.
1103
1104 2006-08-12 Ken Manheimer <ken.manheimer@gmail.com>
1105
1106 * allout.el (allout-prior-bindings, allout-added-bindings):
1107 Remove, after long deprecation.
1108 (allout-beginning-of-line-cycles, allout-end-of-line-cycles):
1109 Add customization vars controlling allout-beginning-of-line and
1110 allout-end-of-line conveniences.
1111 (allout-header-prefix, allout-use-mode-specific-leader)
1112 (allout-use-mode-specific-leader, allout-mode-leaders):
1113 Revise docstrings.
1114 (allout-infer-header-lead): Change to be an alias for
1115 allout-infer-header-lead-and-primary-bullet.
1116 (allout-infer-header-lead-and-primary-bullet): New version of
1117 allout-infer-header-lead which assigns the primary bullet to the
1118 same as the header lead, when its being changed.
1119 (allout-infer-body-reindent): Apply regexp-quote instead of
1120 unconditionally prepending "\\", so that all literal
1121 allout-header-prefix and allout-primary-bullet strings are
1122 properly handled.
1123 (allout-add-resumptions): Add optional qualifier for extending or
1124 appending to existing values, rather than replacing them.
1125 (allout-view-change-hook): Clarify docstring.
1126 (allout-exposure-change-hook): Take explicit arguments, via
1127 run-hook-with-args.
1128 (allout-structure-added-hook)
1129 (allout-structure-deleted-hook)
1130 (allout-structure-shifted-hook): New hooks analogous to
1131 allout-exposure-change-hook for other kinds of structural outline
1132 edits.
1133 (allout-encryption-plaintext-sanitization-regexps): New encryption
1134 customization variable, by which cooperating modes can provde
1135 massage of the plaintext without actually being passed it.
1136 (allout-encryption-ciphertext-rejection-regexps)
1137 (allout-encryption-ciphertext-rejection-ceiling): New encryption
1138 customization variables, by which cooperating modes can prohibit
1139 rare but possible ciphertext patterns from fouling their
1140 operation, with actually being passed the ciphertext.
1141 (allout-mode): Run activation and deactivation hooks after the
1142 minor-mode variable has been toggled, to clarify the mode
1143 disposition. The new encryption ciphertext rejection variable is
1144 used to ensure that the ciphertext does not contain text that
1145 would be recognized as outline structural elements by allout.
1146 Substite allout-beginning-of-line and allout-end-of-line for
1147 conventionall beginning-of-line and end-of-line bindings.
1148 If allout-old-style-prefixes is non-nil, don't nullify it on mode
1149 activation!
1150 (allout-beginning-of-line): Respect `allout-beginning-of-line-cycles'.
1151 (allout-end-of-line): Respect `allout-end-of-line-cycles'.
1152 (allout-chart-subtree): Implement new mode, charting only the
1153 visible items in the subtree, when new 'visible' parameter is non-nil.
1154 (allout-end-of-subtree): Properly handle the last item in the buffer.
1155 (allout-pre-command-business, allout-command-counter):
1156 Increment an advertised counter so that cooperating enhancements can
1157 track revisions of items.
1158 (allout-open-topic): Run allout-structure-added-hook with suitable
1159 arguments.
1160 (allout-shift-in): Run allout-structure-shifted-hook with suitable
1161 arguments.
1162 (allout-shift-out): Fix doubling for negative args and ensure call
1163 of allout-structure-shifted-hook by solely using allout-shift-in.
1164 (allout-kill-line, allout-kill-topic):
1165 Run allout-structure-deleted-hook with suitable arguments.
1166 (allout-yank-processing): Run allout-structure-added-hook with
1167 proper arguments.
1168 (allout-yank): Enclose activity in allout-unprotected.
1169 (allout-flag-region): Run allout-exposure-change-hook with
1170 suitable arguments, instead of making the callee infer the arguments.
1171 (allout-encrypt-string):
1172 Support allout-encryption-plaintext-sanitization-regexps,
1173 allout-encryption-ciphertext-rejection-regexps, and
1174 allout-encryption-ciphertext-rejection-ceiling. Indicate correct
1175 en/de cryption mode in symmetric encryption failure message.
1176 (allout-obtain-passphrase): Use copy-sequence to get a distinct
1177 copy of the passphrase, and don't zero it or we'll corrupt the
1178 stashed copy.
1179 (allout-create-encryption-passphrase-verifier)
1180 (allout-verify-passphrase): Respect the new signature for
1181 allout-encrypt-string.
1182 (allout-get-configvar-values): Convenience for getting a
1183 configuration variable value and handling its absence gracefully.
1184
1185 2006-08-11 Romain Francoise <romain@orebokech.com>
1186
1187 * obsolete/zone-mode.el: Delete.
1188
1189 2006-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
1190
1191 * textmodes/dns-mode.el (dns-mode): Use before-save-hook.
1192
1193 2006-08-11 Thien-Thi Nguyen <ttn@gnu.org>
1194
1195 * emacs-lisp/bindat.el (bindat-ip-to-string):
1196 Use `format-network-address' if possible.
1197
1198 2006-08-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1199
1200 * x-dnd.el (x-dnd-init-frame): Call x-register-dnd-atom.
1201
1202 2006-08-10 Chong Yidong <cyd@stupidchicken.com>
1203
1204 * emacs-lisp/edebug.el (edebug-recursive-edit): Don't save and
1205 restore unread-command-events here.
1206 (edebug-display): Do it here, to detect sit-for interruptions.
1207
1208 2006-08-10 Romain Francoise <romain@orebokech.com>
1209
1210 * textmodes/dns-mode.el: Alias `zone-mode' to `dns-mode'.
1211 (dns-mode-soa-auto-increment-serial): New user option.
1212 (dns-mode-soa-maybe-increment-serial): New function.
1213 (dns-mode): Add the latter to `write-contents-functions'.
1214
1215 * obsolete/zone-mode.el: Move to obsolete/ from net/.
1216 Delete autoload cookies.
1217
1218 2006-08-10 John Wiegley <johnw@newartisans.com>
1219
1220 * eshell/em-glob.el (eshell-glob-chars-list)
1221 (eshell-glob-translate-alist): Add support for [^g] in character globs.
1222
1223 2006-08-10 Richard Stallman <rms@gnu.org>
1224
1225 * facemenu.el (facemenu-add-face): Pass frame to facemenu-active-faces.
1226 (facemenu-set-face): Doc fix.
1227 (facemenu-listed-faces): Doc fix.
1228
1229 2006-08-09 Chong Yidong <cyd@stupidchicken.com>
1230
1231 * avoid.el (mouse-avoidance-animating-pointer): New var.
1232 (mouse-avoidance-nudge-mouse): Use it.
1233 (mouse-avoidance-banish): Rename from mouse-avoidance-banish-hook.
1234 (mouse-avoidance-exile): Rename from mouse-avoidance-exile-hook
1235 (mouse-avoidance-fancy): Rename from mouse-avoidance-fancy-hook.
1236 Don't activate if currently animating. All callers changed.
1237
1238 2006-08-09 John Wiegley <johnw@newartisans.com>
1239
1240 * calendar/timeclock.el (timeclock-use-elapsed): Added a new
1241 variable, which causes timeclock to report elapsed time worked,
1242 instead of just work remaining.
1243
1244 2006-08-09 Kenichi Handa <handa@m17n.org>
1245
1246 * international/latexenc.el (latexenc-find-file-coding-system):
1247 Fix for the case that the 2nd element of arg-list is a cons.
1248
1249 2006-08-08 Chong Yidong <cyd@stupidchicken.com>
1250
1251 * info.el (Info-fontify-node): Handle preceding `in' for note
1252 reference hiding rules.
1253
1254 2006-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
1255
1256 * progmodes/sh-script.el (sh-quoted-subshell): Make sure we don't
1257 mistake a closing " for an opening one.
1258
1259 2006-08-07 Dan Nicolaescu <dann@ics.uci.edu>
1260
1261 * term/xterm.el (terminal-init-xterm): Add more key bindings.
1262
1263 2006-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
1264
1265 * complete.el (PC-do-completion): Filter out completions matching
1266 completion-ignored-extensions before checking whether there are
1267 multiple completions.
1268 Don't use `list' unnecessarily when building completion tables.
1269
1270 2006-08-06 Richard Stallman <rms@gnu.org>
1271
1272 * help.el (describe-mode): Make minor mode list more concise.
1273
1274 2006-08-05 Chong Yidong <cyd@stupidchicken.com>
1275
1276 * bindings.el: Give mode-line-format, mode-line-modes, and
1277 mode-line-position `standard-value' properties.
1278
1279 2006-08-05 Eli Zaretskii <eliz@gnu.org>
1280
1281 * buff-menu.el (list-buffers-noselect): For Info buffers, use
1282 "(file)node" instead of the file name.
1283
1284 2006-08-05 Richard Stallman <rms@gnu.org>
1285
1286 * faces.el (escape-glyph): Doc fix.
1287
1288 2006-08-04 Kenichi Handa <handa@m17n.org>
1289
1290 * international/mule-diag.el (describe-font): Improve docstring
1291 and error message. Use frame-parameter (not frame-parameters).
1292
1293 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
1294
1295 * progmodes/gud.el (gdb-script-font-lock-syntactic-keywords):
1296 Correctly mark the end-of-docstring char.
1297
1298 2006-08-03 Chong Yidong <cyd@stupidchicken.com>
1299
1300 * simple.el (line-move-to-column): Constrain move-to-column to
1301 current field.
1302
1303 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
1304
1305 * font-lock.el (font-lock-beg, font-lock-end)
1306 (font-lock-extend-region-functions): New vars.
1307 (font-lock-extend-region-multiline)
1308 (font-lock-extend-region-wholelines): New functions.
1309 (font-lock-default-fontify-region): Use them.
1310 (font-lock-extend-jit-lock-region-after-change): Only round up
1311 if font-lock-default-fontify-region will do it as well.
1312
1313 * font-lock.el (font-lock-extend-after-change-region-function):
1314 Rename from font-lock-extend-region-function.
1315 (font-lock-extend-region): Remove by inlining at call sites.
1316 (font-lock-after-change-function): Don't needlessly round up to a whole
1317 number of lines.
1318 (font-lock-extend-jit-lock-region-after-change): Be more careful about
1319 the boundary conditions and the interactions between the various ways
1320 to extend the region.
1321
1322 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1323
1324 * jit-lock.el (jit-lock-fontify-now): Preserve the buffer's
1325 modification status when forcing the second redisplay.
1326
1327 2006-08-03 Kim F. Storm <storm@cua.dk>
1328
1329 * edmacro.el (edmacro-fix-menu-commands): Ignore switch-frame.
1330
1331 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1332
1333 * pcvs-util.el (cvs-get-buffer-create): Obey `noreuse' even if `name'
1334 doesn't look like a file name.
1335
1336 * complete.el (PC-expand-many-files): Avoid signalling an error when
1337 the current directory doesn't exist. Reported by Micha\e,Ak\e(Bl Cadilhac.
1338
1339 2006-08-02 Andreas Schwab <schwab@suse.de>
1340
1341 * bindings.el (mode-line-format): Simplify reference to vc-mode.
1342
1343 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
1344
1345 * bindings.el (map): Make mode-line-buffer-identification-keymap
1346 before defining propertized-buffer-identification.
1347
1348 2006-08-01 Richard Stallman <rms@gnu.org>
1349
1350 * bindings.el (mode-line-format): Adjust spacing around vc-mode.
1351
1352 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
1353
1354 * progmodes/gdb-ui.el (gdb-find-source-frame): Make nil the
1355 default value.
1356 (gdb-find-source-frame): New function.
1357 (menu): Add to menu bar.
1358
1359 2006-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
1360
1361 * font-core.el (font-lock-extend-region-function)
1362 (font-lock-extend-region): Move to font-lock.el.
1363
1364 * font-lock.el (font-lock-extend-region-function)
1365 (font-lock-extend-region): Move from font-core.el. Simplify.
1366
1367 * jit-lock.el (jit-lock-fontify-now): Cause a second redisplay
1368 if needed.
1369 (jit-lock-start, jit-lock-end): New dynamic scoped vars.
1370 (jit-lock-after-change-extend-region-functions): New hook.
1371 (jit-lock-after-change): Use it instead of hard-coding font-lock code.
1372
1373 * font-lock.el (font-lock-extend-jit-lock-region-after-change): New fun.
1374 (font-lock-turn-on-thing-lock): Use it.
1375
1376 * longlines.el (longlines-show-region): Make it work on read-only
1377 buffers as well.
1378
1379 2006-08-01 Nick Roberts <nickrob@snap.net.nz>
1380
1381 * progmodes/gdb-ui.el (gdb-set-hollow): Check for gud-last-last-frame.
1382
1383 2006-07-31 Richard Stallman <rms@gnu.org>
1384
1385 * progmodes/vhdl-mode.el (vhdl-speedbar-display-directory)
1386 (vhdl-speedbar-display-projects): Update old obsolete
1387 speedbar variable names.
1388
1389 2006-07-31 Nick Roberts <nickrob@snap.net.nz>
1390
1391 * progmodes/gdb-ui.el (gdb-find-source-frame): New option.
1392 (gdb-stopped): Use it.
1393
1394 * t-mouse.el (t-mouse-mode): Use set-process-query-on-exit-flag.
1395
1396 2006-07-29 Chong Yidong <cyd@stupidchicken.com>
1397
1398 * loadhist.el (unload-feature): Handle new `(t . SYMBOL)' format
1399 for load-history elements.
1400
1401 2006-07-29 Eli Zaretskii <eliz@gnu.org>
1402
1403 * files.el (convert-standard-filename): For Cygwin, replace
1404 characters not allowed in Windows file names.
1405 (make-auto-save-file-name): Add Cygwin to the list of systems
1406 where the auto-save file name needs to be run through
1407 convert-standard-filename.
1408
1409 2006-07-29 Lennart Borgman <lennart.borgman.073@student.lu.se>
1410
1411 * window.el (bw-get-tree): Don't integerp subtree if it's nil.
1412
1413 2006-07-28 Richard Stallman <rms@gnu.org>
1414
1415 * bindings.el (mode-line-frame-identification)
1416 (propertized-buffer-identification): Centralize the code
1417 to initialize the variable.
1418
1419 * progmodes/grep.el (grep-default-command): Catch errors from
1420 wildcard-to-regexp.
1421
1422 2006-07-29 Kim F. Storm <storm@cua.dk>
1423
1424 * progmodes/grep.el (grep-tag-default): New function.
1425 (grep-default-command, grep-read-regexp): Use it.
1426 (grep-read-files): Use car of grep-files-history or grep-files-aliases
1427 as default if nothing else applies.
1428
1429 2006-07-28 Bill Atkins <atkinw@rpi.edu> (tiny change)
1430
1431 * wdired.el (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
1432 Throw error if buffer is not in Dired and Wdired mode, respectively.
1433
1434 2006-07-28 Chong Yidong <cyd@stupidchicken.com>
1435
1436 * cus-edit.el (custom-no-edit): Revert 2006-07-27 change, so that
1437 self-insert-command keys don't activate buttons.
1438 (custom-mode-map): Just don't bind "\C-m" to `custom-no-edit'.
1439
1440 2006-07-29 Nick Roberts <nickrob@snap.net.nz>
1441
1442 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Use different
1443 faces for enable character.
1444
1445 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
1446
1447 * Makefile.in (recompile): Update comment to reflect change
1448 on 2004-04-21.
1449
1450 2006-07-27 Richard Stallman <rms@gnu.org>
1451
1452 * cus-edit.el (customize-package-emacs-version-alist): Doc fix.
1453 (customize-package-emacs-version): Change msg when pkg has no entry.
1454 (custom-no-edit): On a button, do like widget-button-press.
1455
1456 2006-07-27 Dan Nicolaescu <dann@ics.uci.edu>
1457
1458 * term/xterm.el (terminal-init-xterm): Fix bindings for C-tab,
1459 S-tab and C-S-tab.
1460
1461 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
1462
1463 * progmodes/which-func.el (which-function): Fix documentation/
1464 comment typo.
1465
1466 2006-07-26 Richard Stallman <rms@gnu.org>
1467
1468 * textmodes/ispell.el (ispell-word): If we replace the word,
1469 move point to the end. Insert before deleting.
1470
1471 2006-07-26 Chong Yidong <cyd@stupidchicken.com>
1472
1473 * subr.el (sit-for): Use new SECONDS arg of read-event instead of
1474 a timer.
1475
1476 2006-07-26 Mathias Dahl <mathias.dahl@gmail.com>
1477
1478 * tumme.el (tumme-backward-image): Add prefix argument. Add error
1479 when at first image.
1480 (tumme-forward-image): Add prefix argument. Add error when at last
1481 image.
1482
1483 2006-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
1484
1485 * tabify.el (tabify-regexp): Use more specific regexps.
1486 (tabify): Avoid modifying the buffer unnecessarily.
1487
1488 2006-07-25 Mathias Dahl <mathias.dahl@gmail.com>
1489
1490 * tumme.el (tumme-track-original-file): Add `buffer-live-p' check.
1491 (tumme-format-properties-string): Handle empty `buf'.
1492 (tumme-get-comment): Change variable names inside `let'.
1493 Add missing `let' variable that cause font-lock problems.
1494 (tumme-write-comments): Change variable names inside `let'.
1495 Add missing `let' variable that cause font-lock problems.
1496 (tumme-forward-image): Rename from `tumme-forward-char'.
1497 (tumme-backward-image): Rename from `tumme-backward-char'.
1498
1499 2006-07-25 Masatake YAMATO <jet@gyve.org>
1500
1501 * progmodes/ld-script.el (ld-script-keywords)
1502 (ld-script-font-lock-keywords, ld-script-builtins): Update keywords
1503 and add comments.
1504
1505 2006-07-25 Nick Roberts <nickrob@snap.net.nz>
1506
1507 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
1508 (gdb-resync, gdb-prompt, gdb-starting, gdb-exited, gdb-stopped)
1509 (gdb-set-gud-minor-mode-existing-buffers-1): Use different faces
1510 for status indicator.
1511
1512 2006-07-24 Richard Stallman <rms@gnu.org>
1513
1514 * xml.el (xml-parse-file): Clean up, and use with-temp-buffer.
1515
1516 * subr.el (dolist, dotimes): Use interned symbols for locals.
1517 (--dotimes-limit--, --dolist-tail--): New defvars.
1518 (looking-back): Doc fix.
1519
1520 * replace.el (replace-match-string-symbols): Handle dotted lists.
1521
1522 2006-07-24 mathias <mathias@mattis>
1523
1524 * tumme.el (tumme-write-tags): Add.
1525 (tumme-write-comments): Add.
1526 (tumme-tag-files): Change to use `tumme-write-tags'.
1527 (tumme-tag-thumbnail): Change to use `tumme-write-tags'.
1528 (tumme-dired-comment-files): Change to use `tumme-write-comments'.
1529 (tumme-save-information-from-widgets): Change to use
1530 `tumme-write-comments' and `tumme-write-tags'.
1531 (tumme-comment-thumbnail): Change to use `tumme-write-comments'.
1532 (tumme-write-tag): Remove.
1533 (tumme-write-comment): Remove.
1534 (tumme-display-previous-thumbnail-original): Remove empty line.
1535 (tumme-widget-list): Add punctuation.
1536
1537 2006-07-24 mathias <mathias.dahl@gmail.com>
1538
1539 * tumme.el (tumme-line-up): Add an extra check for end of buffer.
1540
1541 2006-07-24 Daiki Ueno <ueno@unixuser.org>
1542
1543 * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
1544 letters from the end. Thanks to "David Smith" <davidsmith@acm.org>
1545 and andreas@altroot.de (Andreas V\e,Av\e(Bgele).
1546
1547 2006-07-23 Thien-Thi Nguyen <ttn@gnu.org>
1548
1549 * mouse.el (mouse-on-link-p): Doc fix.
1550
1551 2006-07-23 Nick Roberts <nickrob@snap.net.nz>
1552
1553 * emacs-lisp/find-func.el (find-function-search-for-symbol):
1554 Handle "C-h f `".
1555
1556 2006-07-22 Dan Nicolaescu <dann@ics.uci.edu>
1557
1558 * ibuffer.el (ibuffer-formats): Use left alignment for the mode
1559 column.
1560
1561 2006-07-22 Matt Hodges <MPHodges@member.fsf.org>
1562
1563 * textmodes/table.el: Add move-beginning-of-line and
1564 move-end-of-line to Point Motion Only Group.
1565
1566 2006-07-22 Eric Hanchrow <offby1@blarg.net>
1567
1568 * progmodes/delphi.el (delphi-fill-comment): Use save-restriction.
1569
1570 2006-07-22 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
1571
1572 * startup.el (user-mail-address): Initialize from the `EMAIL'
1573 environment variable first. Document this.
1574 (command-line): Ditto.
1575
1576 2006-07-22 Nick Roberts <nickrob@snap.net.nz>
1577
1578 * help-mode.el (help-function-def, help-variable-def)
1579 (help-face-def): Print a message in the minibuffer.
1580
1581 2006-07-21 Dan Nicolaescu <dann@ics.uci.edu>
1582
1583 * term/xterm.el (terminal-init-xterm): Fix key bindings
1584 syntax. Bind S-return, C-M-., C-TAB, S-TAB and C-S-TAB.
1585
1586 2006-07-21 Eli Zaretskii <eliz@gnu.org>
1587
1588 * dos-w32.el (find-buffer-file-type-coding-system): Support calls
1589 where `(nth 1 command)' is a cons cell. Doc fix.
1590
1591 * textmodes/po.el (po-find-charset): Doc fix.
1592
1593 2006-07-21 Ken Manheimer <ken.manheimer@gmail.com>
1594
1595 * allout.el (allout-unprotected, allout-e-o-prefix-p)
1596 (allout-beginning-of-current-line, allout-end-of-current-line)
1597 (allout-next-visible-heading, allout-open-topic)
1598 (allout-kill-topic, allout-yank-processing, allout-resolve-xref)
1599 (allout-flag-current-subtree, allout-show-to-offshoot)
1600 (allout-hide-current-entry, allout-show-current-branches)
1601 (allout-hide-region-body, allout-old-expose-topic)
1602 (allout-listify-exposed, allout-latex-verbatim-quote-curr-line)
1603 (allout-mark-topic, allout-adjust-file-variable): Enclose scopes
1604 containing `beginning-of-line' and `end-of-line' with
1605 `inhibit-field-text-motion' t.
1606
1607 2006-07-21 Eli Zaretskii <eliz@gnu.org>
1608
1609 * frame.el (focus-follows-mouse): Document that it doesn't have
1610 any effect on MS-Windows.
1611
1612 2006-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
1613
1614 * progmodes/sh-script.el (sh-quoted-subshell): Further fix last change.
1615
1616 2006-07-20 Jay Belanger <belanger@truman.edu>
1617
1618 * calc.el (calc-previous-alg-entry): Remove variable.
1619
1620 * calc-aent.el (calc-alg-entry-history, calc-quick-calc-history):
1621 New variables.
1622 (calc-alg-entry): Use `calc-alg-entry-history'.
1623 (calc-do-quick-calc): Use `calc-quick-calc-history'.
1624 Remove reference to `calc-previous-alg-entry'.
1625 (calcAlg-edit, calcAlg-enter): Remove reference to
1626 `calc-previous-alg-entry'.
1627 (calcAlg-previous): Use `previous-history-element' instead of
1628 `calc-previous-alg-entry'.
1629 (calc-do-alg-entry): Use history when calling `read-from-minibuffer'.
1630 Change keybinding for `calcAlg-plus-minus', add keybindings for
1631 `previous-history-element' and `next-history-element'.
1632
1633 * calc-rewr.el (calc-match): Remove reference to
1634 `calc-previous-alg-entry'.
1635
1636 * calc-sel.el (calc-selection-history): New variable.
1637 (calc-enter-selection, calc-sel-mult-both-sides)
1638 (calc-sel-add-both-sides): Use `calc-selection-history'.
1639
1640 * calc-map.el (calc-get-operator-history): New variable.
1641 (calc-get-operator): Use `calc-get-operator-history'.
1642
1643 * calcalg3.el (calc-curve-fit-history): New variable.
1644 (calc-curve-fit): Use `calc-curve-fit-history'.
1645
1646 2006-07-20 Kenichi Handa <handa@m17n.org>
1647
1648 * international/mule-cmds.el (select-safe-coding-system): Fix the
1649 way of deciding eol-type of the coding system.
1650
1651 2006-07-20 Alan Mackenzie <acm@muc.de>
1652
1653 * progmodes/cc-langs.el (c-emacs-variable-inits): New variable.
1654 (c-lang-setvar): New macro.
1655 (c-make-init-lang-vars-fun): Use the initialization forms in
1656 c-emacs-variable-inits in addition to those in c-lang-variable-inits.
1657 (comment-start, comment-end, comment-start-skip): Change these from
1658 c-lang-defvar's to c-lang-setvar's.
1659
1660 * progmodes/cc-mode.el (c-make-emacs-variables-local): New macro,
1661 which calls make-local-variable on the elements of
1662 c-emacs-variable-inits.
1663 (c-init-language-vars-for): Call this new macro.
1664
1665 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
1666
1667 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
1668 Try to rule out false positives due to time stamps.
1669 (compilation-mode-font-lock-keywords): Remove rules made redundant
1670 because of the above change. Add `segmentation fault' to the known and
1671 highlighted compilation termination messages.
1672
1673 2006-07-19 Kim F. Storm <storm@cua.dk>
1674
1675 * progmodes/grep.el (grep-find-ignored-directories):
1676 Add .svn and _darcs to list.
1677
1678 2006-07-19 Mathias Dahl <mathias.dahl@gmail.com>
1679
1680 * dired.el (dired-mode-map): Add key binding `C-te' for
1681 `tumme-dired-edit-comment-and-tags'.
1682
1683 * tumme.el (tumme-display-thumbnail-original-image): Make sure
1684 image display buffer is displayed before call to
1685 `tumme-display-image.
1686 (tumme-dired-display-image): Make sure image display buffer is
1687 displayed before call to `tumme-display-image.
1688 (tumme-mouse-display-image): Make sure image display buffer is
1689 displayed before call to `tumme-display-image.
1690 (tumme-widget-list): Add.
1691 (tumme-dired-edit-comment-and-tags): Add.
1692 (tumme-save-information-from-widgets): Add.
1693
1694 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
1695
1696 * progmodes/sh-script.el (sh-quoted-subshell): Fix last change.
1697
1698 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
1699
1700 * progmodes/sh-script.el (sh-font-lock-keywords-1):
1701 Revert inadvertently installed patch hunk.
1702
1703 * progmodes/compile.el (compilation-find-file): Handle the
1704 cases where the user selects a non-existent file.
1705
1706 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
1707
1708 * bindings.el (minibuffer-local-map): Rebind TAB so it inserts a \t.
1709
1710 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
1711
1712 * subr.el (sit-for): Just sleep-for if noninteractive.
1713
1714 2006-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
1715
1716 * emacs-lisp/autoload.el (make-autoload): Use new arg.
1717
1718 * custom.el (custom-autoload): Add `noset' argument.
1719 (custom-push-theme): Don't autoload the variable, let callers do it.
1720 (custom-theme-set-variables): Autoload the variable if necessary.
1721
1722 * cus-edit.el (custom-variable-state-set): If the variable was
1723 originally set outside custom, but to the same value as the default,
1724 consider it to be standard.
1725
1726 * Makefile.in (mh-loaddefs.el): Finish setting up the default empty
1727 file *before* telling Emacs to add the autoloads, in case it fails.
1728
1729 * progmodes/sh-script.el (sh-quoted-subshell): Don't match escaped `.
1730 Use `cond', push', and `dolist'.
1731
1732 2006-07-17 Richard Stallman <rms@gnu.org>
1733
1734 * image-mode.el (tar-superior-buffer, archive-superior-buffer):
1735 Add defvars to silence warnings.
1736
1737 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
1738
1739 * progmodes/compile.el (compilation-mode-font-lock-keywords):
1740 Don't highlight "Compiling file" messages as error.
1741
1742 * dired-aux.el (dired-compress-file): Confirm again if gzipped
1743 file already exists.
1744
1745 2006-07-16 Thien-Thi Nguyen <ttn@gnu.org>
1746
1747 * find-file.el (ff-special-constructs): Doc fix. Also, for C/C++
1748 entry, don't assign to free var; simply return the extracted filename.
1749 (ff-treat-as-special): Incorporate common preamble from callers.
1750 (ff-other-file-name, ff-find-the-other-file):
1751 Update call to ff-treat-as-special.
1752
1753 * progmodes/ada-mode.el (ada-mode): Rewrite ff-special-constructs init.
1754
1755 2006-07-16 Mathias Dahl <mathias.dahl@gmail.com>
1756
1757 * tumme.el (tumme-get-comment): Fix bug.
1758
1759 2006-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
1760
1761 * files.el: Remove spurious * in docstrings.
1762
1763 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
1764
1765 * allout.el (allout-run-unit-tests-on-load): Rectify docstring
1766 grammar.
1767 (allout-beginning-of-current-line): Beware beginning of buffer.
1768 Also, a comment is simplified.
1769 (allout-hotspot-key-handler): Only set allout-post-goto-bullet
1770 when appropriate. (This fix enables use for other than
1771 bullet-hotspot operation.)
1772 (allout-hide-current-subtree): While escalating to sibling-close,
1773 make sure to situate on a topic.
1774
1775 2006-07-14 Kim F. Storm <storm@cua.dk>
1776
1777 * emulation/cua-base.el (cua-delete-selection)
1778 (cua-toggle-set-mark): New defcustoms.
1779 (cua-rectangle-modifier-key): Add `alt' modifier.
1780 (cua-replace-region): Don't delete if cua-delete-selection is nil.
1781 (cua-set-mark): Don't clear mark if cua-toggle-set-mark is nil.
1782 Suggested by Klaus Zeitler <kzeitler@lucent.com>.
1783
1784 * emulation/cua-rect.el (cua-help-for-rectangle): Add `alt' modifier.
1785
1786 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
1787
1788 * allout.el: Require 'cl during byte-compilation/interactive load,
1789 for the `assert' macro.
1790 (allout-mode-deactivate-hook): New hook, run when allout mode
1791 deactivates.
1792 (allout-developer): New allout customization subgroup.
1793 (allout-run-unit-tests-on-load): New allout-developer
1794 customization variable, when true allout unit tests are run towards
1795 end of file load/eval.
1796 (allout-inhibit-auto-fill): Disable auto-fill activity even during
1797 auto-fill-mode.
1798 (allout-resumptions): Remove, to be replaced by...
1799 (allout-add-resumptions): Register variable settings to be
1800 reinstated by `allout-do-resumptions'. The settings are made
1801 buffer-local, but the locality/globality of the suspended setting
1802 is restored on resumption.
1803 (allout-do-resumptions): Reinstate all settings suspended using
1804 `allout-add-resumptions'.
1805 (allout-test-resumptions): Unit tests (and intermediate variables)
1806 for resumptions.
1807 (allout-tests-globally-unbound, allout-tests-globally-true)
1808 (allout-tests-locally-true): Intermediate variables for
1809 resumptions unit tests.
1810 (allout-overlay-preparations): Replaces `allout-set-overlay-category'.
1811 (allout-exposure-category): Replaces 'allout-overlay-category variable.
1812 (allout-mode): Use `allout-add-resumptions' and `allout-do-resumptions'
1813 instead of retired `allout-resumptions'. For hook functions, use
1814 `local' parameter so hook settings are created and removed as
1815 buffer-local settings. Revise (resumptions) setting
1816 auto-fill-function so it is set only if already active. (The
1817 related fill-function settings are all made in either case, so
1818 that activating auto-fill-mode activity will have the custom
1819 allout-mode behaviors (hanging indent on topics, if configured for it).
1820 Remove all allout-exposure-category overlays on mode deactivation.
1821 (allout-hotspot-key-handler): New function extracted from
1822 `allout-pre-command-business', so the functionality can be used
1823 for other purposes, eg as a binding in an overlay.
1824 (allout-pre-command-business): Use new `allout-hotspot-key-handler'.
1825 (allout-auto-fill): Respect new `allout-inhibit-auto-fill'
1826 customization variable.
1827 (allout-run-unit-tests): Run the (currently quite small)
1828 repertoire of unit tests. Called just before the provide iff user
1829 has customized `allout-run-unit-tests-on-load' non-nil.
1830
1831 2006-07-14 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
1832
1833 * emacs-lisp/authors.el (authors-aliases): Update.
1834
1835 2006-07-14 Nick Roberts <nickrob@snap.net.nz>
1836
1837 * progmodes/gdb-ui.el (gdb-display-buffer): Check for
1838 gdb-source-window. Add dedicated argument.
1839 (gdb-display-separate-io-buffer, gdb-append-to-inferior-io)
1840 (gdb-display-breakpoints-buffer, gdb-display-stack-buffer)
1841 (gdb-display-threads-buffer, gdb-display-memory-buffer)
1842 (gdb-display-locals-buffer): Use it.
1843
1844 * progmodes/gud.el (gud-display-line): Use gdb-display-buffer.
1845 Set gdb-source-window.
1846
1847 2006-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
1848
1849 * emacs-lisp/autoload.el (make-autoload): Remove special handling of
1850 minor modes, redundant with the custom-autoload line above.
1851
1852 2006-07-12 Chong Yidong <cyd@stupidchicken.com>
1853
1854 * longlines.el (longlines-post-command-function): Handle open-line too.
1855
1856 2006-07-12 Richard Stallman <rms@gnu.org>
1857
1858 * progmodes/grep.el (grep-last-buffer): Doc fix.
1859
1860 * info.el (Info-try-follow-nearest-node): Doc fix.
1861
1862 * emacs-lisp/edebug.el (edebug-instrument-function):
1863 Err if find-function-noselect gives no position.
1864
1865 * emacs-lisp/find-func.el (find-function-search-for-symbol):
1866 If can't find definition, return nil for position.
1867 (find-function-do-it): Handle new return value
1868 of find-definition-noselect.
1869 (find-definition-noselect, find-variable-noselect): Doc fix.
1870 (find-function-noselect): Doc fix.
1871
1872 * help-mode.el (help-variable-def): Handle find-variable-noselect
1873 returning no position.
1874 (help-function-def): Likewise for find-function-search-for-symbol.
1875 (help-face-def): Likewise.
1876
1877 * help-fns.el (describe-variable): Handle find-variable-noselect
1878 returning no position.
1879
1880 * files.el (locate-file-completion): Avoid duplicates in result.
1881
1882 * cus-edit.el (custom-no-edit): New command.
1883 (custom-mode-map): Remap to custom-no-edit instead of
1884 using suppress-keymap.
1885
1886 2006-07-12 Nick Roberts <nickrob@snap.net.nz>
1887
1888 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
1889 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
1890 (tumme-set-exif-data, tumme-get-exif-data): Use shell-command-switch.
1891
1892 * thumbs.el (thumbs-call-convert): Use shell-command-switch.
1893
1894 2006-07-11 Kim F. Storm <storm@cua.dk>
1895
1896 * ido.el (ido-copy-current-file-name): Use buffer-name if
1897 buffer-file-name is nil.
1898
1899 2006-07-11 Chong Yidong <cyd@stupidchicken.com>
1900
1901 * simple.el (undo-ask-before-discard): Set to nil.
1902
1903 * vc.el (vc-exec-after): Don't delete process manually.
1904 (vc-print-log): Run log-view-mode in process sentinel inside
1905 inhibit-read-only. Don't shrink window due to timing issues.
1906
1907 * progmodes/ebrowse.el (ebrowse-display-member-buffer):
1908 Avoid using with-output-to-temp-buffer, which clobbers local vars.
1909
1910 2006-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
1911
1912 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1913 Fix ambiguity introduced by last change.
1914 (compilation-find-file): Move save-excursion to where it may
1915 make sense. Fix a left over `find-file'.
1916
1917 2006-07-11 Robert J. Chassell <bob@rattlesnake.com>
1918
1919 * textmodes/texinfmt.el (texinfo-format-separate-node):
1920 Insert a string before point, which fits documentation, not after.
1921 (texinfo-multitable-item): In a multitable row, insert any
1922 additional needed @tabs and spaces.
1923
1924 2006-07-11 Nick Roberts <nickrob@snap.net.nz>
1925
1926 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
1927 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
1928 (tumme-set-exif-data, tumme-get-exif-data): Use call-process
1929 instead of shell-command.
1930 (tumme-create-thumbnail-buffer, tumme-create-display-image-buffer)
1931 (tumme-display-thumbs, tumme-modify-mark-on-thumb-original-file)
1932 (tumme-display-image, tumme-get-exif-data): Use with-current-buffer.
1933 (tumme-display-properties-format, tumme-dired-insert-marked-thumbs)
1934 (tumme-thumbnail-set-image-description, tumme-gallery-generate)
1935 (tumme-rotate-original, tumme-get-exif-file-name): Fit to 80 columns.
1936
1937 2006-07-11 Kim F. Storm <storm@cua.dk>
1938
1939 * subr.el (sit-for): Doc fix. Specify normal arg list using fn-form.
1940 Remove special case for seconds < 0. Use (redisplay t) instead.
1941
1942 2006-07-10 Chong Yidong <cyd@stupidchicken.com>
1943
1944 * progmodes/cc-awk.el (c-awk-escaped-nls*): Use eval-and-compile to
1945 avoid compilation error.
1946
1947 * subr.el (sit-for): New function.
1948
1949 * play/hanoi.el (hanoi-sit-for): Check sit-for return value.
1950
1951 2006-07-10 Richard Stallman <rms@gnu.org>
1952
1953 * ldefs-boot.el (edebug): Update page.
1954
1955 2006-07-10 Kim F. Storm <storm@cua.dk>
1956
1957 * emacs-lisp/authors.el (authors-ignored-files): Ignore changes
1958 to FOR-RELEASE and TODO.
1959
1960 2006-07-10 Romain Francoise <romain@orebokech.com>
1961
1962 * emacs-lisp/authors.el (authors-aliases): Update.
1963
1964 2006-07-10 Alan Mackenzie <acm@muc.de>
1965
1966 * progmodes/cc-awk.el, cc-defs.el, cc-fonts.el, cc-langs.el:
1967 * cc-mode.el: Changes to eradicate eval-after-load.
1968
1969 2006-07-09 Chong Yidong <cyd@stupidchicken.com>
1970
1971 * emacs-lisp/helper.el (Helper-help-scroller): Don't signal error
1972 on non-char events.
1973
1974 2006-07-09 Romain Francoise <romain@orebokech.com>
1975
1976 * progmodes/compile.el (compilation-mode-font-lock-keywords):
1977 Don't highlight start/end markers as compilation messages.
1978
1979 * isearch.el (isearch-yank-line): Let-bind `inhibit-field-text-motion'
1980 to t.
1981
1982 2006-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
1983
1984 * textmodes/fill.el (fill-region-as-paragraph): Refine last change.
1985
1986 2006-07-08 Richard Stallman <rms@gnu.org>
1987
1988 * term/x-win.el (x-handle-display): Add doc string.
1989
1990 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
1991
1992 * subr.el (def-edebug-spec): Move here.
1993 * emacs-lisp/edebug.el (def-edebug-spec): Move to subr.el.
1994
1995 * imenu.el (imenu-choose-buffer-index): Doc fix.
1996
1997 2006-07-08 Romain Francoise <romain@orebokech.com>
1998
1999 * term/x-win.el (x-display-name): Fix typo.
2000
2001 2006-07-08 Eli Zaretskii <eliz@gnu.org>
2002
2003 * hexl.el (hexl-find-file): Doc fix.
2004
2005 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
2006
2007 2006-07-07 Chong Yidong <cyd@stupidchicken.com>
2008
2009 * term/x-win.el (x-display-name): Doc fix.
2010
2011 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
2012
2013 * textmodes/fill.el (fill-delete-prefix): Don't ignore excessively
2014 long prefixes.
2015 (fill-region-as-paragraph): Don't round up to a whole line.
2016 (fill-comment-paragraph): Don't include the code-before-the-comment
2017 when calling fill-region-as-paragraph.
2018
2019 * international/mule.el (make-char): Remove redundancy.
2020
2021 * emacs-lisp/bytecomp.el (byte-compile-form): The `byte-compile'
2022 property may contain an anonymous function rather than a symbol.
2023
2024 * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness.
2025
2026 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
2027 Use shy regexp. Fix incorrect backref to potentially unmatched group.
2028
2029 * dirtrack.el (dirtrack-default-directory-function): Remove.
2030 (dirtrack-directory-function): Use file-name-as-directory.
2031 (dirtrack-windows-directory-function): Simplify.
2032 (dirtrack-forward-slash, dirtrack-backward-slash)
2033 (dirtrack-replace-slash): Remove.
2034 (dirtrack-toggle): Adjust comint-preoutput-filter-functions as well.
2035 (dirtrack): Fix wrong parenthesizing; use match-string.
2036
2037 * progmodes/octave-inf.el: Remove spurious * in docstrings.
2038 (inferior-octave-mode): Only change the buffer-local value of
2039 comint-dynamic-complete-functions.
2040 (inferior-octave-mode-map, inferior-octave-mode-syntax-table):
2041 Move the initialization to the declaration.
2042 (inferior-octave-complete): Remove unused var `filter'.
2043
2044 * shell.el (shell-mode): Only change the buffer-local value of
2045 comint-dynamic-complete-functions.
2046
2047 2006-07-07 Carsten Dominik <dominik@science.uva.nl>
2048
2049 * textmodes/org.el (org-agenda-get-todos): Skip subtree also if
2050 entry is skipped because it has been scheduled.
2051 (org-prepare-agenda-buffers): Don't mark buffers as modified when
2052 changing `:org-archived' and `:org-comment' properties.
2053
2054 2006-07-06 Chong Yidong <cyd@stupidchicken.com>
2055
2056 * server.el (server-select-display): Don't make the temp frame
2057 minibuffer-only, in case it's not a temp frame.
2058 (server-process-filter): Don't delete the temp frame if it's the
2059 only one we have on that display.
2060
2061 * files.el (find-alternate-file): Doc fix.
2062
2063 2006-07-05 Richard Stallman <rms@gnu.org>
2064
2065 * files.el (abbreviate-file-name): Add save-match-data.
2066
2067 2006-07-03 Richard Stallman <rms@gnu.org>
2068
2069 * faces.el (read-face-name): Doc fix.
2070
2071 2006-07-05 Chong Yidong <cyd@stupidchicken.com>
2072
2073 * net/goto-addr.el (goto-address): Mark as safe for local evals.
2074
2075 2006-07-05 Andre Spiegel <spiegel@gnu.org>
2076
2077 * vc.el (vc-diff-internal): Fix prev change.
2078
2079 2006-07-05 Thien-Thi Nguyen <ttn@gnu.org>
2080
2081 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Use eval-buffer.
2082 * play/dunnet.el (dun-load-d, dun-eval): Likewise.
2083
2084 2006-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
2085
2086 * thingatpt.el (symbol-at-point): Don't use `form-at-point' which
2087 fails if the symbol contains chars like ( or '.
2088 (bounds-of-thing-at-point): Remove unused vars `end' and `beg'.
2089 (thing-at-point-bounds-of-url-at-point): Remove unused vars `url' and
2090 `short'.
2091
2092 2006-07-04 Kenichi Handa <handa@m17n.org>
2093
2094 * international/mule-cmds.el (set-language-info): If LANG-ENV is
2095 the current one, don't call set-language-environment, but call one
2096 of set-language-environment-XXX to make INFO effective now.
2097 (set-language-environment): Call set-language-environment-XXX
2098 functions instead of doing the various setups directly.
2099 (set-language-environment-coding-systems): Delete argument eol-type.
2100 (set-language-environment-input-method)
2101 (set-language-environment-nonascii-translation)
2102 (set-language-environment-charset)
2103 (set-language-environment-fontset)
2104 (set-language-environment-unibyte): New functions.
2105
2106 2006-07-03 Luc Teirlinck <teirllm@auburn.edu>
2107
2108 * locate.el (locate-update-when-revert): New option.
2109 (locate-update-path): New option (suggested by Michael Albinus).
2110 (locate-prompt-for-command): Whitespace change.
2111 (locate-update): No longer offer to update the locate database by
2112 default. Implement the two new options.
2113
2114 2006-07-04 Nick Roberts <nickrob@snap.net.nz>
2115
2116 * tooltip.el: Move comment about track-mouse...
2117
2118 * progmodes/gud.el: ...to here.
2119
2120 2006-07-03 Chong Yidong <cyd@stupidchicken.com>
2121
2122 * facemenu.el (facemenu-listed-faces): New var.
2123 (facemenu-unlisted-faces): Variable deleted.
2124 (facemenu-add-new-face): Use facemenu-listed-faces.
2125
2126 * emulation/viper-init.el, calendar/calendar.el:
2127 * progmodes/make-mode.el: Delete calls to facemenu-unlisted-faces.
2128
2129 2006-07-03 Carsten Dominik <dominik@science.uva.nl>
2130
2131 * textmodes/org.el (org-mode): Remove no invalid settings for
2132 calc embedded mode.
2133 (org-mode-p): New defsubst.
2134 (org-save-all-org-buffers): New function.
2135 (org-first-headline-recenter): Enclose outline-regexp in group
2136 delimiters.
2137 (org-set-tags): Keep single space after stars.
2138
2139 2006-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
2140
2141 * window.el (set-window-text-height): Only set window-min-height to
2142 1 if that's the requested size.
2143
2144 * diff-mode.el (diff-find-file-name): Obey cvs-pcl-cvs-dirchange-re.
2145 (diff-unified->context, diff-context->unified)
2146 (diff-reverse-direction): Make sure the end marker stays at the end.
2147 (diff-mode): Add the keymap table at the end of docstring.
2148 Use lexical-let rather than constructing a closure manually.
2149
2150 * files.el (find-file-noselect-1): Remove unused var assignment.
2151 (hack-local-variables-confirm): Print lists of strings as lists of
2152 strings rather than lists of symbols.
2153 (abbreviate-file-name, hack-local-variables-prop-line):
2154 Use match-string.
2155 (hack-one-local-variable): Move `make-local-variable' nearer its use.
2156 (recover-session-finish): Use line-end-position.
2157
2158 2006-07-02 Michael Albinus <michael.albinus@gmx.de>
2159
2160 * net/tramp.el (tramp-handle-shell-command): Preserve current-buffer.
2161
2162 2006-07-02 Daniel Pfeiffer <occitan@esperanto.org>
2163
2164 * progmodes/make-mode.el (makefile-macroassign-regex):
2165 Accept preceding keyword.
2166 (makefile-gmake-statements): Reorganize, now that makepp has
2167 "override" and also handle forgotten "override define".
2168 (makefile-makepp-statements): Add new "global", "override export"
2169 and "override global".
2170
2171 2006-06-30 Juanma Barranquero <lekktu@gmail.com>
2172
2173 * progmodes/ada-mode.el (ada-which-compiler, ada-mode-menu)
2174 (ada-compile-mouse-goto-error, ada-deactivate-properties)
2175 (ada-no-auto-case): Fix typos in docstrings.
2176
2177 2006-06-30 Nick Roberts <nickrob@snap.net.nz>
2178
2179 * info.el (Info-find-node-2): Search for makeinfo version more
2180 carefully.
2181
2182 2006-06-29 Carsten Dominik <dominik@science.uva.nl>
2183
2184 * textmodes/org.el (org-prepare-agenda-buffers):
2185 Use `invisible-OK' argument for `org-end-of-subtree'.
2186 (org-export-cleanup-toc-line): Rename from `org-html-cleanup-toc-line'.
2187 (org-beginning-of-item): Fix bug in regular expression for white line.
2188 (org-export-as-html): Enforce space after bullet in plain list items.
2189 (org-set-autofill-regexps): Require space after plain list bullet
2190 for paragraph-start.
2191 (org-ts-regexp3): New constant.
2192 (org-at-timestamp-p): New optional argument ALSO-INACTIVE.
2193 (org-timestamp-up-day, org-timestamp-down-day)
2194 (org-timestamp-change): Work with inactive timestamps.
2195 (org-ts-regexp1): Don't allow brackets in time stamps.
2196
2197 2006-06-29 Nick Roberts <nickrob@snap.net.nz>
2198
2199 * help-mode.el (help-xref-symbol-regexp): Add property as a keyword
2200 for ignoring links.
2201
2202 * faces.el (read-face-name): Use it.
2203
2204 2006-06-28 Juri Linkov <juri@jurta.org>
2205
2206 * buff-menu.el (list-buffers-noselect): Compare Info file
2207 with the string "dir" to detect Info directory.
2208
2209 * complete.el (partial-completion-mode): In lambda for
2210 `choose-completion-string-functions' use full function signature
2211 with 4 args, and move point to the end of the minibuffer only if arg
2212 `mini-p' is non-nil.
2213
2214 2006-06-28 John Paul Wallington <jpw@pobox.com>
2215
2216 * ibuffer.el (ibuffer-mode): Doc fix.
2217
2218 2006-06-28 Carsten Dominik <dominik@science.uva.nl>
2219
2220 * textmodes/org.el (org-context): New contexts :item-bullet,
2221 :latex-fragment, :latex-preview.
2222 (org-overlays-at, org-overlay-start, org-overlay-end):
2223 New compatibility functions.
2224 (org-inside-LaTeX-fragment-p): More accurate matching, using the
2225 exact regexp that will be used during export.
2226 (org-latex-regexps): New variable.
2227 (org-cdlatex-mode): Improve advice for `texmathp'.
2228 (turn-on-org-cdlatex): New function.
2229
2230 2006-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2231
2232 * term/mac-win.el (mac-handle-font-selection): Change keys of
2233 mac-atsu-font-table from strings to numbers.
2234 (mac-ts-caret-position): Use also when cursor-type is nil.
2235 (mac-ts-update-active-input-area): Add Mac OS Classic support.
2236 Relax condition for using overlay strings.
2237 Use mac-ts-caret-position face when cursor-type is nil.
2238
2239 2006-06-26 Kim F. Storm <storm@cua.dk>
2240
2241 * help.el (view-emacs-news): Declare `res' in the right let* form.
2242
2243 2006-06-25 Michael Albinus <michael.albinus@gmx.de>
2244
2245 * net/rcompile.el (remote-compile): Replace ange-ftp based
2246 implementation by Tramp functions.
2247 Suggested by Marc Abramowitz <msabramo@gmail.com>.
2248
2249 * net/tramp.el (tramp-unload-tramp): Provide a doc string.
2250
2251 2006-06-24 Yoshinori Koseki <kose@meadowy.org>
2252
2253 * international/fontset.el (setup-default-fontset): Fix a typo in
2254 the "Oriya-Akruti" registry name.
2255
2256 2006-06-23 Lars Hansen <larsh@soem.dk>
2257
2258 * desktop.el (desktop-full-file-name): New function.
2259 (desktop-kill, desktop-save, desktop-remove, desktop-read)
2260 (desktop-revert): Use it.
2261 (desktop-clear, desktop-save, desktop-remove): Add autoload cookie.
2262 (desktop-after-read-hook): Add option list-buffers.
2263 (desktop-locals-to-save): Add tab-width.
2264 (desktop-save-mode, desktop-no-desktop-file-hook, desktop-save-hook):
2265 Fix docstring.
2266
2267 2006-06-23 Carsten Dominik <dominik@science.uva.nl>
2268
2269 * textmodes/org.el (org-cdlatex-mode-map)
2270 (org-cdlatex-texmathp-advice-is-done): New variables.
2271 (org-cdlatex-mode): New minor mode.
2272 (org-inside-LaTeX-fragment-p, org-try-cdlatex-tab): New functions.
2273 (org-cdlatex-underscore-caret, org-cdlatex-math-modify): New commands.
2274 (org-export-with-archived-trees): New option.
2275 (org-open-file): Remove the call to `convert-standard-filename'.
2276 (org-archive-tag, org-agenda-skip-archived-trees)
2277 (org-cycle-open-archived-trees)
2278 (org-sparse-tree-open-archived-trees): New options.
2279 (org-cycle-hide-archived-subtrees, org-hide-archived-subtrees)
2280 (org-toggle-tag, org-prepare-agenda-buffers, org-agenda-skip):
2281 New functions.
2282 (org-agenda-toggle-archive-tag, org-toggle-archive-tag): New commands.
2283 (org-agenda-mode-map): Add binding of `org-agenda-toggle-archive-tag'.
2284 (org-mode-map): Add binding for `org-toggle-archive-tag'.
2285 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
2286 Call `org-prepare-agenda-buffers'.
2287 (org-occur, org-scan-tags): Call `org-hide-archived-subtrees'.
2288 (org-file-apps, org-file-apps-defaults-gnu)
2289 (org-file-apps-defaults-macosx, org-file-apps-defaults-windowsnt):
2290 Handle remote files by forcing them to be opened in Emacs.
2291
2292 2006-06-23 Andre Spiegel <spiegel@gnu.org>
2293
2294 * vc.el (vc-diff-knows-L): New variable.
2295 (vc-diff-internal): Use it to handle "diff" programs that don't
2296 understand -L. This works automatically, no user action is necessary.
2297
2298 2006-06-23 Daniel Brockman <daniel@brockman.se>
2299
2300 * net/rcirc.el (rcirc-default-user-full-name): Default to
2301 `rcirc-default-user-name' instead of `rcirc-user-name' (which no
2302 longer exists).
2303 (rcirc-process-list): Check `buffer-live-p' before attempting to
2304 switch to a buffer.
2305
2306 2006-06-23 Ryan Yeske <rcyeske@gmail.com>
2307
2308 * net/rcirc.el (rcirc-mode): Fix initialization of coding systems
2309 based on rcirc-coding-system-alist.
2310
2311 2006-06-23 Martin Rudalics <rudalics@gmx.at>
2312
2313 * cus-edit.el (customize-apropos): A better error message.
2314 (top level) <debug-ignored-errors>: Extend and update the list of
2315 ignored error messages.
2316
2317 2006-06-23 Michael Ernst <mernst@alum.mit.edu>
2318
2319 * complete.el (PC-do-completion): Retain capitalization of user
2320 input, when possible, even if completion-ignore-case is set.
2321
2322 2006-06-23 Eli Zaretskii <eliz@gnu.org>
2323
2324 * generic-x.el (bat-generic-mode): Support .cmd files.
2325
2326 * dos-w32.el (top level): Use find-file-not-found-functions
2327 instead of the obsolete find-file-not-found-hooks.
2328
2329 2006-06-22 Kim F. Storm <storm@cua.dk>
2330
2331 * progmodes/grep.el (grep-mode-font-lock-keywords): Correct regexps
2332 to recognize mode name containing submodes, such as Grep/lw.
2333
2334 2006-06-21 Kim F. Storm <storm@cua.dk>
2335
2336 * simple.el (line-move-1): Check for move-end-of-line instead of
2337 end-of-line when setting temporary-goal-column.
2338
2339 2006-06-21 Miles Bader <miles@gnu.org>
2340
2341 * play/cookie1.el (cookie): Work properly when there's only one entry.
2342
2343 2006-06-21 Nick Roberts <nickrob@snap.net.nz>
2344
2345 * progmodes/gdb-ui.el (gdb-exited): Ensure overlay arrow gets killed.
2346 (gdb-frame-handler): Generalize frame regexp for templates.
2347
2348 2006-06-20 Glenn Morris <rgm@gnu.org>
2349
2350 * calendar/appt.el (appt-display-format): Default value must be
2351 one of the customize options.
2352
2353 2006-06-20 Dan Nicolaescu <dann@ics.uci.edu>
2354
2355 * term/xterm.el (terminal-init-xterm): Update key availability info.
2356 Bind C-return.
2357
2358 * term.el (term-delete-lines, term-insert-lines): Clarify comments.
2359
2360 2006-06-20 Chong Yidong <cyd@stupidchicken.com>
2361
2362 * files.el (hack-local-variables): Run `hack-local-variables-hook'
2363 whether or not a local variables list is defined.
2364
2365 * msb.el (msb): Move `sit-for' hack here to handle both
2366 "mouse-down and drag" and "mouse-up and select" situations.
2367 (mouse-select-buffer): Move `sit-for' hack to `msb'.
2368
2369 2006-06-20 Kenichi Handa <handa@m17n.org>
2370
2371 * international/characters.el (word-combining-categories):
2372 Add entries for 2-byte Han characters.
2373
2374 2006-06-19 Richard Stallman <rms@gnu.org>
2375
2376 * bindings.el (mode-line-format): Save some mode line space.
2377
2378 * files.el (find-file-noselect): Improve the question wording.
2379 (basic-save-buffer-2): Mask UMASK against 666.
2380
2381 * mouse.el (mouse-drag-vertical-line-rightward-window): New function.
2382 (mouse-drag-vertical-line): Call it.
2383
2384 * cus-edit.el (customize-option, customize-option-other-window):
2385 Error if SYMBOL is nil.
2386
2387 2006-06-19 Carsten Dominik <dominik@science.uva.nl>
2388
2389 * textmodes/org.el: Require noutline, also on XEmacs.
2390 (org-end-of-subtree): Return point.
2391 (org-dblock-start-re, org-dblock-end-re): New constants.
2392 (org-create-dblock, org-prepare-dblock, org-map-dblocks)
2393 (org-dblock-update, org-update-dblock, org-beginning-of-dblock)
2394 (org-update-all-dblocks, org-find-dblock): New functions.
2395 (org-collect-clock-time-entries): New function.
2396 (org-html-handle-time-stamps): Never export CLOCK timeranges.
2397 (org-fixup-indentation): Modify to deal correctly with lines
2398 starting with TAB. Only one argument DIFF now.
2399 (org-demote, org-promote): Call `org-fixup-indentation' with just
2400 one argument, DIFF.
2401 (org-mode): Don't mark buffer as modified when aligning tables.
2402 (org-clock-sum): Don't mark buffer modified when adding time sum
2403 properties.
2404 (org-export-as-html): Add support for a link validation function.
2405 (org-archive-all-done): New function.
2406 (org-archive-subtree): New prefix argument. When set, archive all
2407 done subtrees in this buffer.
2408 (org-remove-clock-overlays)
2409 (org-remove-occur-highlights): Use `org-inhibit-highlight-removal'.
2410 (org-inhibit-highlight-removal): New variable, for dynamic scoping.
2411 (org-put-clock-overlay): Don't swallow last headline character
2412 when displaying overlay.
2413 (org-store-link): Link to `image-mode' with just the file name.
2414
2415 2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
2416
2417 * viper-cmd.el (viper-special-read-and-insert-char):
2418 Use read-key-sequence.
2419 (viper-after-change-undo-hook): Misc enhancements.
2420 (viper-after-change-undo-hook): New hook.
2421 (viper-undo): Use viper-after-change-undo-hook.
2422 (viper-add-newline-at-eob-if-necessary): Widen before making changes.
2423 (viper-next-line-at-bol): If point is on a widget or a button, simulate
2424 clicking on that widget/button.
2425
2426 * viper.el (viper-mode): Allow a separate cursor color in Emacs state.
2427
2428 * ediff-diff (ediff-test-patch-utility): Catch errors.
2429 (ediff-actual-diff-options, ediff-actual-diff3-options): New variables.
2430 (ediff-set-actual-diff-options): New function.
2431 (ediff-reset-diff-options, ediff-toggle-ignore-case):
2432 Use ediff-set-actual-diff-options.
2433 (ediff-extract-diffs): Catch errors.
2434 (ediff-whitespace): Add non-breakable space.
2435 (ediff-same-file-contents): Catch errors.
2436
2437 * ediff-mult.el (ediff-collect-custom-diffs):
2438 Save coding-system-for-read.
2439
2440 * ediff-vers.el (ediff-keep-tmp-versions): New variable.
2441 (ediff-vc-internal, ediff-vc-merge-internal):
2442 Use ediff-delete-version-file.
2443 (ediff-delete-version-file): New function.
2444
2445 * ediff-wind.el (ediff-control-frame-parameters): Set frame fringes.
2446
2447 * ediff.el (ediff-directories, ediff-directory-revisions)
2448 (ediff-merge-directories, ediff-merge-directories-with-ancestor)
2449 (ediff-directories-internal, ediff-merge-directory-revisions)
2450 (ediff-merge-directory-revisions-with-ancestor)
2451 (ediff-directories3): Use read-directory-name.
2452
2453 2006-06-18 Ralf Angeli <angeli@caeruleus.net>
2454
2455 * textmodes/tex-mode.el (tex-font-lock-match-suscript):
2456 Remove superfluous part of regexp for brace matching which is handled
2457 by `scan-lists' call.
2458
2459 2006-06-16 Richard Stallman <rms@gnu.org>
2460
2461 * obsolete/options.el (list-options): Put "obsolete" msg in buffer.
2462
2463 * files.el (basic-save-buffer-2): For a new precious file,
2464 use the default modes in the return value.
2465
2466 * facemenu.el (facemenu-color-alist): Doc fix.
2467
2468 * cus-edit.el (custom-guess-name-alist): Recognize `-flag'.
2469
2470 2006-06-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2471
2472 * cus-start.el (all): Add mac-ts-script-language-on-focus.
2473
2474 * term/mac-win.el (mac-text-encoding-ascii): New constant.
2475 (mac-utxt-to-string): Use it.
2476 (mac-ts-update-active-input-area): Use mac-ae-number.
2477
2478 2006-06-15 Dan Nicolaescu <dann@ics.uci.edu>
2479
2480 * term.el (term-handle-scroll, term-delete-lines)
2481 (term-insert-lines): Fix off by one errors.
2482
2483 2006-06-15 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
2484
2485 * net/tramp.el (tramp-touch): Use UTC to express time.
2486
2487 2006-06-15 Chong Yidong <cyd@stupidchicken.com>
2488
2489 * mail/sendmail.el (mail-send): Search explicitly for
2490 mail-header-separator when checking for corrupted header lines.
2491
2492 2006-06-15 Nick Roberts <nickrob@snap.net.nz>
2493
2494 * progmodes/gdb-ui.el (gdb-same-frame): New option.
2495 (gud-old-arrow, gdb-frame-begin, gdb-printing): New variables.
2496 (gdb-init-1): Initialise them.
2497 (gdb-starting): Reset gdb-printing
2498 (gdb-starting): Save value of gud-overlay-arrow-position.
2499 (gdb-frame-begin): Set gdb-frame-begin, gdb-printing.
2500 (gdb-stopped): Don't look for source if calling procedure e.g "p a ()".
2501 Use gdb-*-gdb-buffer conditionally on gdb-same-frame.
2502 (gdb-frame-gdb-buffer): Keep menu bar, tool bar for GUD buffer.
2503
2504 2006-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
2505
2506 * pcvs.el (cvs-retrieve-revision): Use decode-coding-inserted-region.
2507
2508 2006-06-13 Martin J. Reed <mjreed@essex.ac.uk> (tiny change)
2509
2510 * net/ldap.el (ldap-ldapsearch-args): Default to SASL search.
2511 (ldap-search-internal): Keep error messages, and a regexp fix.
2512
2513 2006-06-12 Thien-Thi Nguyen <ttn@gnu.org>
2514
2515 * files.el (hack-local-variables-confirm):
2516 Display string value using its printed representation.
2517
2518 2006-06-11 Chong Yidong <cyd@stupidchicken.com>
2519
2520 * server.el (server-edit): No-op if no server buffers exist.
2521
2522 2006-06-11 Robert J. Chassell <bob@rattlesnake.com>
2523
2524 * textmodes/page-ext.el (pages-directory-for-addresses):
2525 Including `pages-directory-address-mode' in the function results
2526 in the message "Buffer in which pages were found is deleted".
2527
2528 2006-06-10 Carsten Dominik <dominik@science.uva.nl>
2529
2530 * textmodes/org.el (org-agenda-mode-map): Add bindings for
2531 clocking functions.
2532
2533 (org-agenda-clock-in, org-check-running-clock)
2534 (org-clock-out-if-current, org-remove-clock-overlays)
2535 (org-put-clock-overlay): New functions.
2536 (org-clock-marker, org-clock-file-total-minutes)
2537 (org-clock-overlays): New variables.
2538 (org-clock-display, org-clock-sum, org-clock-cancel)
2539 (org-clock-out, org-clock-in): New commands.
2540 (org-export): New function.
2541 (org-emph-re): New constant.
2542 (org-set-emph-re, org-do-emphasis-faces): New functions.
2543 (org-emphasis-regexp-components, org-emphasis-alist): New options.
2544 (org-set-font-lock-defaults): Call `org-do-emphasis-faces'.
2545 (org-export-html-convert-emphasize): Use the configurable emphasis.
2546 (org-cleaned-string-for-export): Make multiline emphasis visible
2547 to the exporter. New optional argument PARAMETERS.
2548 (org-export-as-html): Specify :emph-multiline parameter to
2549 `org-cleaned-string-for-export'.
2550
2551 2006-06-10 Richard Stallman <rms@gnu.org>
2552
2553 * help.el (help-for-help-internal): Clean up help text.
2554
2555 2006-06-10 Andreas Schwab <schwab@suse.de>
2556
2557 * language/ethio-util.el (ethio-fidel-to-java-buffer): Fix quoting
2558 in doc string.
2559
2560 * progmodes/cperl-mode.el (cperl-short-docs): Likewise.
2561
2562 2006-06-09 Karl Chen <quarl@cs.berkeley.edu>
2563
2564 * progmodes/make-mode.el (makefile-fill-paragraph): Don't remove
2565 spaces after the comment start.
2566
2567 2006-06-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
2568
2569 * play/pong.el (pong-init-buffer):
2570 Fill buffer with spaces instead of ^A.
2571
2572 * textmodes/ispell.el (ispell-kill-ispell): If ispell has been
2573 launched asynchronously, delete its process instead of being cool.
2574 (ispell-async-processp): Check for `delete-process' existence
2575 instead of `kill-process' one for consistency.
2576
2577 2006-06-09 Nick Roberts <nickrob@snap.net.nz>
2578
2579 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers-1)
2580 (gdb-prompt, gdb-set-gud-minor-mode-existing-buffers): Show status
2581 in mode line at startup.
2582
2583 2006-06-08 Kim F. Storm <storm@cua.dk>
2584
2585 * ido.el (ido-take-first-match, ido-push-dir-first): New commands.
2586 (ido-init-completion-maps): Bind them to M-SPC and M-v.
2587 (ido-copy-current-file-name): Repeating C-w inserts whole file name.
2588 (ido-file-internal): Pass full file name to write-file.
2589 (ido-read-internal): Only pop stack elements automatically if they
2590 actually match an existing directory or file name.
2591
2592 2006-06-07 Kenichi Handa <handa@m17n.org>
2593
2594 * international/mule.el (find-auto-coding): Don't handle the short
2595 name `char-trans'.
2596
2597 * files.el (hack-local-variables-prop-line)
2598 (hack-local-variables): Cancel the previous change.
2599
2600 2006-06-06 Jesper Harder <harder@phys.au.dk>
2601
2602 * ediff-diff.el (ediff-test-utility): Protect against file-error.
2603
2604 2006-06-06 Chong Yidong <cyd@stupidchicken.com>
2605
2606 * diff-mode.el (diff-mode): Set buffer-read-only to t when
2607 diff-default-read-only is non-nil.
2608 (diff-hunk-kill, diff-file-kill, diff-split-hunk)
2609 (diff-refine-hunk): Set inhibit-read-only to t.
2610
2611 * diff.el (diff-sentinel, diff): Set inhibit-read-only to t when
2612 modifying the *Diff* buffer.
2613 (diff-process-filter): New filter function for diff process that
2614 sets inhibit-read-only to t when modifying the *Diff* buffer.
2615
2616 2006-06-06 Carsten Dominik <dominik@science.uva.nl>
2617
2618 * textmodes/org.el (org-archive-subtree): Use end-of-subtree as
2619 insertion point and control the number of empty lines.
2620 (org-paste-subtree): Limit the number of empty lines at the end of
2621 the inserted tree.
2622 (org-agenda): Use buffer name of current file for narrowing.
2623 (org-export-as-xml): Command removed.
2624 (org-export-xml-type): Option removed.
2625 (org-mode-map): Call `org-export-as-xoxo' directly.
2626 (org-get-indentation): New optional argument LINE.
2627 (org-fix-indentation, org-remove-tabs): New functions.
2628 (org-export-as-ascii, org-ascii-level-start): Determine and apply
2629 correct indentation for headlines that are converted it items.
2630 (org-skip-comments): Remove table lines that contain narrowing
2631 cookies but no other non-empty fields.
2632 (org-set-tags): Allow groups of mutually exclusive tags.
2633 (org-cmp-time): Sort 24:21 before items without time.
2634 (org-get-time-of-day): Fix the interpretation of 12pm and 12am.
2635 (org-open-at-point): Require double colon also for numbers.
2636
2637 2006-06-06 Kim F. Storm <storm@cua.dk>
2638
2639 * ido.el (ido-default-file-method, ido-default-buffer-method):
2640 Make choice values consistent with corresponding command names.
2641 (ido-visit-buffer): Update accordingly. Default to selected-window.
2642
2643 2006-06-06 Nick Roberts <nickrob@snap.net.nz>
2644
2645 * progmodes/gud.el (gud-running): Fix doc string.
2646 (gud-menu-map): Use :visible instead fo :enable for debugger test.
2647 (gud-tooltip-modes): Add python-mode.
2648 (gud-tooltip-print-command): Add pdb. Remove perldb.
2649
2650 2006-06-05 Eli Zaretskii <eliz@gnu.org>
2651
2652 * makefile.w32-in (bootstrap, $(lisp)/mh-e/mh-loaddefs.el):
2653 Quote $(EMACS).
2654
2655 2006-06-05 Richard Stallman <rms@gnu.org>
2656
2657 * faces.el (defined-colors): Doc fix.
2658
2659 2006-06-05 Thien-Thi Nguyen <ttn@gnu.org>
2660
2661 * vc.el (vc-process-filter): Inhibit undo info collection around
2662 call to insert.
2663 (vc-setup-buffer): Likewise for call to erase-buffer.
2664 (vc-do-command): Likewise for call to process-file.
2665
2666 2006-06-05 Nick Roberts <nickrob@snap.net.nz>
2667
2668 * progmodes/gud.el (gud-menu-map): Use a conditional help echo
2669 for gud-go.
2670 (gud-common-init): Other debuggers may trigger error.
2671
2672 2006-06-05 Kenichi Handa <handa@m17n.org>
2673
2674 * international/mule.el (find-auto-coding):
2675 Handle enable-character-translation in file header.
2676
2677 2006-06-04 Kim F. Storm <storm@cua.dk>
2678
2679 * emacs-lisp/authors.el (authors-aliases): Add mode aliases.
2680 (authors-fixed-entries): Fix spelling.
2681 (authors-canonical-file-name): Don't report error for wildcards.
2682
2683 * help.el (view-emacs-news): Rewrite to support new NEWS,
2684 NEWS.major, and NEWS.1-17 file naming. Add more intelligence,
2685 e.g. version 10 matches 1.10, and don't be confused by version 1.1
2686 being a prefix of 1.12 (etc). A numeric prefix arg also works.
2687
2688 2006-06-03 Vivek Dasmohapatra <vivek@etla.org>
2689
2690 * progmodes/sh-script.el (sh-quoted-exec): New face for quoted
2691 exec constructs like `foo bar`.
2692 (sh-quoted-subshell): New helper function to search for a possibly
2693 nested subshell (like `` or $()) within a "" quoted string.
2694 (sh-font-lock-keywords-var): Add sh-quoted-exec for Bash.
2695 (sh-apply-quoted-subshell): Flag quote characters inside a
2696 subshell, which is itself already in a quoted region, as
2697 punctuation, since this is the closest to what they actually are.
2698 (sh-font-lock-syntactic-keywords): Add sh-quoted-subshell and
2699 sh-apply-quoted-subshell.
2700 (sh-font-lock-syntactic-face-function): Apply the new face for
2701 text inside `` instead of the old font-lock-string-face.
2702
2703 2006-06-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2704
2705 * term/mac-win.el (mac-ts-active-input-overlay): Add defvar.
2706 (mac-ae-number, mac-ae-frame, mac-ae-script-language)
2707 (mac-bytes-to-text-range, mac-ae-text-range-array)
2708 (mac-ts-update-active-input-buf, mac-split-string-by-property-change)
2709 (mac-replace-untranslated-utf-8-chars, mac-ts-update-active-input-area)
2710 (mac-ts-unicode-for-key-event): New functions.
2711 (mac-handle-toolbar-switch-mode): Use mac-ae-frame.
2712 (mac-handle-font-selection): Use mac-ae-number.
2713 (mac-ts-active-input-buf, mac-ts-update-active-input-area-seqno):
2714 New variables.
2715 (mac-ts-caret-position, mac-ts-raw-text, mac-ts-selected-raw-text)
2716 (mac-ts-converted-text, mac-ts-selected-converted-text)
2717 (mac-ts-block-fill-text, mac-ts-outline-text)
2718 (mac-ts-selected-text, mac-ts-no-hilite): New faces.
2719 (mac-ts-hilite-style-faces): New constant.
2720 (mac-apple-event-map): Bind text input events.
2721 (mac-dispatch-apple-event): Use command-execute instead of
2722 call-interactively.
2723 (global-map): Don't bind mac-apple-event.
2724 (special-event-map): Bind mac-apple-event.
2725
2726 2006-06-02 Eli Zaretskii <eliz@gnu.org>
2727
2728 * makefile.w32-in (EMACS): Remove quotes from the Emacs executable
2729 file name.
2730 (emacs): Enclose the value of $(EMACS) in quotes.
2731
2732 2006-06-02 Juri Linkov <juri@jurta.org>
2733
2734 * international/mule.el (sgml-html-meta-auto-coding-function):
2735 Remove the condition `(search-forward "<html" size t)'.
2736 Replace `\"' with `[\"']?' in `re-search-forward'.
2737
2738 2006-06-02 Kenichi Handa <handa@m17n.org>
2739
2740 * files.el (hack-local-variables-prop-line): Ignore `char-trans'
2741 as well as `coding'.
2742 (hack-local-variables): Likewise.
2743
2744 * international/mule.el (enable-character-translation):
2745 Put permanent-local and safe-local-variable properties.
2746 (find-auto-coding): Handle char-trans: tag.
2747
2748 2006-06-02 Juri Linkov <juri@jurta.org>
2749
2750 * international/mule.el (sgml-html-meta-auto-coding-function):
2751 Limit the search by the end of the HTML header (if any).
2752
2753 2006-06-01 Richard Stallman <rms@gnu.org>
2754
2755 * subr.el (with-current-buffer): Doc fix.
2756
2757 2006-06-02 Masatake YAMATO <jet@gyve.org>
2758
2759 * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-*):
2760 Almost rewrite. Underlines over all lines of gcov output are too
2761 uncomfortable to read. Suggested by Dan Nicolaescu.
2762
2763 2006-06-01 Luc Teirlinck <teirllm@auburn.edu>
2764
2765 * progmodes/inf-lisp.el (inferior-lisp-mode): Doc fixes.
2766
2767 * shell.el (shell-mode): Use shell-mode-map in docstring.
2768
2769 * comint.el (comint-send-input): Do not add help-echo and
2770 mouse-face to input if `comint-use-prompt-regexp' is non-nil.
2771
2772 2006-06-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2773
2774 * term/x-win.el: Change x-menu-bar-start to menu-bar-open.
2775
2776 2006-06-01 Nick Roberts <nickrob@snap.net.nz>
2777
2778 * progmodes/gdb-ui.el (gdb-look-up-stack): New variable.
2779 (gdb-stopped, gdb-info-stack-custom): If there is no source info
2780 look up the stack and pop up GUD buffer if necessary.
2781 (gdb-frames-select): Remove redundant call to gud-display-frame.
2782 (gdb-info-threads-custom): Keep point at start of buffer.
2783 (gdb-find-file-hook): Make it work for pre-GDB 6.4.
2784
2785 2006-05-31 Juri Linkov <juri@jurta.org>
2786
2787 * replace.el (query-replace-read-from, query-replace-read-to):
2788 Bind `history-add-new-input' to nil. Call `add-to-history'.
2789
2790 2006-05-31 Takaaki Ota <Takaaki.Ota@am.sony.com>
2791
2792 * textmodes/table.el: Convert all HTML tags to lower case for
2793 XHTML compatibility.
2794
2795 2006-05-31 Masatake YAMATO <jet@gyve.org>
2796
2797 * progmodes/compile.el:
2798 (compilation-error-regexp-alist-alist::gcov-called-line):
2799 Don't put face on `-' lines in gcov file. Suggested by Dan Nicolaescu.
2800
2801 2006-05-31 Nick Roberts <nickrob@snap.net.nz>
2802
2803 * progmodes/gud.el (gud-query-cmdline, gud-common-init):
2804 Revert inadvertent changes made with last commit.
2805
2806 2006-05-30 Reiner Steib <Reiner.Steib@gmx.de>
2807
2808 * textmodes/flyspell.el (turn-on-flyspell, turn-off-flyspell):
2809 New functions.
2810
2811 * textmodes/text-mode.el (text-mode-hook): Use turn-on-flyspell.
2812
2813 2006-05-30 Carsten Dominik <dominik@science.uva.nl>
2814
2815 * textmodes/org.el (org-agenda-highlight-todo): Make sure regexp
2816 only matches in the right place.
2817 (org-upcoming-deadline): New face.
2818 (org-agenda-get-deadlines): Use new face `org-upcoming-deadline'.
2819 (org-export-ascii-underline): Rename constant `org-ascii-underline'
2820 and make it an option.
2821 (org-export-ascii-bullets): New option.
2822 (org-export-as-html): Many changes to emit valid XHTML.
2823 (org-par-open): New variable.
2824 (org-open-par, org-close-par-maybe, org-close-li-maybe): New functions.
2825 (org-html-do-expand, org-section-number): Fix case in `replace-match'.
2826 (org-timeline): Pass `org-timeline-show-empty-dates' to
2827 `org-get-all-dates'. Interpret empty dates returned by
2828 `org-get-all-dates'.
2829 (org-get-all-dates): New argument EMPTY. Add dates without
2830 entries to the list, mark large ranges of empty dates.
2831 (org-point-in-group, org-context): New functions.
2832
2833 2006-05-30 Nick Roberts <nickrob@snap.net.nz>
2834
2835 * progmodes/gud.el (gud-stop-subjob): Make it work in all buffers.
2836
2837 * progmodes/gdb-ui.el: Move gdb-mouse-toggle-breakpoint-* to
2838 C-mouse-1. Move gdb-mouse-until to mouse-3, gdb-mouse-jump
2839 to C-mouse-3 (for 2 button mice).
2840 (gdb-send): Do the right thing for C-d.
2841
2842 * speedbar.el (speedbar-detach): Delete.
2843 (speedbar-easymenu-definition-trailer): Remove speedbar-detach as
2844 it breaks things.
2845 (speedbar-reconfigure-keymaps): Always add extra items to pop up menu.
2846
2847 2006-05-30 Daniel Pfeiffer <occitan@esperanto.org>
2848
2849 * files.el (auto-mode-alist): Add makepp suffix and optional mk on
2850 Makeppfile.
2851
2852 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2853 Add makepp diagnostic.
2854
2855 2006-05-29 Richard Stallman <rms@gnu.org>
2856
2857 * window.el (fit-window-to-buffer): Doc fix.
2858
2859 * help.el (temp-buffer-max-height): Doc fix.
2860
2861 * subr.el (with-current-buffer): Doc fix.
2862
2863 2006-05-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2864
2865 * term/x-win.el: Bind F10 to menu-bar-start if available.
2866
2867 2006-05-28 Dan Nicolaescu <dann@ics.uci.edu>
2868
2869 * term.el (term-if-xemacs, term-ifnot-xemacs): Delete, replace
2870 uses with a simple test.
2871 (term-set-escape-char, term-mode, term-check-kill-echo-list)
2872 (term-send-raw-string, term-send-raw, term-mouse-paste)
2873 (term-char-mode, term-line-mode, term-exec, term-sentinel)
2874 (term-handle-exit, term-read-input-ring)
2875 (term-previous-matching-input-string)
2876 (term-previous-matching-input-string-position)
2877 (term-previous-matching-input-from-input)
2878 (term-replace-by-expanded-history, term-send-input)
2879 (term-skip-prompt, term-bol, term-send-invisible)
2880 (term-kill-input, term-delchar-or-maybe-eof)
2881 (term-backward-matching-input, term-check-source)
2882 (term-proc-query, term-emulate-terminal)
2883 (term-handle-colors-array, term-process-pager, term-pager-line)
2884 (term-pager-bob, term-unwrap-line, term-word)
2885 (term-dynamic-complete-filename)
2886 (term-dynamic-complete-as-filename)
2887 (term-dynamic-simple-complete): Replace one arm ifs with whens or
2888 unlesses.
2889
2890 2006-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
2891
2892 * files.el (hack-one-local-variable-eval-safep): Don't burp if used
2893 during bootstrapping.
2894
2895 * emacs-lisp/ewoc.el (ewoc--current-dll): Remove.
2896 Basically undo the change of 2006-05-26: use extra arguments instead of
2897 dynamic scoping.
2898 (ewoc-locate): Remove unused var `footer'.
2899
2900 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
2901
2902 * emacs-lisp/ewoc.el (ewoc--insert-new-node): Use ewoc--refresh-node.
2903
2904 * emacs-lisp/autoload.el (no-update-autoloads): Declare.
2905 (generate-file-autoloads): Obey it. Return whether autoloads were
2906 added at point or not.
2907 (update-file-autoloads): Use this new return value.
2908 Remove redundant test for the presence of an autoload cookie.
2909
2910 * emacs-lisp/autoload.el (autoload-find-file): New fun.
2911 This one calls hack-local-variables.
2912 (generate-file-autoloads, update-file-autoloads): Use it.
2913
2914 * textmodes/bibtex.el (bibtex-autokey-name-case-convert-function)
2915 (bibtex-sort-entry-class): Add safe-local-variable predicate.
2916 (bibtex-sort-entry-class-alist): Don't set the global value.
2917 (bibtex-init-sort-entry-class-alist): New fun.
2918 (bibtex-sort-buffer, bibtex-prepare-new-entry): Call it to compute
2919 bibtex-init-sort-entry-class-alist from the buffer-local value (if any)
2920 of bibtex-init-sort-entry-class.
2921
2922 2006-05-28 Richard Stallman <rms@gnu.org>
2923
2924 * subr.el (load-history-regexp): If FILE is relative, insist
2925 entire last name component must match it.
2926 (load-history-filename-element, load-history-regexp): Doc fixes.
2927
2928 2006-05-29 Kim F. Storm <storm@cua.dk>
2929
2930 * emacs-lisp/bindat.el (bindat-idx, bindat-raw): Rename dynamic vars
2931 `pos' and `raw-data' for clarity, as eval forms may access these.
2932
2933 2006-05-28 Kim F. Storm <storm@cua.dk>
2934
2935 * emacs-lisp/bindat.el (bindat--unpack-u8): Use aref also for strings.
2936
2937 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
2938
2939 * progmodes/make-mode.el (makefile-browser-map)
2940 (makefile-mode-syntax-table): Move initialization inside declaration.
2941 (makefile-fill-paragraph): Use the default comment-filling code.
2942
2943 2006-05-28 Chong Yidong <cyd@stupidchicken.com>
2944
2945 * replace.el (query-replace-defaults): New variable.
2946 (query-replace-read-from): Use `query-replace-defaults' for
2947 default value, instead of history list.
2948 (query-replace-read-to): Update `query-replace-defaults'.
2949
2950 2006-05-27 Chong Yidong <cyd@stupidchicken.com>
2951
2952 * msb.el (mouse-select-buffer): Minor fix to make popup menu work
2953 with no X toolkit.
2954
2955 2006-05-28 Nick Roberts <nickrob@snap.net.nz>
2956
2957 * tumme.el (tumme-show-all-from-dir-max-files): Fix typo.
2958 (tumme-show-all-from-dir): Add autoload.
2959
2960 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
2961
2962 * tumme.el: Change a lot of `(if .. (progn ..)' to `(when ..)'.
2963 (tumme-remove-tag): Fix bug.
2964
2965 2006-05-27 Thien-Thi Nguyen <ttn@gnu.org>
2966
2967 * emacs-lisp/ewoc.el (ewoc--create): No longer take HEADER and
2968 FOOTER args. Update unique caller.
2969 (ewoc-delete): Compute last node once before looping.
2970 (ewoc--node-branch): Merge into unique caller.
2971 (ewoc--node): Don't define constructor make-ewoc--node for this
2972 structure.
2973 (ewoc): Add member `hf-pp' to this structure.
2974 (ewoc--wrap): New func.
2975 (ewoc-create): Take additional arg NOSEP. If nil, wrap node and
2976 header/footer pretty-printers. Save header/footer pretty-printer.
2977 (ewoc-set-hf): Use ewoc's header/footer pretty-printer. *
2978
2979 * pcvs.el (cvs-make-cvs-buffer): Specify NOSEP to `ewoc-create'.
2980
2981 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
2982
2983 * dired.el (dired-mode-map): Change `tumme-tag-remove' to
2984 `tumme-delete-tag'. Rename `Remove Image Tag' to `Delete Image
2985 Tag'. Change "Compare directories..." to "Change Directories...".
2986 Move tumme commands to Operate, Regexp and Immediate menus.
2987 Change "Add Comment" to "Add Image Comment". Change "Add Image
2988 Tag" to "Add Image Tags".
2989
2990 * tumme.el (tumme-delete-tag): Rename from `tumme-tag-remove'.
2991 (tumme-setup-dired-keybindings): Change `tumme-add-remove' to
2992 `tumme-delete-tag'.
2993
2994 2006-05-26 Luc Teirlinck <teirllm@auburn.edu>
2995
2996 * shell.el (shell-mode): Call shell-dirtrack-mode after
2997 list-buffers-directory is made a local variable, to avoid setting
2998 the default value.
2999
3000 2006-05-26 Kevin Ryde <user42@zip.com.au>
3001
3002 * info.el (Info-index-next): Use where-is-internal to report
3003 actual binding of Info-index-next, rather than hard-coded `,'.
3004
3005 2006-05-26 Eli Zaretskii <eliz@gnu.org>
3006
3007 * menu-bar.el (menu-bar-apropos-menu): Move "Find Key in Manual"
3008 and "Find Command in Manual" to here.
3009
3010 * buff-menu.el (list-buffers-noselect): For Info buffers, use
3011 Info-current-file as the file name.
3012
3013 2006-05-26 Jonathan Yavner <jyavner@member.fsf.org>
3014
3015 * ses.el (defadvice undo-more): Delete this defadvice. The undo
3016 overrides will now be done a different way.
3017 (ses-set-parameter): Reapply this function for undo.
3018 (ses-set-header-row): Reconstruct header row during undo.
3019 (ses-widen): New function.
3020 (ses-goto-data, ses-reconstruct-all): Use new function.
3021 (ses-command-hook): Widen buffer during undo, before unupdating
3022 the cells.
3023 (ses-insert-row, ses-delete-row): Widen buffer during undo.
3024 (ses-load, ses-header-row): Permit empty (zero-row) spreadsheets.
3025 (ses-read-cell): Avoid stupid warning for RET RET on a cell whose
3026 formula hasn't been executed yet.
3027
3028 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
3029
3030 * comint.el (comint-kill-whole-line): Rename arg to count.
3031 Fix doc string.
3032
3033 2006-05-26 Chong Yidong <cyd@stupidchicken.com>
3034
3035 * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument
3036 to copy-file.
3037
3038 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
3039
3040 * simple.el (toggle-truncate-lines): Make arg optional for
3041 backward compatibility.
3042
3043 2006-05-26 Thien-Thi Nguyen <ttn@gnu.org>
3044
3045 * emacs-lisp/ewoc.el (ewoc--current-dll): New var.
3046 (ewoc--node-next, ewoc--node-prev, ewoc--node-nth): Don't take
3047 DLL arg. Instead, use ewoc--current-dll. Update all callers.
3048 (ewoc--set-buffer-bind-dll-let*): Bind ewoc--current-dll, not `dll'.
3049 (ewoc--adjust): Use ewoc--current-dll.
3050 (ewoc-next, ewoc-prev, ewoc-nth): Bind ewoc--current-dll.
3051
3052 2006-05-26 Carsten Dominik <dominik@science.uva.nl>
3053
3054 * textmodes/org.el (org-next-item, org-previous-item): Emit more
3055 compact error message.
3056 (org-tags-view): Refresh category table in each file.
3057 (org-table-justify-field-maybe): Remove superfluous arguments to
3058 `format'.
3059 (org-export-as-html): Insert "<p>" before postamble.
3060 (org-paste-subtree, org-kill-is-subtree-p): Check for empty kill ring.
3061
3062 2006-05-26 Kenichi Handa <handa@m17n.org>
3063
3064 * textmodes/po.el (po-find-charset): Pay attention to the case
3065 FILENAME is a cons (NAME . BUFFER).
3066 (po-find-file-coding-system-guts): Likewise.
3067
3068 * arc-mode.el (archive-set-buffer-as-visiting-file):
3069 Call find-operation-coding-system with (FILENAME . BUFFER).
3070
3071 * tar-mode.el (tar-extract): Call find-operation-coding-system
3072 with (FILENAME . BUFFER).
3073
3074 * international/mule.el (decode-coding-inserted-region):
3075 Call find-operation-coding-system with (FILENAME . BUFFER).
3076
3077 2006-05-25 Chong Yidong <cyd@stupidchicken.com>
3078
3079 * image-mode.el (image-toggle-display): Use buffer contents to
3080 generate image for a remote file.
3081
3082 2006-05-25 Juri Linkov <juri@jurta.org>
3083
3084 * replace.el (query-replace-read-from, query-replace-read-to):
3085 Remove 8th arg KEEP-ALL in read-from-minibuffer.
3086
3087 2006-05-25 Rajesh Vaidheeswarran <rv@gnu.org>
3088
3089 * whitespace.el (whitespace-cleanup): Change to cleanup
3090 region if one is active.
3091 * whitespace.el (whitespace-cleanup-internal): New internal method.
3092
3093 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
3094
3095 * dired.el (dired-mode-map): Add help-echo strings to tumme
3096 commands. Bind `tumme-dired-display-image' to C-t i.
3097
3098 * tumme.el (tumme-display-image): Change documentation string slightly.
3099 (tumme-dired-display-image): Add call to `display-buffer'.
3100
3101 2006-05-25 Thien-Thi Nguyen <ttn@gnu.org>
3102
3103 * emacs-lisp/bindat.el (bindat-unpack, bindat-pack):
3104 Signal error if RAW-DATA is a multibyte string.
3105
3106 2006-05-24 Richard Stallman <rms@gnu.org>
3107
3108 * subr.el (with-local-quit): When handling `quit' signal,
3109 make a chance for quit-flag to cause a quit.
3110
3111 * emacs-lisp/advice.el (ad-enable-advice, ad-activate)
3112 (ad-disable-advice): Add autoloads.
3113
3114 * subr.el (read-passwd): Copy PROMPT before changing its properties.
3115
3116 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
3117
3118 * dired.el (dired-mode-map): Change menu items for tumme as per
3119 suggestions in emacs-devel.
3120
3121 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
3122
3123 * dired.el (dired-mode-map): Fix breakage.
3124
3125 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
3126
3127 * tumme.el (tumme-display-dired-image): Rename to...
3128 (tumme-dired-display-image): ...this.
3129 (tumme-track-movement): Change default value to t.
3130 (tumme-display-thumbs): Add new optional parameter DO-NOT-POP,
3131 used from `tumme-next-line-and-display' and similar commands.
3132
3133 * dired.el (dired-mode-map): Add Thumbnail submenu under the
3134 Immediate menu. Add some tumme commands there.
3135
3136 2006-05-24 Luc Teirlinck <teirllm@auburn.edu>
3137
3138 * loadup.el ("jka-cmpr-hook"): Load it before it is needed.
3139
3140 2006-05-24 Chong Yidong <cyd@mit.edu>
3141
3142 * menu-bar.el, international/mule-cmds.el: Remove tooltips for
3143 menu entries that open submenus.
3144
3145 2006-05-24 Alan Mackenzie <acm@muc.de>
3146
3147 * startup.el (command-line): For names of preloaded files, don't
3148 append ".elc" (now done in Fload), and call file-truename on the
3149 lisp directory.
3150
3151 * subr.el (eval-after-load): Fix the doc-string. Allow FILE to
3152 match ANY loaded file with the right name, not just those in
3153 load-path. Put a regexp matching the file name into
3154 after-load-alist, rather than the name itself.
3155
3156 * subr.el: New functions load-history-regexp,
3157 load-history-filename-element, do-after-load-evaluation.
3158
3159 * international/mule.el (load-with-code-conversion): Do the
3160 eval-after-load stuff by calling do-after-load-evaluation.
3161
3162 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
3163
3164 * progmodes/gud.el (gud-sentinel): Condition on GUD buffer if it
3165 has not been killed.
3166
3167 2006-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3168
3169 * term/mac-win.el: Set idle timer to clean up expired Apple events.
3170 (mac-ae-get-url): Redispatch Apple event on unknown scheme.
3171 (mac-dispatch-apple-event): Resume Apple event if it is suspended.
3172 Optionally set error message in reply.
3173
3174 2006-05-24 Carsten Dominik <dominik@science.uva.nl>
3175
3176 * textmodes/org.el (org-open-at-point): Use renamed variable
3177 `org-confirm-shell-link-function'.
3178 (org-confirm-shell-link-function): Rename from
3179 `org-confirm-shell-links'.
3180 (org-export-directory): New function.
3181 (org-export-as-ascii, org-export-as-html, org-export-as-xoxo)
3182 (org-export-icalendar): Use `org-export-directory'.
3183 (org-indent-item): Keep cursor position.
3184 (org-link-file-path-type): New option.
3185 (org-export-as-html): Fix bug with plain lists starting in
3186 column 0.
3187 (org-export-as-html): Remove deadline formatting, this happens
3188 now already in `org-html-handle-time-stamps'.
3189 (org-export-html-style): Deadline class removed.
3190 (org-insert-labeled-timestamps-at-point): New option.
3191 (org-cycle, org-occur, org-scan-tags): Use `org-overview' instead
3192 of `hide-sublevels 1', in case the first headline is not level 1.
3193 (org-overview, org-content): New fuction.
3194 (org-cycle-global-status, org-cycle-subtree-status): Make these
3195 variables buffer-local.
3196 (org-global-cycle): New command.
3197 (org-shifttab): Use `org-global-cycle'.
3198 (org-insert-heading, org-insert-item): Go to end of new
3199 headline/item after creating it.
3200 (org-export-visible): Rename from `org-export-copy-visible'.
3201 Now creates a temporary org-file and applies an exporting command
3202 to it.
3203 (org-table-eval-formula): Support for lisp forms.
3204 (org-agenda-todo-ignore-scheduled): New option.
3205 (org-agenda-get-todos): Use new option
3206 `org-agenda-todo-ignore-scheduled'.
3207 (org-export-html-inline-images): New value `maybe'.
3208 (org-export-as-html): Inlining of images dependent on link description.
3209 (org-archive-subtree): Check for end-of-buffer before trying
3210 `kill-line'.
3211 (org-agenda-follow-mode): New option.
3212 (org-export-with-tags, org-export-with-timestamps): New options.
3213 (org-html-handle-time-stamps): New function.
3214 (org-keyword-time-regexp): New variable.
3215 (org-agenda-get-todos): Use `org-agenda-todo-list-sublevels'.
3216 (org-agenda-todo-list-sublevels): New option.
3217 (org-html-level-start): When TITLE is nil, just close all levels.
3218 (org-parse-key-lines, org-parse-export-options): Remove functions,
3219 replaced by `org-infile-export-plist'.
3220 (org-combine-plists, org-infile-export-plist)
3221 (org-default-export-plist): New functions.
3222 (org-export-html-preamble, org-export-html-postamble)
3223 (org-export-html-auto-preamble, org-export-html-auto-postamble):
3224 New variables.
3225 (org-export-publishing-directory): New option.
3226 (org-export-as-html, org-export-as-ascii): Use the new property
3227 lists for settings.
3228 (org-export-copy-visible, org-export-as-xoxo):
3229 Respect `org-export-publishing-directory'.
3230 (org-link-search, org-store-link, org-file-apps): Support for
3231 links to BibTeX database entries..
3232 (org-get-current-options, org-set-regexps-and-options):
3233 Implement logging as a startup option.
3234 (org-store-link): Make sure context string is never empty
3235 (org-insert-link): Use relative path when possible.
3236 (org-at-item-checklet-p): New function.
3237 (org-shifttab, org-shiftmetaleft, org-shiftmetaright)
3238 (org-shiftmetaup, org-shiftmetadown, org-metaleft)
3239 (org-metaright, org-metaup, org-metadown, org-shiftup)
3240 (org-shiftdown, org-shiftright, org-shiftleft)
3241 (org-ctrl-c-ctrl-c, org-cycle, org-return, org-meta-return):
3242 Dispatch using `call-interactively'.
3243 (org-call-with-arg): New defsubst.
3244 (org-tag-alist, org-use-fast-tag-selection): New options.
3245 (org-complete): Use `org-tag-alist'.
3246 (org-fast-tag-insert, org-fast-tag-selection): New functions.
3247 (org-next-item, org-previous-item): New commands.
3248 (org-beginning-of-item, org-end-of-item): Add (interactive) to
3249 make command.
3250 (org-shiftup, org-shiftdown): Accommodate the item-navigation commands.
3251
3252 2006-05-23 Thien-Thi Nguyen <ttn@gnu.org>
3253
3254 * emacs-lisp/ewoc.el (ewoc-delete): New function.
3255 (ewoc-filter): Use `ewoc-delete'.
3256
3257 * emacs-lisp/bindat.el (bindat-pack): Doc fix.
3258
3259 2006-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
3260
3261 * textmodes/bibtex.el (bibtex-format-entry, bibtex-clean-entry):
3262 Signal more user-friendly error messages.
3263
3264 * complete.el (PC-do-completion): Undo the addition of implicit
3265 wildcards if they did not lead to finding any match.
3266 (read-file-name-internal): Don't add the final > if the completion is
3267 not finished.
3268
3269 2006-05-22 Reiner Steib <Reiner.Steib@gmx.de>
3270
3271 * textmodes/bibtex.el (bibtex-maintain-sorted-entries):
3272 Quote safe-local-variable predicate.
3273
3274 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
3275
3276 * emacs-lisp/ewoc.el (ewoc-set-data): New function.
3277
3278 2006-05-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3279
3280 * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as safe.
3281
3282 * progmodes/make-mode.el (makefile-special-targets-list)
3283 (makefile-macro-table, makefile-target-table): Mark as risky.
3284 (makefile-query-one-target-method): Make this the alias for the
3285 following variable.
3286 (makefile-query-one-target-method-function): Make this the real name.
3287
3288 * textmodes/artist.el (artist-text-renderer): Make this the alias
3289 for the following variable.
3290 (artist-text-renderer-function): Make this the real name.
3291
3292 * textmodes/flyspell.el (flyspell-generic-check-word-p): Make this
3293 the alias for the following variable.
3294 (flyspell-generic-check-word-predicate): Make this the real name.
3295
3296 * textmodes/ispell.el (ispell-format-word): Make this the alias
3297 for the following variable.
3298 (ispell-format-word-function): Make this the real name.
3299 (ispell-message-text-end): Mark as risky.
3300
3301 * skeleton.el (skeleton-transformation, skeleton-filter)
3302 (skeleton-pair-filter): Make these the aliases for the following
3303 variables.
3304 (skeleton-transformation-function, skeleton-filter-function)
3305 (skeleton-pair-filter-function): Make these the real names.
3306
3307 * progmodes/sh-script.el (sh-mode): Use skeleton-filter-function
3308 and skeleton-pair-filter-function.
3309
3310 * textmodes/sgml-mode.el (sgml-transformation): Make this the
3311 alias for the following variable.
3312 (sgml-transformation-function): Make this the real name.
3313 (sgml-tag-alist): Mark as risky.
3314
3315 2006-05-21 Richard Stallman <rms@gnu.org>
3316
3317 * simple.el (kill-region): Interactively, pass point, then mark.
3318
3319 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
3320
3321 * emacs-lisp/ewoc.el (ewoc-create): Add autoload cookie.
3322
3323 2006-05-21 Romain Francoise <romain@orebokech.com>
3324
3325 * dired-x.el (dired-mode-map): Don't bind M-g.
3326
3327 2006-05-20 Richard Stallman <rms@gnu.org>
3328
3329 * dired.el (dired-mode-map): Put dired-goto-file on j, not M-g.
3330 (dired-goto-file): Doc fix.
3331
3332 2006-05-21 Kim F. Storm <storm@cua.dk>
3333
3334 * emulation/cua-base.el: Mention customizing cua-mode as alternative
3335 way to enable built-in cua-mode if user loads older CUA-mode package.
3336
3337 * ido.el (ido-read-file-name): Bind ido-show-dot-for-dired to nil
3338 if default-filename is specified.
3339
3340 2006-05-20 Eli Zaretskii <eliz@gnu.org>
3341
3342 * menu-bar.el (menu-bar-manuals-menu) <info-apropos>: New menu item.
3343
3344 * info.el (info-apropos): Make sure current-file and current-node
3345 have non-nil values. Speed up by using add-to-list instead of
3346 manual consing.
3347
3348 2006-05-20 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
3349
3350 * progmodes/make-mode.el (makefile-mode): Doc fix.
3351
3352 2006-05-20 Eli Zaretskii <eliz@gnu.org>
3353
3354 * dired-aux.el (dired-do-shell-command): Doc fix.
3355
3356 2006-05-20 Kevin Ryde <user42@zip.com.au>
3357
3358 * info-xref.el (info-xref-check-all-custom): Skip :tag part of
3359 ``(custom-manual :tag "Foo" "(foo)Node")''.
3360
3361 2006-05-20 Karl Chen <quarl@cs.berkeley.edu>
3362
3363 * progmodes/cc-vars.el (c-backslash-column): Mark as safe if its
3364 value is an integer.
3365
3366 2006-05-20 Eli Zaretskii <eliz@gnu.org>
3367
3368 * mail/rmail.el (rmail-mime-charset-pattern): Add "?:" before
3369 "format".
3370 (rmail-convert-to-babyl-format): Undo the change from 2006-04-19.
3371
3372 2006-05-20 Martin Rudalics <rudalics@gmx.at>
3373
3374 * progmodes/hideif.el (show-ifdef-block): Fix bug where parts of
3375 a hidden block remained hidden if `hide-ifdef-lines' is non-nil.
3376
3377 2006-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
3378
3379 * progmodes/gud.el (gdb-script-font-lock-keywords): Use a stricter
3380 regexp for keywords.
3381
3382 2006-05-20 Masayuki FUJII <boochang@m4.kcn.ne.jp> (tiny change)
3383
3384 * dnd.el (dnd-get-local-file-name): Specify LITERAL in
3385 replace-regexp-in-string.
3386
3387 * term/w32-win.el (w32-drag-n-drop): Substitute '/' for '\',
3388 encode, and escape file name on conversion to URL.
3389
3390 2006-05-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3391
3392 * dnd.el (dnd-handle-one-url): Change 3rd arg ARG to URL.
3393 Don't unescape URL.
3394 (dnd-get-local-file-name): Unescape URL on conversion to file name.
3395
3396 * x-dnd.el (x-dnd-handle-file-name): Encode and escape file names
3397 on conversion to URLs.
3398
3399 * net/browse-url.el (browse-url-file-url): Encode file name on
3400 conversion to URL.
3401
3402 * term/mac-win.el (mac-ae-open-documents): Escape file name on
3403 conversion to URL.
3404
3405 2006-05-19 Eli Zaretskii <eliz@gnu.org>
3406
3407 * progmodes/cc-styles.el (c-style-alist): Doc fix.
3408
3409 2006-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3410
3411 * term/mac-win.el (mac-bytes-to-digits): Remove function.
3412 (mac-handle-toolbar-switch-mode): Use coercion instead of it.
3413
3414 2006-05-19 Glenn Morris <rgm@gnu.org>
3415
3416 * calendar/diary-lib.el (diary-bahai-date)
3417 (list-bahai-diary-entries, mark-bahai-diary-entries)
3418 (mark-bahai-calendar-date-pattern): Not interactive.
3419 (add-to-diary-list): New optional arg LITERAL. Doc fix.
3420 (diary-entries-list): Change format of 4th element in each entry.
3421 (diary-list-entries): Use add-to-diary-list.
3422 (diary-goto-entry): Handle the case where the buffer visiting the
3423 diary has been killed.
3424 (fancy-diary-display): Add 'locator to button rather than 'marker.
3425 Only generate temp-face when there are marks to apply.
3426 (list-sexp-diary-entries): Pass literal to add-to-diary-list.
3427 (diary-fancy-date-pattern): New variable.
3428 (diary-time-regexp): Doc fix.
3429 (diary-anniversary, diary-time): New faces.
3430 (fancy-diary-font-lock-keywords): Use diary-fancy-date-pattern and
3431 diary-time-regexp. Add font-lock-multiline property where needed.
3432 Use new faces diary-anniversary and diary-time.
3433 (diary-fancy-font-lock-fontify-region-function): New function, to
3434 handle multiline font-lock pattern in fancy diary.
3435 (fancy-diary-display-mode): Set font-lock-fontify-region-function.
3436 (diary-font-lock-keywords): Tweak time regexp. Use new face
3437 diary-time.
3438
3439 2006-05-19 Alexander Shopov <ash@contact.bg> (tiny change)
3440
3441 * international/code-pages.el (mik): Table corrected.
3442
3443 2006-05-18 Kim F. Storm <storm@cua.dk>
3444
3445 * progmodes/grep.el (grep-find): Don't check grep-find-command
3446 before running command (breaks non-interactive usage).
3447
3448 2006-05-18 Thien-Thi Nguyen <ttn@gnu.org>
3449
3450 * emacs-lisp/ewoc.el (ewoc--adjust): New func.
3451 (ewoc--insert-new-node): Don't insert trailing newline.
3452 Instead, adjust successor nodes's start markers.
3453 (ewoc--refresh-node): Delete all text from current node's start
3454 marker to the next one's; adjust successor nodes's start markers.
3455 (ewoc--create): Doc fixes.
3456 (ewoc--refresh): Don't insert newline.
3457 (ewoc--set-hf): Use `ewoc--set-buffer-bind-dll-let*'.
3458 * pcvs.el (cvs-make-cvs-buffer):
3459 Specify extra newline for ewoc's header and footer.
3460 (cvs-update-header): Update initial header recognition.
3461 Append newline to final header and footer values.
3462 * pcvs-info.el (cvs-fileinfo-pp): Insert trailing newline.
3463
3464 2006-05-17 Richard Stallman <rms@gnu.org>
3465
3466 * files.el (file-name-extension): Doc fix.
3467
3468 2006-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3469
3470 * shell.el (shell-dirtrack-mode): Make it into a proper minor mode, so
3471 we can explicitly enable/disable rather than toggle.
3472 (shell-mode): Use it.
3473 (shell-cd): Don't try to reproduce what `cd' does.
3474
3475 2006-05-17 Kim F. Storm <storm@cua.dk>
3476
3477 * ido.el (ido-read-internal): Use only nondirectory part of
3478 default item.
3479
3480 2006-05-17 Thien-Thi Nguyen <ttn@gnu.org>
3481
3482 * emacs-lisp/ewoc.el (ewoc-data): Add docstring.
3483 (ewoc-nth): Doc fix.
3484
3485 (ewoc-map, ewoc-invalidate): Compute PP before looping.
3486
3487 2006-05-16 Eli Zaretskii <eliz@gnu.org>
3488
3489 * international/mule.el (auto-coding-alist): Add .lha to files
3490 read with no-conversion.
3491
3492 * files.el (auto-mode-alist): Add .lha files to archive file
3493 extensions.
3494
3495 * arc-mode.el (archive-arc-summarize, archive-lzh-summarize):
3496 Convert csize to integer when computing offsets within the
3497 compressed archive file.
3498
3499 2006-05-16 Kim F. Storm <storm@cua.dk>
3500
3501 * subr.el (add-to-history): Add KEEP-ALL arg and align functionality
3502 with read-from-minibuffer.
3503
3504 2006-05-16 Reiner Steib <Reiner.Steib@gmx.de>
3505
3506 * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p): New function.
3507 (byte-compile-warnings): Fix safe-local-variable property.
3508
3509 2006-05-16 Ken Manheimer <ken.manheimer@gmail.com>
3510
3511 * allout.el (allout-show-bodies, allout-old-style-prefixes)
3512 (allout-stylish-prefixes, allout-numbered-bullet)
3513 (allout-file-xref-bullet, allout-use-hanging-indents): Use simple
3514 predicates to qualify `safe-local-variable' property, when
3515 available, else use equivalent lambda.
3516 (allout-current-topic-collapsed-p): Do the right thing regarding
3517 trailing blank lines.
3518
3519 2006-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
3520
3521 * server.el (server-start): Only create a directory if needed.
3522 (server-edit, server-unload-hook): server-start => server-mode.
3523 (kill-emacs-hook): Cleanup upon exit.
3524
3525 2006-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
3526
3527 * hexl.el (hexlify-buffer): Encode process arguments manually.
3528
3529 2006-05-16 Nick Roberts <nickrob@snap.net.nz>
3530
3531 * progmodes/gud.el (gud-tooltip-tips): Add missing argument to
3532 call to gdb-tooltip-print.
3533
3534 2006-05-15 Romain Francoise <romain@orebokech.com>
3535
3536 * dired-x.el (dired-guess-shell-gnutar): On GNU and GNU/Linux
3537 systems, default to "tar" since those systems probably have GNU tar.
3538
3539 2006-05-14 Lars Hansen <larsh@soem.dk>
3540
3541 * desktop.el (desktop-missing-file-warning): Fix docstring.
3542 (desktop-restore-file-buffer): Correct question asked on missing file.
3543
3544 2006-05-14 Kim F. Storm <storm@cua.dk>
3545
3546 * progmodes/cc-subword.el (c-forward-subword, c-backward-subword):
3547 Add CUA move property.
3548
3549 2006-05-13 Chong Yidong <cyd@stupidchicken.com>
3550
3551 * custom.el (custom-push-theme): Load the variable before checking
3552 its `standard-value'.
3553
3554 2006-05-13 Lars Hansen <larsh@soem.dk>
3555
3556 * desktop.el (desktop-save): Use with-temp-buffer.
3557
3558 2006-05-12 Glenn Morris <rgm@gnu.org>
3559
3560 * calendar/cal-menu.el (calendar-mode-map, calendar-mouse-3-map):
3561 * calendar/calendar.el (calendar-mode-map):
3562 * calendar/diary-lib.el (include-other-diary-files,diary-mail-entries):
3563 * calendar/appt.el (appt-check, appt-make-list): Refer to
3564 diary-view-entries, diary-list-entries, diary-show-all-entries
3565 rather than obsolete aliases.
3566
3567 2006-05-12 Chong Yidong <cyd@stupidchicken.com>
3568
3569 * simple.el (line-move-finish): Avoid calling point motion hooks
3570 while processing intangibility.
3571
3572 2006-05-12 Dan Nicolaescu <dann@ics.uci.edu>
3573
3574 * term/xterm.el (terminal-init-xterm): Fix typo.
3575
3576 2006-05-12 Ken Manheimer <ken.manheimer@gmail.com>
3577
3578 * allout.el (allout-view-change-hook): Mark as being deprecated,
3579 to be replaced by `allout-exposure-change-hook'.
3580 (allout-exposure-change-hook): New, replacing
3581 `allout-view-change-hook'.
3582 (allout-flag-region): Run new hook `allout-exposure-change-hook',
3583 in addition to `allout-view-change-hook'.
3584 (allout-show-bodies, allout-old-style-prefixes)
3585 (allout-stylish-prefixes, allout-use-hanging-indents): Quote the
3586 lambda forms to prevent their showing up in variable help
3587 presentations as inscrutable byte-compiled code.
3588 (allout-numbered-bullet, allout-file-xref-bullet, allout-layout):
3589 Use string-or-null-p to qualify safe-local-variable values.
3590 (allout-reindent-bodies): Use memq to qualify matches against
3591 valid safe-local-variable values. Also, quote the lambda as above.
3592 (allout-use-mode-specific-leader): Add missing candidate-value
3593 symbols, use memq, and quote the lambda.
3594 (allout-overlay-interior-modification-handler): Remove unused
3595 variables `msg' and 'opened'.
3596 (allout-hidden-p): Constrain invisibility consideration to allout's
3597 invisibility spec, disregarding invisibility for other reasons.
3598
3599 2006-05-12 Reiner Steib <Reiner.Steib@gmx.de>
3600
3601 * files.el (version-control): Correct safe values.
3602
3603 2006-05-12 Thien-Thi Nguyen <ttn@gnu.org>
3604
3605 * emacs-lisp/ewoc.el (ewoc-refresh): Compute PP once before looping.
3606
3607 (ewoc--node-enter-before, ewoc--create-node): Delete funcs.
3608 (ewoc--insert-new-node): New func.
3609 Update callers of deleted funcs to use it, instead.
3610
3611 2006-05-11 Glenn Morris <rgm@gnu.org>
3612
3613 * calendar/calendar.el (diary-show-all-entries): Do not refer to
3614 obsolete alias `show-all-diary-entries'.
3615 (make-diary-entry): Not interactive.
3616 (cal-tex-cursor-month, cal-tex-cursor-month-landscape)
3617 (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
3618 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
3619 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3620 (cal-tex-cursor-year-landscape, cal-tex-cursor-filofax-year)
3621 (cal-tex-cursor-filofax-daily, cal-tex-cursor-year): Interactive.
3622
3623 2006-05-11 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
3624
3625 * calendar/calendar.el (calendar-french-date-string)
3626 (calendar-mayan-date-string, calendar-chinese-date-string)
3627 (calendar-astro-date-string, calendar-iso-date-string)
3628 (calendar-islamic-date-string, calendar-bahai-date-string)
3629 (calendar-hebrew-date-string, calendar-coptic-date-string)
3630 (calendar-ethiopic-date-string, calendar-persian-date-string):
3631 These functions are not interactive.
3632
3633 2006-05-11 Luc Teirlinck <teirllm@auburn.edu>
3634
3635 * files.el: Balance parentheses.
3636
3637 2006-05-11 Reiner Steib <Reiner.Steib@gmx.de>
3638
3639 * files.el, newcomment.el, outline.el, simple.el,
3640 emacs-lisp/bytecomp.el, progmodes/cc-compat.el,
3641 progmodes/cc-vars.el, progmodes/compile.el:
3642 Move `safe-local-variable' declarations to the respective files.
3643
3644 * help-fns.el (describe-variable): Don't print safe-var if it is
3645 byte-code. Improve wording as suggested by Luc Teirlinck.
3646
3647 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
3648
3649 * progmodes/gdb-ui.el (gdb-reset): Update speedbar if necessary.
3650 (gdb-var-evaluate-expression-handler, gdb-var-update-handler):
3651 Use a token for pending-triggers to ensure gdb-var-update
3652 gets called once per user input again for pre-GDB 6.4.
3653 (gdb-var-delete): Match on more complex expressions.
3654 (gdb-var-list-children-handler, gdb-var-create-handler):
3655 Use a token for consistency.
3656
3657 2006-05-11 Carsten Dominik <dominik@science.uva.nl>
3658
3659 * textmodes/org.el (org-read-date, org-goto-calendar)
3660 (org-agenda-goto-calendar):
3661 Bind `view-calendar-holidays-initially' to nil.
3662
3663 2006-05-11 Thien-Thi Nguyen <ttn@gnu.org>
3664
3665 * emacs-lisp/ewoc.el (ewoc--refresh-node): No longer save-excursion.
3666 Update all callers to do it there, instead.
3667
3668 2006-05-10 Glenn Morris <rgm@gnu.org>
3669
3670 * calendar/calendar.el (calendar-basic-setup): Set day to 1 in
3671 prefix arg case, to avoid view-diary-entries-initially error.
3672 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
3673 (calendar-date-is-legal-p): Handle dates with no day part.
3674
3675 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
3676
3677 * comint.el (comint-insert-input): Just make it when
3678 comint-use-prompt regexp is nil (default) and with the mouse.
3679 (comint-copy-old-input): Reinstate from 2004-06-23.
3680 (comint-mode-map): Bind C-c C-m to it.
3681
3682 2006-05-10 J.D. Smith <jdsmith@as.arizona.edu>
3683
3684 * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
3685 Remove spurious move to point-max (new comint behavior fixes).
3686
3687 * progmodes/idlwave.el (idlwave-push-mark): Removed obsolete
3688 compatibility function (Emacs 18/19).
3689 (idlwave-is-continuation-line): Always return point at start of
3690 previous non-blank continuation line.
3691 `keyword-parameters': Fix continued comment font-lock matcher.
3692 (idlwave-font-lock-fontify-region): Written, use as
3693 font-lock-fontify-region-function, to fix continued keyword
3694 fontification issues.
3695
3696 2006-05-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3697
3698 * term/mac-win.el (mac-font-panel-mode): Doc fix.
3699 (mac-service-selection, mac-service-open-file)
3700 (mac-service-open-selection, mac-service-mail-selection)
3701 (mac-service-mail-to, mac-service-insert-text): Rename from
3702 mac-services-*. All uses changed.
3703 (mac-apple-event-map): Rename event symbol `services' to `service'.
3704
3705 2006-05-10 Thien-Thi Nguyen <ttn@gnu.org>
3706
3707 * emacs-lisp/ewoc.el (ewoc--dll-create, ewoc--node-delete)
3708 (ewoc--node-enter-first, ewoc--node-enter-last)
3709 (ewoc--delete-node-internal): Merge funcs into unique callers.
3710
3711 2006-05-09 Chong Yidong <cyd@stupidchicken.com>
3712
3713 * emacs-lisp/crm.el (completing-read-multiple): Properly handle
3714 return value of read-from-minibuffer for empty input.
3715
3716 2006-05-09 Miles Bader <miles@gnu.org>
3717
3718 * comint.el (comint-insert-input): Remove redundant calls to setq
3719 and goto-char.
3720
3721 2006-05-10 Nick Roberts <nickrob@snap.net.nz>
3722
3723 * comint.el (comint-insert-input): Make it work when
3724 comint-use-prompt-regexp is t.
3725
3726 2006-05-10 Miles Bader <miles@gnu.org>
3727
3728 * subr.el (field-at-pos): New function.
3729
3730 * comint.el (comint-insert-input): Use it.
3731
3732 2006-05-09 Juri Linkov <juri@jurta.org>
3733
3734 * battery.el (battery-linux-proc-acpi): Also try
3735 `/proc/acpi/thermal_zone/THR2/temperature'.
3736
3737 * files.el <safe-local-variable>: Remove `eval' and `let' binding
3738 for now unused lambda `string-or-null'.
3739
3740 * add-log.el (change-log-default-name): Put `string-or-null-p'
3741 instead of lambda on `safe-local-variable' property.
3742
3743 * diff-mode.el (diff-context->unified): Use `region-beginning' and
3744 `region-end' instead of `mark' and `point'.
3745 (diff-unified->context, diff-reverse-direction, diff-fixup-modifs):
3746 Operate on region in Transient Mark mode when the mark is active.
3747 Use `region-beginning' and `region-end' instead of `mark' and
3748 `point'.
3749 (diff-hunk-text, diff-goto-source): Doc fix.
3750
3751 * startup.el (fancy-splash-screens, normal-splash-screen): Use
3752 face `mode-line-buffer-id' for mode-line buffer face instead of
3753 hard-coded `(:weight bold)'.
3754
3755 * arc-mode.el (archive-set-buffer-as-visiting-file): Bind
3756 buffer-undo-list to t (undo-ask is reproducible by visiting
3757 nested archives).
3758
3759 2006-05-09 Kim F. Storm <storm@cua.dk>
3760
3761 * progmodes/grep.el (rgrep): Set default directory of *grep*
3762 buffer if we start M-x rgrep in the *grep* buffer and choose
3763 a different base directory.
3764
3765 2006-05-09 Michael Albinus <michael.albinus@gmx.de>
3766
3767 * net/tramp.el (tramp-register-file-name-handlers): Enable Tramp
3768 completion also when ido is loaded.
3769
3770 2006-05-09 Masatake YAMATO <jet@gyve.org>
3771
3772 * font-lock.el (cpp-font-lock-keywords-source-directives): Addded
3773 "warning" and "import".
3774 (cpp-font-lock-keywords): Added "warning".
3775
3776 2006-05-08 Dan Nicolaescu <dann@ics.uci.edu>
3777
3778 * term/xterm.el (terminal-init-xterm): Add more key bindings.
3779
3780 2006-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
3781
3782 * mwheel.el (mwheel-scroll): Make sure that when scrolling multiple
3783 pages at a time, if we signal the end, we should indeed reach that end.
3784
3785 2006-05-08 David Reitter <david.reitter@gmail.com>
3786
3787 * emacs-lisp/easy-mmode.el (define-minor-mode): Only preserve messages
3788 output during execution of the body.
3789
3790 2006-05-08 Kim F. Storm <storm@cua.dk>
3791
3792 * progmodes/grep.el (lgrep, rgrep): Doc fixes.
3793
3794 2006-05-08 Thien-Thi Nguyen <ttn@gnu.org>
3795
3796 * emacs-lisp/ewoc.el (ewoc--set-buffer-bind-dll-let*):
3797 Use with-current-buffer.
3798
3799 2006-05-07 Kim F. Storm <storm@cua.dk>
3800
3801 * subr.el (add-to-history): Remove keep-dups arg.
3802
3803 * kmacro.el (kmacro-push-ring): Let-bind history-delete-duplicates
3804 to nil around call to add-to-history.
3805
3806 2006-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
3807
3808 * emacs-lisp/syntax.el (syntax-ppss): Flush the cache before rather
3809 than after a buffer modification.
3810
3811 2006-05-08 Nick Roberts <nickrob@snap.net.nz>
3812
3813 * progmodes/gdb-ui.el (gdb-var-create-handler): Move speedbar
3814 call to...
3815 (gud-watch): ...here so speedbar is raised for already watched
3816 expressions.
3817 (gdb-speedbar-refresh): Delete function.
3818 (gdb-speedbar-update, gdb-speedbar-timer-fn): New functions.
3819 Use speedbar-timer-fn instead of speedbar-refresh (reverting
3820 earlier change).
3821 (gdb-var-evaluate-expression-handler)
3822 (gdb-var-list-children-handler-1, gdb-var-update-handler-1): Use it.
3823
3824 * speedbar.el (speedbar-timer-fn): Remove save-window-excursion.
3825 Update localized contents for all buffers except ignored modes.
3826
3827 2006-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3828
3829 * term/mac-win.el (mac-utxt-to-string): Use `eq' instead of `='.
3830 (mac-atsu-font-table, mac-font-panel-mode): Add defvars.
3831 (mac-bytes-to-digits, mac-handle-toolbar-switch-mode)
3832 (mac-handle-font-panel-closed, mac-handle-font-selection):
3833 New functions.
3834 (mac-font-panel-mode): New minor mode.
3835 (mac-apple-event-map): Add bindings for toolbar toggle button and
3836 font panel.
3837 (menu-bar-showhide-menu): Add mac-font-panel-mode.
3838
3839 2006-05-07 John Paul Wallington <jpw@pobox.com>
3840
3841 * ibuffer.el (ibuffer-compressed-file-name-regexp):
3842 Avoid `regexp-opt'; simplify regexp for readability.
3843
3844 2006-05-06 Eli Zaretskii <eliz@gnu.org>
3845
3846 * ldefs-boot.el (dired-do-redisplay, dired-maybe-insert-subdir):
3847 * files.el (buffer-stale-function):
3848 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
3849 * autorevert.el (global-auto-revert-non-file-buffers): Point Info
3850 links to the main manual, not to emacs-xtra.
3851
3852 2006-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3853
3854 * term/mac-win.el (mac-utxt-to-string): Don't make adjustment for
3855 MacJapanese if text is ASCII-only.
3856
3857 2006-05-06 Nick Roberts <nickrob@snap.net.nz>
3858
3859 * progmodes/gdb-ui.el (gdb-goto-breakpoint): Use or instead of
3860 unless so nil isn't returned.
3861 (gdb-setup-windows, gdb-restore-windows): Reset gdb-source-window.
3862
3863 2006-05-06 Kim F. Storm <storm@cua.dk>
3864
3865 * subr.el (add-to-history): New function.
3866
3867 * ediff.el (ediff-files, ediff-files3, ediff-merge-files)
3868 (ediff-merge-files-with-ancestor):
3869 * env.el (setenv):
3870 * isearch.el (isearch-update-ring):
3871 * server.el (server-visit-files):
3872 * progmodes/grep.el (lgrep, rgrep):
3873 * progmodes/vhdl-mode.el (vhdl-generate-makefile-1):
3874 * progmodes/xscheme.el (xscheme-insert-expression):
3875 Use add-to-history.
3876
3877 * kmacro.el (kmacro-push-ring): Use add-to-history.
3878 (kmacro-ring-length): Remove unused defun.
3879 (kmacro-start-macro): Use kmacro-push-ring.
3880
3881 2006-05-06 Thien-Thi Nguyen <ttn@gnu.org>
3882
3883 * emacs-lisp/ewoc.el (ewoc-create, ewoc-set-hf): Use `insert'
3884 directly instead of a lambda expression that calls it.
3885
3886 2006-05-06 Kim F. Storm <storm@cua.dk>
3887
3888 * avoid.el (mouse-avoidance-point-position): Use posn-at-point
3889 instead of compute-motion.
3890
3891 2006-05-05 Dan Nicolaescu <dann@ics.uci.edu>
3892
3893 * ibuffer.el (ibuffer-compressed-file-name-regexp): Undo previous
3894 change.
3895
3896 2006-05-05 Reiner Steib <Reiner.Steib@gmx.de>
3897
3898 * startup.el (command-line-1): Refer to "Pure Storage" on
3899 pure-space-overflow.
3900
3901 2006-05-05 Martin Rudalics <rudalics@gmx.at>
3902
3903 * emacs-lisp/re-builder.el (reb-update-overlays): Cycle through
3904 provided faces once they all have been used up.
3905
3906 2006-05-05 Eli Zaretskii <eliz@gnu.org>
3907
3908 * startup.el (normal-splash-screen, fancy-splash-screens-1): Add a
3909 reference to the Lisp manual to the warning about pure space
3910 overflow.
3911
3912 2006-05-05 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
3913
3914 * textmodes/ispell.el (ispell-buffer-local-dict): Add a `no-reload'
3915 argument to avoid the call to `ispell-internal-change-dictionary'
3916 when not needed.
3917 (ispell-change-dictionary): Use this argument and call
3918 `ispell-internal-change-dictionary' after the possible change
3919 to `ispell-local-dictionary'.
3920 (ispell-internal-change-dictionary): Check for a change in
3921 personal dictionary use too.
3922
3923 2006-05-05 Eli Zaretskii <eliz@gnu.org>
3924
3925 * startup.el (command-line): On MS-Windows, probe "~", not
3926 "~USER", for warning about non-existent home directory
3927
3928 * arc-mode.el (archive-l-e): New optional argument `float' means
3929 generate a float value.
3930 (archive-arc-summarize, archive-lzh-summarize)
3931 (archive-zip-summarize, archive-zoo-summarize): Invoke archive-l-e
3932 with 3rd argument non-nil when file's size is being computed.
3933 Format the file sizes with %8.0f instead of %8d.
3934
3935 2006-05-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3936
3937 * cus-start.el (all): Add mac-dnd-known-types.
3938
3939 * term/mac-win.el (mac-utxt-to-string, mac-string-to-utxt)
3940 (mac-TEXT-to-string, mac-string-to-TEXT, mac-furl-to-string)
3941 (mac-TIFF-to-string): New functions.
3942 (x-get-selection, x-selection-value)
3943 (mac-select-convert-to-string): Use them.
3944 (mac-text-encoding-mac-japanese-basic-variant): New constant.
3945 (mac-dnd-types-alist): New customization variable.
3946 (mac-dnd-handle-furl, mac-dnd-handle-hfs, mac-dnd-insert-utxt)
3947 (mac-dnd-insert-TEXT, mac-dnd-insert-TIFF, mac-dnd-drop-data)
3948 (mac-dnd-handle-drag-n-drop-event): New functions.
3949 (mac-drag-n-drop): Remove function.
3950 (global-map): Bind drag-n-drop and M-drag-n-drop to
3951 mac-dnd-handle-drag-n-drop-event.
3952
3953 2006-05-04 Karl Chen <quarl@NOSPAM.quarl.org>
3954
3955 * progmodes/perl-mode.el (perl-beginning-of-function):
3956 Skip anonymous subs.
3957
3958 2006-05-04 Dan Nicolaescu <dann@ics.uci.edu>
3959
3960 * ibuffer.el (ibuffer-compressed-file-name-regexp): Avoid loading
3961 regexp-opt at run time.
3962
3963 * term.el (term-handle-ansi-escape): Fix off by one error.
3964
3965 2006-05-04 Nick Roberts <nickrob@snap.net.nz>
3966
3967 * progmodes/gdb-ui.el (gdb-force-update): Delete variable...
3968 (gdb-init-1, gdb-post-prompt): ...and references to it.
3969 (gdb-frame-handler): Strip directory name from filename if present.
3970
3971 * progmodes/gud.el (gdb-force-update): Delete defvar
3972 (gud-speedbar-buttons): ...and references to it. Use window-start
3973 to try to keep positon in watch expression.
3974
3975 2006-05-03 Richard Stallman <rms@gnu.org>
3976
3977 * simple.el (next-history-element, previous-history-element): Doc fix.
3978
3979 * isearch.el (isearch-update-ring): Doc fix.
3980
3981 2006-05-03 Dan Nicolaescu <dann@ics.uci.edu>
3982
3983 * isearch.el (isearch-update-ring): Take history-delete-duplicates
3984 into consideration. Replace one arm ifs with whens.
3985
3986 2006-05-03 Nick Roberts <nickrob@snap.net.nz>
3987
3988 * progmodes/gdb-ui.el (gud-watch): Let user select an expression.
3989 (menu): Fix typo.
3990
3991 2006-05-02 Miles Bader <miles@gnu.org>
3992
3993 * replace.el (occur-engine): Bind `inhibit-field-text-motion' to t.
3994
3995 2006-05-02 Jay Belanger <belanger@truman.edu>
3996
3997 * calc/calc-embed.el (calc-override-minor-modes-map)
3998 (calc-override-minor-modes): New variables.
3999 (calc-do-embedded): Make sure that Calc keystrokes aren't
4000 overwritten by minor modes.
4001
4002 2006-05-02 Chong Yidong <cyd@mit.edu>
4003
4004 * msb.el (msb): If EVENT is a down event, read and discard the up event.
4005
4006 2006-05-02 Reiner Steib <Reiner.Steib@gmx.de>
4007
4008 * startup.el (command-line-1): Refer to Lisp manual when
4009 pure-space-overflow occurs.
4010
4011 * files.el (byte-compile-dynamic, byte-compile-dynamic-docstrings)
4012 (byte-compile-warnings, find-file-visit-truename, indent-tabs-mode)
4013 (left-margin, no-byte-compile, no-update-autoloads, truncate-lines)
4014 (version-control): Don't use `t' for safe-local-variable declarations.
4015
4016 2006-05-01 Richard Stallman <rms@gnu.org>
4017
4018 * diff-mode.el (diff-mode-shared-map): Don't bind M-W, M-U, M-C,
4019 M-r, M-R, M-A, M-SPC or M-DEL.
4020 (diff-mode-map): diff-refine-hunk now on C-c C-w
4021 (diff-mode-map): Bind C-c C-e, C-c C-n, C-c C-r, C-c C-u.
4022
4023 * help-mode.el (help-mode): view-exit-action calls delete-window
4024 only when it is safe and possible.
4025
4026 * simple.el (undo-outer-limit-truncate): Put quotes around buffer name
4027 in messages.
4028
4029 * emacs-lisp/warnings.el (display-warning, lwarn): Doc fixes.
4030
4031 * tool-bar.el (tool-bar-setup): Put Help and Preferences items
4032 in the default tool-bar-map.
4033
4034 2006-05-01 Michael Albinus <michael.albinus@gmx.de>
4035
4036 * net/tramp.el (tramp-completion-file-name-handler-alist)
4037 (tramp-run-real-handler, tramp-completion-run-real-handler)
4038 (tramp-completion-handle-file-name-all-completions)
4039 (tramp-completion-handle-file-name-completion): Autoload them.
4040 (tramp-completion-handle-file-exists-p)
4041 (tramp-completion-handle-file-name-directory)
4042 (tramp-completion-handle-file-name-nondirectory)
4043 (tramp-completion-handle-expand-file-name): Remove them.
4044 (tramp-handle-file-name-directory): Return the real directory name.
4045 Returning "/" only doesn't need to be necessary any longer.
4046 (tramp-file-name-handler): Make special attention when in hostname
4047 completion mode.
4048 (tramp-completion-file-name-handler): Revert patch from 2006-04-28.
4049 (tramp-register-file-name-handlers):
4050 Register `tramp-completion-file-name-handler' only when
4051 `partial-completion-mode' is enabled.
4052 (tramp-completion-handle-file-name-all-completions):
4053 Delete directory part from results.
4054 (tramp-get-completion-methods, tramp-get-completion-user-host):
4055 Discard deleting "/", it doesn't work after the change of
4056 `tramp-handle-file-name-directory' above.
4057
4058 2006-05-01 Kim F. Storm <storm@cua.dk>
4059
4060 * progmodes/grep.el (grep-expand-template): Use save-match-data
4061 and symbol-value.
4062
4063 2006-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4064
4065 * term/mac-win.el (mac-ae-open-documents, mac-drag-n-drop):
4066 Use select-frame-set-input-focus instead of raise-frame.
4067 (global-map): Bind M-drag-n-drop to mac-drag-n-drop.
4068
4069 2006-05-01 Nick Roberts <nickrob@snap.net.nz>
4070
4071 * progmodes/gud.el (gud-def): Add %c case.
4072 (gud-speedbar-buttons): Don't bind case-fold-search unnecessarily.
4073 (gud-format-command): Make match case sensitive. Match on %F.
4074
4075 2006-04-30 Glenn Morris <rgm@gnu.org>
4076
4077 * calendar/cal-tex.el (cal-tex-preamble-extra): New variable.
4078 (cal-tex-preamble): Use cal-tex-preamble-extra.
4079 (cal-tex-list-diary-entries): Refer to `diary-list-entries' rather
4080 than alias `list-diary-entries'.
4081
4082 2006-04-29 Dan Nicolaescu <dann@ics.uci.edu>
4083
4084 * help-fns.el (describe-variable): Add info about safe local variables.
4085
4086 2006-04-29 Richard Stallman <rms@gnu.org>
4087
4088 * bindings.el (mode-line-format): help-echo doc fixes.
4089
4090 * net/tramp.el (tramp-file-name-handler-alist): Delete
4091 expand-file-name and other operations that can cause spurious loading.
4092
4093 2006-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
4094
4095 * files.el (safe-local-variable-p): Remove support for the special
4096 value t.
4097
4098 * textmodes/paragraphs.el (sentence-end-without-space):
4099 Fix safety predicate.
4100 (sentence-end-double-space, sentence-end-without-period)
4101 (paragraph-ignore-fill-prefix):
4102 * textmodes/fill.el (colon-double-space):
4103 * abbrev.el (abbrev-mode): Tighten the safety predicate.
4104
4105 * subr.el (booleanp): New fun.
4106
4107 * textmodes/reftex-vars.el (reftex-guess-label-type):
4108 Tighten the safety predicate.
4109
4110 2006-04-28 Kim F. Storm <storm@cua.dk>
4111
4112 * progmodes/grep.el (defgroup grep): Doc fix.
4113 (grep-auto-highlight): Remove.
4114 (grep-template): New defcustom.
4115 (grep-find-template): Rename from grep-tree-template.
4116 (grep-files-aliases): Rename from grep-tree-files-aliases.
4117 Remove "all" alias, add "l" alias.
4118 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories): Remove.
4119 (grep-find-ignored-directories): New defcustom to replace
4120 grep-tree-ignore-CVS-directories, to facilitate ignoring
4121 subdirectories for multiple version control systems.
4122 (grep-mode-map): Add Recursive grep item to GREP menu.
4123 (grep-regexp-history, grep-files-history): New defvars.
4124 (grep-probe): New helper function.
4125 (grep-compute-defaults): Use it to simplify code.
4126 Adapt to name changes.
4127 Use `.' as base in grep-find-template rather than <D>.
4128 (grep): Remove superfluous highlight-regexp arg. Fix doc.
4129 Call grep-compute-defaults unconditionally.
4130 (grep-expand-keywords): New defconst.
4131 (grep-expand-template): Rename from grep-expand-command-macros.
4132 Simplify via grep-expand-keywords. Look at case-fold-search instead
4133 of grep-tree-ignore-case to add -i option.
4134 Bind case-fold-search to nil while matching keywords.
4135 (grep-tree-last-regexp, grep-tree-last-files): Remove.
4136 (grep-read-regexp, grep-read-files): New helper functions.
4137 (rgrep): Rename from grep-tree. Rework to use proper histories.
4138 Adapt to changes in defcustoms and functions above.
4139 (lgrep): New command, as grep, but using same interactive UI as rgrep.
4140
4141 2006-04-28 Michael Albinus <michael.albinus@gmx.de>
4142
4143 * net/tramp.el (tramp-completion-file-name-handler):
4144 Disable Tramp's functionality while loading Tramp itself.
4145 (tramp-register-file-name-handlers): That's a defsubst now.
4146 Code from `tramp-repair-jka-compr' moved here. Apply it via
4147 `after-init-hook'.
4148 (tramp-repair-jka-compr): Remove.
4149
4150 2006-04-27 Jay Belanger <belanger@truman.edu>
4151
4152 * calc-embed.el (calc-embedded-make-info): Use `math-read-expr' to
4153 read expression when `math-read-big-expr' doesn't work.
4154
4155 2006-04-27 Reiner Steib <Reiner.Steib@gmx.de>
4156
4157 * startup.el (command-line-1): Display warning when
4158 pure-space-overflow is non-nil.
4159
4160 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4161
4162 * textmodes/bibtex.el (bibtex-user-optional-fields): Mark as
4163 risky.
4164
4165 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4166
4167 * textmodes/bibtex.el (bibtex-url): New optional arg no-browse.
4168 Return the URL or nil if none can be generated.
4169
4170 2006-04-27 Nick Roberts <nickrob@snap.net.nz>
4171
4172 * progmodes/gud.el (gud-comint-buffer): Move forward to stop
4173 byte compiler warnings.
4174 (gud-basic-call, gud-find-expr): Let user select an expression
4175 for printing. Print expression as well as value in GUD buffer.
4176
4177 2006-04-17 Ken Manheimer <ken.manheimer@gmail.com>
4178
4179 * allout.el: Remove local autoload declaration for
4180 pgg-gpg-symmetric-key-p, since that's now done in pgg-gpg.el.
4181 (allout-show-bodies, allout-header-prefix, allout-primary-bullet)
4182 (allout-plain-bullets-string, allout-distinctive-bullets-string)
4183 (allout-use-mode-specific-leader, allout-old-style-prefixes)
4184 (allout-stylish-prefixes, allout-numbered-bullet)
4185 (allout-file-xref-bullet, allout-presentation-padding)
4186 (allout-use-hanging-indents, allout-reindent-bodies): Mark as
4187 safe-local-variable with suitable value spec, and add autoload
4188 cookie for loaddefs inclusion. We now use an explicit spec everywhere.
4189 (move-beginning-of-line, move-end-of-line): Repair so these compat
4190 functions now actually resituate the point, when appropriate.
4191
4192 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
4193
4194 * progmodes/cc-subword.el (c-subword-mode-map): Use command remapping.
4195
4196 * add-log.el (add-log-iso8601-time-zone): Make parameter optional.
4197 (add-log-iso8601-time-string): Fix call to format-time-string.
4198
4199 2006-04-26 Kim F. Storm <storm@cua.dk>
4200
4201 * subr.el (posn-string, posn-image, posn-object): Doc fix.
4202
4203 2006-04-26 Masatake YAMATO <jet@gyve.org>
4204
4205 * progmodes/asm-mode.el (asm-mode, asm-mode-syntax-table):
4206 Add support for "//" style comments. Remove `b' flag
4207 from ?* in `asm-mode-syntax-table'.
4208
4209 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
4210
4211 * follow.el: Use (featurep 'xemacs) everywhere.
4212 (follow-mode): Use define-minor-mode.
4213 (follow-mode-map): Move initialization into the declaration.
4214 Use command remapping.
4215 (follow-emacs-version-xemacs-p): Remove.
4216 (follow-submit-feedback): Remove.
4217
4218 * allout.el (allout-layout, allout-passphrase-verifier-string)
4219 (allout-passphrase-hint-string): Tighten up a bit the safety predicate.
4220
4221 * textmodes/reftex-vars.el (reftex-vref-is-default)
4222 (reftex-fref-is-default, reftex-guess-label-type):
4223 Tighten up a bit the safety predicate.
4224
4225 * textmodes/paragraphs.el (sentence-end-double-space)
4226 (sentence-end-without-period, sentence-end-without-space)
4227 (page-delimiter, paragraph-ignore-fill-prefix):
4228 Tighten up a bit the safety predicate.
4229
4230 * textmodes/fill.el (colon-double-space): Tighten up the safety pred.
4231
4232 * progmodes/python.el (python-continuation-line-p)
4233 (python-beginning-of-statement): syntax-ppss may return
4234 a negative depth.
4235 (python-mode): Don't forcefully enable font-lock.
4236
4237 * time-stamp.el (time-stamp-start, time-stamp-end)
4238 (time-stamp-inserts-lines): Tighten up a bit the safety predicate.
4239
4240 * add-log.el: Remove spurious * in docstrings.
4241 (add-log-time-zone-rule): Rename from change-log-time-zone-rule.
4242 (add-change-log-entry): Use it here, since it's not specific
4243 to iso8601.
4244 (add-log-iso8601-time-string): Don't use it here any more.
4245 (change-log-indent-text, change-log-indent): Rename from add-log-*.
4246
4247 * abbrev.el (abbrev-mode): Tighten up a bit the safety predicate.
4248
4249 2006-04-25 Ryan Yeske <rcyeske@gmail.com>
4250
4251 * net/rcirc.el (rcirc-print): Revert last change with ignored nicks.
4252 (rcirc-toggle-low-priority): Doc fix.
4253 (rcirc-handler-NOTICE): Remove beginning of line anchor in
4254 ChanServ regexp.
4255 (rcirc-startup-channels-alist): Connect to #rcirc by default, not
4256 #emacs.
4257 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Add variables.
4258 (rcirc-decode-coding-system): Use utf-8 as the default.
4259 (rcirc-multiline-minor-mode): Set the fill-column.
4260 (rcirc-format-response-string): Display bright and dim nicks.
4261 (rcirc-browse-url): Update interactive spec to fill ARG.
4262 (rcirc-bright-nick, rcirc-dim-nick): Add faces.
4263 (rcirc-print): Ignore dim-nick messages wrt modeline-activity.
4264
4265 2006-04-24 J.D. Smith <jdsmith@as.arizona.edu>
4266
4267 * textmodes/bibtex.el (bibtex-find-entry): Don't demand matching
4268 case for @Article, etc.
4269
4270 2006-04-23 Michael Albinus <michael.albinus@gmx.de>
4271
4272 * net/tramp.el (tramp-register-file-name-handlers): New defun.
4273 Added with autoload cookie.
4274 (tramp-unload-file-name-handlers): Rename from
4275 `tramp-unload-file-name-handler-alist'.
4276
4277 2006-04-23 Romain Francoise <romain@orebokech.com>
4278
4279 * comint.el (comint-match-partial-filename): Doc fix.
4280
4281 2006-04-21 Glenn Morris <rgm@gnu.org>
4282
4283 * calendar/cal-menu.el (calendar-mode-map): Refer to
4284 `diary-view-entries' rather than alias `view-diary-entries'.
4285 * calendar/diary-lib.el (view-other-diary-entries): Ditto.
4286
4287 2006-04-21 Luc Teirlinck <teirllm@auburn.edu>
4288
4289 * progmodes/antlr-mode.el (antlr-default):
4290 * cus-edit.el (custom-documentation):
4291 * faces.el (scroll-bar, border, cursor, mouse): Avoid nil spec
4292 in defface.
4293
4294 2006-04-21 Kim F. Storm <storm@cua.dk>
4295
4296 * image.el (image-type): New defun split out of create-image.
4297 (create-image): Use it.
4298
4299 2006-04-21 Carsten Dominik <dominik@science.uva.nl>
4300
4301 * textmodes/org.el (org-mode-map): Catch conflict with old allout.el.
4302 (org-open-at-point): Remove the "...done" message to keep output
4303 in the echo area visible.
4304 (org-export-as-xoxo): Fix call to `indent-region'.
4305
4306 2006-04-21 Kevin Ryde <user42@zip.com.au>
4307
4308 * international/mule.el (keyboard-coding-system): defcustom
4309 info-link fixes: "Specify Coding" has been split, keyboard now in
4310 "Terminal Coding", and "Single-Byte Character Support" is now
4311 "Unibyte Mode".
4312
4313 2006-04-21 Nick Roberts <nickrob@snap.net.nz>
4314
4315 * progmodes/gdb-ui.el (gdb-data-list-register-values-handler):
4316 Use font-lock-warning-face for any errors e.g. no stack.
4317 (gdb-stack-list-locals-handler): Display any errors e.g. no stack.
4318
4319 2006-04-20 Dan Nicolaescu <dann@ics.uci.edu>
4320
4321 * progmodes/sh-script.el (sh-shell): Mark as safe.
4322
4323 * newcomment.el (comment-start, comment-start-skip)
4324 (comment-end-skip, comment-end): Mark as safe.
4325
4326 2006-04-20 Carsten Dominik <dominik@science.uva.nl>
4327
4328 * textmodes/org.el (org-deadline-announce): Face removed.
4329 (org-level-faces, org-n-levels): Convert to constant.
4330 (org-compatible-face): New function.
4331 (org-hide, org-level-1, org-level-2, org-level-3, org-level-4)
4332 (org-level-5, org-level-6, org-level-7, org-level-8)
4333 (org-special-keyword, org-warning, org-headline-done, org-link)
4334 (org-date, org-tag, org-todo, org-done, org-table, org-formula)
4335 (org-scheduled-today, org-scheduled-previously, org-time-grid):
4336 Face definition revised for better color tty support.
4337 (org-bold-re, org-italic-re, org-underline-re): New constants.
4338 (org-set-font-lock-defaults): Use the new constants.
4339 (org-agenda-highlight-todo): New function.
4340 (org-agenda-todo): Fix bug with point at end of line.
4341 (org-agenda-change-all-lines, org-finalize-agenda-entries):
4342 Fontify TODO keywords.
4343 (org-insert-link): Preserve relative path in ../ links.
4344 (org-export-as-html): Convert links pointing to .org files into
4345 links that will work beteen the exported HTML files.
4346 (org-todo-list): Fix bug when arg=0.
4347 (org-insert-heading): More fine-tuning.
4348
4349 2006-04-19 Romain Francoise <romain@orebokech.com>
4350
4351 * mail/rmail.el (rmail-convert-to-babyl-format): Use second group
4352 from `rmail-mime-charset-pattern'.
4353
4354 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
4355
4356 * progmodes/python.el (python-mode): Fix typo.
4357
4358 2006-04-18 J.D. Smith <jdsmith@as.arizona.edu>
4359
4360 * comint.el (comint-previous-input): Don't clobber input line
4361 when moving off either end of the input history ring.
4362 (comint-delete-input): New function, used by
4363 `comint-previous-input' and others.
4364 (comint-previous-matching-input):
4365 Use `coming-delete-input'. Save the partial input if leaving the
4366 edit line. Goto point-max before deleting input to avoid
4367 partial input fragments hanging around.
4368 (comint-restore-input): New function, used by `comint-previous-input'.
4369
4370 2006-04-18 Luc Teirlinck <teirllm@auburn.edu>
4371
4372 * imenu.el (imenu--index-alist): Balance parentheses.
4373
4374 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
4375
4376 * progmodes/python.el (python-mode): Add support for hs-minor-mode.
4377
4378 2006-04-19 Reiner Steib <Reiner.Steib@gmx.de>
4379
4380 * abbrev.el (read-abbrev-file): Use abbrev-file-name if optional
4381 file is nil.
4382
4383 2006-04-18 Richard Stallman <rms@gnu.org>
4384
4385 * tooltip.el (tooltip-mode, tooltip-use-echo-area): Doc fixes.
4386
4387 * imenu.el (imenu-create-index-function, imenu--index-alist)
4388 (imenu--last-menubar-index-alist, imenu--make-index-alist)
4389 (imenu-default-create-index-function, imenu--generic-function):
4390 Doc fixes.
4391
4392 * image-mode.el (image-toggle-display): Handle tar and arc subfiles.
4393
4394 * help-mode.el (help-mode): Set view-exit-action to delete window.
4395
4396 * env.el (setenv): Get rid of arg UNSET. Interactive unsetting
4397 now works by passing nil as arg.
4398
4399 * apropos.el (apropos-print): Don't do where-is on self-insert-command.
4400
4401 * abbrev.el (edit-abbrevs-redefine): Temporarily widen.
4402 (read-abbrev-file): Provide default when reading filename.
4403
4404 * files.el (enable-local-variables): Allow :all as value.
4405 (hack-local-variables): Implement that value.
4406 (safe-local-variable-values, safe-local-eval-forms)
4407 (enable-local-variables): Mark as risky.
4408 (find-file-visit-truename, kept-old-versions): Mark safe.
4409
4410 * time-stamp.el (time-stamp-format, time-stamp-line-limit)
4411 (time-stamp-start, time-stamp-end, time-stamp-inserts-lines)
4412 (time-stamp-count, time-stamp-pattern): Add safe-local-variable prop.
4413
4414 2006-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
4415
4416 * progmodes/tcl.el (tcl-send-string, tcl-send-region):
4417 Use forward-line so as to get to BOL even in the presence of fields.
4418 (tcl-eval-region): Strip surrounding space to avoid multiple prompts
4419 in return.
4420 (inferior-tcl): Tell tclsh to work in interactive mode.
4421
4422 * complete.el (partial-completion-mode):
4423 Use 'choose-completion-string-functions to make sure that
4424 choose-completion fills the minibuffer properly.
4425
4426 * complete.el (PC-old-read-file-name-internal): Remove.
4427 (PC-read-include-file-name-internal): Remove. Turn it into an advice
4428 of read-file-name-internal.
4429 (partial-completion-mode): Enable/disable this advice.
4430
4431 2006-04-18 Juanma Barranquero <lekktu@gmail.com>
4432
4433 * net/tramp.el (tramp-completion-file-name-handler): Revert change
4434 of 2006-04-17.
4435
4436 2006-04-18 Carsten Dominik <dominik@science.uva.nl>
4437
4438 * textmodes/org.el (org-insert-heading): Insert heading before
4439 current if at beginning of line.
4440 (org-todo, org-date): New faces.
4441 (org-table-align): Make sure tooltip window contains full text.
4442 (org-no-properties): New defsubst.
4443 (org-set-font-lock-defaults): Use new faces.
4444
4445 2006-04-18 Nick Roberts <nickrob@snap.net.nz>
4446
4447 * progmodes/gud.el (gud-speedbar-item-info): Display frame address
4448 for root variables.
4449
4450 * progmodes/gdb-ui.el (gdb-pc-address): Rename from gdb-frame-address.
4451 (gdb-frame-address): Re-use to identify frame for watch expression.
4452 (gdb-var-list, gdb-var-create-handler): Add frame address for root
4453 variables.
4454 (gdb-init-1, gdb-source, gdb-post-prompt)
4455 (gdb-assembler-custom, gdb-invalidate-assembler): Use gdb-pc-address.
4456 (gdb-frame-handler): Get gdb-frame-address.
4457
4458 2006-04-17 Michael Albinus <michael.albinus@gmx.de>
4459
4460 Sync with Tramp 2.0.53.
4461
4462 * net/tramp.el (tramp-completion-mode): ?\t has event-modifier
4463 'control. Reported by Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>.
4464 (tramp-completion-file-name-handler): Add autoload cookie for
4465 adding to `file-name-handler-alist'.
4466
4467 * net/tramp-smb.el (tramp-smb-wait-for-output): Wait always for
4468 the prompt. If it returns earlier (when detecting an error
4469 message), the rest of the output will merge accidently with the
4470 output of the next command. Reported by M Jared Finder
4471 <jared@hpalace.com>.
4472
4473 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
4474 for `process-file', in order to let it work for older Emacsen too.
4475
4476 2006-04-17 Ralf Angeli <angeli@iwi.uni-sb.de>
4477
4478 * textmodes/tex-mode.el (tex-font-lock-match-suscript): New function.
4479 (tex-font-lock-keywords-3): Use it.
4480
4481 2006-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
4482
4483 * newcomment.el (comment-add): New function.
4484 (comment-region-default, comment-dwim): Use it.
4485
4486 2006-04-15 Michael Olson <mwolson@gnu.org>
4487
4488 * emacs-lisp/tq.el: Improve comments.
4489 (tq-queue-head-question): New accessor function.
4490 (tq-queue-head-regexp, tq-queue-head-closure, tq-queue-head-fn):
4491 Update for modified queue structure.
4492 (tq-queue-add): Accept `question' argument.
4493 (tq-queue-pop): If a question is pending, send it.
4494 (tq-enqueue): Accept new optional argument `delay-question'.
4495 If this is non-nil, and at least one other question is pending a
4496 response, queue the question rather than sending it immediately.
4497
4498 2006-04-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4499
4500 * calendar/appt.el (appt-add): Check whether an appointment is
4501 already present in appt-time-msg-list. Simplify code.
4502
4503 2006-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4504
4505 * progmodes/cc-langs.el (c-mode-menu):
4506 Don't presume c-subword-mode is bound.
4507
4508 2006-04-13 Bill Wohler <wohler@newt.com>
4509
4510 * cus-edit.el (customize-package-emacs-version-alist): Update docstring.
4511 (customize-package-emacs-version): Use cdr instead of cadr now
4512 that alists use dotted pairs.
4513
4514 * custom.el (defcustom): Fix docstring for :package-version.
4515
4516 2006-04-13 Michael Albinus <michael.albinus@gmx.de>
4517
4518 * net/tramp.el (tramp-display-shell-command-buffer): New defvar.
4519 (tramp-handle-shell-command): Display output buffer only when
4520 `tramp-display-shell-command-buffer' is true.
4521 (tramp-handle-process-file): Set `tramp-display-shell-command-buffer'.
4522
4523 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
4524
4525 * textmodes/org.el (org-set-autofill-regexps): Set only the local
4526 values of `adaptive-fill-regexp' and `adaptive-fill-function'.
4527
4528 2006-04-13 Romain Francoise <romain@orebokech.com>
4529
4530 * pcvs-parse.el (cvs-parse-table): Use `with-temp-buffer' to avoid
4531 leaving temporary .cvsignore buffers behind.
4532
4533 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
4534
4535 * textmodes/org.el (org-set-regexps-and-options)
4536 (org-get-current-options): Better names for the startup folding
4537 options.
4538
4539 2006-04-13 Thien-Thi Nguyen <ttn@gnu.org>
4540
4541 * vc.el (vc-annotate): Arrange for point to end up at the same
4542 line number as in the original, but only when using a new buffer.
4543
4544 2006-04-12 Stuart Herring <herring@lanl.gov> (tiny change)
4545
4546 * files.el (hack-one-local-variable-eval-safep):
4547 Recognize `edebug-form-spec' for `put', but only if it passes
4548 `edebug-basic-spec'. Generalize `put' handling.
4549
4550 * emacs-lisp/edebug.el (edebug-basic-spec): New function for
4551 vetting file-local form specs.
4552
4553 * allout.el (allout-layout): Autoload its `safe-local-variable'
4554 property.
4555
4556 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
4557
4558 * textmodes/org.el (org-ctrl-c-ctrl-c): Improve documentation string.
4559 (org-agenda-mouse-1-follows-link)
4560 (org-mouse-1-follows-link): New options.
4561 (org-format-agenda-item): Fix bug if TAGS is nil.
4562 (org-agenda-get-scheduled): Quote `priority' symbol in plist.
4563
4564 2006-04-13 Nick Roberts <nickrob@snap.net.nz>
4565
4566 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers):
4567 GDB 6.1+ gives full filename for "info sources" so use
4568 file-name-nondirectory.
4569
4570 2006-04-12 Romain Francoise <romain@orebokech.com>
4571
4572 * subr.el (read-passwd): Bind `message-log-max' to nil.
4573
4574 2006-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4575
4576 * progmodes/perl-mode.el (perl-indent-new-calculate):
4577 Recompute parse-start after jumping backward by a whole sexp.
4578
4579 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4580
4581 * vc.el (vc-ensure-vc-buffer): Only change current-buffer, not the
4582 window configuration.
4583 (vc-annotate-display-select): Select the buffer so that current-buffer
4584 (and selected-window) is the output buffer at the end of vc-annotate.
4585
4586 2006-04-11 J.D. Smith <jdsmith@as.arizona.edu>
4587
4588 * vc.el (vc-annotate-color-map): Add custom TTY color map for
4589 8-color terminals, to use all of the colors in a sensible order.
4590 256-color terminals work well with the standard map.
4591 (vc-annotate-lines): Only strip the first color character if it
4592 is "#", to allow for terminal-style named colors.
4593 (vc-annotate-warp-version): Pass buf to `goto-line' to ensure
4594 the correct buffer is scrolled.
4595
4596 2006-04-11 Richard Stallman <rms@gnu.org>
4597
4598 * emacs-lisp/bytecomp.el (byte-compile-file):
4599 Bind enable-local-variables to :safe, and make normal-mode obey it.
4600
4601 * files.el (enable-local-variables): Allow value :safe.
4602 (normal-mode): Doc fix.
4603 (hack-local-variables): Implement enable-local-variables = :safe.
4604 (hack-local-variables-confirm): Don't prevent quitting.
4605
4606 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4607
4608 * loadhist.el (unload-feature): A bit of sanity check of
4609 load-history entries. Cancel timer-vars before unbinding them.
4610
4611 * hexl.el (hexl-isearch-search-function): Fix regexp-building code to
4612 quote special chars, and make the trick work on the hex part of the
4613 buffer as well.
4614 (hexl-mode, hexl-save-buffer, hexl-mode-exit)
4615 (hexl-maybe-dehexlify-buffer): Use restore-buffer-modified-p.
4616
4617 * startup.el (normal-splash-screen): Fix last change so we don't wait
4618 2 minutes if we don't show the splash screen.
4619
4620 2006-04-11 Carsten Dominik <dominik@science.uva.nl>
4621
4622 * textmodes/org.el (org-export-plain-list-max-depth)
4623 (org-table-spaces-around-separators)
4624 (org-radio-targets, org-activate-camels)
4625 (org-table-spaces-around-invisible-separators): Options removed.
4626 (org-time-stamp-rounding-minutes, org-remember-templates)
4627 (org-ellipsis, org-activate-links, org-descriptive-links):
4628 New options.
4629 (org-remember-apply-template, org-current-time)
4630 (org-finish-edit-table-field)
4631 (org-link-unescape, org-link-escape)
4632 (org-string-width, org-table-clean-line, org-html-do-expand)
4633 (org-edit-agenda-file-list, org-store-new-agenda-file-list)
4634 (org-read-agenda-file-list): New functions.
4635 (org-table-edit-field)
4636 (org-table-create-or-convert-from-region): New commands
4637 (org-table-toggle-vline-visibility): Command removed.
4638 (org-table-convert-region): Made a command.
4639 (orgtbl-deleta-backward-char,orgtbl-delete-char): Remove commands.
4640 Replace with the normal org- functions.
4641 (org-self-insert-command): Don't trigger realign unnecessarily
4642 when blanking a field that is not full.
4643 (org-mode): `Set buffer-invisibility-spec' for links.
4644 (org-activate-links2): Hide link part and only show descriptive
4645 part of the link.
4646 (org-insert-link): Modify for new linking system.
4647 (org-store-link): Store description separately, for use by
4648 `org-insert-link'.
4649 (org-table-align): Use `org-string-width'.
4650 (defgroup): Completely new group structure for custom variables.
4651 (org-agenda-files): Option: Single file name allowed. Function:
4652 Optional argument unrestrited means ignore any restricitons.
4653 (org-install-agenda-files-menu): Find a buffer in Org-mode before
4654 trying to modify the menu. Use generalized access to
4655 `org-agenda-files.'
4656 (org-agenda-list, org-todo-list, org-cycle-agenda-files)
4657 (org-agenda-file-to-front, org-remove-file, org-diary)
4658 (org-tags-view, org-export-icalendar-all-agenda-files)
4659 (org-export-icalendar-combine-agenda-files): Use generalized
4660 access to `org-agenda-files'.
4661 (org-remember-handler): Correctly preserve heading if present.
4662 (org-table-insert-row, org-table-insert-hline): Deal with
4663 invisible characters.
4664
4665 2006-04-10 J.D. Smith <jdsmith@as.arizona.edu>
4666
4667 * vc.el (vc-annotate-display-mode): Made default 'fullscale.
4668 (vc-annotate-color-map): New 18 element constant
4669 value/saturation, rotating hue colormap, from red->blue.
4670 (vc-annotate-mode-menu): "Default" -> "By Color Map Range".
4671 (vc-annotate-display-select): Switch to annotate-mode elsewhere.
4672 (vc-annotate): To avoid killing the required local variables,
4673 set them before the end of `with-output-to-temp-buffer', and
4674 after first switching to annotate-mode.
4675 (vc-annotate-warp-version): Add buffer argument in goto-line to
4676 ensure annotation, not source, is scrolled.
4677
4678 2006-04-10 Bill Wohler <wohler@newt.com>
4679
4680 * custom.el (defcustom, custom-handle-keyword):
4681 Add :package-version keyword.
4682 (custom-add-package-version): New function. Sets value of new
4683 property 'custom-package-version from :package-version keyword.
4684 (defcustom): Create Common Keywords section in docstring.
4685 (defface, defgroup): Replace definitions of a select few keywords
4686 with a reference to the Common Keywords in defcustom.
4687 (defcustom, defface, defgroup): Replace reference to Customization
4688 chapter in manual with hyperlink.
4689
4690 * cus-edit.el (customize-package-emacs-version-alist):
4691 New variable.
4692 (customize-changed-options): Add check for custom-package-version.
4693 (customize-package-emacs-version): New function to look up Emacs
4694 version corresponding to the given package version.
4695
4696 * emacs-lisp/find-func.el (find-function-regexp): Allow dashes in
4697 defun name, in similar fashion to find-variable-regexp.
4698
4699 2006-04-10 Eli Zaretskii <eliz@gnu.org>
4700
4701 * international/mule-cmds.el (set-locale-environment): Fix last
4702 change for when the locale's preferences don't specify any encoding.
4703
4704 2006-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
4705
4706 * emacs-lisp/find-func.el (find-function-search-for-symbol): Fix regexp
4707 so the defined var/fun doesn't need to be quoted.
4708
4709 2006-04-10 Richard Stallman <rms@gnu.org>
4710
4711 * finder.el (finder-mode-map): Add n and p bindings.
4712
4713 2006-04-10 Nick Roberts <nickrob@snap.net.nz>
4714
4715 * progmodes/gdb-ui.el (gdb-init-1): Re-initialise gdb-main-file to nil.
4716 (gdb-get-version): Make it work for pre "interpreter mi" (GDB 5.3?).
4717 (gdb-setup-windows): Put something in source window if we can't find
4718 the source file.
4719 (gdb-frame-handler): Make it work again with just assembly.
4720 (gdb-data-list-register-values-handler): Make it work when there is
4721 no stack.
4722
4723 2006-04-09 Richard Stallman <rms@gnu.org>
4724
4725 * mail/rmail.el (rmail-mime-charset-pattern): Ignore format and delsp
4726 specs while looking for charset.
4727
4728 * textmodes/picture.el (picture-mode-exit): Run picture-mode-exit-hook.
4729
4730 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
4731 Make them faces.
4732 (lm-font-lock-keywords): Update appropriately.
4733
4734 2006-04-10 Kim F. Storm <storm@cua.dk>
4735
4736 * simple.el (filter-buffer-substring): Add NOPROPS arg, so
4737 it can also replace buffer-substring-no-properties.
4738
4739 * emulation/cua-base.el (cua-delete-region, cua-paste)
4740 (cua-repeat-replace-region): Use filter-buffer-substring.
4741
4742 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
4743 (cua-cut-region-to-global-mark): Likewise.
4744
4745 * emulation/cua-rect.el (cua--extract-rectangle)
4746 (cua-incr-rectangle, cua--rectangle-aux-replace): Likewise.
4747
4748 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4749
4750 * textmodes/bibtex.el (bibtex-entry-update): New optional arg
4751 entry-type. Add field delimiters to numerical fields if they are
4752 not present.
4753
4754 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4755
4756 * textmodes/bibtex.el (bibtex-find-text-internal): Add new element
4757 string-const to return value.
4758 (bibtex-remove-delimiters): Use it.
4759
4760 2006-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
4761
4762 * emacs-lisp/bytecomp.el (byte-compile-form): Don't call
4763 cl-byte-compile-compiler-macro unless it exists.
4764
4765 2006-04-08 Eli Zaretskii <eliz@gnu.org>
4766
4767 * files.el (hack-local-variables-confirm) <offer-save>:
4768 Clarify message text. Suggested by Ralf Angeli.
4769
4770 2006-04-08 Michael Cadilhac <michael.cadilhac@lrde.org>
4771
4772 * rect.el (kill-rectangle): Don't barf if `kill-read-only-ok' is set.
4773 (delete-extract-rectangle-line): Use `filter-buffer-substring'
4774 instead of `buffer-substring' and `delete-region'. (Most of the
4775 code actually copied from `kill-region'.)
4776
4777 2006-04-08 Ryan Yeske <rcyeske@gmail.com>
4778
4779 * rcirc.el (rcirc-default-server): Rename from rcirc-server.
4780 (rcirc-default-port): Rename from rcirc-port.
4781 (rcirc-default-nick): Rename from rcirc-nick.
4782 (rcirc-default-user-name): Rename from rcirc-user-name.
4783 (rcirc-default-user-full-name): Rename from rcirc-user-full-name.
4784 (rcirc-low-priority-flag): New variable.
4785 (rcirc-decode-coding-system): New defcustom.
4786 (rcirc-encode-coding-system): New defcustom.
4787 (rcirc-coding-system-alist): New defcustom.
4788 (rcirc-multiline-major-mode): New defcustom.
4789 (rcirc-nick): New internal variable.
4790 (rcirc-process): Remove variable.
4791 (rcirc-server-buffer): New variable.
4792 (rcirc): Update to use rcirc-default-* variables above.
4793 (rcirc-connect): Do not add window-configuration-hook-here.
4794 (rcirc-server): New internal variable.
4795 (rcirc-connect): Do not send keepalive pings if
4796 rcirc-keepalive-seconds is nil.
4797 (with-rcirc-server-buffer): New macro.
4798 (rcirc-send-string): Encode with rcirc-encode-coding-system.
4799 (rcirc-server-name): Rename from rcirc-server.
4800 (rcirc-buffer-process): New function.
4801 (rcirc-buffer-nick): New function.
4802 (rcirc-buffer-target): Remove function.
4803 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
4804 New commands.
4805 (rcirc-mode-map): Change binding of C-c C-l to
4806 rcirc-toggle-low-priority.
4807 (rcirc-mode): Initialize coding system based on
4808 rcirc-coding-system-alist. New change-major-mode-hook to part the
4809 channel on a mode change. Make kill-buffer-hook buffer-local.
4810 (rcirc-change-major-mode-hook): New function.
4811 (rcirc-clean-up-buffer): Rename from rcirc-kill-buffer-hook-1.
4812 (rcirc-last-post-time): New variable.
4813 (rcirc-process-message): Store the last time user posted a message
4814 to this target.
4815 (rcirc-multiline-minor-mode): New mode.
4816 (rcirc-multiline-minor-mode-map): New mode map.
4817 (rcirc-edit-multiline): Put multiline-edit buffer in
4818 rcirc-multiline-major-mode along with rcirc-multiline-minor-mode.
4819 (rcirc-print): Ignore any line starting with an ignored nick.
4820 (rcirc-print): Decode using rcirc-decode-coding-system.
4821 (rcirc-track-minor-mode): Update global-mode-string when disabling
4822 this mode.
4823 (minor-mode-alist): Add LowPri indicator.
4824 (rcirc-toggle-low-priority): New function.
4825 (rcirc-last-non-irc-buffer): Prefix arg now no means switch to
4826 next lowpriority buffer with activity.
4827 (rcirc-record-activity): Sort buffers in rcirc-activity by the
4828 last time the user posted a message in to the target.
4829 (rcirc-update-activity-string): New formatting for low priority
4830 buffers.
4831 (rcirc-split-activity): New function.
4832 (rcirc-handler-PART, rcirc-handler-KICK)
4833 (rcirc-handler-PART-or-KICK): Kick responses are printed properly.
4834 (rcirc-nick-away-alist): New variable.
4835 (rcirc-handler-301): New handler. Away messages are printed once
4836 per change.
4837
4838 2006-04-08 Eli Zaretskii <eliz@gnu.org>
4839
4840 * info.el (Info-follow-nearest-node): Doc fix.
4841
4842 * international/mule-cmds.el (set-locale-environment): Make sure
4843 the coding-system preferred by the locale's language has the same
4844 EOL conversion type as the original buffer-file-coding-system.
4845 (locale-language-names): Add a few MS Windows language codes.
4846
4847 2006-04-07 Richard Stallman <rms@gnu.org>
4848
4849 * simple.el (eval-expression): Doc fix.
4850
4851 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp)
4852 (eval-defun): Doc fixes.
4853
4854 2006-04-07 Reiner Steib <Reiner.Steib@gmx.de>
4855
4856 * pgg-gpg.el: Revert to revision 1.8 to allow the use of gpg-agent.
4857
4858 2006-04-07 Nick Roberts <nickrob@snap.net.nz>
4859
4860 * progmodes/gdb-ui.el (gdb-init-2): Set current filename using
4861 GDB list command without argument for greater generality.
4862
4863 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
4864
4865 * subr.el (string-or-null-p): New function.
4866
4867 * textmodes/paragraphs.el (sentence-end): Use string-or-null-p.
4868
4869 * textmodes/ispell.el (ispell-local-dictionary): Use string-or-null-p.
4870
4871 * files.el: Update comment about safe-local-variable declarations.
4872
4873 2006-04-06 J.D. Smith <jdsmith@as.arizona.edu>
4874
4875 * progmodes/idlwave.el: Updated to IDLWAVE version 6.0.
4876 See idlwave.org.
4877
4878 * progmodes/idlw-shell.el: Updated to IDLWAVE version 6.0.
4879 See idlwave.org. Includes code to obsolete idlw-rinfo.el.
4880
4881 * progmodes/idlw-help.el: Updated to IDLWAVE version 6.0.
4882 See idlwave.org.
4883
4884 * progmodes/idlw-complete-structtag.el: Updated to IDLWAVE
4885 version 6.0 (minimal changes). See idlwave.org.
4886
4887 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version
4888 6.0 (minimal changes). See idlwave.org.
4889
4890 * progmodes/idlw-rinfo.el: File obsoleted and removed.
4891
4892 2006-04-06 Romain Francoise <romain@orebokech.com>
4893
4894 * pgg-gpg.el: Sync back with Gnus 5.10, reverting changes that add
4895 symmetric encryption features and a new asynchronous interface to
4896 GnuPG. This new version is version 1.4, plus whitespace changes.
4897
4898 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
4899
4900 * files.el: Move some `safe-local-variable' declarations to the
4901 respective files.
4902
4903 * textmodes/ispell.el (ispell-check-comments)
4904 (ispell-local-dictionary): Mark as safe.
4905
4906 * abbrev.el (abbrev-mode): Mark as safe.
4907
4908 * add-log.el (change-log-default-name): Mark as safe.
4909
4910 * textmodes/reftex-vars.el (reftex-vref-is-default)
4911 (reftex-fref-is-default, reftex-level-indent)
4912 (reftex-guess-label-type): Mark as safe.
4913
4914 * textmodes/fill.el (colon-double-space): Mark as safe.
4915
4916 * textmodes/paragraphs.el (paragraph-start, paragraph-separate)
4917 (sentence-end-double-space, sentence-end-without-period)
4918 (sentence-end-without-space, sentence-end, sentence-end-base)
4919 (page-delimiter, paragraph-ignore-fill-prefix): Mark as safe.
4920
4921 2006-04-06 Kim F. Storm <storm@cua.dk>
4922
4923 * ido.el (ido-mode): Remove ido-ignore-unc-host-regexps from
4924 the :set-after list.
4925 (ido-downcase-unc-hosts): New user option. Default on.
4926 (ido-ignore-unc-host-regexps): Don't reset ido-unc-hosts-cache
4927 when it is set, as regexps are now applied on the fly.
4928 (ido-unc-hosts): Keep all known hosts in ido-unc-hosts-cache.
4929 Make C-a DTRT--filter hosts through ido-ignore-unc-host-regexps
4930 on the fly, but only when ido-process-ignore-lists is set.
4931 Do case insensitive filtering if ido-downcase-unc-hosts is set.
4932 Only downcase names if ido-downcase-unc-hosts is set.
4933
4934 2006-04-06 Juanma Barranquero <lekktu@gmail.com>
4935
4936 * ido.el (ido-unc-hosts-cache): Fix typo in docstring.
4937
4938 * woman.el (WoMan-xref-man-page): Fix call to `substring'.
4939
4940 2006-04-05 Kim F. Storm <storm@cua.dk>
4941
4942 * ido.el (ido-mode): Set after ido-unc-hosts and
4943 ido-ignore-unc-host-regexps.
4944 (ido-save-history): Save ido-unc-hosts-cache.
4945 (ido-load-history): Load ido-unc-hosts-cache.
4946 (ido-reread-directory): Refresh unc hosts cache in // dir.
4947
4948 * startup.el (fancy-splash-screens): Set emulation-mode-map-alists
4949 to nil while displaying slash screen.
4950
4951 2006-04-05 Daiki Ueno <ueno@unixuser.org>
4952
4953 * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
4954 Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
4955
4956 2006-04-05 Kenichi Handa <handa@m17n.org>
4957
4958 * international/characters.el: Setup cases of Latin, Greek, and
4959 Cyrillic characters in CJK charsets.
4960
4961 2006-03-29 Daiki Ueno <ueno@unixuser.org>
4962
4963 * pgg-gpg.el (pgg-gpg-start-process): Don't bind
4964 default-enable-multibyte-characters. This reverts the change from
4965 revision 6.17 which is no longer necessary because the passphrase
4966 is sent separately now. GnuPG messages are unreadable under
4967 multibyte locales with default-enable-multibyte-characters set to nil.
4968
4969 2006-04-04 Andreas Schwab <schwab@suse.de>
4970
4971 * files.el: Mark `left-margin', `byte-compile-dynamic-docstrings'
4972 and `byte-compile-warnings' as `safe-local-variable'.
4973
4974 2006-04-04 Dan Nicolaescu <dann@ics.uci.edu>
4975
4976 * man.el (Man-mode-map): Restore the \r binding.
4977 (Man-abstract-xref-man-page): If Man-target-string is a function,
4978 call it.
4979 (Man-highlight-references): Use Man-default-man-entry to get the
4980 target. Deal with xrefs too.
4981 (Man-highlight-references0): Don't call the target function.
4982
4983 * woman.el (WoMan-xref-man-page): Strip the section number, woman
4984 cannot deal with it.
4985
4986 2006-04-04 Daiki Ueno <ueno@unixuser.org>
4987
4988 * pgg-gpg.el: Clean up process buffers every time gpg processes
4989 complete.
4990
4991 2006-04-04 Kenichi Handa <handa@m17n.org>
4992
4993 * sort.el (sort-build-lists): Don't bind inhibit-field-text-motion
4994 here.
4995 (sort-lines, sort-numeric-fields, sort-fields, sort-columns):
4996 Temporarily bind inhibit-field-text-motion to t.
4997
4998 2006-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
4999
5000 * startup.el (normal-splash-screen): Only set mode-line-format in the
5001 splash buffer, so as not to interfere when debugging the code.
5002 Ignore errors when switching buffer.
5003
5004 2006-04-03 Romain Francoise <romain@orebokech.com>
5005
5006 * dired.el (dired-dnd-protocol-alist): Fix typo.
5007
5008 2006-04-03 Reiner Steib <Reiner.Steib@gmx.de>
5009
5010 * savehist.el (savehist): Add :version.
5011 (savehist-ignored-variables): New variable.
5012 (savehist-minibuffer-hook): Don't save variables listed in
5013 `savehist-ignored-variables'.
5014
5015 * dired.el (dired-dnd-protocol-alist): Mention that change does
5016 only apply to new buffers in doc string.
5017
5018 2006-04-03 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
5019
5020 * recentf.el (recentf-open-files-item): Include newline in button
5021 field, so opening a file will work, when the point is at the end
5022 of the file name. Allow, for example, to [i]search a file by
5023 extension and just push RET to open it.
5024
5025 2006-04-03 Daiki Ueno <ueno@unixuser.org>
5026
5027 * pgg-gpg.el (pgg-gpg-process-filter)
5028 (pgg-gpg-wait-for-completion): Check if buffer is alive.
5029
5030 * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
5031 lines, temporary fix.
5032
5033 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
5034
5035 * ibuf-macs.el (define-ibuffer-column): Document the new parameter.
5036
5037 2006-04-02 Richard Stallman <rms@gnu.org>
5038
5039 * progmodes/compile.el (compilation-message-face): Make it defcustom.
5040
5041 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
5042
5043 * ibuf-macs.el (define-ibuffer-column): Add a new key:
5044 header-mouse-map.
5045
5046 * ibuffer.el (ibuffer-name-header-map, ibuffer-size-header-map)
5047 (ibuffer-mode-header-map): New keymaps.
5048 (ibuffer-update-title-and-summary): Enable mouse face highlighting
5049 and keybindings for column headers.
5050 (name,size,mode) <define-ibuffer-column>: Add a header-mouse-map
5051 property.
5052
5053 2006-04-02 Drew Adams <drew.adams@oracle.com> (tiny change)
5054
5055 * speedbar.el (speedbar-after-create-hook): Doc fix.
5056
5057 2006-04-02 Michael Ernst <mernst@alum.mit.edu>
5058
5059 * shell.el (shell-directory-tracker)
5060 (shell-dynamic-complete-command): Doc fixes.
5061
5062 2006-04-01 Matt Hodges <MPHodges@member.fsf.org>
5063
5064 * pcomplete.el (pcomplete-show-completions): Recognize TAB on text
5065 terminals.
5066
5067 2006-04-01 Kim F. Storm <storm@cua.dk>
5068
5069 * ido.el (ido-unc-hosts-cache): New defvar.
5070 (ido-unc-hosts): If value of defcustom is a function, call it to
5071 get list of UNC hosts. Add function-item choices to specify
5072 ido-unc-hosts-net-view or user function.
5073 (ido-ignore-unc-host-regexps): New defcustom.
5074 (ido-unc-hosts-net-view, ido-unc-hosts): New functions.
5075 (ido-is-unc-root, ido-is-unc-host, ido-file-name-all-completions)
5076 (ido-exhibit): Call ido-unc-hosts to get list of UNC hosts.
5077
5078 2006-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
5079
5080 * pcvs-util.el (cvs-insert-strings): Fix bug with strings longer than
5081 wwidth.
5082
5083 2006-03-31 Juanma Barranquero <lekktu@gmail.com>
5084
5085 * ido.el (ido-cache-unc-host-shares-time, ido-report-no-match)
5086 (ido-max-work-file-list, ido-switch-buffer)
5087 (ido-read-file-name-as-directory-commands):
5088 Fix typos in docstrings.
5089
5090 2006-03-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5091
5092 * term/mac-win.el (mac-system-coding-system): Define and use after
5093 Mac-specific coding systems are ready.
5094
5095 2006-03-27 Romain Francoise <romain@orebokech.com>
5096
5097 * net/rcirc.el (rcirc-connect): Add autoload cookie.
5098
5099 * ldefs-boot.el: Update.
5100
5101 2006-03-27 Daiki Ueno <ueno@unixuser.org>
5102
5103 * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
5104 passphrases when it is not needed.
5105 (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
5106 passphrase stuff from gpg, should only be necessary when you use
5107 gpg with a smartcard.
5108
5109 2006-03-27 Nick Roberts <nickrob@snap.net.nz>
5110
5111 * comint.el (comint-dynamic-list-completions): Allow user to
5112 select *Completions* buffer.
5113
5114 2006-03-27 Carsten Dominik <dominik@science.uva.nl>
5115
5116 * textmodes/org.el (org-get-level-face): Fix bug with level counting.
5117
5118 2006-03-26 Andreas Schwab <schwab@suse.de>
5119
5120 * progmodes/gud.el (gdb): Only complain about multiple debugging
5121 when the gdb process is still running.
5122
5123 2006-03-25 Eli Zaretskii <eliz@gnu.org>
5124
5125 * mail/rmail.el (tool-bar-map): Defvar it.
5126 (rmail-tool-bar-map): Tool-bar buttons for Rmail.
5127 (rmail-perm-variables): Make rmail-tool-bar-map a local variable.
5128
5129 2006-03-25 Sven Joachim <svenjoac@gmx.de> (tiny change)
5130
5131 * help.el (print-help-return-message): Suggest to use
5132 display-buffer instead of switch-to-buffer-other-window to restore
5133 the previous window without selecting it.
5134
5135 2006-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5136
5137 * frame.el (select-frame-by-name): Call x-focus-frame also when
5138 window-system is mac.
5139
5140 * term/mac-win.el: Adjust Courier font specifications in
5141 x-fixed-font-alist.
5142 (mac-select-convert-to-string): Use utf-16be-mac or utf-16le-mac
5143 when directly encoding to UTF-16 in native byte order, no BOM.
5144
5145 2006-03-25 Kim F. Storm <storm@cua.dk>
5146
5147 * emulation/cua-base.el (cua-rectangle-mark-key): New defcustom.
5148 (cua--init-keymaps): Use it instead of fixed C-return.
5149 (cua-mode): Set after it.
5150
5151 * emulation/cua-rect.el (cua--init-rectangles):
5152 Use cua-rectangle-mark-key instead of fixed C-return.
5153
5154 2006-03-25 Nick Roberts <nickrob@snap.net.nz>
5155
5156 * progmodes/gdb-ui.el (gdba): Revert 2006-03-10 change for case of
5157 "run" in .gdbinit.
5158 (gdb-var-create-regexp): Remove "^done" prefix for gdb-mi.el.
5159
5160 2006-03-24 Romain Francoise <romain@orebokech.com>
5161
5162 * files.el (ctl-x-5-map): Really bind C-x 5 C-o to
5163 `display-buffer-other-frame'.
5164
5165 2006-03-24 Kim F. Storm <storm@cua.dk>
5166
5167 * apropos.el (apropos-synonyms): Add selection => region.
5168
5169 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
5170
5171 * progmodes/gdb-ui.el (gdb-var-create-regexp)
5172 (gdb-var-list-children-regexp, gdb-var-update-regexp)
5173 (gdb-var-list-children-regexp-1, gdb-var-update-regexp-1)
5174 (gdb-data-list-register-values-regexp)
5175 (gdb-stack-list-locals-regexp, gdb-stack-list-locals-handler):
5176 Future proof against new fields being added to MI output.
5177 (gdb-send): Don't treat backslashes for program input as
5178 continuations.
5179 (gdb-assembler-handler): Don't use window-start for this handler.
5180 (gdb-frame-handler): Don't change to hollow arrow if overlay
5181 arrow doesn't move to new frame.
5182
5183 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
5184
5185 * progmodes/gdb-ui.el (gdb-continuation): Declare earlier to
5186 prevent compiler warnings.
5187 (gdb-stopped): Check for gud-last-last-frame (case: signal).
5188 (breakpoint-disabled): Make lighter for contrast with overlay arrow.
5189 (gdb-assembler-custom): Use hollow-right-triangle for assembler
5190 buffer too.
5191
5192 2006-03-23 Reiner Steib <reinersteib+gmane@imap.cc>
5193
5194 * pgg-gpg.el (pgg-gpg-update-agent): Check for
5195 make-network-process, so we can use the same code in Gnus v5-10
5196 too and have this file fully synchronized with that release.
5197
5198 2006-03-23 Romain Francoise <romain@orebokech.com>
5199
5200 * ibuf-ext.el (ibuffer-read-filter-group-name):
5201 Use `ibuffer-generate-filter-groups' to make completion list match
5202 the filter groups that are really displayed in the Ibuffer buffer.
5203 (ibuffer-generate-filter-groups): Add new args noempty, nodefault.
5204
5205 2006-03-23 Kenichi Handa <handa@m17n.org>
5206
5207 * international/mule-cmds.el (sort-coding-systems): Describe that
5208 the argument is modified in docstring.
5209
5210 2006-03-22 Sascha Wilde <wilde@sha-bang.de>
5211
5212 * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
5213 (pgg-gpg-update-agent): New function.
5214 (pgg-gpg-use-agent-p): New function.
5215 (pgg-gpg-process-region, pgg-gpg-encrypt-region)
5216 (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
5217 (pgg-gpg-sign-region): Use it.
5218
5219 2006-03-21 Chong Yidong <cyd@stupidchicken.com>
5220
5221 * cus-edit.el (custom-face-set): Call custom-push-theme before
5222 face-spec set so that `changed' theme is correctly saved.
5223 (custom-face-reset-standard): Reset to recalculated face rather
5224 than defface spec.
5225
5226 * custom.el (custom-push-theme): Only save `changed' theme if the
5227 current face does not match the defface specs.
5228
5229 2006-03-21 Simon Josefsson <jas@extundo.com>
5230
5231 * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
5232 <wilde@sha-bang.de>.
5233 (pgg-gpg-use-agent): New variable.
5234 (pgg-gpg-process-region): Use it.
5235 (pgg-gpg-encrypt-region): Likewise.
5236 (pgg-gpg-encrypt-symmetric-region): Likewise.
5237 (pgg-gpg-decrypt-region): Likewise.
5238 (pgg-gpg-sign-region): Likewise.
5239 (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
5240
5241 2006-03-21 Carsten Dominik <dominik@science.uva.nl>
5242
5243 * textmodes/org.el (org-open-at-point): Fix bug in wiki-style
5244 bracket links.
5245
5246 2006-03-21 Kim F. Storm <storm@cua.dk>
5247
5248 * progmodes/gdb-ui.el (gdb-reset): Set buffer local value of
5249 fringe-indicator-alist instead of modifying global value.
5250 (gdb-frame-handler): Likewise.
5251
5252 2006-03-21 Nick Roberts <nickrob@snap.net.nz>
5253
5254 * diff-mode.el (diff-function): Make it inherit from diff-header
5255 instead of diff-context.
5256
5257 * progmodes/gdb-ui.el (hollow-right-triangle): Define as fringe
5258 bitmap.
5259 (gdb-info-stack-custom): Rename from gdb-info-frames-custom and
5260 change names in macro above for consistency.
5261 (gdb-frame-handler): Use hollow-right-triangle for all selected
5262 frames which except the innermost (where execution has stopped).
5263 (gdb-reset): Reset buffer-local values of overlay-arrow.
5264
5265 2006-03-20 Richard Stallman <rms@gnu.org>
5266
5267 * simple.el (set-mark-command): Doc fix.
5268
5269 * files.el (display-buffer-other-frame): New command.
5270 (ctl-x-4-map): Bind C-x 5 C-o to it.
5271
5272 2006-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
5273
5274 * jit-lock.el (jit-lock-function): Check for the actual defer-timer
5275 rather than just defer-time, in case defer-time has been changed but
5276 the timer isn't running yet.
5277 (jit-lock-deferred-fontify): Correspondingly let-bind defer-timer.
5278
5279 2006-03-19 Luc Teirlinck <teirllm@auburn.edu>
5280
5281 * help-mode.el (help-follow-symbol): New function.
5282 Essentially identical to the old `help-follow', but do not let
5283 `push-button' do the work when on an xref.
5284 (help-mode-map): Bind `help-follow-symbol' to "C-c C-c".
5285
5286 2006-03-19 Richard Stallman <rms@gnu.org>
5287
5288 * help-mode.el (help-xref-symbol-regexp): Make no xref for symbol
5289 preceded by the word `program'.
5290 (help-follow-mouse, help-follow): Throw error if not on xref.
5291 Delete no longer used args.
5292
5293 2006-03-20 Nick Roberts <nickrob@snap.net.nz>
5294
5295 * progmodes/gdb-ui.el (gdb-stopped): Even when there is no source
5296 annotation ensure gud-overlay-arrow-position is redisplayed.
5297
5298 2006-03-19 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5299
5300 * textmodes/bibtex.el (bibtex-include-OPTkey)
5301 (bibtex-entry-field-alist, bibtex-generate-url-list): Mark as risky.
5302 (bibtex-autokey-name-case-convert)
5303 (bibtex-autokey-titleword-case-convert): Make these the aliases
5304 for the following two variables.
5305 (bibtex-autokey-name-case-convert-function)
5306 (bibtex-autokey-titleword-case-convert-function): Make these the
5307 real names.
5308 (bibtex-font-lock-keywords): Make bibtex-font-lock-url and
5309 bibtex-font-lock-crossref sublists.
5310 (bibtex-mode): Revert 2005-12-30 change (which made
5311 completion-ignore-case buffer-local).
5312 (bibtex-url): Simplify.
5313
5314 2006-03-19 Kim F. Storm <storm@cua.dk>
5315
5316 * emulation/cua-rect.el (cua--highlight-rectangle): Set overlay
5317 cursor property value to 2 (to align with C level change).
5318
5319 2006-03-19 Bill Wohler <wohler@newt.com>
5320
5321 * image.el (image-load-path-for-library): Shorten first line in
5322 docstring.
5323
5324 2006-03-18 Richard Stallman <rms@gnu.org>
5325
5326 * mail/rmail.el (rmail-reply-regexp): Undo previous change.
5327
5328 2006-03-18 Ben North <ben@redfrontdoor.org> (tiny change)
5329
5330 * isearch.el (isearch-other-meta-char): Handle user bindings for
5331 shifted control characters.
5332
5333 2006-03-18 Agustin Martin <agustin.martin@hispalinux.es>
5334
5335 * textmodes/ispell.el (ispell-skip-region-alist): Add "_+" to the
5336 part that matches email addresses, file names, etc.
5337
5338 2006-03-18 Eli Zaretskii <eliz@gnu.org>
5339
5340 * term/w32-win.el (mouse-set-font):
5341 Mention w32-list-proportional-fonts in the doc string.
5342
5343 2006-03-18 Kim F. Storm <storm@cua.dk>
5344
5345 * ido.el (ido-cache-ftp-work-directory-time): Doc fix.
5346 (ido-unc-hosts): New user option to explicitly define list of know
5347 UNC-style hosts for completion.
5348 (ido-cache-unc-host-shares-time): New user option.
5349 (ido-is-unc-root, ido-is-unc-host, ido-cache-unc-valid):
5350 New helper functions for UNC file-name support.
5351 (ido-may-cache-directory): Check for UNC host. Simplify.
5352 (ido-wash-history): Clean out old UNC hosts.
5353 (ido-nonreadable-directory-p): UNC hosts are always readable.
5354 (ido-directory-too-big-p): UNC hosts are never too big.
5355 (ido-set-current-directory): Handle UNC root path.
5356 (ido-file-name-all-completions): Complete UNC host names from
5357 ido-unc-hosts list. Cache UNC host shares.
5358 (ido-make-file-list-1): Don't filter UNC root.
5359 (ido-exhibit): Check for // in root directory, and switch to UNC
5360 mode by setting ido-current-directory to //.
5361
5362 2006-03-17 Luc Teirlinck <teirllm@auburn.edu>
5363
5364 * cus-edit.el (customize-changed-options): Mention explicit
5365 version number as default in prompt.
5366
5367 2006-03-17 Bill Wohler <wohler@newt.com>
5368
5369 * image.el (image-load-path-for-library): Minor docstring fix.
5370
5371 2006-03-17 Carsten Dominik <dominik@science.uva.nl>
5372
5373 * textmodes/org.el (org-read-date): Include subgroup 5 into
5374 replacement text.
5375 (org-popup-calendar-for-date-prompt): Fix customization type.
5376
5377 2006-03-17 Nick Roberts <nickrob@snap.net.nz>
5378
5379 * progmodes/gdb-ui.el (gud-watch): Provide completion.
5380 (gdb-continuation): New variable.
5381 (gdb-send): Deal with continuation lines.
5382
5383 * progmodes/gud.el (gud-gdb-complete-command)
5384 (gud-gdb-run-command-fetch-lines): Adapt for use with watch
5385 expressions.
5386 (gud-tooltip-mode): Use buffer-local value.
5387
5388 2006-03-16 Kim F. Storm <storm@cua.dk>
5389
5390 * ido.el (ido-edit-input): Use selected match, if any.
5391
5392 2006-03-16 Bill Wohler <wohler@newt.com>
5393
5394 * image.el (image-load-path-for-library): Prefer user's images in
5395 image-load-path.
5396
5397 2006-03-16 Martin Rudalics <rudalics@gmx.at>
5398
5399 * mouse.el (mouse-drag-vertical-line): Use window-inside-edges
5400 when checking for attempt to drag leftmost or rightmost scrollbar.
5401
5402 2006-03-16 Nick Roberts <nickrob@snap.net.nz>
5403
5404 * progmodes/gdb-ui.el (gdb-inferior-status): New variable.
5405 (gdb-force-mode-line-update): New function.
5406 (gdb-resync, gdb-starting, gdb-signal, gdb-exited, gdb-stopped)
5407 (gdb-exited): Use them.
5408 (gdb-signal): New function.
5409 (gdb-annotation-rules): Provide a rule for it.
5410
5411 2006-03-16 Kenichi Handa <handa@m17n.org>
5412
5413 * international/mule.el (auto-coding-regexp-alist): Add entries
5414 for Unicode BOM.
5415
5416 * sort.el (sort-build-lists): Temporarily bind
5417 inhibit-field-text-motion to t.
5418
5419 2006-03-15 Luc Teirlinck <teirllm@auburn.edu>
5420
5421 * locate.el (locate-command, locate-make-command-line)
5422 (locate-fcodes-file, locate-update-command)
5423 (locate-prompt-for-command, locate, locate-with-filter)
5424 (locate-get-file-positions): Doc fixes.
5425 (locate-buffer-name, locate-header-face): Remove leading `*' in
5426 defcustom.
5427 (locate-filter-output): Use `keep-lines' instead of its alias
5428 `delete-non-matching-lines'.
5429 (locate-get-filename, locate-get-dirname): Add introductory comment.
5430 (locate-find-directory-other-window): Give appropriate error
5431 message if used outside main listing.
5432
5433 2006-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
5434
5435 * font-lock.el (font-lock-lines-before): Delete variable, subsumed by
5436 the new extend-region feature.
5437 (font-lock-after-change-function): Update correspondingly.
5438 * jit-lock.el (jit-lock-after-change): Update correspondingly.
5439 * progmodes/grep.el (font-lock-lines-before): Don't disable.
5440
5441 2006-03-15 Bill Wohler <wohler@newt.com>
5442
5443 * image.el (image-load-path-for-library): Fix example by not
5444 recommending that one binds image-load-path. Just defvar it to
5445 placate compiler and only use it if previously defined.
5446
5447 2006-03-15 Carsten Dominik <dominik@science.uva.nl>
5448
5449 * textmodes/org.el (org-insert-centered): Use `string-width' to
5450 make underlining work for wide characters.
5451 (org-goto-map, org-agenda-mode-map, org-mode-map): Explicitly bind
5452 TAB to `org-cycle', to make sure that no binding in
5453 `outline-mode-map' can supercede it.
5454
5455 2006-03-14 Ken Manheimer <ken.manheimer@gmail.com>
5456
5457 * allout.el: Increment version to 2.2.1 in file commentary.
5458
5459 (allout-version): Increment to 2.2.1.
5460
5461 (allout-default-layout): New customization variable, used when the
5462 file lacks a specific allout-layout. Uses allout-layout-type for
5463 recursively nested definition.
5464
5465 (allout-layout-type): Widget defining allout layouts, necessary for
5466 self-recursive definition.
5467
5468 (allout-mode): Incorporate allout-default-layout as fallback for
5469 allout-layout.
5470
5471 (allout-layout): Mark as 'safe-local-variable', and refer mention
5472 fallback to `allout-default-layout' in absence of a specified value.
5473 (allout-passphrase-verifier-string)
5474 (allout-passphrase-hint-string): Mark as 'safe-local-variable'.
5475
5476 (allout-file-passphrase-verifier-string): Obsolete variable, removed.
5477
5478 (allout-get-encryption-passphrase-verifier): Use correct name of
5479 passphrase verifier in docstring.
5480
5481 2006-03-15 Nick Roberts <nickrob@snap.net.nz>
5482
5483 * progmodes/gdb-ui.el (gdb-var-list): Change order of first two
5484 elements.
5485 (gdb-find-watch-expression): Make it work for arrays too.
5486 Follow change to gdb-var-list.
5487 (gud-watch): Allow the user to enter variable name with a prexix
5488 arg. Create keybindings.
5489 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
5490 (gdb-var-list-children-handler, gdb-var-update-handler)
5491 (gdb-var-delete, gdb-edit-value, gdb-speedbar-expand-node)
5492 (gdb-var-list-children-handler-1, gdb-var-update-handler-1):
5493 Follow change to gdb-var-list.
5494 (gdb-starting): Don't show the overlay arrows when program is running.
5495
5496 * progmodes/gud.el (gud-speedbar-buttons): Follow change to
5497 gdb-var-list.
5498
5499 2006-03-14 Bill Wohler <wohler@newt.com>
5500
5501 * image.el (image-load-path-for-library): Pass value of path
5502 rather than symbol. Always return list of directories.
5503 Guarantee that image directory comes first.
5504
5505 2006-03-14 Alan Mackenzie <acm@muc.de>
5506
5507 * font-core.el (font-lock-extend-region\(-function\)?.):
5508 New function/variable.
5509
5510 * font-lock.el (font-lock-after-change-function):
5511 Call font-lock-extend-region. Obey font-lock-lines-before.
5512 (font-lock-default-fontify-region): Remove reference to
5513 font-lock-lines-before.
5514
5515 * jit-lock.el (jit-lock-after-change):
5516 Call font-lock-extend-region. Obey font-lock-lines-before.
5517
5518 2006-03-14 David Ponce <david@dponce.com>
5519
5520 * tree-widget.el (tree-widget-themes-load-path)
5521 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
5522
5523 2006-03-13 Ryan Yeske <rcyeske@gmail.com>
5524
5525 * net/rcirc.el (rcirc) <defgroup>: Add link to manual.
5526 (rcirc-print): Mark the start of text at the end of the prompt.
5527 (rcirc-track-minor-mode): Add autoload cookie.
5528 (rcirc-update-activity-string): Add space to front of mode-line
5529 indicator.
5530
5531 2006-03-13 Miles Bader <miles@gnu.org>
5532
5533 * net/rcirc.el (rcirc-nick-abbrevs): Remove variable.
5534 (rcirc-abbrev-nick): Remove function.
5535 (rcirc-format-response-string): Don't call `rcirc-abbrev-nick'.
5536
5537 2006-03-13 David Ponce <david@dponce.com>
5538
5539 * tree-widget.el: Handle themes across all occurrences of the main
5540 themes sub-directory found in tree-widget-themes-load-path.
5541 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
5542 (tree-widget--locate-sub-directory): Return all occurrences.
5543 (tree-widget-themes-path): New function.
5544 Replace tree-widget-themes-directory, and return a list of directories.
5545 (tree-widget-set-parent-theme)
5546 (tree-widget-lookup-image): Use it.
5547
5548 2006-03-13 Carsten Dominik <dominik@science.uva.nl>
5549
5550 * textmodes/org.el (org-link-search): Avoid self-matching of
5551 links, allow target text to be distributed over several lines.
5552 (org-search-not-link): New function.
5553 (org-set-regexps-and-options, org-get-current-options):
5554 New startup options.
5555 (org-export-as-html): Take odd-level setting from local variable.
5556 (org-fontify-emphasized-text): New option.
5557 (org-set-font-lock-defaults): Include emphasized text.
5558 (org-follow-mhe-link): Allow folder-only links, fix folder name.
5559 (org-font-lock): Customize group renamed from `org-faces'.
5560
5561 2006-03-13 John Paul Wallington <jpw@pobox.com>
5562
5563 * ibuf-ext.el (ibuffer-never-show-predicates): Add `require'
5564 keyword; require `ibuf-ext' feature. Thanks to Zhang Wei.
5565
5566 2006-03-12 Luc Teirlinck <teirllm@auburn.edu>
5567
5568 * cus-start.el (all): Delete :version keyword for members of the
5569 fringe group, since the entire group is new in 22.1.
5570
5571 2006-03-13 Nick Roberts <nickrob@snap.net.nz>
5572
5573 * progmodes/gdb-ui.el (gdb-stack-list-locals-handler): Add local
5574 map if value is hexadecimal (an address).
5575 (gud-watch): Only search roots for existing watch expressions.
5576 (gdb-speedbar-refresh): Bind speedbar-shown-directories to nil to
5577 prevent caching problems with speedbar-update-directory-contents.
5578
5579 2006-03-12 Juri Linkov <juri@jurta.org>
5580
5581 * battery.el (battery-linux-proc-acpi): Check `capacity' for non-nil
5582 before comparing with `low' and `warn'.
5583
5584 * info.el (Info-dir-remove-duplicates): Move point to the
5585 beginning of the current line after deleting the entries from
5586 redundant heading. Use marker for `limit' and compare it with
5587 point before calling `re-search-forward'.
5588
5589 2006-03-11 Luc Teirlinck <teirllm@auburn.edu>
5590
5591 * simple.el (yank): Fix typo in docstring.
5592
5593 2006-03-11 Ryan Yeske <rcyeske@gmail.com>
5594
5595 * mail/rmailsum.el (rmail-summary-next-msg): Skip deleted
5596 messages, where "D" is the 6th character.
5597
5598 2006-03-11 Eli Zaretskii <eliz@gnu.org>
5599
5600 * simple.el (yank): Fix last change.
5601
5602 2006-03-11 David Ponce <david@dponce.com>
5603
5604 * ispell.el (ispell-find-aspell-dictionaries): Add aliases before
5605 merging elements from the standard ispell-dictionary-alist.
5606 (ispell-aspell-add-aliases): Add aliases to the passed dictionary
5607 alist, and return the new alist.
5608
5609 2006-03-11 Richard Stallman <rms@gnu.org>
5610
5611 * mail/rmail.el (rmail-ignored-headers): Discard DomainKey-Signature.
5612
5613 * eshell/eshell.el (eshell-prefer-to-shell): Variable deleted;
5614 the way it is implemented is too unclean.
5615
5616 * simple.el (kill-region, yank): Doc fix.
5617
5618 * battery.el (battery-echo-area-format): Doc fix.
5619 (battery-mode-line-format): Likewise.
5620 (battery-linux-proc-apm, battery-linux-proc-acpi): Likewise.
5621 (battery-linux-proc-acpi): Ignore batteries that say "charged".
5622
5623 2006-03-11 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
5624
5625 * progmodes/octave-mod.el (octave-indent-for-comment):
5626 Behave according to do string.
5627
5628 2006-03-11 Agustin Martin <agustin.martin@hispalinux.es>
5629
5630 * textmodes/ispell.el (ispell-menu-map-needed) [ispell-message]:
5631 Be visible only if major mode is Mail Mode.
5632
5633 * textmodes/flyspell.el (flyspell-external-point-words)
5634 (flyspell-process-localwords): Fix last changes.
5635
5636 2006-03-11 Eli Zaretskii <eliz@gnu.org>
5637
5638 * calendar/holidays.el (list-holidays): Doc fix.
5639
5640 * international/mule.el (auto-coding-alist): Add .odt
5641 (OpenOffice's open document) files.
5642
5643 * files.el (auto-mode-alist): Add .odt (OpenOffice's open
5644 document) files. Mention in the doc string the need to sync with
5645 auto-coding-alist.
5646
5647 2006-03-10 Chong Yidong <cyd@stupidchicken.com>
5648
5649 * files.el (hack-local-variables-confirm): Don't prompt for ! if
5650 enable-local-variables is set to always query, or there is no
5651 savable variable.
5652
5653 2006-03-10 Bill Wohler <wohler@newt.com>
5654
5655 * image.el (image-load-path-for-library): Merge at least three
5656 functions from Gnus and MH-E into this one function that can now
5657 be shared.
5658
5659 2006-03-11 Nick Roberts <nickrob@snap.net.nz>
5660
5661 * progmodes/gdb-ui.el (gdb-remove-text-properties): Rename from
5662 gdb-remove-mouse-face and remove help-echo too.
5663 (gdb-enqueue-input): Correct conditional clause.
5664
5665 2006-03-10 Glenn Morris <rgm@gnu.org>
5666
5667 * calendar/calendar.el (calendar-holidays): Doc fix.
5668 * calendar/holidays.el (list-holidays): Doc fix.
5669
5670 2006-03-10 Nick Roberts <nickrob@snap.net.nz>
5671
5672 * progmodes/gdb-ui.el (gdba): Don't call gdb-init-1 explicitly as
5673 it gets called in gdb-prompt anyway.
5674 (gdb-use-separate-io-buffer): Only restore window arrangement for
5675 gdb-many-windows.
5676 (gdb-enqueue-input): Make it harder to send GDB input when program
5677 is running.
5678 (gdb-buffer-list): New variable.
5679 (gdb-remove-mouse-face): New function.
5680 (gdb-starting): Use it when GDB input won't get sent.
5681
5682 2006-03-08 Juanma Barranquero <lekktu@gmail.com>
5683
5684 * help.el (view-lossage): Remove trailing whitespace before
5685 inserting "\n".
5686
5687 2006-03-07 Chong Yidong <cyd@stupidchicken.com>
5688
5689 * files.el (hack-local-variables-confirm):
5690 Set coding-system-for-read to nil before writing to .emacs.
5691
5692 * arc-mode.el (archive-extract): Check if an existing buffer name
5693 comes from a different archive.
5694
5695 * help.el (describe-key-briefly): If KEY is a down event, read and
5696 discard the up event.
5697
5698 2006-03-07 Nick Roberts <nickrob@snap.net.nz>
5699
5700 * progmodes/gud.el (gud-speedbar-buttons): Allow pointers to
5701 be edited and use font-lock-warning-face for any changes.
5702
5703 * progmodes/gdb-ui.el (gdb-edit-value-handler): New function.
5704 (gdb-edit-value): Use it to report any errors.
5705
5706 2006-03-07 Juanma Barranquero <lekktu@gmail.com>
5707
5708 * help.el (describe-key): Remove leftover test code.
5709
5710 2006-03-07 Carsten Dominik <dominik@science.uva.nl>
5711
5712 * textmodes/org.el: Move defvars out of eval-when-compile.
5713 Use buffer-file-name variable.
5714 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused
5715 arg `file'.
5716 (org-level-faces): Remove startup dependency.
5717 (org-cycle, org-map-tree, org-scan-tags)
5718 (org-remember-handler): Don't call `outline-level' directly.
5719 (org-mhe-search-all-folders): New option.
5720 (org-mhe-get-message-folder-from-index)
5721 (org-mhe-get-message-folder): Fix indexing search.
5722 (org-format-agenda-item): Handle nil TAGS argument.
5723 (org-cleaned-string-for-export, org-activate-target-links)
5724 (org-make-target-link-regexp): Deal with empty radio target list.
5725 (org-tag): New face.
5726 (org-get-level-face): New function.
5727 (org-set-font-lock-defaults): Simplify setup for headlines.
5728 (org-complete): Pass common substring to `display-completion-list'.
5729
5730 2006-03-06 David Ponce <david@dponce.com>
5731
5732 * tree-widget.el: Update Commentary header.
5733 (tree-widget-theme-name): Ignore parent themes.
5734 (tree-widget-set-parent-theme): New function.
5735 (tree-widget-set-theme): Use it.
5736 (tree-widget-set-image-properties): Move definition. Does nothing
5737 if image properties have already been set.
5738 (tree-widget-image-properties): Move definition. Receive an image
5739 name. Set the :pointer property.
5740 (tree-widget-lookup-image): Doc fix. Search in parent themes.
5741 Don't set the :pointer image property.
5742 (tree-widget-convert-widget): New function. Handle :dynargs
5743 compatibility here.
5744 (tree-widget): Use it to :convert-widget. Add the :expander-p
5745 predicate to control when the :expander function is entered.
5746 Thanks to Ken Manheimer <ken.manheimer@gmail.com> for the idea.
5747 (tree-widget-value-create): Handle :expander-p. widget-apply
5748 :expander.
5749 (tree-widget-expander-p): New function. Default value of the
5750 :expander-p property.
5751
5752 2006-03-06 Chong Yidong <cyd@stupidchicken.com>
5753
5754 * help.el (describe-key): Properly handle the return value of
5755 read-key-sequence when grabbing an up-event. Cleanup mouse-1
5756 remaps. Handle string and vector `follow-link' values.
5757
5758 2006-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
5759
5760 * complete.el (PC-expand-many-files): Try be more careful when parsing
5761 the shell's output.
5762
5763 2006-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
5764
5765 * outline.el (hide-sublevels): Provide better interactive default.
5766
5767 2006-03-06 Kenichi Handa <handa@m17n.org>
5768
5769 * international/fontset.el (create-fontset-from-fontset-spec):
5770 Fix regexp for paring FONTSET-SPEC (allow spaces after `:').
5771
5772 2006-03-05 Luc Teirlinck <teirllm@auburn.edu>
5773
5774 * progmodes/gud.el (gud-jdb-marker-filter): Quote `[' with two
5775 backslashes instead of one in regexp.
5776 (gud-tooltip-dereference): Add missing optional argument.
5777
5778 2006-03-04 John Paul Wallington <jpw@pobox.com>
5779
5780 * wdired.el (toplevel): Require `cl' at compile-time.
5781
5782 2006-03-04 Andreas Schwab <schwab@suse.de>
5783
5784 * server.el (server-process-filter): Handle errors during
5785 evaluation of the argument.
5786
5787 2006-03-03 John Paul Wallington <jpw@pobox.com>
5788
5789 * t-mouse.el (t-mouse-drag-start, t-mouse-swap-alt-keys): Doc fix;
5790 escape parentheses at beginning of line.
5791 (t-mouse-tty, t-mouse-make-event): Doc fix; use imperative.
5792 (t-mouse-mode): Remove period from end of error message.
5793
5794 2006-03-03 Agustin Martin <agustin.martin@hispalinux.es>
5795
5796 * textmodes/flyspell.el (flyspell-process-localwords):
5797 Be case-sensitive.
5798
5799 2006-03-03 Martin Rudalics <rudalics@gmx.at>
5800
5801 * cus-edit.el (custom-quote): Remove function, since it has been
5802 moved to custom.el.
5803
5804 * font-lock.el (lisp-font-lock-keywords-2)
5805 * emacs-lisp/rx.el (rx-check-any, rx-check-not)
5806 * generic-x.el (reg-generic-mode): Quote "]"s in regexps when
5807 they have no special meaning.
5808
5809 * midnight.el (clean-buffer-list): Handle case where base-buffer of
5810 indirect buffer gets killed before indirect buffer. Use dolist.
5811
5812 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
5813
5814 * emacs-lisp/edebug.el (edebug-display): Use `edebug-sit-for-seconds'
5815 value instead of a literal constant (1) on more pauses.
5816
5817 2006-03-03 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
5818
5819 * textmodes/flyspell.el (flyspell-external-point-words):
5820 Be case-sensitive.
5821
5822 2006-03-03 Ryan Yeske <rcyeske@gmail.com>
5823
5824 * net/rcirc.el (rcirc-url-regexp): Match entire url when it starts
5825 with "www".
5826
5827 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
5828
5829 * allout.el: Restablish intermediate missing comment header to
5830 preserve outline structure.
5831 (allout-beginning-of-current-entry): Skip invisible text.
5832 (allout-open-topic): Fix opening a topic at end-of-buffer.
5833 (allout-minor-mode): Move nearer to allout-mode function.
5834
5835 2006-03-02 Carsten Dominik <dominik@science.uva.nl>
5836
5837 * textmodes/org.el (org-paste-subtree): Remove (debug) form.
5838
5839 2006-03-02 Nick Roberts <nickrob@snap.net.nz>
5840
5841 * dframe.el (dframe-frame-mode): Don't burp when menu-bar-lines
5842 is nil.
5843
5844 * progmodes/gud.el (gud-speedbar-menu-items):
5845 Use buffer-local-value and add missing :visible keyword.
5846
5847 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Quieten speedbar-refresh.
5848
5849 2006-03-01 Carsten Dominik <dominik@science.uva.nl>
5850
5851 * textmodes/reftex-index.el (reftex-index-map): `follow-mouse'
5852 must be `follow-link'.
5853
5854 * textmodes/reftex-toc.el (reftex-toc-map): Likewise.
5855
5856 * textmodes/org.el (org-export-as-html): Fix bugs in HTML
5857 formatting: No nested anchors.
5858 (org-all-targets): Fix bug with XEmacs compatibility.
5859 (org-read-date): Add (require 'parse-time).
5860 (org-set-tags): Fix bug with extra inserted space.
5861 (org-export-html-style): Define a style class for targets.
5862 (org-agenda-keymap, org-mouse-map): Add a binding for `follow-link'.
5863 (org-hide-leading-stars): New option.
5864 (org-hide): New face.
5865 (org-set-font-lock-defaults): Allow to hide leading stars.
5866 (org-get-legal-level, org-tr-level): New functions.
5867 (org-odd-levels-only): New option.
5868 (org-level-faces, org-paste-subtree, org-convert-to-odd-levels)
5869 (org-demote, org-promote): Deal with double-star levels.
5870 (org-convert-to-odd-levels): New command.
5871
5872 2006-03-01 Nick Roberts <nickrob@snap.net.nz>
5873
5874 * speedbar.el (speedbar-update-localized-contents): Try to
5875 preserve window-start.
5876 (speedbar-update-directory-contents): Try to preserve window-start
5877 and window-point.
5878 (speedbar-update-special-contents): Don't move back to start of window.
5879
5880 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Rename from
5881 gdb-speedbar-timer-fn. Use speedbar-refresh instead of
5882 speedbar-timer-fn.
5883 (gdb-var-update-handler, gdb-var-update-handler-1): Use it.
5884 (gdb-speedbar-expand-node): Use speedbar-delete-subblock
5885 instead of gdb-speedbar-timer-fn.
5886
5887 2006-02-28 Jay Belanger <belanger@truman.edu>
5888
5889 * calc/calccomp.el (math-compose-tex-matrix): Add a latex option.
5890 (math-compose-expr): Use latex option when calling
5891 `math-compose-tex-matrix' for latex mode.
5892
5893 2006-02-28 Nick Roberts <nickrob@snap.net.nz>
5894
5895 * speedbar.el: Re-instate comments about developing for speedbar
5896 [this is what info and gdb-ui use even if better methods exist now].
5897
5898 * t-mouse.el: New file.
5899 (t-mouse-tty): Use with-temp-buffer. Add more terminal types.
5900 (t-mouse-lispy-buffer-posn-from-coords): Remove.
5901 (t-mouse-make-event-element): Use posn-at-x-y instead.
5902 (t-mouse-make-event): Deal with Fedora Core 3.
5903 (t-mouse-make-event): Don't sink the `stupid text mode menubar'.
5904 (t-mouse-mouse-position-function): New function. Use it instead
5905 of advising mouse-position.
5906 (t-mouse-mode): New minor mode.
5907 (t-mouse-stop, t-mouse-run): Remove. Use t-mouse-mode instead.
5908
5909 2006-02-27 Glenn Morris <rgm@gnu.org>
5910
5911 * calendar/calendar.el (calendar-holidays): Doc fix.
5912
5913 2006-02-27 Nick Roberts <nickrob@snap.net.nz>
5914
5915 * progmodes/gdb-ui.el (gdb-source-window): New variable.
5916 Re-introduce the concept of a source window.
5917 (gdb-get-buffer-create): Rename from gdb-get-create-buffer for
5918 consistency with get-buffer-create.
5919 (def-gdb-auto-update-handler, gdb-info-locals-handler)
5920 (gdb-data-list-register-values-handler)
5921 (gdb-stack-list-locals-handler): Try to preserve window-start as
5922 well as window-point.
5923 (gdb-display-source-buffer): New function (old concept).
5924 (gdb-goto-breakpoint): Use it.
5925
5926 * progmodes/gud.el (gud-display-line): Use gdb-display-source-buffer
5927 for gdb-ui/gdb-mi (old concept).
5928
5929 2006-02-27 Carsten Dominik <dominik@science.uva.nl>
5930
5931 * textmodes/reftex-index.el (reftex-index-map): Add `follow-mouse'
5932 binding.
5933
5934 * textmodes/reftex-toc.el (reftex-toc-map): Add `follow-mouse' binding.
5935
5936 * textmodes/reftex-sel.el (reftex-select-label-map)
5937 (reftex-select-bib-map): Add `follow-mouse' binding.
5938
5939 2006-02-26 Luc Teirlinck <teirllm@auburn.edu>
5940
5941 * jka-cmpr-hook.el (jka-compr-compression-info-list)
5942 (jka-compr-mode-alist-additions, jka-compr-load-suffixes):
5943 Give :set functions to provide automatic updating.
5944 Update docstring. Give compiler defvars early in the file
5945 and move the defcustoms to a later spot where all called functions
5946 are defined.
5947 (jka-compr-file-name-handler-entry): Doc fix.
5948 (jka-compr-compression-info-list--internal)
5949 (jka-compr-mode-alist-additions--internal)
5950 (jka-compr-load-suffixes--internal): New variables.
5951 (jka-compr-install): Set the three above variables.
5952 Update `load-file-rep-suffixes' instead of `load-suffixes'.
5953 (jka-compr-update, jka-compr-set): New functions.
5954 (auto-compression-mode): Doc fix.
5955
5956 * jka-compr.el (jka-compr-uninstall): Replace `mapcar' with `mapc'.
5957 Update `load-file-rep-suffixes' instead of `load-suffixes'.
5958 Use jka-compr-compression-info-list--internal,
5959 jka-compr-mode-alist-additions--internal and
5960 jka-compr-load-suffixes--internal.
5961
5962 * files.el (load-library):
5963 * loadhist.el (file-loadhist-lookup):
5964 * startup.el (command-line):
5965 * subr.el (locate-library):
5966 * emacs-lisp/autoload.el (update-directory-autoloads):
5967 * emacs-lisp/find-func.el (find-library-suffixes):
5968 Use `get-load-suffixes' instead of `load-suffixes'.
5969
5970 * subr.el (locate-library):
5971 * emacs-lisp/find-func.el (find-library-name):
5972 Use `load-file-rep-suffixes' instead of '("").
5973
5974 2006-02-26 Kim F. Storm <storm@cua.dk>
5975
5976 * ido.el (ido-save-history, ido-load-history): Simplify.
5977 Don't use find-file-noselect to avoid interference from other modes.
5978
5979 2006-02-25 Thien-Thi Nguyen <ttn@gnu.org>
5980
5981 * progmodes/sh-script.el (sh-mode): Fix bug: Arrange
5982 to use the default shell if filename is not available.
5983 Reported by Giorgos Keramidas.
5984
5985 2006-02-25 John Williams <jrw@pobox.com> (tiny change)
5986
5987 * progmodes/etags.el (tags-completion-table): Do completion from
5988 all the tables in the current list, as documented in the manual.
5989
5990 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
5991
5992 * CC Mode Update to 5.31.3.
5993
5994 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
5995
5996 * progmodes/cc-mode.el (c-postprocess-file-styles):
5997 Bind inhibit-read-only to t, around the call to
5998 c-remove-any-local-eval-or-mode-variables, so that it works on a
5999 RO file.
6000
6001 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6002
6003 * progmodes/cc-awk.el: Correct a typo.
6004
6005 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6006
6007 * progmodes/cc-cmds.el, cc-mode.el: Rename c-hungry-backspace to
6008 c-hungry-delete-backwards, at the request of RMS. Leave the old
6009 name as an alias.
6010
6011 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6012
6013 * progmodes/cc-mode.el: Correct a typo.
6014
6015 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6016
6017 * progmodes/cc-defs.el: Update the version number to 5.31.3.
6018
6019 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6020
6021 * progmodes/cc-cmds.el (c-electric-brace): Fix clean-up
6022 brace-else-brace (error due to mbeg, mend being undefined).
6023
6024 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6025
6026 * progmodes/cc-mode.el: File Local variables: Solve the problem
6027 where both `mode' and c-file-offsets are specified: `mode' will
6028 overwrite c-f-o's settings:
6029 (c-remove-any-local-eval-or-mode-variables): New function.
6030 (c-postprocess-file-styles): Call the above new function, within
6031 c-tentative-buffer-change, to splat `mode' and `eval' before the
6032 second hack-local-variables.
6033
6034 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6035
6036 * progmodes/cc-mode.el:
6037 [Supersedes patch to cc-engine.el 2005-12-16T20:07:49Z!monnier@iro.umontreal.ca]
6038 (c-after-change): Protect the match data with save-match-data.
6039 It was getting corrupted by c-after-change-check-<>-operators.
6040
6041 * cc-defs.el: [Supersedes patch V1.38]:
6042 (top level): Check for a buggy font-lock-compile-keywords ONLY in
6043 XEmacs. GNU Emacs 22 now has a check which would throw an error here.
6044
6045 * progmodes/cc-awk.el (c-awk-after-change): Protect the match data
6046 with save-match-data. It was being corrupted when Font Lock was
6047 not enabled.
6048
6049 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6050
6051 * progmodes/cc-langs.el (c-mode-menu): Add menu items for Electric
6052 Mode and Subword Mode.
6053
6054 * progmodes/cc-engine.el (c-beginning-of-statment-1): Distinguish
6055 real labels ("case 1:" or "foo:") from non-labels ("public:").
6056 (c-forward-objc-directive): Replace c-forward-token-2 with crude
6057 coding; c-f-t-2 doesn't move over a token at EOB.
6058
6059 * progmodes/cc-defs.el (c-version): Update version number to 5.31.2.
6060
6061 * progmodes/cc-cmds.el, cc-mode.el, cc-engine.el
6062 (c-update-modeline): Concatenate the minor mode indicators
6063 directly onto mode-name, removing c-submode-indicators.
6064 Sometimes, c-s-i got separated from the mode name on the mode line.
6065
6066 * progmodes/cc-cmds.el (c-electric-brace, c-electric-semi&comma)
6067 (c-electric-colon): Correct doc-strings: "/ln" -> "/la".
6068
6069 2006-02-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6070
6071 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Improve the
6072 error message when there's an evaluation error to show whether
6073 it's loaded from source or not.
6074 (c-filter-ops): Make it available at runtime too to work when
6075 `c-make-init-lang-vars-fun' needs to evaluate from source.
6076
6077 2006-02-24 Juanma Barranquero <lekktu@gmail.com>
6078
6079 * help.el (help): Revert last part of 2006-02-23 change (deletion
6080 of the `provide' call).
6081
6082 2006-02-23 Juri Linkov <juri@jurta.org>
6083
6084 * compare-w.el (compare-windows-highlight): Add new value
6085 `persistent' and change :type from `boolean' to `choice'.
6086 (compare-windows-overlays1, compare-windows-overlays2):
6087 New internal variables.
6088 (compare-windows-highlight): If compare-windows-highlight is
6089 `persistent', add current overlays to compare-windows-overlays[12]
6090 instead of adding compare-windows-dehighlight to pre-command-hook.
6091 (compare-windows-dehighlight): Delete all overlays from
6092 compare-windows-overlays[12].
6093
6094 * info.el (Info-search): Don't bind search-spaces-regexp to
6095 Info-search-whitespace-regexp in non-regexp isearch mode.
6096
6097 2006-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
6098
6099 * help.el (describe-mode): Pass `mode-name' to format-mode-line.
6100
6101 2006-02-23 Juanma Barranquero <lekktu@gmail.com>
6102
6103 * textmodes/org.el (org-xemacs-p)
6104 (org-export-html-show-new-buffer, org-table-may-need-update)
6105 (org-insert-item, org-mhe-get-message-real-folder)
6106 (org-mhe-get-message-folder-from-index)
6107 (org-mhe-get-message-folder, org-mhe-get-message-num)
6108 (org-mhe-get-header, org-make-org-heading-search-string)
6109 (org-make-org-heading-camel, org-table-sort-lines)
6110 (org-format-org-table-html, org-format-table-table-html):
6111 Fix typos in docstrings.
6112
6113 2006-02-23 Carsten Dominik <dominik@science.uva.nl>
6114
6115 * textmodes/org.el (org-cleaned-string-for-export)
6116 (org-solidify-link-text): New function.
6117 (org-add-hook): Use `add-local-hook' instead of `make-local-hook' for
6118 XEmacs, just to silence the compiler.
6119 (org-export-as-ascii, org-export-as-html-and-open):
6120 Use `org-cleaned-string-for-export' and create internal links.
6121 (org-follow-mhe-link): Require mh-e, use folder.
6122
6123 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
6124
6125 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face properly.
6126
6127 * progmodes/gdb-ui.el (gdb-debug-ring-max): Rename from
6128 gdb-debug-log-length.
6129 (gdb-debug-ring): Rename from gdb-debug-log-ring. Don't make
6130 it a real ring but...
6131 (gud-gdba-marker-filter): ...make it work like mark-ring.
6132 (gdb-enable-debug): Rename from gdb-enable-debug-log.
6133 (gdb-mouse-jump): New function. Add bindings.
6134
6135 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
6136
6137 * progmodes/gdb-ui.el (gdb-signalled): New variable and function.
6138 (gdb-debug-log-ring): Rename from gdb-debug-log and make a ring.
6139 (gdb-send, gdb-send-item, gud-gdba-marker-filter): Use it.
6140 (gdb-debug-log-length): Customize it's length.
6141 (gud-watch, gdb-var-create-handler): Display function::var format
6142 but don't use to create variable object.
6143 (gdb-var-create-handler): Use message-box in place of message.
6144 (gdb-stopped): Call gdb-exited if signalled.
6145
6146 2006-02-22 Carsten Dominik <dominik@science.uva.nl>
6147
6148 * textmodes/reftex.el (reftex-locate-file): Remove duplicate function.
6149
6150 * textmodes/reftex-vars.el (reftex-try-all-extensions): New option.
6151
6152 * textmodes/reftex.el (reftex-locate-file): Search all extensions
6153 if `reftex-try-all-extensions' is set.
6154
6155 * textmodes/reftex-dcr.el (reftex-view-crossref): New argument to
6156 fail silently when there is no valid argument at point.
6157 (reftex-view-crossref-when-idle): Call `reftex-view-crossref' with
6158 `fail-silently' argument. From a patch by David Reiter.
6159
6160 * textmodes/org.el (org-mark-ring-push, org-mark-ring-goto):
6161 New commands.
6162 (org-mark-ring): New variable.
6163 (org-mark-ring-length): New option.
6164 (org-open-at-point, org-goto, org-open-file): Push old position
6165 onto the mark ring.
6166 (org-add-hook): New function.
6167 (org-export-table-remove-special-lines): New option.
6168 (org-skip-comments, org-format-org-table-html): Respect new
6169 option `org-export-table-remove-special-lines'.
6170 (org-open-file): Allow special command configuration for
6171 directory link.
6172 (org-file-apps): Fix bugs in customize type, added setting
6173 for directories.
6174 (org-activate-tags, org-format-agenda-item, org-complete)
6175 (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
6176 (org-get-tags, org-get-buffer-tags, org-open-at-point)
6177 (org-link-search, org-make-org-heading-search-string)
6178 (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
6179 (org-radio-targets, org-file-link-context-use-camel-case)
6180 (org-activate-camels): New options.
6181 (org-update-radio-target-regexp, org-all-targets)
6182 (org-make-target-link-regexp, org-activate-target-links):
6183 New functions.
6184 (org-make-org-heading-search-string): New function.
6185 (org-store-link, org-insert-link): Use new option
6186 `org-file-link-context-use-camel-case'.
6187 (org-activate-camels): Use new option `org-activate-camels'.
6188 (org-link-regexp): Add mhe prefix.
6189 (org-open-at-point, org-store-link): Support for mhe links.
6190 (org-mhe-get-message-real-folder, org-mhe-get-message-folder)
6191 (org-mhe-get-message-folder-from-index, org-mhe-get-message-num)
6192 (org-mhe-get-header, org-follow-mhe-link): New functions.
6193 (org-remove-angle-brackets, org-add-angle-brackets):
6194 New functions.
6195 (org-bracket-link-regexp): New constant.
6196 (org-read-date): Fix bug that was rejecting all typed dates.
6197 (org-link-search): Make hierarchy above visible after a match.
6198 (org-follow-bbdb-link): Inhibit electric mode for BBDB.
6199 (org-store-link): Fix bug with link creation when cursor is in
6200 an empty line.
6201 (org-open-at-point): Fix bug with matching a link.
6202 Fixed buggy argument sequence in call to `org-view-tags'.
6203 (org-compile-prefix-format): Set `org-prefix-has-tag'.
6204 (org-prefix-has-tag): New variable.
6205 (org-format-agenda-item): Remove tags from headline
6206 if appropriate.
6207 (org-agenda-remove-tags-when-in-prefix): New option.
6208
6209 2006-02-21 Michael Kifer <kifer@cs.stonybrook.edu>
6210
6211 * ediff-diff.el (ediff-setup-diff-regions, ediff-setup-diff-regions3):
6212 Fix the regular expressions.
6213
6214 2006-02-21 Richard M. Stallman <rms@gnu.org>
6215
6216 * progmodes/sh-script.el (sh-mode): Set shell type based on file name
6217 if there's no other specific basis.
6218
6219 * emacs-lisp/unsafep.el (unsafep): Don't treat &rest or &optional
6220 as variables at all.
6221 (unsafep-variable): Rename arg; doc fix.
6222
6223 * abbrevlist.el (list-one-abbrev-table): Add autoload.
6224
6225 * calendar/appt.el (diary-selective-display): Add defvar.
6226
6227 * sort.el (sort-columns): Use Posix arg syntax for `sort'.
6228
6229 * isearch.el (search-whitespace-regexp): Fix custom type.
6230
6231 * help.el (describe-key-briefly): Compute interactive args
6232 in same was as before previous change.
6233
6234 * files.el (enable-local-variables): Doc fix.
6235
6236 2006-02-21 Kim F. Storm <storm@cua.dk>
6237
6238 * fringe.el: Cleanup as file is now pre-loaded.
6239 (fringe-bitmaps): Initialize unconditionally.
6240 (fringe-mode, set-fringe-style): Remove autoload cookies.
6241
6242 2006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
6243
6244 * fringe.el (fringe-bitmaps): Rename `horisontal-bar' to
6245 `horizontal-bar'.
6246 (fringe-cursor-alist): Use `horizontal-bar'.
6247
6248 2006-02-20 Kim F. Storm <storm@cua.dk>
6249
6250 * fringe.el (fringe-bitmaps): Update to new bitmap names.
6251 (fringe-indicator-alist, fringe-cursor-alist): Initialize.
6252
6253 * loadup.el: Load "fringe" on window systems.
6254
6255 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
6256
6257 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for all
6258 out of scope components.
6259
6260 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): Don't enable by
6261 default.
6262
6263 2006-02-20 Chong Yidong <cyd@stupidchicken.com>
6264
6265 * custom.el (customize-mark-to-save, customize-mark-as-set):
6266 Load the symbol first.
6267
6268 2006-02-20 Juanma Barranquero <lekktu@gmail.com>
6269
6270 * buff-menu.el (list-buffers-noselect): Turn also "\n" into a
6271 strech spec so it doesn't display as "^J" on the header line
6272 when `Buffer-menu-use-header-line' is t.
6273
6274 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
6275
6276 * speedbar.el (speedbar-make-button): Keep text properties
6277 of string arguments if desired.
6278
6279 * progmodes/gud.el (gud-speedbar-buttons): Fontify watch
6280 expessions.
6281
6282 * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Force update
6283 of speedbar.
6284
6285 2006-02-19 Ryan Yeske <rcyeske@gmail.com>
6286
6287 * ffap.el (ffap-read-file-or-url): Bind `completion-ignore-case'
6288 to value of `read-file-name-completion-ignore-case'.
6289
6290 2006-02-19 Chong Yidong <cyd@stupidchicken.com>
6291
6292 * custom.el (customize-mark-as-set): Push to `user' theme.
6293
6294 * cus-edit.el (custom-save-variables): Allow unthemed values.
6295 (customize-set-variable): Push setting to `user' theme.
6296
6297 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
6298
6299 * progmodes/gud.el: Don't require font-lock as it's now
6300 automatically loaded.
6301 (gud-speedbar-buttons): Replace gdb-var-changed with
6302 gdb-force-update.
6303
6304 * progmodes/gdb-ui.el (gdb-force-update): Rename from
6305 gdb-var-changed.
6306 (gdb-post-prompt): Use it.
6307 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
6308 (gdb-var-update-handler, gdb-var-delete)
6309 (gdb-speedbar-expand-node, gdb-var-list-children-handler-1)
6310 (gdb-var-update-handler-1): Don't set gdb-var-changed, just set
6311 gdb-force-update in gdb-post-prompt.
6312 (gdb-reset): Clear watch expressions from speedbar when quitting.
6313
6314 2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
6315
6316 * viper-cmd.el (viper-insert-state-post-command-sentinel)
6317 (viper-change-state-to-vi, viper-change-state-to-emacs):
6318 Make aware of cursor coloring in the Emacs state.
6319 (viper-special-read-and-insert-char): Use read-char-exclusive.
6320 (viper-minibuffer-trim-tail): Workaround for fields in minibuffer.
6321
6322 * viper-init.el (viper-emacs-state-cursor-color): New variable.
6323
6324 * viper-util.el (viper-save-cursor-color)
6325 (viper-get-saved-cursor-color-in-replace-mode)
6326 (viper-get-saved-cursor-color-in-insert-mode)
6327 (viper-restore-cursor-color): Make aware of the cursor color in Emacs
6328 state.
6329 (viper-get-saved-cursor-color-in-emacs-mode): New function.
6330
6331 * ediff-diff.el (ediff-ignore-case, ediff-ignore-case-option)
6332 (ediff-ignore-case-option3, ediff-actual-diff-options)
6333 (ediff-actual-diff3-options): New variables to control case sensitivity.
6334 (ediff-make-diff2-buffer, ediff-setup-fine-diff-regions)
6335 (ediff-setup-diff-regions3): Make aware of case-sensitivity.
6336 (ediff-toggle-ignore-case): New function.
6337 (ediff-extract-diffs, ediff-extract-diffs3): Preserve point in buffers.
6338
6339 * ediff-help.el (ediff-long-help-message-narrow2)
6340 (ediff-long-help-message-compare2, ediff-long-help-message-compare3)
6341 (ediff-long-help-message-word-mode): Add ignore-case command.
6342 (ediff-help-for-quick-help): Add ignore-case command.
6343
6344 * ediff-merg.el: Move provide to the end.
6345
6346 * ediff-ptch.el: Move provide to the end.
6347
6348 * ediff-wind.el: Move provide to the end.
6349
6350 * ediff-mult.el: Move provide to the end.
6351 (ediff-set-meta-overlay): Enable follow-link.
6352
6353 * ediff.el: Move provide to the end.
6354 Break recursive load cycle in eval-when-compile.
6355 (ediff-patch-buffer): Better heuristics.
6356
6357 * ediff-util.el: Move provide to the end.
6358 Break recursive load cycle in eval-when-compile.
6359 (ediff-setup-keymap): Add binding for #c. Replace some defsubsts with
6360 defuns.
6361 (ediff-submit-report): Pass the values of ediff-diff3-program,
6362 ediff-diff3-options.
6363
6364 2006-02-19 Juanma Barranquero <lekktu@gmail.com>
6365
6366 * help-fns.el (help-do-arg-highlight): Recognize also ARG- followed by
6367 the opening bracket of the following bracketing pairs: {}, [], (), <>,
6368 `' (for example, in the docstring of `windmove-default-keybindings').
6369
6370 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
6371
6372 * progmodes/gud.el (gud-speedbar-buttons): Update properly for
6373 shadow face. Don't provide binding to edit variable when it is
6374 out of scope.
6375
6376 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
6377 (gdb-var-update-handler): Detect out of scope variables with pre
6378 GDB 6.4 too.
6379 (gdb-post-prompt): Revert change from 2006-02-17 (force update).
6380 Reset status of variable objects to nil in update handlers.
6381 (gdb-var-update-handler-1): Detect when a variable object comes
6382 in scope. setcar on var changes gdb-var-list directly.
6383
6384 2006-02-17 Juri Linkov <juri@jurta.org>
6385
6386 * ffap.el (ffap) <defface>: Add explicit face declaration.
6387 (ffap-highlight): Use face `ffap' directly instead of checking
6388 for its existence.
6389
6390 * icomplete.el (icomplete-get-keys): Use `t' for the second arg
6391 `visible-ok' of `other-buffer' to find the right original buffer.
6392
6393 * info.el (Info-search): Skip `Local Variables' node.
6394
6395 2006-02-17 Juri Linkov <juri@jurta.org>
6396
6397 * info.el (Info-find-file): Check for symbols `apropos', `history',
6398 `toc' in the input filename, and return these symbols as is.
6399 (Info-find-node-2): Set Info-current-file to symbols `apropos',
6400 `history', `toc' instead of strings.
6401 (Info-set-mode-line): For non-string Info-current-file use the
6402 symbol's name inside **.
6403 (Info-isearch-push-state): Add quote before Info-current-file and
6404 Info-current-node.
6405 (Info-isearch-pop-state): Use `equal' instead of `string='.
6406 (Info-extract-pointer, Info-following-node-name): Use
6407 `match-string-no-properties' instead of `match-string'.
6408 (Info-up): Check `old-file' for `stringp'.
6409 (Info-history): Use `equal' instead of `string-equal'.
6410 Check `file' for `stringp'.
6411 (Info-history): Use symbol `history' instead of string as first arg
6412 of `Info-find-node'.
6413 (Info-toc): Check `Info-current-file' for `stringp'. Use symbol
6414 `toc' instead of string.
6415 (Info-extract-menu-node-name): Use `buffer-substring-no-properties'
6416 instead of `buffer-substring', and `match-string-no-properties'
6417 instead of `match-string'.
6418 (Info-index-nodes): Check for symbols `apropos', `history', `toc'
6419 instead of strings.
6420 (info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
6421 Use symbol `apropos' instead of string.
6422 (Info-copy-current-node-name): Check `Info-current-file' for
6423 `stringp' and construct a command with `Info-find-node' from it.
6424 (Info-fontify-node): Use `match-string-no-properties' instead of
6425 `match-string' and check file names for `stringp'.
6426 (Info-desktop-buffer-misc-data): Check for symbols `apropos',
6427 `history', `toc' instead of strings.
6428
6429 2006-02-17 Chong Yidong <cyd@stupidchicken.com>
6430
6431 * files.el: Rearrange functions and variables in the file local
6432 variables section.
6433
6434 2006-02-17 Reiner Steib <Reiner.Steib@gmx.de>
6435
6436 * files.el: Add truncate-lines, ispell-check-comments and
6437 ispell-local-dictionary as safe local variables.
6438
6439 2006-02-18 Nick Roberts <nickrob@snap.net.nz>
6440
6441 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for
6442 out of scope variables.
6443 (gud-speedbar-buttons): Use unless.
6444
6445 * progmodes/gdb-ui.el (gdb-var-list): Update doc string.
6446 (gdb-init-1, gdb-var-changed): Set gdb-var-changed to t initially.
6447 (gdb-show-changed-values): Also use for out of scope variables.
6448 (gdb-var-update-handler-1): Note if variable goes out of scope.
6449
6450 2006-02-17 Ryan Yeske <rcyeske@gmail.com>
6451
6452 * net/rcirc.el (rcirc-connect): Make all arguments optional, and
6453 default to global variable values for unsupplied args.
6454 (rcirc-get-buffer-create): Fix bug with setting the target.
6455 (rcirc-any-buffer): Rename from rcirc-get-any-buffer, and include
6456 test for rcirc-always-use-server-buffer-flag here.
6457 (rcirc-response-formats): Add %N, which is a facified nick. %n
6458 uses the default face. Change the ACTION format string. If the
6459 "nick" is the server, don't print anything for that field.
6460 Comment fixes.
6461 (rcirc-target-buffer): Don't test
6462 rcirc-always-use-server-buffer-flag here.
6463 (rcirc-print): Squeeze extra spaces out of the text before message.
6464 (rcirc-put-nick-channel): Strip potential "@" char from nick
6465 before adding them to nick table.
6466 (rcirc-url-regexp): Improve to match address like "foo.com".
6467
6468 2006-02-17 Eli Zaretskii <eliz@gnu.org>
6469
6470 * allout.el (allout-hidden-p): Move this defsubst before
6471 allout-overlay-interior-modification-handler, where it is first
6472 used.
6473
6474 2006-02-17 Ken Manheimer <ken.manheimer@gmail.com>
6475
6476 * allout.el: Use allout invisible-text overlays instead of
6477 selective display for concealed text. Also, lots of general
6478 cleanup, and improved compatibility code.
6479
6480 (allout-version) Incremented, corrected, revised, and refined
6481 module commentary.
6482
6483 (provide 'allout): Moved to the bottom, added a require of overlay.
6484
6485 (allout-encrypt-unencrypted-on-saves): Defaults to t instead of
6486 `except-current'.
6487 (allout-write-file-hook-handler): Minimize delay.
6488 (count-trailing-whitespace-region): New function so
6489 auto-encryption of current topic can resituate cursor exactly.
6490 PGP/GPG encryption trims trailing whitespace from lines, which
6491 must be accounted for across encryption then decryption.
6492
6493 (allout-command-prefix): Now defaults to "\C-c<space>" rather than
6494 just plain "\C-c", to avoid intruding on user's keybinding space.
6495
6496 (allout-toggle-current-subtree-encryption): Pass along fetch-pass
6497 parameter, so user request to provide a new password is done.
6498
6499 (allout-outside-normal-auto-fill-function, allout-auto-fill):
6500 Refined mechanism for auto-filling behavior while in allout mode.
6501
6502 (allout-mode): Explicitly specify the mode map in the docstring.
6503 Clarify provision for various write-file hook var names.
6504 Adjusted for invisible-text overlays instead of selective-display.
6505
6506 (allout-depth): Really return 0 if not within any topic. This
6507 rectifies `allout-beginning-of-level' and sequence numbering
6508 errors that occur when cutting and pasting numbered topics.
6509 Changed from a in-line subst to a regular function, as well.
6510
6511 (allout-pre-next-prefix): Renamed from allout-pre-next-preface.
6512
6513 (allout-end-of-subtree, allout-end-of-subtree)
6514 (allout-end-of-entry, allout-end-of-current-heading)
6515 (allout-next-visible-heading, allout-open-topic, allout-show-entry)
6516 (allout-show-children, allout-show-to-offshoot)
6517 (allout-hide-current-entry, allout-show-current-entry): Rectified
6518 handling of trailing blank lines between items.
6519
6520 (allout-line-boundary-regexp, set-allout-regexp, allout-depth)
6521 (allout-current-depth, allout-unprotected, allout-hidden-p)
6522 (allout-on-current-heading-p, allout-listify-exposed)
6523 (allout-chart-subtree, allout-goto-prefix)
6524 (allout-back-to-current-heading, allout-get-body-text)
6525 (allout-snug-back, allout-flag-current-subtree, allout-show-all)
6526 (allout-hide-region-body, allout-toggle-subtree-encryption)
6527 (allout-encrypt-string, allout-encrypted-key-info)
6528 (allout-next-topic-pending-encryption, allout-encrypt-decrypted)
6529 (allout-file-vars-section-data): Adjusted for use with
6530 invisible-text overlays instead of selective-display.
6531
6532 (allout-kill-line, allout-kill-topic, allout-yank-processing):
6533 Reworked for use with invisible text overlays.
6534
6535 (allout-current-topic-collapsed-p): New function.
6536
6537 (allout-hide-current-subtree): Use allout-current-topic-collapsed-p
6538 to know when to close the containing topic.
6539
6540 (allout-pre-command-business, allout-post-command-business):
6541 Simplify undo-batching and dynamic isearch exposure.
6542
6543 (allout-set-overlay-category): New for invisible-text overlays.
6544 Sets properties of allout-overlay-category, used by
6545 allout-flag-region to set invisible-text overlay properties.
6546 (allout-get-invisibility-overlay): Get the first qualifying
6547 invisibility overlay, so we can find the extent of it.
6548 (allout-back-to-visible-text): Get to just before the beginnining
6549 of the current invisibility overlay, if any.
6550
6551 (allout-overlay-insert-in-front-handler)
6552 (allout-overlay-interior-modification-handler)
6553 (allout-before-change-handler, allout-isearch-end-handler): New
6554 functions to handle extraordinary actions affecting concealed
6555 text.
6556
6557 (allout-flag-region): Use overlays instead of selective-display
6558 for invisible text - by inheritence from the properties of
6559 allout-overlay-category in mainline Emacs, and applied
6560 property-by-property in XEmacs, some recent versions of which
6561 don't inherit the properties from the category. Provisions to
6562 respond to concealed-text edits simplified drastically.
6563
6564 (allout-isearch-rectification, allout-isearch-was-font-lock)
6565 (allout-isearch-expose, allout-enwrap-isearch)
6566 (allout-isearch-abort, allout-pre-was-isearching)
6567 (allout-isearch-prior-pos, allout-isearch-did-quit)
6568 (allout-isearch-dynamic-expose)
6569 (allout-hide-current-entry-completely): Functions deleted.
6570
6571 (allout-undo-aggregation): Explicit undo aggregation no longer
6572 necessary due to transition away from selective-display.
6573
6574 (set-allout-regexp, allout-up-current-level)
6575 (allout-next-visible-heading, allout-forward-current-level)
6576 (allout-open-topic, allout-reindent-body, allout-rebullet-topic)
6577 (allout-kill-line, allout-yank-processing, allout-show-children)
6578 (allout-expose-topic, allout-old-expose-topic)
6579 (allout-listify-exposed, allout-insert-latex-header)
6580 (allout-toggle-subtree-encryption, allout-encrypt-string)
6581 (remove-from-invisibility-spec, allout-hide-current-subtree):
6582 Ditched unused variables.
6583
6584 2006-02-17 Agustin Martin <agustin.martin@hispalinux.es>
6585
6586 * textmodes/ispell.el (ispell-change-dictionary): Call
6587 ispell-buffer-local-dict instead of
6588 ispell-accept-buffer-local-defs.
6589 (ispell-local-dictionary-alist): Accept as valid any coding-system
6590 supported by Emacs.
6591 (ispell-dictionary-alist-3): Esperanto dictionary's coding system
6592 changed to iso-8859-3.
6593
6594 2006-02-17 Nick Roberts <nickrob@snap.net.nz>
6595
6596 * speedbar.el (speedbar-frame-width): Make an inline function
6597 instead of a macro. Use frame-width.
6598 (speedbar-try-completion, speedbar-update-contents)
6599 (speedbar-timer-fn): Use consp.
6600 (speedbar-update-localized-contents): Try to preserve point.
6601
6602 * progmodes/gdb-ui.el (gdba, gdb-var-list): Improve doc strings.
6603 (menu): Re-order menu items.
6604 (gdb-var-update-regexp, gdb-var-update-regexp-1): Match "in_scope"
6605 field.
6606 (gdb-var-update-handler-1): Use it for GDB 6.4+.
6607 (gdb-post-prompt): Speed things by not forcing update.
6608
6609 2006-02-16 Chong Yidong <cyd@stupidchicken.com>
6610
6611 * wid-edit.el (widget-button-click): For mouse-1, cancel button
6612 press and perform default action if we get a mouse movement event.
6613
6614 2006-02-16 Juanma Barranquero <lekktu@gmail.com>
6615
6616 * calendar/icalendar.el (icalendar--get-event-property)
6617 (icalendar--get-event-property-attributes): Fix typos in
6618 docstrings.
6619
6620 * progmodes/flymake.el (flymake-fix-file-name): Fix typo in
6621 docstring.
6622
6623 2006-02-15 Juanma Barranquero <lekktu@gmail.com>
6624
6625 * bs.el (bs-mode): Use `buffer-disable-undo'.
6626 (bs--get-file-name): Simplify.
6627 (bs-show-in-buffer): Mark the buffer as not modified.
6628
6629 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
6630
6631 * wid-edit.el (widget-keymap): Bind down-mouse-1 to
6632 widget-button-click.
6633
6634 * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
6635 (custom-mode): Update docstring.
6636
6637 * cus-theme.el (custom-new-theme-mode-map): Remove mouse-1
6638 binding.
6639
6640 * files.el (hack-local-variables-confirm): Allow scrolling if the
6641 file variable list is too long. Kill temp buffer after use.
6642
6643 2006-02-15 Nick Roberts <nickrob@snap.net.nz>
6644
6645 * progmodes/gud.el (gdb): Improve doc string.
6646 (gdb-script-font-lock-keywords): Expand allowed character set.
6647
6648 * progmodes/gdb-ui.el (gdb-use-separate-io-buffer)
6649 (gdb-display-separate-io-buffer, gdb-frame-separate-io-buffer)
6650 (gdb-separate-io-interrupt, gdb-separate-io-quit)
6651 (gdb-separate-io-stop, gdb-separate-io-eof):
6652 Rename from gdb-inferior-* to gdb-separate-*.
6653 (gdb-set-gud-minor-mode-existing-buffers-1): Improve doc string.
6654
6655 2006-02-14 Jay Belanger <belanger@truman.edu>
6656
6657 * calc/calc-arith.el (math-check-known-scalarp): Make sure
6658 expression is a symbol before checking that it is bound.
6659
6660 * calc/calcalg2.el (math-integrate-by-parts): Do a more careful
6661 test to see if equation can be solved.
6662
6663 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
6664
6665 * wid-edit.el (widget-button-click): Use :pressed-face property
6666 for overlay face, if it exists.
6667
6668 * cus-edit.el (custom-manual, custom-add-see-also)
6669 (custom-add-parent-links, custom-group-link): Add :pressed-face
6670 property to links.
6671
6672 * files.el (hack-local-variables): Remove ignored variables before
6673 checking if any variables need setting.
6674
6675 2006-02-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6676
6677 * cus-start.el (all): Add x-gtk-whole-detached-tool-bar.
6678
6679 2006-02-14 Juanma Barranquero <lekktu@gmail.com>
6680
6681 * help.el (where-is): Fix message for remapped commands.
6682
6683 * mwheel.el (mouse-wheel-click-event, mouse-wheel-mode):
6684 Fix typos in docstrings.
6685
6686 2006-02-13 Chong Yidong <cyd@stupidchicken.com>
6687
6688 * files.el (safe-local-variable-values): New option.
6689 (hack-local-variables-prop-line): Return a list of variable-value
6690 pairs if MODE-ONLY is non-nil.
6691 (hack-local-variables): Construct list of variable-value pairs,
6692 and apply or reject them in one go. Ask for confirmation if
6693 variables are not known safe.
6694 (hack-local-variables-confirm): Complete rewrite. Support
6695 `safe-local-variable-values'.
6696 (enable-local-variables): Update docstring to reflect new
6697 behavior.
6698 (ignored-local-variables): Ignore ignored-local-variables and
6699 safe-local-variable-values.
6700 (safe-local-variable-p): New function.
6701 (risky-local-variable-p): `safe-local-variable' property check
6702 moved to safe-local-variable-p.
6703 (hack-one-local-variable): Checks moved to hack-local-variables.
6704
6705 (byte-compile-dynamic, c-basic-offset, c-file-style)
6706 (c-indent-level, comment-column, fill-column, fill-prefix)
6707 (indent-tabs-mode, kept-new-versions, no-byte-compile)
6708 (no-update-autoloads, outline-regexp, page-delimiter)
6709 (paragraph-start, paragraph-separate, sentence-end)
6710 (sentence-end-double-space tab-width, version-control):
6711 Add `safe-local-variable' property.
6712
6713 * find-lisp.el: Delete nonexistent `autocompile' file variable.
6714
6715 * icomplete.el, play/landmark.el: Change nonexistent
6716 `outline-layout' file variable to `allout-layout'.
6717
6718 2006-02-14 Nick Roberts <nickrob@snap.net.nz>
6719
6720 * progmodes/gdb-ui.el (gud-watch, gdb-invalidate-registers-1)
6721 (gdb-get-changed-registers): Test value of gud-minor-mode relative
6722 to gud-comint-buffer.
6723 (gdb-speedbar-expand-node, gdb-locals-mode): Use functions in
6724 gdb-ui.el for gdb-mi.el.
6725 (gdb-post-prompt, gdb-get-changed-registers): Move test for
6726 registers buffer to gdb-get-changed-registers.
6727 (gdb-breakpoint-regexp): New regexp. Allow toggling and
6728 deletion of catchpoints (throw and catch).
6729 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
6730 (gdb-goto-breakpoint): Use it for both gdb-ui and gdb-mi.
6731 (gdb-find-file-hook, gdb-set-gud-minor-mode-existing-buffers-1)
6732 (gdb-var-list-children-1, gdb-info-breakpoints-custom)
6733 (gdb-var-update-1, gdb-invalidate-locals-1): Use also for gdb-mi.
6734
6735 2006-02-13 Jay Belanger <belanger@truman.edu>
6736
6737 * calc/calc-arith.el (math-check-known-matrixp): Make sure
6738 expression is a symbol before checking that it is bound.
6739
6740 2006-02-13 Richard M. Stallman <rms@gnu.org>
6741
6742 * mouse.el (mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
6743 for the minibuffer too, but not if resize-mini-windows will interfere.
6744
6745 * help.el (describe-key-briefly, describe-key): Do all arg-reading
6746 inside `interactive' spec.
6747 (describe-key-briefly-internal, describe-key-internal):
6748 Functions merged back into their callers.
6749
6750 2006-02-13 Martin Rudalics <rudalics@gmx.at>
6751
6752 * info.el (info-xref-visited): Inherit from info-xref too.
6753 (Info-set-mode-line): Replace occurrences of `%' by `%%'
6754 when propertizing Info-current-file and Info-current-node.
6755
6756 2006-02-13 Juri Linkov <juri@jurta.org>
6757
6758 * tumme.el (tumme-thumbnail-storage): Fix docstring.
6759 (tumme-thumb-name): Fix per-directory format.
6760
6761 2006-02-13 Juanma Barranquero <lekktu@gmail.com>
6762
6763 * subr.el (substitute-key-definition): Doc fix (hide internal arg).
6764
6765 2006-02-12 Miles Bader <miles@gnu.org>
6766
6767 * net/rcirc.el (rcirc-format-response-string): Fix small bugs.
6768
6769 2006-02-13 Mathias Dahl <mathias.dahl@gmail.com>
6770
6771 * tumme.el: Remove history section. If someone needs the it, it
6772 can always be found in CVS.
6773
6774 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
6775
6776 * tumme.el (tumme-thumbnail-storage): Update docstring. Add info
6777 about the Thumbnail Managing Standard option.
6778
6779 2006-02-12 Richard M. Stallman <rms@gnu.org>
6780
6781 * subr.el (substitute-key-definition): Doc fix.
6782
6783 * simple.el (blink-matching-paren-dont-ignore-comments): Doc fix.
6784
6785 * files.el (magic-mode-alist): Don't use `\\s ' in regexps.
6786
6787 * info.el (Info-mode): Doc fix.
6788
6789 * progmodes/ebrowse.el (ebrowse-global-prefix-key): Change to C-c C-m.
6790
6791 2006-02-12 Michael Albinus <michael.albinus@gmx.de>
6792
6793 * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
6794 because on Solaris a POSIX compatible "id" is needed. Reported by
6795 Magnus Henoch <mange@freemail.hu>.
6796
6797 2006-02-12 Juri Linkov <juri@jurta.org>
6798
6799 * tumme.el: Remove todo item about Thumbnail Managing Standard.
6800 (tumme) <defgroup>: Change :group to `multimedia'.
6801 (tumme-thumbnail-storage): Add choice `standard' for Thumbnail
6802 Managing Standard.
6803 (tumme-cmd-create-thumbnail-options): Use %w and %h instead of %s.
6804 Fix dostring.
6805 (tumme-cmd-create-temp-image-options): Use %w and %h instead of %x
6806 and %y. Fix docstring.
6807 (tumme-cmd-pngnq-program, tumme-cmd-pngcrush-program)
6808 (tumme-cmd-create-standard-thumbnail-command): New user options.
6809 (tumme-thumb-size): Set default to 128 if tumme-thumbnail-storage
6810 is `standard'. Fix docstring.
6811 (tumme-thumb-width, tumme-thumb-height): New user options.
6812 (tumme-external-viewer): Try to find various viewers.
6813 (tumme-get-thumbnail-image): Use `create-image' instead of
6814 constructing the `image' structure.
6815 (tumme-insert-thumbnail): Use `png' if tumme-thumbnail-storage is
6816 `standard'.
6817 (tumme-thumb-name): Add file name generation for standard storage.
6818 Simplify code for other storages.
6819 (tumme-thumb-name): Use width %w and height %h instead of size %s.
6820 Add modification time %m and thumbnail-nq8 %q.
6821 Use `tumme-cmd-create-standard-thumbnail-command' if
6822 tumme-thumbnail-storage is `standard'.
6823 (tumme-dired-insert-marked-thumbs): New autoload command.
6824 (tumme-dired-after-readin-hook): New function.
6825 (tumme-line-up-dynamic): Use `tumme-thumb-width' instead of
6826 `tumme-thumb-size'.
6827 (tumme-display-image): Replace size-x %x and size-y %y with
6828 width %w and height %h.
6829
6830 * dired.el (dired-mode-map): Bind `\C-t\C-t' to
6831 `tumme-dired-insert-marked-thumbs'.
6832
6833 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
6834
6835 * tumme.el (tumme-write-tag): Fix small bug (file name did not
6836 include path).
6837 (tumme-mark-tagged-files): Fix bug in regexp used to find rows
6838 matching tag.
6839
6840 2006-02-12 Miles Bader <miles@gnu.org>
6841
6842 * net/rcirc.el (rcirc-nick-abbrevs, rcirc-response-formats):
6843 New variables.
6844 (rcirc-abbrev-nick): New function.
6845 (rcirc-format-response-string): Rewrite to use the formats in
6846 `rcirc-response-formats' and expand escape sequences therein.
6847 A text-property `rcirc-text' is added over the actual response
6848 text to make easy to find inside the returned string.
6849 (rcirc-print): When filling, just look for the `rcirc-text'
6850 text-property to find the appropriate fill prefix, instead of
6851 using hardwired patterns.
6852
6853 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
6854
6855 * tumme.el: Enhance some docstrings. Add todo item about Thumbnail
6856 Managing Standard.
6857
6858 2006-02-11 Kim F. Storm <storm@cua.dk>
6859
6860 * ido.el (ido-buffer-internal): Set mark for ido-insert-buffer.
6861 Don't use insert-buffer; do insert-buffer-substring directly.
6862 (ido-file-internal): Set mark for ido-insert-file. Use insert-file-1.
6863
6864 2006-02-11 Martin Rudalics <rudalics@gmx.at>
6865
6866 * files.el (revert-buffer, recover-file): Replace buffer-read-only
6867 with inhibit-read-only. Suggested by Stefan Monnier.
6868 (revert-buffer): Let insert-file-contents discard
6869 buffer-undo-list. Simplify code.
6870 (find-file, find-file-existing, revert-buffer): Doc-string fixes.
6871
6872 2006-02-11 Eli Zaretskii <eliz@gnu.org>
6873
6874 * menu-bar.el (menu-bar-select-yank): Add a doc string.
6875
6876 * help.el (describe-key-briefly): Now a wrapper for
6877 describe-key-briefly-internal. Bind enable-disabled-menus-and-buttons
6878 to t. Populate yank-menu if empty.
6879 (describe-key-briefly-internal): Renamed from describe-key-briefly.
6880 (describe-key): Now a wrapper for describe-key-internal. Bind
6881 enable-disabled-menus-and-buttons to t. Populate yank-menu if empty.
6882 (describe-key-internal): Renamed from describe-key.
6883
6884 2006-02-11 Milan Zamazal <pdm@zamazal.org>
6885
6886 * progmodes/glasses.el (glasses-separator): Doc fix.
6887 (glasses-original-separator): New defcustom.
6888 (glasses-make-readable, glasses-convert-to-unreadable): Use it.
6889
6890 2006-02-11 Martin Rudalics <rudalics@gmx.at>
6891
6892 * mwheel.el (mouse-wheel-up-event): Doc fix.
6893
6894 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
6895
6896 * tumme.el (tumme-dir): Change default value to "~/.emacs.d/tumme/".
6897 (tumme-dir): New function. Copied from thumbs.el.
6898
6899 2006-02-10 Juanma Barranquero <lekktu@gmail.com>
6900
6901 * desktop.el (desktop-outvar): Fix typo.
6902 (desktop-save-buffer-p): Doc fix.
6903
6904 * subr.el (substitute-key-definition): Fix typo.
6905
6906 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6907
6908 * frame.el (select-frame-set-input-focus): Call x-focus-frame also
6909 when window-system is mac.
6910
6911 * term/mac-win.el (fontset-standard): Rename from "fontset-mac".
6912
6913 2006-02-10 Kim F. Storm <storm@cua.dk>
6914
6915 * subr.el (substitute-key-definition-key): Pass t for NOERROR to
6916 indirect-function instead of using condition-case.
6917
6918 2006-02-10 Mathias Dahl <mathias.dahl@gmail.com>
6919
6920 * tumme.el (tumme-copy-with-exif-file-name): Try to make docstring
6921 less `colloquial'...
6922
6923 2006-02-09 Mathias Dahl <mathias.dahl@gmail.com>
6924
6925 * tumme.el: Add a couple of todo items.
6926
6927 2006-02-09 Lars Hansen <larsh@soem.dk>
6928
6929 * hilit-chg.el: Add highlight-changes-mode to desktop-locals-to-save.
6930 (highlight-changes-mode): Don't change desktop-locals-to-save.
6931
6932 2006-02-09 Chong Yidong <cyd@stupidchicken.com>
6933
6934 * image-mode.el (image-toggle-display): Clear image cache if using
6935 filename.
6936
6937 2006-02-09 Masatake YAMATO <jet@gyve.org>
6938
6939 * dired-x.el (dired-guess-shell-alist-default): Add .man as
6940 a `dired-man' target.
6941
6942 * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start
6943 boundary of symbols.
6944
6945 2006-02-08 Peter Doornbosch <peter.doornbosch@luminis.nl> (tiny change)
6946
6947 * vc-svn.el (vc-svn-print-log): Show recent commits as well.
6948
6949 2006-02-09 Juanma Barranquero <lekktu@gmail.com>
6950
6951 * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
6952 `mapcar'; return nil.
6953
6954 2006-02-08 Chong Yidong <cyd@stupidchicken.com>
6955
6956 * mouse.el (mouse-drag-track): Don't change window if we rebind to
6957 some other event.
6958
6959 2006-02-08 Ryan Yeske <rcyeske@gmail.com>
6960
6961 * net/rcirc.el (rcirc-startup-channels-alist):
6962 Add irc.freenode.net and #emacs as defaults.
6963 (rcirc-ignore-all-activity-flag): Remove variable.
6964 (rcirc-authinfo): New variable.
6965 (rcirc-authinfo-filename): Remove variable.
6966 (rcirc-always-use-server-buffer-flag): New flag.
6967 (rcirc): M-x rcirc will automatically connect without prompting.
6968 C-u M-x rcirc will prompt. Use rcirc-connect to create a
6969 connection in lisp.
6970 (rcirc-process-server-response-1): Remove everything but the nick
6971 portion of the sender so it doesn't need to be done everywhere
6972 else. Update related code.
6973 (global-map): Remove global keybindings.
6974 (rcirc-get-buffer-create): Make sure rcirc-topic is set.
6975 (rcirc-send-input): Split into several functions.
6976 (rcirc-process-input-line, rcirc-process-message)
6977 (rcirc-process-command): New functions.
6978 (rcirc-target-buffer): New function to determine where to route
6979 messages.
6980 (rcirc-user-nick): Save match data.
6981 (rcirc-toggle-ignore-buffer-activity)
6982 (rcirc-update-activity-string): Remove global ignore functionality,
6983 which can be done now by toggling rcirc-track-minor-mode.
6984 (rcirc-track-minor-mode-map): New keymap.
6985 (rcirc-track-minor-mode): New minor-mode.
6986 (ignore): Make the ignore output nicer. Always print it when
6987 adding or removing nicks.
6988 (rcirc-url-regexp): Improve.
6989 (rcirc-mangle-text): Remove properties before using text in the
6990 modeline.
6991 (rcirc-authenticate): Authentication data comes from
6992 rcirc-authinfo, not the file pointed to by rcirc-authinfo-file.
6993 (rcirc-server-prefix): Inherit from rcirc-server.
6994
6995 2006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change)
6996
6997 * Makefile.in (compile): Append "|| true" to the end of the `find'
6998 command, like compile-always does.
6999
7000 2006-02-08 Sam Steingold <sds@gnu.org>
7001
7002 * net/tramp.el (tramp-maybe-open-connection): Do not wait for
7003 output from a dead connection.
7004
7005 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
7006
7007 * dired.el (dired-mode-map): Add more bindings for tumme.
7008
7009 2006-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
7010
7011 * wdired.el (wdired-mode-map): Use remap.
7012 (wdired-get-filename): Massage.
7013 (wdired-perm-mode-map): Don't copy bindings from wdired-mode-map.
7014 (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit): Use the
7015 `keymap' property rather than `local-map'.
7016
7017 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
7018
7019 * tumme.el (tumme-get-thumbnail-image): New utility function.
7020 Suggested by from Chong Yidong.
7021 (tumme-dired-with-window-configuration): Rename from
7022 `tumme-dired'. Add code to save window configuration.
7023 (tumme-restore-window-configuration): New command to restore the
7024 window configuration that `tumme-dired-with-window-configuration'
7025 saves before it changes the window configuration.
7026 (tumme-show-all-from-dir): New command to display thumbnails for
7027 all files in a directory entered by the user, like M-x thumbs.
7028 (tumme-display-thumbs): Call `pop-to-buffer' after all thumbnails
7029 have been created.
7030 (tumme-display-thumbnail-original-image): Call `display-buffer'.
7031 (obsolete-tumme-display-thumbnail-original-image-and-buffer):
7032 Remove obsolete test function.
7033
7034 2006-02-07 Juanma Barranquero <lekktu@gmail.com>
7035
7036 * vc.el (small-temporary-file-directory): Remove defvar; there's
7037 a defcustom for it in files.el.
7038
7039 * tumme.el (tumme-get-thumbnail-image): Add missing arg to `error'.
7040 Fix typo in message.
7041 (tumme-gallery-generate): Fix typo in `error' message.
7042 (tumme-display-window-height-correction)
7043 (tumme-display-window-width-correction, tumme-line-up-dynamic)
7044 (tumme-line-up-interactive): Dox fixes.
7045 (tumme-cmd-rotate-original-options, tumme-display-properties-format)
7046 (tumme-restore-window-configuration, tumme-format-properties-string)
7047 (tumme-create-thumbs, tumme-display-previous-thumbnail-original):
7048 Fix typos in docstrings.
7049
7050 2006-02-07 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
7051
7052 * wdired.el (wdired-get-filename): Fix bug: Don't re-normalize OLD.
7053
7054 2006-02-07 Nick Roberts <nickrob@snap.net.nz>
7055
7056 * progmodes/gud.el (gud-tooltip-mode): Remove autoload cookie.
7057 User should use hook if desired.
7058
7059 * progmodes/gdb-ui.el (gdb-post-prompt): Regenerate breakpoints
7060 buffer if necessary.
7061 (gdb-delete-frame-or-window): New function.
7062 (gdb-breakpoints-mode-map): Bind "q" to it.
7063
7064 2006-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
7065
7066 * textmodes/nroff-mode.el: Clean up name space.
7067 (nroff-mode-syntax-table): Remove spurious `1' in the syntax of \n.
7068 (nroff-mode): Obey the global setting of nroff-electric-mode.
7069 (nroff-electric-mode): Use define-minor-mode and derived-mode-p.
7070
7071 * calendar/calendar.el (calendar-increment-month): Typo in last change.
7072
7073 2006-02-06 Thien-Thi Nguyen <ttn@gnu.org>
7074
7075 * vc-svn.el (vc-svn-previous-version, vc-svn-next-version): New funcs.
7076
7077 2006-02-06 Lars Hansen <larsh@soem.dk>
7078
7079 * generic-x.el (etc-fstab-generic-mode): Add file system types
7080 cifs and usbdevfs. Allow special chars in file names.
7081
7082 2006-02-05 Jay Belanger <belanger@truman.edu>
7083
7084 Update copyright notices of the files in lisp/calc.
7085
7086 2006-02-05 Romain Francoise <romain@orebokech.com>
7087
7088 Update copyright notices of all files in the lisp/play directory.
7089
7090 2006-02-04 Luc Teirlinck <teirllm@auburn.edu>
7091
7092 * ldefs-boot.el: Regenerate.
7093
7094 * emacs-lisp/find-func.el (find-definition-noselect): Minor doc fix.
7095
7096 2006-02-05 Kim F. Storm <storm@cua.dk>
7097
7098 * files.el (magic-mode-regexp-match-limit): New defvar.
7099 (set-auto-mode): Use it to limit magic-mode-alist matching.
7100
7101 2006-02-04 Kevin Rodgers <ihs_4664@yahoo.com>
7102
7103 * simple.el (display-message-or-buffer): Compare the number of
7104 characters to the frame width when determining whether a 1-line
7105 message string will fit in the echo area. Count screen lines
7106 instead of buffer lines when determining whether a multi-line
7107 message will fit in the echo area/minibuffer window.
7108
7109 2006-02-04 Eli Zaretskii <eliz@gnu.org>
7110
7111 * info.el (Info-index, Info-mode): Improve the description of the
7112 `i' command.
7113
7114 * ldefs-boot.el: Regenerate.
7115
7116 2006-02-03 Werner Lemberg <wl@gnu.org>
7117
7118 * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
7119 greedy to find the closing bracket in \*[...] and similar
7120 expressions. This is a first rough fix -- many additional
7121 refinements are necessary to make nroff mode really usable with groff.
7122
7123 2006-02-03 Jens Petersen <petersen@redhat.com> (tiny change)
7124
7125 * international/mule-cmds.el (set-locale-environment):
7126 Add "/usr/share/X11/locale/locale.alias" to search list for xorg-x11
7127 libX11.
7128
7129 2006-02-03 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
7130
7131 * arc-mode.el (archive-maybe-copy): Fix the way directories in the
7132 archive are created in archive-tmpdir.
7133
7134 2006-02-02 John Paul Wallington <jpw@pobox.com>
7135
7136 * ibuffer.el (ibuffer-compressed-file-name-regexp): New defcustom.
7137 (ibuffer-fontification-alist): Use it.
7138 (ibuffer-mode-map): Bind `ibuffer-mark-compressed-file-buffers'
7139 to "* z" and the Ibuffer Mark menu.
7140
7141 * ibuf-ext.el (ibuffer-mark-compressed-file-buffers): New command.
7142
7143 2006-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
7144
7145 * textmodes/table.el (*table--cell-describe-mode)
7146 (*table--cell-describe-bindings): Undo last change since
7147 print-help-return-message is not obsoleted by anything at all.
7148
7149 2006-02-02 Luc Teirlinck <teirllm@auburn.edu>
7150
7151 * emulation/cua-base.el (cua-mode): Doc fix.
7152
7153 2006-02-02 Juanma Barranquero <lekktu@gmail.com>
7154
7155 * dframe.el (dframe-handle-make-frame-visible)
7156 (dframe-handle-iconify-frame, dframe-get-focus)
7157 (dframe-select-attached-frame, dframe-power-click)
7158 (dframe-frame-mode): Fix typos in docstrings.
7159
7160 * ezimage.el (ezimage-mail, ezimage-object-out-of-date)
7161 (ezimage-insert-image-button-maybe, ezimage-insert-over-text):
7162 Fix typos in docstrings.
7163
7164 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer)
7165 (hi-lock-face-buffer, hi-lock-font-lock-hook)
7166 (hi-lock-archaic-interface-message-used)
7167 (hi-lock-file-patterns-range): Fix typos in docstrings.
7168
7169 * savehist.el (savehist-loaded, savehist-load, savehist-install)
7170 (savehist-autosave, savehist-trim-history): Fix typos in docstrings.
7171
7172 * mail/mailclient.el (mailclient-place-body-on-clipboard-flag):
7173 Fix typo in docstring.
7174
7175 * net/newsticker.el (newsticker--decode-iso8601-date)
7176 (newsticker--set-customvar, newsticker--buffer-insert-item)
7177 (newsticker--do-run-auto-mark-filter)
7178 (newsticker--parse-generic-feed): Doc fixes.
7179 (newsticker--retrieval-timer-list, newsticker-url-list)
7180 (newsticker-hide-immortal-items-in-echo-area)
7181 (newsticker-hide-obsolete-items-in-echo-area)
7182 (newsticker-new-item-face, newsticker--enclosure)
7183 (newsticker-buffer-update, newsticker-w3m-show-inline-images)
7184 (newsticker--parse-atom-0.3, newsticker--parse-rss-1.0)
7185 (newsticker--parse-generic-feed, newsticker--cache-contains)
7186 (newsticker--stat-num-items, newsticker-download-enclosures):
7187 Fix typos in docstrings.
7188
7189 * net/rcirc.el (rcirc-debug): Doc fix.
7190 (rcirc-fill-column, rcirc-receive-message-hooks)
7191 (rcirc-browse-url-map, rcirc-read-only-flag, rcirc-prompt)
7192 (rcirc-mode, rcirc-generate-new-buffer-name)
7193 (rcirc-startup-channels, rcirc-ignore-update-automatic)
7194 (rcirc-cmd-ignore, rcirc-browse-url, rcirc-url-regexp):
7195 Fix typos in docstrings.
7196 (rcirc-print): "?\ " -> "?\s".
7197 (rcirc-cmd-join): Improve argument/docstring consistency.
7198
7199 2006-02-01 Mark A. Hershberger <mah@everybody.org>
7200
7201 * xml.el (xml-parse-region): Move save-excursion and set-buffer up
7202 before narrow-to-region.
7203
7204 2006-02-01 Richard M. Stallman <rms@gnu.org>
7205
7206 * simple.el (move-beginning-of-line): Scan properly for invis change.
7207
7208 * replace.el (multi-occur-in-matching-buffers): Fix prev change.
7209
7210 2006-02-01 Michael Albinus <michael.albinus@gmx.de>
7211
7212 * net/tramp.el (tramp-convert-file-attributes): Set file's gid
7213 change bit only when id-format is 'integer. Reported by Matt
7214 Hodges <M.P.Hodges@rl.ac.uk>.
7215
7216 2006-02-01 Juanma Barranquero <lekktu@gmail.com>
7217
7218 * hilit-chg.el (highlight-changes-initial-state)
7219 (highlight-changes-global-initial-state): Doc fixes.
7220 (highlight-changes-global-modes, global-highlight-changes):
7221 Fix typos in docstrings.
7222
7223 2006-02-01 Kim F. Storm <storm@cua.dk>
7224
7225 * emulation/cua-base.el (cua-mode): Mention that CUA enables
7226 transient-mark-mode in doc string.
7227
7228 2006-01-31 Richard M. Stallman <rms@gnu.org>
7229
7230 * replace.el (multi-occur): Doc fix.
7231 (multi-occur-in-matching-buffers): Rename from
7232 multi-occur-by-filename-regexp. Prefix arg says match
7233 buffer names instead of file names.
7234
7235 2006-01-31 Juanma Barranquero <lekktu@gmail.com>
7236
7237 * bs.el: Allow non-default values of `bs-header-lines-length'.
7238 (bs--running-in-xemacs): Remove (not needed anymore).
7239 (bs--set-window-height): Simplify by using `fit-window-to-buffer'
7240 instead of `shrink-window', thus avoiding having to compute the
7241 height of the window.
7242 (bs--up): Wrap around even when there's no header.
7243 (bs--down): Use `forward-line' instead of `next-line'.
7244
7245 2006-01-30 Chong Yidong <cyd@stupidchicken.com>
7246
7247 * image-mode.el (image-toggle-display): Use file name if possible,
7248 instead of unnecessarily allocating a (possibly huge) lisp string.
7249
7250 2006-01-30 John Paul Wallington <jpw@pobox.com>
7251
7252 * subr.el (toplevel): Define `cl-assertion-failed' condition here
7253 because the `assert' macro signals it at runtime.
7254
7255 * emacs-lisp/cl.el (toplevel): Remove definition of
7256 `cl-assertion-failed' condition.
7257
7258 2006-01-30 Nick Roberts <nickrob@snap.net.nz>
7259
7260 * thumbs.el (thumbs-marked-list): Make buffer-local and
7261 permanent-local.
7262 (thumbs-insert-thumb): Make help-echo non-sticky.
7263 (thumbs-file-alist): Use eolp as check for (non)-image.
7264
7265 2006-01-30 Juanma Barranquero <lekktu@gmail.com>
7266
7267 * ediff-mult.el (ediff-meta-buffer-keymap-setup-hook)
7268 (ediff-before-session-group-setup-hooks)
7269 (ediff-default-filtering-regexp, ediff-meta-mark-equal-files):
7270 Fix typos in docstrings.
7271
7272 * window.el (bw-dir, bw-eqdir, balance-windows)
7273 (split-window-keep-point): Fix typos in docstrings.
7274
7275 * textmodes/org.el (org-allow-space-in-links, org-closed-string)
7276 (org-quote-string, org-calendar-to-agenda-key)
7277 (org-agenda-sorting-strategy, org-agenda-use-time-grid)
7278 (org-show-following-heading, org-tags-column)
7279 (org-use-tag-inheritance, org, org-allow-space-in-links)
7280 (org-usenet-links-prefer-google, org-file-apps-defaults-gnu)
7281 (org-enable-table-editor, org-calc-default-modes)
7282 (org-table-allow-automatic-line-recalculation)
7283 (org-export-html-style, org-export-with-fixed-width)
7284 (org-export-with-sub-superscripts, org-special-keyword)
7285 (org-formula, org-time-grid, org-table-may-need-update)
7286 (org-mode, org-goto-ret, org-goto-left, org-goto-right)
7287 (org-goto-quit, org-get-indentation, org-end-of-item)
7288 (org-move-item-down, org-move-item-up)
7289 (org-renumber-ordered-list, org-todo, org-log-done, org-occur)
7290 (org-remove-occur-highlights, org-read-date, org-goto-calendar)
7291 (org-agenda, org-agenda-day-view, org-agenda-previous-date-line)
7292 (org-agenda-log-mode, org-agenda-toggle-diary)
7293 (org-agenda-toggle-time-grid, org-agenda-cleanup-fancy-diary)
7294 (org-agenda-file-to-end, org-agenda-no-heading-message)
7295 (org-agenda-get-closed, org-format-agenda-item)
7296 (org-cmp-priority, org-cmp-category, org-cmp-time)
7297 (org-agenda-change-all-lines, org-agenda-diary-entry)
7298 (org-scan-tags, org-after-todo-state-change-hook, org-tags-view)
7299 (org-link-search, org-camel-to-words, org-open-file)
7300 (org-remember-handler, org-table-convert-region)
7301 (org-table-move-row-down, org-table-move-row-up)
7302 (org-table-copy-region, org-table-wrap-region)
7303 (org-table-toggle-vline-visibility)
7304 (org-table-get-vertical-vector, org-table-modify-formulas)
7305 (org-table-get-specials, org-recalc-commands)
7306 (org-table-rotate-recalc-marks, org-table-eval-formula)
7307 (orgtbl-make-binding, org-in-invisibility-spec-p, org-cycle)
7308 (org-level-color-stars-only, org-insert-heading):
7309 Fix typos in docstrings.
7310 (last-arg): Add defvar.
7311
7312 * makefile.w32-in (WINS): Add erc.
7313 (MH_E_SRC): Update (copied from lisp/Makefile.in).
7314
7315 2006-01-29 Bill Wohler <wohler@newt.com>
7316
7317 * Makefile.in (MH_E_SRC): Add mh-compat.el, mh-folder.el,
7318 mh-letter.el, mh-limit.el, mh-scan.el, mh-show.el, mh-thread.el,
7319 mh-tool-bar.el, mh-xface.el. Remove mh-customize.el, mh-init.el.
7320 (mh-autoloads): Don't use comments on otherwise empty lines.
7321
7322 2006-01-29 Edward O'Connor <ted@oconnor.cx>
7323
7324 * emulation/viper.el (viper-major-mode-modifier-list): Add
7325 insert-state and vi-state entries for erc-mode.
7326 (viper-go-away, viper-set-hooks): Add and remove
7327 viper-comint-mode-hook from erc-mode-hook as appropriate.
7328
7329 * emulation/viper.el (viper-insert-state-mode-list): Add erc-mode.
7330
7331 2006-01-29 Juanma Barranquero <lekktu@gmail.com>
7332
7333 * bs.el (bs--format-aux): Implement `middle' alignment as
7334 described in the docstring for `bs-attributes-list'.
7335 (bs--get-name): Simplify. Don't pad the buffer name.
7336
7337 2006-01-27 Agustin Martin <agustin.martin@hispalinux.es>
7338
7339 * textmodes/ispell.el (ispell-find-aspell-dictionaries): If no
7340 English aspell dictionary is installed, use the first entry of
7341 ispell-dictionary-alist-1.
7342
7343 2006-01-27 Kevin Rodgers <ihs_4664@yahoo.com>
7344
7345 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
7346 Doc fix.
7347
7348 2006-01-27 Michael Albinus <michael.albinus@gmx.de>
7349
7350 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
7351 for `process-file', in order to let it work for older Emacsen too.
7352
7353 2006-01-27 Eli Zaretskii <eliz@gnu.org>
7354
7355 * international/latexenc.el: Add a suitable `coding:' tag.
7356 (latexenc-find-file-coding-system): Undo last change.
7357
7358 2006-01-27 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
7359
7360 * international/latexenc.el (latexenc-find-file-coding-system):
7361 Make sure latexenc-main-file is a regular file and is readable.
7362
7363 2006-01-27 Andre Spiegel <spiegel@gnu.org>
7364
7365 * vc-rcs.el (vc-rcs-fetch-master-state, vc-rcs-consult-headers):
7366 Pass FILE to vc-user-login-name.
7367
7368 * vc-sccs.el (vc-sccs-state): Pass FILE to vc-user-login-name.
7369
7370 2006-01-27 Nick Roberts <nickrob@snap.net.nz>
7371
7372 * thumbs.el (thumbs-do-thumbs-insertion): Suppress message when
7373 there are no more images to display.
7374 (thumbs-mark, thumbs-unmark): Revert change so that they move to
7375 the next image.
7376
7377 2006-01-26 Richard M. Stallman <rms@gnu.org>
7378
7379 * cus-edit.el (custom-mode): Doc: Use advertised-widget-backward.
7380
7381 * wid-edit.el (advertised-widget-backward): New alias.
7382 (widget-keymap): Use advertised-widget-backward for S-TAB.
7383
7384 * tumme.el: Correct the keywords.
7385 (tumme-dir-max-size): Use defvar.
7386 (tumme-setup-dired-keybindings, tumme-dired): Add autoload cookie.
7387
7388 * simple.el (move-beginning-of-line): Take account of fields.
7389 (clone-indirect-buffer-other-window): Take args like
7390 clone-indirect-buffer, and work like it.
7391
7392 * help-fns.el (describe-function): Don't pass `nil' as default.
7393
7394 * files.el (risky-local-variable-p): Follow var aliases.
7395
7396 * subr.el (lazy-completion-table): Doc fix.
7397
7398 * mail/rmailsum.el (rmail-make-summary-line-1): Don't set
7399 global binding of `line'.
7400
7401 2006-01-25 Andre Spiegel <spiegel@gnu.org>
7402
7403 * vc-hooks.el (vc-user-login-name): Rewritten to handle access via
7404 Tramp.
7405
7406 * vc.el (vc-default-dired-state-info): Pass FILE to
7407 vc-user-login-name.
7408 (vc-default-update-changelog): Don't use vc-user-login-name, we
7409 don't need it here.
7410
7411 * net/tramp-vc.el (vc-user-login-name): Comment out defadvice, it is
7412 no longer necessary.
7413
7414 2006-01-25 Kenichi Handa <handa@m17n.org>
7415
7416 * international/mule.el (decode-char): Avoid the overhead of
7417 calling utf-lookup-subst-table-for-decode if
7418 utf-translate-cjk-mode is nil.
7419 (encode-char): Avoid the overhead of calling
7420 utf-lookup-subst-table-for-encode if utf-translate-cjk-mode is
7421 nil.
7422
7423 2006-01-22 Kenichi Handa <handa@m17n.org>
7424
7425 * international/mule.el (make-subsidiary-coding-system): Reset
7426 `coding-system-define-form' property of subsidiaries to nil.
7427 Avoid duplicated entry in coding-system-alist.
7428 (make-coding-system): Avoid duplicated entry in
7429 coding-system-alist.
7430 (define-coding-system-alias): Likewise.
7431
7432 2006-01-24 Luc Teirlinck <teirllm@auburn.edu>
7433
7434 * completion.el: Minor fixes in introductory comment.
7435 (completion-def-wrapper): Fix alist.
7436
7437 2006-01-25 Nick Roberts <nickrob@snap.net.nz>
7438
7439 * thumbs.el (thumbs-new-image-size): New function.
7440 (thumbs-increment-image-size-element)
7441 (thumbs-decrement-image-size-element, thumbs-increment-image-size)
7442 (thumbs-decrement-image-size): Delete.
7443 (thumbs-resize-image-1): Rename from thumbs-resize-image. Keep old
7444 temp files and use to resize.
7445 (thumbs-resize-image): Rename from thumbs-resize-image-interactive.
7446 Use increment argument to enlarge/shrink. Preserve point.
7447 (thumbs-shrink-image): Rename from thumbs-resize-image-size-down.
7448 (thumbs-enlarge-image): Rename from thumbs-resize-image-size-up
7449 (thumbs-show-thumbs-list): Set thumbs-buffer to current-buffer.
7450 (thumbs-mark, thumbs-unmark): Preserve point.
7451 (thumbs-modify-image): Keep old temp files and use to modify.
7452 Cleanup old temp files at load time. Preserve point.
7453 (thumbs-view-image-mode-map): Use new command names.
7454
7455 2006-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
7456
7457 * log-view.el (log-view-minor-wrap): First rev is the one at point.
7458
7459 * calendar/cal-menu.el: Avoid macros from calendar.el so as to break
7460 the nastiest part of the cyclic dependency.
7461 (cal-menu-update): Use dotimes and calendar-increment-month.
7462
7463 * calendar/calendar.el: Remove unnecessary leading stars in docstrings.
7464 (calendar-week-start-day): Add an :initializer.
7465 (calendar-mode-map): Use suppress-keymap, and command remapping.
7466 (describe-calendar-mode): Setup xref-stack info for the back button.
7467 (calendar-star-date): Insert before delete.
7468 (calendar-set-mode-line): Add file-modified info if applicable.
7469 (calendar-increment-month): New function.
7470
7471 2006-01-24 Tobias C. Rittweiler <tcr@freebits.de> (tiny change)
7472
7473 * font-lock.el (lisp-font-lock-keywords-2):
7474 Recognize "& keywords" only at word boundaries.
7475
7476 2006-01-24 Nick Roberts <nickrob@snap.net.nz>
7477
7478 * thumbs.el (thumbs-extra-images): New variable. Make it buffer-local
7479 and permanent-local.
7480 (thumbs-max-image-number): New variable.
7481 (thumbs-do-thumbs-insertion): Use them.
7482 (thumbs-per-line): Change default to 4.
7483 (thumbs-marked-list): Rename from thumbs-markedL.
7484 (thumbs-cleanup-thumbsdir, thumbs-delete-images)
7485 (thumbs-rename-images): Use -list instead of L for internal variables.
7486 (thumbs-call-convert): Use call-process instead of shell-command.
7487 (thumbs-insert-thumb): Add filename as help-echo to each image.
7488 (thumbs-show-from-dir): Rename from thumbs-show-all-from-dir.
7489 Give dir to thumbs-show-thumbs-list.
7490 (thumbs-show-thumbs-list): Set default-directory to that of images.
7491 (thumbs-dired-show): Rename from thumbs-dired-show-all.
7492 (thumbs-display-thumbs-buffer, thumbs-show-more-images): New functions.
7493 (thumbs-mode-map): Bind "+" to thumbs-show-more-images.
7494 (thumbs-view-image-mode-map): Bind "^" to thumbs-display-thumbs-buffer.
7495
7496 2006-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
7497
7498 * ses.el (ses-read-cell): Provide a default value.
7499
7500 2006-01-23 Juanma Barranquero <lekktu@gmail.com>
7501
7502 * term/w32-win.el (image-library-alist): Add additional names for
7503 GIF library.
7504
7505 2006-01-23 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
7506
7507 * international/latexenc.el (latexenc-find-file-coding-system):
7508 Add file-regular-p check.
7509
7510 2006-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
7511
7512 * simple.el (clone-buffer): Don't show the new buffer in the same
7513 window.
7514
7515 2006-01-23 Juri Linkov <juri@jurta.org>
7516
7517 * faces.el (link, link-visited): New faces based on default values
7518 of `info-xref' and `info-xref-visited'.
7519
7520 * info.el (info-xref): Inherit from `link'.
7521 (info-xref-visited): Inherit from `link-visited'.
7522
7523 * cus-edit.el (custom-buffer-create-internal): Use widget type
7524 `custom-manual' instead of `info-link' and don't set properties
7525 `button-face' and `mouse-face' explicitly.
7526 (custom-browse-group-tag, custom-browse-variable-tag)
7527 (custom-browse-face-tag): Inherit from widget class
7528 `custom-group-link' instead of `push-button'.
7529 (custom-button-unraised): Inherit from `underline' face.
7530 (custom-link): Inherit from `link' face. Fix doc and group.
7531 (custom-add-parent-links, custom-group-value-create): Don't set
7532 properties `button-face' and `mouse-face' explicitly for
7533 `custom-group-link' widget.
7534 (custom-group-link): Add properties `button-face' and `mouse-face'
7535 to widget definition.
7536 (custom-field-keymap): New variable. Put `custom-field-keymap' to
7537 editable-field's :keymap property.
7538 (custom-mode): Fix docstring: substitute keybindings for
7539 `widget-forward' and `widget-backward' from `widget-keymap',
7540 `widget-complete' from `custom-field-keymap', replace old
7541 `Custom-move-and-invoke' with `widget-move-and-invoke'. Untabify.
7542
7543 * desktop.el (desktop-load-file): Check for `fboundp' before
7544 calling `symbol-function'.
7545
7546 * simple.el (clone-buffer, clone-indirect-buffer)
7547 (clone-indirect-buffer-other-window): Use `read-buffer' instead of
7548 `read-string'. Fix prompts.
7549
7550 * play/doctor.el (doctor-mode-map): Rename from `doc-mode-map'.
7551
7552 2006-01-23 Nick Roberts <nickrob@snap.net.nz>
7553
7554 * thumbs.el (thumbs-file-alist): Avoid creating duplicate entries.
7555
7556 2006-01-22 Luc Teirlinck <teirllm@auburn.edu>
7557
7558 * startup.el (inhibit-splash-screen, initial-scratch-message):
7559 Doc fixes.
7560
7561 2006-01-22 Michael Albinus <michael.albinus@gmx.de>
7562
7563 Sync with Tramp 2.0.52.
7564
7565 * net/tramp.el, net/tramp-ftp.el, net/tramp-util.el,
7566 net/tramp-vc.el: Add code for unloading Tramp. See comment before
7567 `tramp-unload-tramp' for checklist.
7568
7569 * net/tramp.el: Require `timer-funcs' instead of `timer' if in
7570 XEmacs. Contributed by Steve Youngs <steve@sxemacs.org>.
7571 (tramp-unload-file-name-handler-alist)
7572 (tramp-unload-tramp): New defuns.
7573 (tramp-advice-PC-expand-many-files): New defadvice.
7574 (tramp-save-PC-expand-many-files, tramp-setup-complete) Defuns
7575 removed.
7576 (tramp-handle-expand-file-name): Remove double slash.
7577 (tramp-handle-file-attributes-with-ls): Return t as 9th attribute.
7578 It doesn't matter, because it will be converted later on.
7579 (tramp-handle-file-ownership-preserved-p): Rewritten. The old
7580 implementation was just heuristic.
7581 (tramp-post-connection): Set uid and gid properties.
7582 (tramp-convert-file-attributes): Set file's gid change bit.
7583 (tramp-get-remote-uid, tramp-get-remote-gid): New defuns.
7584 (tramp-handle-expand-file-name): Use "~root" for tilde expansion
7585 in case of su(do)? methods. The home directory of the local user
7586 will be taken else.
7587 (tramp-open-connection-telnet)
7588 (tramp-open-connection-rsh, tramp-open-connection-su)
7589 (tramp-open-connection-multi): Set PS1 to "$ ". Otherwise, a
7590 local shell prompt could hurt. Reported by Romain Francoise
7591 <romain@orebokech.com>.
7592 (tramp-let-maybe): Add `edebug-form-spec' property.
7593 (tramp-handle-expand-file-name): Bind `default-directory' locally
7594 to "/" in order to avoid problems with UNC shares or Cygwin
7595 mounts.
7596 (tramp-md5-function): Fix typo in error message.
7597
7598 * net/tramp-ftp.el (tramp-ftp-enable-ange-ftp): New defun.
7599
7600 * net/tramp-util.el (top): Apply `ignore' instead of `identity'
7601 for byte-compiler pacification.
7602
7603 2006-01-22 Andre Spiegel <spiegel@gnu.org>
7604
7605 * vc-rcs.el (vc-rcs-state-heuristic): Use file-attributes with
7606 ID-FORMAT `string'. This allows us to get rid of
7607 `vc-user-login-name UID'.
7608
7609 * vc-sccs.el (vc-sccs-state-heuristic): Likewise.
7610
7611 2006-01-22 John Paul Wallington <jpw@pobox.com>
7612
7613 * hl-line.el (hl-line-highlight, hl-line-move): Doc fixes.
7614
7615 2006-01-21 Martin Rudalics <rudalics@gmx.at>
7616
7617 * emacs-lisp/find-func.el (find-definition-noselect)
7618 (find-variable-noselect): Search variables in C source code too.
7619 (find-function-C-source, find-function-noselect, find-function)
7620 (find-function-other-frame, find-variable-noselect, find-variable)
7621 (find-variable-other-frame, find-variable-at-point):
7622 Fix docstrings.
7623
7624 2006-01-21 Francesco Potorti` <pot@gnu.org>
7625
7626 * mail/rmailout.el (rmail-output): Don't use content-type if it is nil.
7627
7628 2006-01-21 Agustin Martin <agustin.martin@hispalinux.es>
7629
7630 * textmodes/flyspell.el (flyspell-emacs-popup, flypell-xemacs-popup):
7631 Default to disabling the "Save affix" question.
7632
7633 2006-01-21 Marien Zwart <marienz@gentoo.org> (tiny change)
7634
7635 * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as
7636 the first arg to run-python.
7637
7638 2006-01-21 Eli Zaretskii <eliz@gnu.org>
7639
7640 * startup.el (command-line-1): Handle --no-desktop if desktop.el
7641 is not loaded.
7642
7643 2006-01-20 Jay Belanger <belanger@truman.edu>
7644
7645 * calc/calcalg2.el (calc-sum-rec): Fix the sum when the lower
7646 limit is 0.
7647
7648 * calc/calc-arith.el (math-add-symb-fancy): Check the length of
7649 the correct variable.
7650
7651 2006-01-20 Carsten Dominik <dominik@science.uva.nl>
7652
7653 * textmodes/org.el (org-open-at-point): Fixed bug with matching a
7654 link. Fixed buggy argument sequence in call to `org-view-tags'.
7655 (org-compile-prefix-format): Set `org-prefix-has-tag'.
7656 (org-prefix-has-tag): New variable.
7657 (org-format-agenda-item): Remove tags from headline if
7658 appropriate.
7659 (org-agenda-remove-tags-when-in-prefix): New option.
7660 (org-get-tags-at): New function.
7661
7662 2006-01-20 Nick Roberts <nickrob@snap.net.nz>
7663
7664 * thumbs.el (thumbs-buffer): New variable. Make it buffer local.
7665 (thumbs-find-image): Move image name and number from buffer name
7666 to mode name. Set thumbs-buffer. Preserve point so that large
7667 images remain visible.
7668 (thumbs-file-alist): Construct list in thumbs-buffer and reverse
7669 order.
7670 (thumbs-show-image-num): Get image from thumbs-file-alist. Set
7671 mode name.
7672 (thumbs-next-image, thumbs-previous-image): Make them work.
7673
7674 2006-01-19 Luc Teirlinck <teirllm@auburn.edu>
7675
7676 * cus-edit.el (custom-buffer-create-internal): State in the text above
7677 the whole buffer buttons that they do not operate on hidden items.
7678 (custom-face-menu): Use `custom-face-save' instead of
7679 `custom-face-save-command'.
7680 (custom-face-save-command): Make it an alias for `custom-face-save'
7681 and declare it obsolete.
7682 (custom-face-save): Doc fix.
7683
7684 * dired.el (dired-no-confirm): Add quote.
7685 (dired-subdir-alist-pre-R): Add quote in
7686 `make-variable-buffer-local' form and remove unbalanced parenthesis.
7687
7688 2006-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
7689
7690 * textmodes/table.el (table-mode-indicator): Typo in last change.
7691
7692 2006-01-19 Richard M. Stallman <rms@gnu.org>
7693
7694 * outline.el (hide-leaves): Don't call outline-end-of-heading.
7695 Fixes bug reported in Nov 2005.
7696
7697 * isearch.el (isearch-forward): Doc fix.
7698
7699 * dired.el (dired-move-to-filename-regexp): Define as alias.
7700 (dired-no-confirm): Use defcustom.
7701 (dired-subdir-alist-pre-R): Put defvar at top level.
7702
7703 * battery.el (battery-linux-proc-acpi): Handle "last full capacity".
7704
7705 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
7706 Mark as risky.
7707
7708 * simple.el (set-mark-command): Doc fix.
7709 (clone-indirect-buffer-other-window):
7710 Read arg like clone-indirect-buffer.
7711 (move-beginning-of-line): Skip invisible newlines.
7712
7713 2006-01-19 Masatake YAMATO <jet@gyve.org>
7714
7715 * progmodes/cpp.el (cpp-edit-load): Make the order of
7716 listed conditions in a base C code buffer and its associate
7717 CPP Edit buffer the same.
7718
7719 2006-01-19 Kenichi Handa <handa@m17n.org>
7720
7721 * mail/rmail.el (rmail-enable-mime): Docstring fixed.
7722 (rmail-mime-feature): Likewise.
7723 (rmail-require-mime-maybe): Use display-warning to show a warning
7724 message.
7725
7726 * international/mule.el (auto-coding-regexp-alist-lookup): New fun.
7727 (find-auto-coding): Use auto-coding-regexp-alist-lookup.
7728
7729 2006-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
7730
7731 * array.el: Move defvars out of eval-when-compile.
7732 (array-make-template): Replace undeclared global var with a local one.
7733 (array-mode): Inline initialization functions.
7734 (array-init-local-variables, array-init-max-row)
7735 (array-init-max-column, array-init-columns-per-line)
7736 (array-init-field-width, array-init-rows-numbered)
7737 (array-init-line-length, array-init-lines-per-row): Remove.
7738
7739 * play/doctor.el: Move defvars out of eval-when-compile. Use dolist.
7740 (doc-mode-map): Define explicitly.
7741 (doctor-txtype): Use mapc.
7742
7743 * textmodes/table.el: Move defvars out of eval-when-compile.
7744 Remove harmful code meant to avoid byte-compiler warnings.
7745 (table-fixed-mode-indicator): Remove. Use a more complex mode-line
7746 specification that checks table-fixed-width-mode directly.
7747 (table-recognize-region, table-recognize-cell):
7748 Use restore-buffer-modified-p.
7749 (table-fixed-width-mode): Remove code that refreshes
7750 table-fixed-mode-indicator.
7751 (*table--cell-describe-bindings, *table--cell-describe-mode):
7752 Avoid obsolete name print-help-return-message.
7753 (table--test-cell-list): Don't use replace-regexp from elisp.
7754 (table--point-entered-cell-function, table--point-left-cell-function):
7755 Don't set table-fixed-mode-indicator, use force-mode-line-update.
7756
7757 * textmodes/org.el: Move defvars out of eval-when-compile. Move code
7758 that was after the end of file. Use buffer-file-name variable.
7759 (org-timestamp-change): Use with-current-buffer.
7760 (org-todo-list): Don't unnecessarily define a new buffer-local var.
7761 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused arg
7762 `file'.
7763
7764 * progmodes/fortran.el: Move defvars out of eval-when-compile.
7765 (fortran-break-line): Remove unused var `opoint'.
7766 (fortran-abbrev-start): Obey help-event-list.
7767
7768 2006-01-18 Jesper Harder <harder@phys.au.dk>
7769
7770 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring.
7771
7772 2006-01-18 Masatake YAMATO <jet@gyve.org>
7773
7774 * progmodes/make-mode.el (makefile-imake-mode): New mode
7775 derived from makefile-mode.
7776 (makefile-imake-mode-syntax-table): New syntax table
7777 derived from makefile-mode-syntax-table.
7778 (makefile-mode): Write about makefile-imake-mode in doc string.
7779 (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode.
7780 (makefile-imake-font-lock-keywords): New font lock keywords.
7781
7782 * files.el (auto-mode-alist): Add Imakefile.
7783
7784 2006-01-17 Agustin Martin <agustin.martin@hispalinux.es>
7785
7786 * textmodes/flyspell.el (ispell-kill-ispell-hook): Add to the hook when
7787 loading the file rather than when turning on flyspell-mode.
7788
7789 2006-01-16 Luc Teirlinck <teirllm@auburn.edu>
7790
7791 * cus-edit.el (customize-rogue): Minor doc fix.
7792
7793 2006-01-17 Juri Linkov <juri@jurta.org>
7794
7795 * dired-aux.el (dired-diff): Use dired-dwim-target-directory
7796 instead of the file at the mark as default if the file at the mark
7797 is the same as the file at point or if dired-dwim-target-directory
7798 is not the same as the current directory and the mark is not active.
7799
7800 * log-view.el (log-view-minor-wrap): Use the same logic to get
7801 revisions as `log-view-diff'.
7802
7803 * info.el (Info-revert-find-node): Check for Info-current-file
7804 before preserving new-history.
7805
7806 * man.el (Man-heading-regexp): Add `/'.
7807
7808 * textmodes/sgml-mode.el: Add `coding: iso-2022-7bit' cookie.
7809 (html-mode): Set `sentence-end-base' instead of `sentence-end'.
7810
7811 2006-01-16 Juri Linkov <juri@jurta.org>
7812
7813 * faces.el (mode-line-faces): New defgroup.
7814 (mode-line-highlight): Move definition after new defgroup.
7815 (mode-line, mode-line-inactive, mode-line-highlight):
7816 Replace :group `modeline' with `mode-line-faces'.
7817 (mode-line-buffer-id): New face.
7818 (modeline-buffer-id): New face alias.
7819 (vertical-border): Remove :group `modeline'.
7820
7821 * bindings.el (propertized-buffer-identification): Use face
7822 `mode-line-buffer-id' instead of `Buffer-menu-buffer'.
7823 (mode-line-next-buffer, mode-line-previous-buffer): New functions.
7824 (mode-line-buffer-identification-keymap): For mouse-1 replace
7825 `mode-line-unbury-buffer' with `mode-line-previous-buffer'.
7826 Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for
7827 mouse-3.
7828
7829 * buff-menu.el (buffer-menu-buffer) <defface>: Renamed from
7830 Buffer-menu-buffer. Doc fix.
7831 (Buffer-menu-buffer): Face alias to buffer-menu-buffer.
7832 (list-buffers-noselect): Use `buffer-menu-buffer' face instead of
7833 `Buffer-menu-buffer'.
7834
7835 * info.el (Info-mode-line-node-keymap): New defvar.
7836 (Info-set-mode-line): Use `stringp' to check Info-current-file.
7837 Propertize Info-current-node with `mode-line-buffer-id' and
7838 `mode-line-highlight' faces and `Info-mode-line-node-keymap'.
7839
7840 * time.el (display-time-mail-face): Replace :group `faces' with
7841 `mode-line-faces'.
7842
7843 2006-01-16 Kenichi Handa <handa@m17n.org>
7844
7845 * international/code-pages.el: Add autoload cookies for cp125[0345678].
7846
7847 * language/european.el (cp1252): New alias for windows-1252.
7848
7849 * international/mule.el (autoload-coding-system): Prepare for EOL
7850 variants.
7851
7852 2006-01-15 Dan Nicolaescu <dann@ics.uci.edu>
7853
7854 * term.el (term-raw-map): Add mapping for insert.
7855 (term-send-insert): New.
7856 (term-mode): Make variables local here instead of doing it in
7857 `term-emulate-terminal'.
7858 (term-emulate-terminal): Delete incorrect optimization for cr+lf.
7859 Scroll reverse needs to take into account the scroll region.
7860 Saving and restoring the cursor should save the color attributes too.
7861 (term-reset-terminal): Reset the scroll region.
7862 (term-handle-ansi-escape): Cursor up and down should take into
7863 account the scroll region.
7864 (term-set-scroll-region): Rename from `term-scroll-region'.
7865 Move to 0,0 after setting the region.
7866 (term-handle-scroll): Handle scroll up.
7867 (term-down): Fix off by one error.
7868 (term-delete-lines): Do not delete outside the scroll region.
7869 (term-insert-lines): Take into account the scroll region.
7870
7871 2006-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
7872
7873 * textmodes/ispell.el (ispell-internal-change-dictionary)
7874 (ispell-change-dictionary): Undo most of last change of 2006-01-13.
7875 (start, end): Move declaration outside of eval-when-compile.
7876
7877 * textmodes/flyspell.el (flyspell-kill-ispell-hook): New fun.
7878 (flyspell-mode-on): Use it.
7879
7880 * textmodes/ispell.el (ispell-kill-ispell): Run new hook
7881 ispell-kill-ispell-hook.
7882
7883 2006-01-14 Luc Teirlinck <teirllm@auburn.edu>
7884
7885 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
7886 (Custom-reset-saved): Do not ask for confirmation in single option
7887 buffers.
7888
7889 2006-01-13 Richard M. Stallman <rms@gnu.org>
7890
7891 * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement.
7892
7893 2006-01-13 Romain Francoise <romain@orebokech.com>
7894
7895 * add-log.el (add-change-log-entry, change-log-merge):
7896 Conditionally use `hard-newline'.
7897
7898 2006-01-13 Martin Rudalics <rudalics@gmx.at>
7899
7900 * wid-edit.el (widget-field-end): If the overlay is no longer
7901 associated with a buffer, behave as if the overlay didn't exist.
7902
7903 * cus-edit.el (custom-add-see-also, custom-add-parent-links):
7904 Make sure the links use the `custom-link' face.
7905
7906 2006-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
7907
7908 * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
7909 (ld-script-mode): Don't set indent-line-function since we don't
7910 have one.
7911
7912 2006-01-13 Carsten Dominik <dominik@science.uva.nl>
7913
7914 * textmodes/org.el (org-open-file): Use mailcap for selecting an
7915 application.
7916 (org-file-apps-defaults-gnu): Use mailcap as the default for
7917 selecting an application on a UNIX system.
7918 (org-agenda-show-tags): New command.
7919 (org-table-insert-hline): Keep cursor in current table line.
7920 (org-table-convert): Offset effect of modifying
7921 `org-table-insert-hline'.
7922 (org-format-agenda-item): New optional argument TAG.
7923 (org-compile-prefix-format): Handle %T format for the tag.
7924 (org-expand-wide-chars): New function.
7925 (org-table-insert-row, org-table-insert-hline):
7926 Use `org-expand-wide-chars'.
7927 (org-open-file): Fix bug in program launch.
7928 (org-get-time-of-day): Fix bug with times before 1am.
7929 (org-agenda-menu): Add tags commands.
7930
7931 2006-01-13 Agustin Martin <agustin.martin@hispalinux.es>
7932
7933 * textmodes/ispell.el (ispell-init-process): Include the used
7934 dictionary in ispell process start message.
7935 (ispell-internal-change-dictionary): When flyspell-mode is active
7936 and dictionary is changed, make sure ispell process is restarted
7937 and flyspell word cache cleared out for the current buffer.
7938 (ispell-change-dictionary): Make sure flyspell word cache is
7939 cleared out in all buffers with active flyspell mode when
7940 dictionary is globally changed.
7941 Call ispell-internal-change-dictionary after dictionary change.
7942
7943 2006-01-13 Eli Zaretskii <eliz@gnu.org>
7944
7945 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
7946
7947 * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in.
7948 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright
7949 years. Fix small differences wrt Makefile.in.
7950 (recompile): Use --eval '(batch-byte-recompile-directory 0)', like
7951 Makefile.in does.
7952
7953 2006-01-12 Bill Wohler <wohler@newt.com>
7954
7955 * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with
7956 mh-search.el.
7957
7958 2006-01-12 Masatake YAMATO <jet@gyve.org>
7959
7960 * progmodes/ld-script.el: Update copyright year.
7961
7962 2006-01-12 Chong Yidong <cyd@stupidchicken.com>
7963
7964 * cus-theme.el (custom-theme-add-variable, custom-theme-add-face):
7965 Don't add widget if setting undefined.
7966
7967 2006-01-12 John Paul Wallington <jpw@pobox.com>
7968
7969 * help-fns.el (describe-variable): Remove newlines from void
7970 variable output.
7971
7972 2006-01-13 Nick Roberts <nickrob@snap.net.nz>
7973
7974 * wdired.el (wdired-mode-map): Add help echo for
7975 wdired-abort-changes.
7976
7977 * man.el (Man-file-name-regexp): Adjust for a list of files.
7978
7979 2006-01-12 Masatake YAMATO <jet@gyve.org>
7980
7981 * progmodes/ld-script.el (auto-mode-alist): Support
7982 suffix conventions used in netbsd and eCos.
7983
7984 2006-01-11 Luc Teirlinck <teirllm@auburn.edu>
7985
7986 * cus-edit.el (custom-reset-menu, custom-buffer-create-internal)
7987 (custom-variable-menu, custom-face-menu, custom-group-menu)
7988 (Custom-mode-menu): Change names of menu items. (As discussed on
7989 emacs-devel.)
7990 (custom-face-menu): Add "Undo Edits" item.
7991
7992 * startup.el (init-file-user): defcustom -> defvar.
7993
7994 * tooltip.el (tooltip-mode): Doc fix.
7995
7996 2006-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
7997
7998 * reveal.el (reveal-post-command): window-buffer signals an error on
7999 dead windows rather than returning nil.
8000 (reveal-open-new-overlays): An overlay might die while we open others.
8001
8002 2006-01-11 Bill Wohler <wohler@newt.com>
8003
8004 * cus-dep.el (generated-custom-dependencies-file): Fix typo and
8005 phrasing in docstring.
8006
8007 * Makefile.in (MH_E_SRC): Rename from MH-E-SRC since the dashes
8008 can give some systems gas. Add new file mh-buffers.el.
8009
8010 2006-01-06 Masatake YAMATO <jet@gyve.org>
8011
8012 * font-lock.el (cpp-font-lock-keywords): Font lock keywords for
8013 C preprocessor forward ported from GNU Emacs 21.2.
8014
8015 * progmodes/asm-mode.el (asm-font-lock-keywords):
8016 Use `cpp-font-lock-keywords'.
8017
8018 * progmodes/ld-script.el (ld-script-font-lock-keywords): Ditto.
8019
8020 * progmodes/ld-script.el (auto-mode-alist): Use \\> instead
8021 of $ for "\\.ld[s]?".
8022
8023 2006-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
8024
8025 * progmodes/tcl.el (tcl-indent-command): Use indent-for-tab-command.
8026 (tcl-indent-line): Return `noindent' if inside a string.
8027
8028 * progmodes/flymake.el (flymake-split-string): Remove more than one
8029 empty string at beg/end of the result.
8030 (flymake-find-buildfile, flymake-find-possible-master-files):
8031 Use expand-file-name.
8032 (flymake-fix-file-name): Don't replace \ with / and don't remove ./
8033 since expand-file-name does it for us. Use directory-file-name.
8034 (flymake-ler-get-full-file, flymake-ler-get-file, flymake-ler-get-line)
8035 (flymake-ler-get-type, flymake-ler-get-text)
8036 (flymake-ler-make-ler): Remove. Replace by defstruct. Update callers.
8037 (flymake-current-line-no): Remove spurious interactive spec.
8038 (flymake-delete-temp-directory): Remove unused var `slash-pos'.
8039 (flymake-check-include): Remove arg inc-path merged into inc-name.
8040 (flymake-check-patch-master-file-buffer): Fit in 80 columns.
8041 Arg regexp-list replaced by a simple regexp.
8042 (flymake-master-make-header-init, flymake-master-tex-init):
8043 Correspondingly replace regexp-list with a regexp. Fix regexp.
8044
8045 2006-01-10 Simon Josefsson <jas@extundo.com>
8046
8047 * mail/smtpmail.el (smtpmail-try-auth-methods): Add comment
8048 describing AUTH PLAIN fix.
8049
8050 2006-01-10 Thien-Thi Nguyen <ttn@gnu.org>
8051
8052 * mail/emacsbug.el (report-emacs-bug-text-prompt): Delete var.
8053 (report-emacs-bug): Don't record initial prompt text.
8054 Instead, add text properties to prompting text.
8055 (report-emacs-bug-hook): Delete prompting text.
8056
8057 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
8058
8059 * progmodes/flymake.el (flymake-find-buildfile): Remove invariant arg
8060 `dirs'. Adjust callers.
8061
8062 2006-01-09 John Paul Wallington <jpw@gnu.org>
8063
8064 * cus-edit.el (custom-comment) <defface>: Add TTY definitions.
8065
8066 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
8067
8068 * reveal.el (reveal-open-new-overlays): New extracted fun.
8069 (reveal-close-old-overlays): Idem. Check overlays's liveness before
8070 using them. Simplify the code.
8071 (reveal-post-command): Use them. Fix up obsolete windows in
8072 reveal-open-spots.
8073
8074 * progmodes/flymake.el: Use `require' rather than autoload for
8075 XEmacs's overlays.
8076 (flymake-get-common-file-prefix, flymake-build-relative-filename):
8077 Delete. Use file-relative-name instead.
8078 (flymake-get-syntax-check-program-args, flymake-perl-init):
8079 Simplify the resulting code.
8080
8081 * log-view.el (log-view-file-re, log-view-message-re): Add support
8082 for DaRCS output.
8083
8084 2006-01-09 Alex Schroeder <alex@gnu.org>
8085
8086 * mail/rmail.el (rmail-reply-regexp): Also ignore mailing list
8087 identifiers sometimes added in square brackets at the beginning of
8088 subject lines.
8089
8090 2006-01-07 Richard M. Stallman <rms@gnu.org>
8091
8092 * cus-edit.el (Custom-set, Custom-save): Doc fix.
8093 (Custom-reset-current, Custom-reset-saved): Change question text.
8094 (Custom-reset-standard): Likewise.
8095 (custom-variable-reset-saved): Doc fix.
8096
8097 2006-01-07 Eli Zaretskii <eliz@gnu.org>
8098
8099 * startup.el (init-file-user): Doc fix.
8100
8101 2006-01-07 Alex Schroeder <alex@gnu.org>
8102
8103 * mail/rmail.el (rmail-current-subject): New function.
8104 (rmail-current-subject-regexp): New function.
8105 (rmail-next-same-subject): Use it.
8106
8107 * mail/rmailsum.el (rmail-summary-by-topic):
8108 Use rmail-current-subject and rmail-current-subject-regexp.
8109 (rmail-summary-next-same-subject): Ditto.
8110
8111 * net/rcirc.el (rcirc-send-input): No longer check whether the
8112 process is open, since not all commands need an open process.
8113 (rcirc-send-string): Check whether the process is open before
8114 sending anything.
8115 (rcirc-ignore-list): New option.
8116 (rcirc-ignore-list-automatic): New variable.
8117 (rcirc-print): Take rcirc-ignore-list into account.
8118 (rcirc-cmd-ignore): New command.
8119 (rcirc-ignore-update-automatic): New function.
8120 (rcirc-handler-PART, rcirc-handler-QUIT): Use it to maintain the
8121 list if ignored nicks.
8122 (rcirc-handler-NICK): Ditto, and also ignore the new nick.
8123
8124 2006-01-06 David Reitter <david.reitter@gmail.com>
8125
8126 * mail/emacsbug.el (report-emacs-bug): Let explanations correctly
8127 reflect the address to which the report will be sent.
8128
8129 2006-01-06 Eli Zaretskii <eliz@gnu.org>
8130
8131 * progmodes/ld-script.el (auto-mode-alist): Recognize linker
8132 scripts whose file-name extensions are "\.x[bdsru]?[cn]?$".
8133
8134 2006-01-01 Michael Ernst <mernst@alum.mit.edu> (tiny changes)
8135
8136 * textmodes/tildify.el: Fix typos (misspellings) in the commentary.
8137
8138 * emacs-lisp/find-func.el (find-definition-noselect): Fix typo in
8139 the doc string: "functoin" => "function".
8140 * ldefs-boot.el: Likewise.
8141
8142 * textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
8143 message text: "Duplicat" => "Duplicate".
8144
8145 2006-01-06 Sven Joachim <svenjoac@gmx.de> (tiny change)
8146
8147 * files.el (basic-save-buffer-2): If backing-up failed, reset
8148 buffer-backed-up to nil.
8149
8150 2006-01-06 Nick Roberts <nickrob@snap.net.nz>
8151
8152 * progmodes/gud.el (gdb-script-skip-to-head)
8153 (gdb-script-calculate-indentation): Indent for breakpoint command
8154 lists also.
8155
8156 2006-01-05 Bill Wohler <wohler@newt.com>
8157
8158 * Makefile.in (compile-always): Add mh-autoloads dependency.
8159 (bootstrap): Remove mh-autoloads dependency, as compile dependency
8160 provides it.
8161 (updates): Remove mh-autoloads dependency, since it probably has
8162 already run recently (via recompile).
8163
8164 2006-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
8165
8166 * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
8167 argument `force' to disable the flyspell-last-buffer optimization.
8168 (flyspell-mode-on): Use it.
8169
8170 * progmodes/flymake.el (flymake-get-cleanup-function): Default to
8171 flymake-simple-cleanup.
8172 (flymake-allowed-file-name-masks): Use this new default.
8173 All the functions are now called in the right buffer rather than
8174 passing the buffer as argument.
8175 (flymake-process-sentinel): Switch to buffer before calling cleanup.
8176 (flymake-parse-err-lines): Remove redundant buffer arg.
8177 (flymake-get-program-dir): Comment out unused function.
8178 (flymake-start-syntax-check, flymake-start-syntax-check-process):
8179 Remove redundant buffer argument.
8180 (flymake-get-real-file-name, flymake-simple-java-cleanup)
8181 (flymake-simple-cleanup, flymake-master-cleanup): Remove buffer arg.
8182
8183 2006-01-05 Richard M. Stallman <rms@gnu.org>
8184
8185 * info.el (Info-find-node): Don't record previous node if have none.
8186 (info): Go to directory only if history is empty.
8187
8188 * simple.el (mark): Doc fix.
8189
8190 2006-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8191
8192 * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
8193 already of desired type.
8194 (mac-ae-list): Coerce parameter to "list" type.
8195 (mac-dispatch-apple-event): Replace cadr part of event with a
8196 dummy position so that event-start returns it.
8197
8198 2006-01-05 Carsten Dominik <dominik@science.uva.nl>
8199
8200 * textmodes/org.el (org-end-of-subtree): New function.
8201 (org-cycle, org-subtree-end-visible-p, org-scan-tags):
8202 Use `org-end-of-subtree'.
8203 (org-agenda, org-agenda-convert-date): Protect calls to
8204 `fit-window-to-buffer'.
8205 (org-tags-view): Force matching of sublevels when doing a
8206 todo-only search. Define the correct redo command, including the
8207 arguments.
8208 (org-agenda-redo): Display message.
8209 (org-check-for-org-mode): New function.
8210 (org-agenda-type): New variable.
8211 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
8212 Set `org-agenda-type'.
8213 (org-agenda-check-type): New function.
8214 (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
8215 (org-agenda-week-view, org-agenda-day-view)
8216 (org-agenda-next-date-line, org-agenda-previous-date-line)
8217 (org-agenda-log-mode, org-agenda-toggle-diary)
8218 (org-agenda-toggle-time-grid, org-agenda-date-later)
8219 (org-agenda-date-prompt, org-agenda-diary-entry)
8220 (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
8221 (org-agenda-convert-date, org-agenda-menu):
8222 Use `org-agenda-check-type'.
8223 (org-make-overlay, org-delete-overlay)
8224 (org-detatch-overlay, org-move-overlay, org-overlay-put):
8225 New compatibility functions.
8226 (org-calendar-select-mouse): New command.
8227
8228 2006-01-04 Chong Yidong <cyd@stupidchicken.com>
8229
8230 * cus-edit.el (Custom-reset-current, Custom-reset-saved)
8231 (Custom-reset-standard): Fix y-or-n-p messages.
8232 (custom-link): New face for links.
8233 (custom-buffer-create-internal, custom-manual): Use it.
8234 (custom-face-save): Push to theme-face before setting face spec.
8235
8236 * wid-edit.el (widget-default-mouse-face-get): New function.
8237 (widget-specify-button): Handle mouse-face like button-face.
8238
8239 * custom.el (load-theme): Clear old theme settings if reloading.
8240
8241 2006-01-03 Luc Teirlinck <teirllm@auburn.edu>
8242
8243 * cus-edit.el (custom-buffer-create-internal): Move whole buffer
8244 "Erase Customization" button back to same position it occupies in
8245 the individual State menus.
8246
8247 2006-01-04 Kim F. Storm <storm@cua.dk>
8248
8249 * wid-edit.el (key-sequence): Rework widget to read key binding
8250 using `kbd' syntax. Use C-q to insert literal key, event, or code.
8251 (widget-key-sequence-default-value): Default value for empty sequence.
8252 (widget-key-sequence-map): New map for reading key binding. Bind C-q.
8253 (widget-key-sequence-read-event): New command for C-q.
8254 (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
8255 (widget-key-sequence-value-to-external): New functions.
8256
8257 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
8258
8259 * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
8260 Use expand-file-name.
8261 (flymake-delete-temp-directory): Use expand-file-name,
8262 file-name-directory, and directory-file-name.
8263 (flymake-strrchr): Delete.
8264 (flymake-start-syntax-check): Don't pass the redundant buffer argument
8265 to the init-f function.
8266 (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
8267 (flymake-init-find-buildfile-dir)
8268 (flymake-init-create-temp-source-and-master-buffer-copy)
8269 (flymake-simple-make-init-impl, flymake-simple-make-init)
8270 (flymake-master-make-init, flymake-master-make-header-init)
8271 (flymake-simple-make-java-init, flymake-simple-ant-java-init)
8272 (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
8273 (flymake-xml-init): Remove corresponding redundant buffer argument.
8274 (flymake-allowed-file-name-masks): Remove last elems that are equal to
8275 the default anyway. Clean up regexps.
8276
8277 * progmodes/flymake.el (flymake-temp-source-file-name)
8278 (flymake-master-file-name, flymake-temp-master-file-name)
8279 (flymake-base-dir): New buffer-local vars.
8280 (flymake-buffer-data, flymake-get-buffer-value)
8281 (flymake-set-buffer-value): Replace those hash-tables by the new
8282 buffer-local vars. Update callers.
8283
8284 * progmodes/flymake.el (flymake-check-start-time)
8285 (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
8286 (flymake-last-change-time, flymake-new-err-info, flymake-timer):
8287 Move definition, so we can remove redundant earlier declaration.
8288 (flymake-replace-regexp-in-string, flymake-split-string)
8289 (flymake-get-temp-dir): Use defalias.
8290 (flymake-popup-menu): Remove `pos' argument. Use posn-at-point.
8291 (flymake-xemacs-window-edges): Remove unused function.
8292 (flymake-get-point-pixel-pos): Move.
8293 (flymake-pid-to-names, flymake-reg-names)
8294 (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
8295 Replace by a simple list flymake-processes and by process-buffer.
8296 Update callers. Other than simplify the code, it uses buffers rather
8297 than buffer-names so it doesn't get confused by uniquify.
8298 (flymake-buffer-data): The global value should just be nil.
8299
8300 * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
8301 Optimize the body of a defalias like any other code.
8302
8303 * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
8304 Make sure we've setup font-lock's vars. It may influence which
8305 function we then call.
8306 (font-lock-default-fontify-buffer): Don't bother calling set-defaults
8307 here since it's too late anyway.
8308
8309 2006-01-03 Romain Francoise <romain@orebokech.com>
8310
8311 * startup.el (fancy-splash-tail, normal-splash-screen):
8312 Update copyright year.
8313
8314 2006-01-02 J.D. Smith <jdsmith@as.arizona.edu>
8315
8316 * mouse.el (mouse-drag-track): Rename, from
8317 `mouse-drag-region-1'. Includes optional argument required to
8318 enable post-drag event processing (e.g. delete region keys).
8319 Can be used without this argument to track a mouse region and operate
8320 on it as soon as the drag completes.
8321 (mouse-drag-region): Use `mouse-drag-track'.
8322
8323 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
8324
8325 * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
8326 Move to `custom-buffer' group.
8327
8328 * cus-theme.el: Rewrite the Custom New Theme Mode interface.
8329 (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
8330 (custom-theme-insert-face-marker, custom-theme-variable-menu)
8331 (custom-theme-face-menu): New variables.
8332 (custom-theme-add-variable, custom-theme-variable-action)
8333 (custom-variable-reset-theme, custom-theme-delete-variable)
8334 (custom-face-reset-theme, custom-theme-face-action)
8335 (custom-theme-delete-face, custom-theme-merge-theme)
8336 (custom-theme-add-face, custom-theme-visit-theme): New functions.
8337
8338 2006-01-01 Chong Yidong <cyd@stupidchicken.com>
8339
8340 * custom.el: Move Custom Themes commentary to start of theme code.
8341 (custom-known-themes): Rename `standard' theme to `changed'.
8342 (custom-push-theme): Caller no longer specifies what theme to use
8343 when doing `reset'---the setting is simply removed from the theme.
8344 Delete MODE from `theme-value' and `theme-settings' properties.
8345 (custom-declare-theme): Ignore &rest args since we don't use them.
8346
8347 (custom-loaded-themes): Delete variable.
8348 (custom-theme-load-themes, custom-theme-loaded-p)
8349 (custom-theme-value): Delete functions.
8350
8351 (custom-declare-theme): Signal error on invalid theme names.
8352 (provide-theme): custom-loaded-themes was deleted.
8353 (load-theme): Load the file unconditionally.
8354 (enable-theme): Call `load-theme' if theme is undefined.
8355 (custom-enabled-themes): Only update value for successful loads.
8356 (disable-theme): Complete from enabled themes when interactive.
8357 (custom-variable-theme-value): Calculate theme value directly.
8358
8359 (custom-theme-reset-variables, custom-reset-variables): Mark as
8360 XEmacs compatibility functions. We don't actually use these.
8361
8362 * cus-edit.el (custom-variable-state-set):
8363 Use custom-variable-theme-value instead of custom-theme-value.
8364 (custom-face-state-set): Rename `standard' theme to `changed'.
8365 (custom-save-variables, custom-save-faces): Delete unneeded
8366 references to custom-reset-variables.
8367 (custom-save-resets): Delete function.
8368 (custom-save-variables, custom-save-faces): MODE argument deleted.
8369 (custom-save-variables, custom-save-faces): Ignore theme values.
8370
8371 * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
8372 compatibility function.
8373
8374 2006-01-01 Richard M. Stallman <rms@gnu.org>
8375
8376 * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
8377 (Custom-reset-current, Custom-reset-saved): Likewise.
8378 (Custom-reset-standard): Show message if aborted.
8379 (custom-mode): Doc fix, describing those commands.
8380
8381 * mouse.el (mouse-drag-region-1): When following link via mouse-2,
8382 put on event-kind property.
8383
8384 2005-12-31 Chong Yidong <cyd@stupidchicken.com>
8385
8386 * custom.el (provide-theme): Ban `user' theme name.
8387 (custom-enabling-themes): New variable.
8388 (enable-theme): Don't enable user if custom-enabling-themes is t.
8389 (custom-enabled-themes): Make it a defcustom.
8390 (custom-theme-recalc-face): No-op if face is undefined.
8391
8392 * cus-edit.el (custom-button-mouse): New variable.
8393 (custom-button-mouse): New face.
8394 (custom-raised-buttons, custom-mode): Use it.
8395
8396 * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
8397
8398 2005-12-31 Eli Zaretskii <eliz@gnu.org>
8399
8400 * progmodes/gud.el (gud-display-line): Support hl-line in the
8401 source buffer.
8402
8403 2005-12-31 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
8404
8405 * mouse.el (mouse-drag-window-above): Verify that the found window
8406 overlaps with the given window in the horizontal dimension.
8407
8408 2005-12-31 Eli Zaretskii <eliz@gnu.org>
8409
8410 * Makefile.in (cvs-update): New target.
8411
8412 * makefile.w32-in (cvs-update): Ditto.
8413
8414 2005-12-30 Chong Yidong <cyd@stupidchicken.com>
8415
8416 * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
8417 (custom-new-theme-mode-map): New variable.
8418
8419 2005-12-30 Richard M. Stallman <rms@gnu.org>
8420
8421 * custom.el (custom-load-themes): Function deleted.
8422
8423 * cus-edit.el (custom-save-loaded-themes): Function deleted.
8424 (custom-save-variables): Don't delete or add custom-load-themes call.
8425
8426 2005-12-30 Stefan Monnier <monnier@iro.umontreal.ca>
8427
8428 * cus-start.el: Add `visible-cursor'.
8429
8430 * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
8431 (flymake-parse-output-and-residual): Remove `source-buffer' argument.
8432 (flymake-process-filter): Switch to buffer before calling it instead.
8433 (flymake-post-syntax-check, flymake-highlight-err-lines)
8434 (flymake-delete-own-overlays, flymake-parse-err-lines)
8435 (flymake-start-syntax-check, flymake-start-syntax-check-process)
8436 (flymake-count-lines, flymake-parse-residual):
8437 Remove constant buffer argument.
8438 (flymake-start-syntax-check-for-current-buffer): Remove.
8439 Update callers to use flymake-start-syntax-check instead.
8440 (flymake-display-err-menu-for-current-line):
8441 Remove unused var `mouse-pos'.
8442 (flymake-restore-formatting): Comment out unused function.
8443 (flymake-report-status, flymake-report-fatal-status): Remove buffer
8444 argument, use current-buffer instead. Update callers.
8445
8446 2005-12-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8447
8448 * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
8449 buffer-local because choose-completion-delete-max-match requires
8450 that we set completion-ignore-case (i.e., binding via let is not
8451 sufficient).
8452 (bibtex-complete): Always set completion-ignore-case and
8453 choose-completion-string-functions. The latter is needed because
8454 choose-completion-string-functions keeps its value if we quit the
8455 *Completions* buffer without requesting a completion.
8456
8457 2005-12-30 Andreas Schwab <schwab@suse.de>
8458
8459 * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
8460
8461 2005-12-30 Eli Zaretskii <eliz@gnu.org>
8462
8463 * jit-lock.el (jit-lock-chunk-size): Doc fix.
8464
8465 2005-12-30 Juri Linkov <juri@jurta.org>
8466
8467 * locate.el (locate-fcodes-file, locate-header-face)
8468 * progmodes/delphi.el (delphi-other-face)
8469 * progmodes/glasses.el (glasses-face): Add tag "None" to const nil.
8470
8471 * paren.el (show-paren-match, show-paren-mismatch): Use existing
8472 group `paren-showing-faces'.
8473
8474 * net/goto-addr.el (goto-address-highlight-keymap): Fix docstring.
8475 (goto-address): Fix docstring.
8476
8477 * net/webjump.el (webjump-sample-sites): Update URLs.
8478
8479 * textmodes/fill.el (fill-single-word-nobreak-p): Use `sentence-end'.
8480
8481 * subr.el (cancel-change-group): Add listp around pending-undo-list.
8482
8483 2005-12-29 Stefan Monnier <monnier@iro.umontreal.ca>
8484
8485 * font-lock.el (font-lock-compile-keywords): Signal an error when
8486 font-lock-set-defaults hasn't been called.
8487
8488 2005-12-29 Luc Teirlinck <teirllm@auburn.edu>
8489
8490 * subr.el (noreturn, 1value): Doc fixes.
8491
8492 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8493
8494 * textmodes/bibtex.el (bibtex-text-in-field-bounds): Handle case
8495 that assoc-string returns nil.
8496
8497 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8498
8499 * textmodes/bibtex.el (bibtex-entry-type-whitespace)
8500 (bibtex-entry-type-str, bibtex-empty-field-re)
8501 (bibtex-search-backward-string, bibtex-preamble-prefix)
8502 (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Remove.
8503 (bibtex-any-valid-entry-type): New variable.
8504 (bibtex-parse-field-name): Simplify.
8505 (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key.
8506 (bibtex-preamble-prefix): Include left delimiter.
8507 (bibtex-search-forward-field, bibtex-search-backward-field):
8508 Allow unbounded search past entry boundaries (required by bibtex-pop).
8509 (bibtex-text-in-field-bounds): Use push.
8510 (bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
8511 (bibtex-parse-preamble, bibtex-valid-entry)
8512 (bibtex-beginning-first-field): New functions.
8513 (bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp.
8514 (bibtex-map-entries): Fix docstring.
8515 (bibtex-flash-head): New arg prompt. Simplify.
8516 (bibtex-enclosing-field): Include code of bibtex-inside-field.
8517 (bibtex-insert-kill): Simplify. Always insert text past the
8518 current field or entry.
8519 (bibtex-format-entry): Use bibtex-parse-field.
8520 (bibtex-pop): Use bibtex-beginning-of-entry and
8521 bibtex-end-of-entry to initiate the search. Insert empty field if
8522 we found ourselves.
8523 (bibtex-print-help-message): New args field and comma.
8524 Handle entry keys.
8525 (bibtex-make-field): Use bibtex-beginning-of-entry.
8526 (bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any
8527 invalid entry.
8528 (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
8529 Handle preambles. Simplify code for thorough test.
8530 (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
8531 New arg comma. Handle entry heads.
8532 (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
8533 (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
8534 New arg comma.
8535 (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
8536 (bibtex-fill-field): Simplify.
8537 (bibtex-fill-entry): Use bibtex-beginning-first-field and
8538 bibtex-parse-field.
8539 (bibtex-convert-alien): Do not wait before calling bibtex-validate.
8540 (bibtex-complete): Use bibtex-parse-preamble.
8541
8542 2005-12-29 Nick Roberts <nickrob@snap.net.nz>
8543
8544 * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1):
8545 Display name of expression instead of convenience variable.
8546 (gdb-post-prompt): Only call gdb-get-changed-registers if needed.
8547
8548 * progmodes/gud.el (gud-tooltip-dereference): Rename from
8549 toggle-gud-tooltip-dereference.
8550 (gud-tooltip-print-command): Move concatenation of "*" to expr to...
8551 (gud-tooltip-tips): ...here when dereferencing.
8552
8553 2005-12-28 Bill Wohler <wohler@newt.com>
8554
8555 * simple.el (mh-e-user-agent): Move to mh-e/mh-comp.el and autoload.
8556
8557 2005-12-28 Stefan Monnier <monnier@iro.umontreal.ca>
8558
8559 * vc.el (vc-annotate-display): Replace optional arg `color-map' with
8560 compulsory arg `ratio'. Inline body of vc-annotate-time-span.
8561 (vc-annotate-display-autoscale): Adjust call.
8562 (vc-annotate-display-default): Adjust call. Make arg compulsory.
8563 Fix interactive spec.
8564 (vc-annotate-time-span): Remove.
8565 (vc-annotate-oldest-in-map): Rename from vc-annotate-car-last-cons.
8566 (vc-annotate-mode-menu, vc-annotate-display-autoscale)
8567 (vc-annotate-display-select): Use new name.
8568
8569 * vc.el (vc-annotate-mode-map): Remove obsolete binding.
8570 (vc-annotate-mode-menu): Remove left-over redundant declaration.
8571 Correct the construction of span entries. Simplify.
8572 (vc-annotate-display-select): Fix the nil case.
8573 (vc-annotate): Remove obsolete (and now broken) code.
8574 (vc-annotate-extract-revision-at-line): Remove obsolete code.
8575 (vc-annotate-time-span): Remove unused arg `quantize'. Simplify.
8576
8577 2005-12-28 Luc Teirlinck <teirllm@auburn.edu>
8578
8579 * subr.el (lazy-completion-table): Correct typo in docstring.
8580
8581 * startup.el (command-line): Use `custom-reevaluate-setting' for
8582 `send-mail-function'.
8583
8584 * mail/sendmail.el (send-mail-function): Autoload the standard-value.
8585
8586 2005-12-05 Ralf Angeli <angeli@iwi.uni-sb.de>
8587
8588 * mail/smtpmail.el (smtpmail-try-auth-methods):
8589 Send credentials together with "AUTH PLAIN" command.
8590
8591 2005-12-27 Richard M. Stallman <rms@gnu.org>
8592
8593 * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
8594 mouse-2, go back to previously selected window, so it's selected
8595 when mouse-2 command runs.
8596
8597 2005-12-27 Juri Linkov <juri@jurta.org>
8598
8599 * descr-text.el (describe-text-sexp): Use square brackets for
8600 button [Show] to distinguish it from the property value `show'.
8601 (describe-property-list): Use `insert-text-button' with
8602 `help-face' type instead of putting face in quotes, because button
8603 is not created automatically for a list of faces.
8604 (describe-text-properties-1): Put button-type value in quotes to
8605 distinguish from plain text "button".
8606 (describe-char): Display code point values in hex. Don't use
8607 `symbol-name' for `current-input-method' because it is a string.
8608 Use `insert-text-button' with `help-face' type instead of putting
8609 hardcoded face in quotes, because button is not created automatically.
8610
8611 2005-12-27 Richard M. Stallman <rms@gnu.org>
8612
8613 * progmodes/glasses.el (glasses-face): More specific custom type.
8614
8615 * files.el (set-visited-file-name): Doc fix.
8616
8617 * textmodes/flyspell.el (flyspell-external-point-words):
8618 Use local var buffer-scan-pos to advance scan for next misspelling.
8619 Advance it only after we find the misspelling.
8620
8621 2005-12-27 Agustin Martin <agustin.martin@hispalinux.es>
8622
8623 * textmodes/flyspell.el (flyspell-external-point-words):
8624 New criteria for finding the misspelling in the buffer.
8625
8626 2005-12-27 Nick Roberts <nickrob@snap.net.nz>
8627
8628 * help-mode.el (help-insert-string): Set help-xref-stack-item
8629 rather than call help-setup-xref.
8630
8631 * descr-text.el (describe-char): Revert previous changes for
8632 optional buffer argument.
8633
8634 2005-12-27 Juri Linkov <juri@jurta.org>
8635
8636 * help-mode.el (help-insert-string): New function. Save buffer
8637 contents in cases where it is impossible to recompute the old contents.
8638
8639 * descr-text.el (describe-char): Set help-xref-stack-item
8640 explicitly after buffer has been generated.
8641
8642 2005-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8643
8644 * cus-start.el (all): Add x-gtk-show-hidden-files.
8645
8646 2005-12-26 Richard M. Stallman <rms@gnu.org>
8647
8648 * replace.el (perform-replace): Calculate match-again
8649 before skipping read-only matches.
8650
8651 * paren.el (paren-showing-faces): New group.
8652 (show-paren-match, show-paren-mismatch): Move to that group.
8653
8654 * button.el (button): Put into group `basic-faces'.
8655
8656 * progmodes/make-mode.el: Remove faces from group `faces'.
8657
8658 * apropos.el (apropos, apropos-value): Doc fix.
8659 (apropos-documentation): Doc fix.
8660
8661 2005-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
8662
8663 * subr.el (lazy-completion-table): Remove argument `args'.
8664
8665 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
8666 Don't use the `args' argument of lazy-completion-table.
8667
8668 2005-12-26 Nick Roberts <nickrob@snap.net.nz>
8669
8670 * descr-text.el (describe-char): Add optional argument for buffer.
8671 Set buffer appropriately. Call help-setup-xref.
8672 Suggested by Stefan Monnier.
8673
8674 2005-12-26 Juri Linkov <juri@jurta.org>
8675
8676 * descr-text.el: Require `help-fns' at runtime. Don't require
8677 `button' for byte compilation.
8678 (describe-text-widget): Add `help-echo' for first button.
8679 Use `help-info' for second.
8680 (describe-property-list): Use `help-argument-name' instead of `italic'.
8681 (describe-text-category): Add prompt to interactive spec.
8682 Call `help-setup-xref'.
8683 (describe-char): Use `help-character-set'. Add `help-echo' for
8684 code point. Use `help-input-method'. Remove superfluous insert.
8685
8686 2005-12-25 Richard M. Stallman <rms@gnu.org>
8687
8688 * progmodes/cc-defs.el (c-emacs-features): Do parse-partial-sexp
8689 at point, in case of narrowing.
8690
8691 * progmodes/delphi.el (delphi-other-face): Allow nil in type.
8692
8693 * locate.el (locate-header-face): Allow nil in type.
8694
8695 * progmodes/cpp.el (cpp-face-none-list): Use cpp-face instead of face.
8696
8697 2005-12-25 Romain Francoise <romain@orebokech.com>
8698
8699 * battery.el (battery-linux-proc-acpi): Also try
8700 `/proc/acpi/thermal_zone/THM0/temperature'.
8701
8702 2005-12-24 Chong Yidong <cyd@stupidchicken.com>
8703
8704 * custom.el (custom-push-theme): Fix docstring.
8705
8706 * cus-edit.el (custom-variable-set, custom-variable-save)
8707 (custom-variable-save): Custom-quote widget values.
8708 (customize-save-variable): Fix custom-push-theme call.
8709
8710 2005-12-24 Eli Zaretskii <eliz@gnu.org>
8711
8712 * w32-fns.el (w32-batch-update-autoloads): New function.
8713
8714 * makefile.w32-in (autoloads, $(lisp)/mh-e/mh-loaddefs.el):
8715 Use w32-batch-update-autoloads, and don't setq generated-autoload-file
8716 from the command line.
8717
8718 2005-12-23 Chong Yidong <cyd@stupidchicken.com>
8719
8720 * custom.el (custom-push-theme): Clarify docstring. VALUE nil for
8721 reset means to remove setting from theme entirely. Don't keep
8722 expanding theme-settings list; delete old entries if necessary.
8723
8724 * cus-edit.el (custom-buffer-create-internal): Move "Erase
8725 customization" button one line up.
8726 (custom-themed): New face.
8727 (custom-magic-alist): New value, THEMED, for theme settings.
8728 (custom-variable-state-set, custom-face-state-set):
8729 Check theme-value instead of saved-value.
8730 (custom-variable-reset-standard, custom-face-reset-standard):
8731 Remove theme setting entirely. Recalculate new values.
8732 (custom-variable-set, custom-variable-set)
8733 (custom-variable-reset-saved, custom-variable-reset-backup)
8734 (custom-face-set, custom-face-reset-saved): Update `user' theme.
8735 (custom-variable-save): Fix typos.
8736
8737 2005-12-23 Juri Linkov <juri@jurta.org>
8738
8739 * emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
8740 Add autoload cookies.
8741 (edebug-outside-d-c-i-n-s-w): New variable.
8742 (edebug-display, edebug-outside-excursion): Use it to save the
8743 original value of default-cursor-in-non-selected-windows.
8744 Set default-cursor-in-non-selected-windows to t while Edebug
8745 is active.
8746 (edebug-mode, edebug-eval-mode): Doc fix.
8747
8748 * mouse.el (mouse-choose-completion): Replace `buffer-substring'
8749 with `buffer-substring-no-properties' to remove common substring
8750 highlighting.
8751
8752 * info.el (info-other-window, info): Rename function argument
8753 `file' to `file-or-node'.
8754 (Info-complete-menu-item): Use local variable `complete-nodes' to
8755 keep the global value of `Info-complete-nodes' unchanged for
8756 subsequent completions.
8757 (info-tool-bar-map): Put `Info-index' icon just before `Info-search'.
8758
8759 * simple.el (get-next-valid-buffer, last-buffer)
8760 (next-error-buffer-p, next-error-find-buffer)
8761 (minibuffer-history-sexp-flag): Doc fix.
8762
8763 * savehist.el (savehist-mode-hook): Add `:group'.
8764
8765 * log-view.el: Call autoload for vc-find-version.
8766 (log-view-current-file): Adjust subgroup numbers.
8767 (log-view-current-tag): Add `length'.
8768
8769 2005-12-23 Richard M. Stallman <rms@gnu.org>
8770
8771 * vc.el (vc-annotate-car-last-cons): Defn moved up.
8772
8773 2005-12-23 Juri Linkov <juri@jurta.org>
8774
8775 * hi-lock.el (hi-lock-archaic-interface-message-used)
8776 (hi-lock-archaic-interface-deduce, hi-lock-mode): Doc fix.
8777 (hi-lock-mode): Display "Hi" in the mode line only when
8778 hi-lock-interactive-patterns or hi-lock-file-patterns is non-nil.
8779 (hi-lock-write-interactive-patterns):
8780 Use hi-lock-file-patterns-prefix instead of hard-coded "Hi-lock".
8781 (hi-lock-set-pattern, hi-lock-set-file-patterns)
8782 (hi-lock-font-lock-hook): Set 3rd arg `how' of
8783 font-lock-add-keywords to t.
8784
8785 2005-12-23 David Koppelman <koppel@ece.lsu.edu>
8786
8787 * hi-lock.el (hi-lock-highlight-range): New variable.
8788 (hi-lock-mode, hi-lock-unface-buffer): Call font-lock-fontify-buffer
8789 only if font-lock-fontified is non-nil. Remove overlays.
8790 (hi-lock-set-pattern): Call font-lock-fontify-buffer if
8791 font-lock-fontified is non-nil, otherwise use overlays (instead of
8792 text properties).
8793 (hi-lock-string-serialize-hash, hi-lock-string-serialize-serial):
8794 New variables.
8795 (hi-lock-string-serialize) New function.
8796
8797 2005-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8798
8799 * menu-bar.el (menu-find-file-existing): New function.
8800 (menu-bar-file-menu): Use menu-find-file-existing for Open.
8801
8802 * tool-bar.el (tool-bar-setup): Open changed to menu-find-file-existing.
8803
8804 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
8805
8806 * vc.el: Remove unnecessary leading * in docstrings.
8807 (vc-annotate-mode-map): Move initialization into declaration.
8808 (vc-static-header-alist): Nitpick on the regexp.
8809 (vc-default-init-version): New fun.
8810 (vc-register): Use it.
8811 (vc-insert-headers): Use dolist.
8812 (vc-annotate-get-backend): Remove unused function.
8813 (vc-annotate-add-menu): Remove. Build the menu directly at toplevel.
8814 (vc-annotate-mode): Remove corresponding call.
8815 (vc-annotate-car-last-cons): Simplify.
8816 (vc-annotate-buffers): Remove var.
8817 (vc-annotate-backend): Make it buffer-local.
8818 (vc-annotate): Move the interaction to the interactive spec.
8819 Add a `buf' argument.
8820 (vc-annotate-warp-version): Use this new `buf' argument to avoid
8821 killing&creating a vc-annotate buffer, which is very disruptive when
8822 the buffers are shown in dedicated frames.
8823
8824 2005-12-23 Nick Roberts <nickrob@snap.net.nz>
8825
8826 * descr-text.el: Add FSF as maintainer.
8827 (describe-text-mode, describe-text-mode-map)
8828 (describe-text-mode-hook, describe-text-done): Delete. Use normal
8829 help-mode.
8830 (describe-text-widget, describe-text-sexp)
8831 (describe-property-list, describe-text-category)
8832 (describe-text-properties, describe-text-properties-1)
8833 (describe-char): Use help buttons instead of widgets.
8834 (describe-char-unicodedata-file): Make URL link in doc string.
8835
8836 2005-12-22 Richard M. Stallman <rms@gnu.org>
8837
8838 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
8839 (custom-buffer-create-internal): Reword the top-of-buffer help intro.
8840 Don't include buttons that write a file when there's no file.
8841 (custom-variable-menu, custom-face-menu, custom-group-menu):
8842 Don't include commands that write a file when there's no file.
8843 (customize-browse): Reword the top-of-buffer help intro.
8844 (custom-buffer-create-internal): Fix previous change.
8845 (customize-changed-options-previous-release): Prev release is 21.1.
8846 (customize-changed-options): Doc fix.
8847 (customize-changed): New alias.
8848 (custom-reset-menu, custom-magic-alist, Custom-mode-menu):
8849 Say "standard values".
8850 (Custom-reset-standard): Doc fix.
8851 (custom-face-reset-standard): Doc fix.
8852
8853 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
8854
8855 * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
8856 even if font-lock-mode is non-nil since it may be t without having
8857 turned on font-lock-mode-internal.
8858 (font-lock-choose-keywords): Minor optimization.
8859 (font-lock-add-keywords, font-lock-remove-keywords)
8860 (font-lock-set-defaults): Don't call make-local-variable on a variable
8861 that we know to already be local.
8862
8863 2005-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
8864
8865 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't print progress
8866 messages if in the minibuffer.
8867
8868 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
8869
8870 * textmodes/flyspell.el (flyspell-check-word-p): Don't quote - in a RE.
8871 (tex-mode-flyspell-verify, flyspell-get-word)
8872 (flyspell-external-point-words): Don't use point-min/max uselessly.
8873
8874 * emacs-lisp/lisp.el (lisp-complete-symbol): Mostly undo the change
8875 by Kevin Rodgers. Instead, just hide the completions buffer if we
8876 don't need to show it.
8877
8878 2005-12-21 Luc Teirlinck <teirllm@auburn.edu>
8879
8880 * wid-edit.el (file, directory): Doc fixes for the `define-widget's.
8881
8882 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
8883
8884 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
8885 delete-windows-on with an inexistent buffer.
8886
8887 2005-12-22 Nick Roberts <nickrob@snap.net.nz>
8888
8889 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
8890 Delete defcustom variable :tag names.
8891
8892 2005-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
8893
8894 * log-view.el (log-view-file-re, log-view-message-re): Use shy groups.
8895 (log-view-font-lock-keywords): Ajust subgroup numbers.
8896 (log-view-current-tag): Don't hard code the number of subgroups.
8897
8898 2005-12-20 Juri Linkov <juri@jurta.org>
8899
8900 * tooltip.el (tooltip): Move defgroup before define-minor-mode.
8901 (tooltip-x-offset, tooltip-y-offset): Doc fix.
8902
8903 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
8904 (menu-bar-non-minibuffer-window-p): Instead of checking
8905 display-multi-frame-p, use selected-frame when menu-updating-frame
8906 is nil.
8907
8908 2005-12-20 Stuart Herring <herring@lanl.gov> (tiny change)
8909
8910 * align.el (align-rules-list): Use [ \t] instead of \s-
8911 for column separators in text mode.
8912
8913 2005-12-20 Nick Roberts <nickrob@snap.net.nz>
8914
8915 * help-mode.el (help-customize-variable, help-customize-face):
8916 Don't pop help-xref-stack as help-follow no longer pushes
8917 anything on to it.
8918
8919 2005-12-20 Carsten Dominik <dominik@science.uva.nl>
8920
8921 * textmodes/org.el (org-agenda-custom-commands): New option.
8922 (org-agenda): Offer custom commands on splash screen.
8923 (org-make-tags-matcher): Parser for Boolean logic added.
8924 (org-agenda-set-tags): New command.
8925 (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
8926 (org-set-tags): Efficiency improvements.
8927 (org-auto-align-tags): New option.
8928 (org-todo, org-demote, org-promote): Realign tags.
8929 (org-tags-completion-function): Use also "&" and "|" as separators.
8930 (org-org-menu): Agenda commands simplified.
8931
8932 2005-12-19 Luc Teirlinck <teirllm@auburn.edu>
8933
8934 * cus-edit.el (customize-apropos, customize-apropos-options):
8935 Docstring changes.
8936
8937 * font-lock.el (font-lock): Add tags to the links in the defgroup.
8938
8939 2005-12-19 Chong Yidong <cyd@stupidchicken.com>
8940
8941 * longlines.el (longlines-mode): Wrap while widened.
8942 (longlines-decode-region, longlines-encode-region): Compute max
8943 just once.
8944
8945 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8946
8947 * cus-edit.el (mac): New group.
8948
8949 * cus-start.el (all): Add user options in macterm.c. Add test for
8950 Mac-related built-ins. Fix test for GTK-related built-ins.
8951
8952 * term/mac-win.el (mac-handle-language-change)
8953 (mac-ae-open-documents, mac-ae-get-url, mac-services-open-file)
8954 (mac-services-open-selection, mac-services-mail-selection)
8955 (mac-services-mail-to, mac-services-insert-text)
8956 (mac-dispatch-apple-event): Add docstrings.
8957 (x-get-selection, mac-select-convert-to-string): Select coding
8958 system from `utf-16be' and `utf-16le' using `byteorder'.
8959
8960 2005-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
8961
8962 * subr.el (lazy-completion-table): Don't be fooled if the var holds
8963 a "list" (lambda ...) rather than a real completion list.
8964
8965 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
8966 lexical-let when encountering ((lambda (...) ...) ...).
8967
8968 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
8969
8970 * progmodes/sh-script.el (sh-mode):
8971 * language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
8972 * textmodes/picture.el (picture-mode): Update docstrings.
8973
8974 2005-12-17 Eli Zaretskii <eliz@gnu.org>
8975
8976 * makefile.w32-in (autoloads, custom-deps): Warn that parts of
8977 commands enclosed in $(ARGQUOTE)s should not be split between two
8978 lines, as that will break with GNU Make >3.80, when sh.exe is used
8979 and arg quoting is with '..'.
8980 (autoloads): Don't break the quoted --eval expression between
8981 several lines.
8982
8983 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
8984
8985 * emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
8986 Capture error from printing circular structures.
8987
8988 2005-12-17 Martin Rudalics <rudalics@gmx.at>
8989
8990 * wid-edit.el (widget-checkbox-action): Clear undo info.
8991
8992 2005-12-16 Bill Wohler <wohler@newt.com>
8993
8994 * menu-bar.el (kill-this-buffer): Set a good example by using menu
8995 bar, not menubar in comment.
8996
8997 2005-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
8998
8999 * progmodes/cc-engine.el (c-after-change-check-<>-operators):
9000 After-change-functions should not clobber the match data.
9001
9002 2005-12-16 Juri Linkov <juri@jurta.org>
9003
9004 * simple.el (choose-completion): Use `buffer-substring-no-properties'
9005 instead of `buffer-substring'.
9006 (completion-common-substring): Doc fix.
9007 (completion-setup-function): Use minibuffer-completion-contents
9008 instead of minibuffer-contents. Don't set common-string-length
9009 initially. Remove special handling of partial-completion-mode.
9010 Move computation of completion-base-size into one cond.
9011 Call completion-base-size-function in mainbuf. In computation of
9012 completion-base-size for file name completion don't move point to
9013 the end of the minibuffer. Move computation of common-string-length
9014 into one cond. Start putting faces only when common-string-length>=0.
9015 Add condition to put completions-common-part when
9016 common-string-length>0.
9017
9018 * complete.el (PC-do-completion): Remove `(equal (point) beg)' to
9019 place point at the first different character in the minibuffer
9020 even if this position is at the beginning of the minibuffer.
9021
9022 * info.el (Info-read-node-name-1): In completion-base-size-function's
9023 lambda return 1 if common-substring or minibuffer-completion-contents
9024 starts with (, and 0 otherwise.
9025
9026 * emacs-lisp/crm.el (crm-minibuffer-completion-help):
9027 Use `crm-current-element' for second arg of `display-completion-list'.
9028
9029 2005-12-16 Klaus Zeitler <kzeitler@lucent.com>
9030
9031 * files.el (set-auto-mode): Look for an interpreter specified on
9032 the first line also if search for mode specification succeeded,
9033 but the mode is not known.
9034
9035 2005-12-16 Carsten Dominik <dominik@science.uva.nl>
9036
9037 * textmodes/org.el (org-tags-match-list-sublevels): New option.
9038 (org-open-at-point): Implement tag searches as links.
9039 (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
9040 (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
9041 (org-tags-sparse-tree, org-tags-view, org-set-tags)
9042 (org-agenda-dispatch): New commands.
9043 (org-use-tag-inheritance, org-tags-column): New options.
9044 (org-tab-follows-link, org-return-follows-link): New options.
9045 (org-tags): New customize group.
9046 (org-start-icalendar-file): Get local time zone.
9047 (org-tags-completion-function): New function.
9048 (org-set-font-lock-defaults): Make sure links will also be
9049 highlighted inside headlines.
9050
9051 2005-12-16 Mark Plaksin <happy@usg.edu> (tiny change)
9052
9053 * term.el (term-emulate-terminal):
9054 Let term-handle-ansi-terminal-messages override what Bash says about
9055 its current directory.
9056
9057 2005-12-16 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
9058
9059 * bindings.el (last-buffer): Move to simple.el.
9060 * simple.el (last-buffer): Move here.
9061 (get-next-valid-buffer): New function.
9062 (next-buffer): Use frame-local buffer list, maintain buried buffer list.
9063 (prev-buffer): Ditto. Rename to `previous-buffer'.
9064
9065 * menu-bar.el (menu-bar-update-buffers): Update uses of `prev-buffer'.
9066 * bindings.el (global-map): Ditto.
9067
9068 2005-12-15 Luc Teirlinck <teirllm@auburn.edu>
9069
9070 * cus-edit.el: Introductory comment change.
9071 (custom-magic-alist): Change message string for the `rogue' state.
9072
9073 2005-12-15 Richard M. Stallman <rms@gnu.org>
9074
9075 * tooltip.el: Delete defcustom variable :tag names.
9076
9077 * complete.el (partial-completion-mode): Doc fix.
9078
9079 * textmodes/flyspell.el (flyspell-external-point-words):
9080 Use save-excursion to ensure we don't move backward in the
9081 search loop, not even one character.
9082 (flyspell-delete-all-overlays): Use remove-overlays directly.
9083
9084 * textmodes/ispell.el (ispell-current-personal-dictionary): New var.
9085 (ispell-start-process): Set that variable.
9086 Clear ispell-buffer-local-name.
9087 (ispell-internal-change-dictionary):
9088 Set ispell-current-dictionary after killing process.
9089 (ispell-buffer-local-dict):
9090 Don't set spell-personal-dictionary after killing process.
9091 (ispell-buffer-local-words): Don't clear out ispell-buffer-local-name.
9092 (ispell-tex-skip-alists, ispell-html-skip-alists)
9093 (ispell-skip-region-alist): Mark as risky.
9094
9095 * net/newsticker.el (newsticker--retrieval-timer-list)
9096 (newsticker--display-timer, newsticker-running-p)
9097 (newsticker-ticker-running-p): Definitions moved up.
9098
9099 2005-12-16 Nick Roberts <nickrob@snap.net.nz>
9100
9101 * progmodes/gdb-ui.el (gdb-many-windows): Echo new state in minibuffer.
9102
9103 2005-12-15 David Ponce <david@dponce.com>
9104
9105 * recentf.el (recentf-dialog-goto-first): Fix missing error condition.
9106 (recentf-edit-list, recentf-open-files): Signal an error when
9107 there is no recent file.
9108
9109 2005-12-14 Lennart Borgman <lennart.borgman.073@student.lu.se>
9110
9111 * textmodes/texinfmt.el (texinfo-format-region): Set buffer to
9112 read-only except for texinfo-format-region evaluation.
9113
9114 2005-12-14 Richard M. Stallman <rms@gnu.org>
9115
9116 * vc.el (vc-default-previous-version, vc-default-next-version)
9117 (vc-do-command): Doc fixes.
9118
9119 2005-12-14 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9120
9121 * textmodes/bibtex.el (bibtex-expand-strings)
9122 (bibtex-autokey-expand-string, bibtex-name-part)
9123 (bibtex-entry-type-whitespace, bibtex-entry-type-str)
9124 (bibtex-any-entry-maybe-empty-head, bibtex-string-type)
9125 (bibtex-preamble-prefix, bibtex-string-empty-key): New variables.
9126 (bibtex-entry-type, bibtex-entry-head): Match only valid entries.
9127 (bibtex-entry-postfix, bibtex-known-entry-type-re)
9128 (bibtex-valid-entry-re, bibtex-any-valid-entry-re)
9129 (bibtex-valid-entry-whitespace-re, bibtex-empty-field-re)
9130 (bibtex-field-name-for-parsing, bibtex-remove-delimiters-string)
9131 (bibtex-beginning-of-last-entry): Remove.
9132 (bibtex-parse-field-name): Use bibtex-field-name. Issue error
9133 message if comma is missing but buffer is read-only.
9134 (bibtex-parse-field-text): Handle whitespaces at the end of field
9135 text. Return 3-element list with beginning and end of field text
9136 and end of field.
9137 (bibtex-end-of-text-in-field, bibtex-end-of-field): Change accordingly.
9138 (bibtex-parse-field): Remove arg name. Use bibtex-field-name.
9139 (bibtex-search-forward-field, bibtex-search-backward-field):
9140 Search always delimited by limits of entry. Use more efficient
9141 search algorithms.
9142 (bibtex-name-in-field): Use bibtex-start-of-name-in-field and
9143 bibtex-end-of-name-in-field.
9144 (bibtex-text-in-field-bounds): Handle BibTeX strings when
9145 extracting the content of a field.
9146 (bibtex-text-in-field): Use search limits.
9147 (bibtex-parse-string-prefix): Handle empty string keys based on
9148 bibtex-string-empty-key.
9149 (bibtex-parse-string): Fix docstring.
9150 (bibtex-text-in-string): Use bibtex-text-in-field-bounds.
9151 (bibtex-preamble-prefix, bibtex-strings): New functions.
9152 (bibtex-skip-to-valid-entry): Include preceding whitespace in
9153 BibTeX entries (consistent with other BibTeX functions).
9154 (bibtex-map-entries): Use bibtex-skip-to-valid-entry.
9155 (bibtex-search-entry): Fix docstring. Simplify.
9156 (bibtex-flash-head, bibtex-complete-string-cleanup)
9157 (bibtex-count-entries, bibtex-sort-buffer): Simplify.
9158 (bibtex-beginning-of-first-entry): Use bibtex-skip-to-valid-entry.
9159 (bibtex-parse-entry): New optional arg content.
9160 (bibtex-format-entry, bibtex-autofill-entry, bibtex-url): Use it.
9161 Use bibtex-text-in-field-bounds.
9162 (bibtex-print-help-message): Handle BibTeX strings and preambles.
9163 (bibtex-end-of-entry): Use bibtex-preamble-prefix and
9164 bibtex-parse-string-postfix.
9165 (bibtex-find-text-internal): New function.
9166 (bibtex-remove-delimiters): Use it.
9167 (bibtex-find-text): Use it. New optional arg help.
9168 (bibtex-complete): Handle BibTeX string and preamble entries.
9169 (bibtex-Preamble): Fix order of closing delimiters.
9170
9171 2005-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
9172
9173 * vc.el (vc-default-revert): New fun.
9174
9175 * vc-mcvs.el (vc-mcvs-revert): Fix call to vc-default-revert.
9176
9177 2005-12-14 Romain Francoise <romain@orebokech.com>
9178
9179 * font-lock.el (font-lock-keywords-alist): Rename `append' to `how'.
9180 (font-lock-add-keywords, font-lock-update-removed-keyword-alist):
9181 (font-lock-remove-keywords): Likewise.
9182
9183 2005-12-14 Juri Linkov <juri@jurta.org>
9184
9185 * log-view.el (log-view-diff): Doc fix.
9186
9187 * isearch.el (isearch-query-replace): Use (mark) instead of
9188 isearch-opoint if mark is active in transient-mark-mode.
9189
9190 2005-12-14 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
9191
9192 * isearch.el (isearch-query-replace): Check for isearch-other-end.
9193
9194 2005-12-14 Per Abrahamsen <abraham@dina.kvl.dk>
9195
9196 * progmodes/cpp.el (cpp-face): New widget.
9197 (cpp-known-face, cpp-unknown-face, cpp-edit-list): Use it.
9198
9199 2005-12-14 Juri Linkov <juri@jurta.org>
9200
9201 * help-macro.el (make-help-screen): Bind `inhibit-read-only' to t
9202 around `erase-buffer' and `insert'.
9203
9204 * descr-text.el (describe-text-properties): Replace buffer name
9205 "*Help-2*" with "*Help*<2>".
9206 (describe-char): Add functions print-help-return-message,
9207 toggle-read-only. Use help-setup-xref with nil to not store
9208 describe-char in help-xref-stack. Use help-make-xrefs to
9209 make [back] button.
9210
9211 * desktop.el (desktop-minor-mode-table): Add vc-dired-mode with nil.
9212
9213 * wdired.el (wdired-old-point): New internal variable.
9214 (wdired-change-to-wdired-mode): Set it buffer-locally.
9215 (wdired-abort-changes): Restore point after aborting changes.
9216
9217 2005-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
9218
9219 * vc.el (vc-do-command): Add a new value t for okstatus.
9220
9221 * vc-svn.el (vc-svn-registered): Use it to avoid popping up a spurious
9222 frame in case of errors.
9223
9224 2005-12-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9225
9226 * menu-bar.el (menu-bar-showhide-fringe-menu): Move "On the Right"
9227 so it comes after "On the Left" in the menu.
9228
9229 2005-12-12 Luc Teirlinck <teirllm@auburn.edu>
9230
9231 * cus-edit.el (customize-apropos, customize-apropos-options)
9232 (customize-apropos-faces, customize-apropos-groups): Doc fixes.
9233
9234 2005-12-12 Bill Wohler <wohler@newt.com>
9235
9236 * vc-svn.el (vc-svn-registered): Fix problem of visiting
9237 non-writable Subversion-controlled files by saving window
9238 configuration before calling vc-do-command. vc-do-command calls
9239 pop-to-buffer on error which is unexpected during registration.
9240
9241 2005-12-12 Jay Belanger <belanger@truman.edu>
9242
9243 * calc/README: Update the summary of changes.
9244
9245 2005-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
9246
9247 * descr-text.el (describe-char): Rework last fix to solve the problem
9248 is the same way it's solved for everything else in that function
9249 (i.e. by extracting the info before setting up the *Help* buffer).
9250
9251 2005-12-12 Kim F. Storm <storm@cua.dk>
9252
9253 * subr.el (version-regexp-alist): Allow space as separator before
9254 non-numeric part, e.g. "1.0 alpha".
9255 (version-to-list): Interpret .X.Y version as 0.X.Y version.
9256
9257 2005-12-12 Carsten Dominik <dominik@science.uva.nl>
9258
9259 * textmodes/org.el (org-agenda, org-timeline, org-todo):
9260 Implement Logging and the keep-modes setting.
9261 (org-get-category): Make sure a string is returned.
9262 (org-log-done): New function.
9263 (org-log-done, org-closed-string): New options.
9264
9265 2005-12-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9266
9267 * tooltip.el (tooltip-y-offset): Change default to 20.
9268
9269 2005-12-12 Richard M. Stallman <rms@gnu.org>
9270
9271 * mouse.el (mouse-drag-vertical-line): Use adjust-window-trailing-edge.
9272
9273 * frame.el (display-hourglass): Doc fix.
9274
9275 * help.el (help-for-help-internal): Simplify entry for `a'.
9276
9277 * info.el (Info-on-current-buffer): Doc fix.
9278 (info-insert-file-contents): Don't test (featurep 'jka-compr).
9279
9280 * startup.el (inhibit-splash-screen): Make this the real name.
9281 (inhibit-startup-message): Make this the alias.
9282 (command-line): Find only simple.el, and use its directory
9283 to fill in other preloaded files' names.
9284 (command-line): Deactivate the mark if deactivate-mark is set.
9285
9286 * international/mule.el (load-with-code-conversion):
9287 Bind deactivate-mark.
9288
9289 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
9290
9291 2005-12-11 Luc Teirlinck <teirllm@auburn.edu>
9292
9293 * cus-edit.el (customize-apropos): Avoid listing an option more
9294 than once under different aliases. No longer list user options
9295 that are not defined with defcustom (unless a prefix arg is given).
9296 Doc fix.
9297 (customize-apropos-options): Doc fix.
9298
9299 2005-12-11 Juri Linkov <juri@jurta.org>
9300
9301 * frame.el (set-background-color, set-foreground-color)
9302 (set-cursor-color, set-mouse-color, set-border-color):
9303 Add explicit prompts to read colors by `facemenu-read-color'.
9304 (show-trailing-whitespace, blink-cursor-delay)
9305 (blink-cursor-interval, display-hourglass, hourglass-delay):
9306 Remove tags.
9307 (display-hourglass, hourglass-delay): Doc fix.
9308 (cursor-in-non-selected-windows): Capitalize words in tag.
9309
9310 * faces.el (frame-background-mode): Replace `choice-item' keywords
9311 with `const' to not make [default] button. Change default value tag
9312 from `default' to `automatic'. Doc fix.
9313 (trailing-whitespace) <defface>: Change group `whitespace' to
9314 `whitespace-faces'.
9315
9316 2005-12-11 Richard M. Stallman <rms@gnu.org>
9317
9318 * buff-menu.el (Buffer-menu-sort-column): Not a user variable.
9319
9320 2005-12-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9321
9322 * term/mac-win.el: Create keymap for mac-apple-event-map.
9323
9324 2005-12-11 Nick Roberts <nickrob@snap.net.nz>
9325
9326 * tooltip.el (tooltip-mode): Move to start of file so that it
9327 appears at top of customize buffer.
9328
9329 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
9330 Add the gud groupname.
9331 (gud-tooltip-mode): Add the tooltip groupname.
9332 (gud-tooltip-echo-area): Add the gud groupname. Remove tag to
9333 avoid conflict with tooltip-use-echo-area.
9334
9335 2005-12-10 Romain Francoise <romain@orebokech.com>
9336
9337 * help.el (help-for-help-internal): Add `r' in doc string.
9338
9339 2005-12-10 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
9340
9341 * align.el (align-regexp, align-highlight-rule):
9342 Use region-beginning and region-end instead of point and mark, so that
9343 repetition (with `repeat-complex-command') recomputes the region
9344 bounds.
9345
9346 2005-12-10 Lennart Borgman <lennart.borgman.073@student.lu.se>
9347
9348 * window.el (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
9349 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
9350 (bw-refresh-edges, bw-adjust-window, bw-balance-sub): New functions.
9351 (balance-windows): Rewrite using the above new functions.
9352
9353 2005-12-10 David Koppelman <koppel@ece.lsu.edu>
9354
9355 * hi-lock.el (hi-lock-mode): Rename from hi-lock-buffer-mode;
9356 react if global-hi-lock-mode seems intended.
9357 (global-hi-lock-mode) Renamed from hi-lock-mode.
9358 (hi-lock-archaic-interface-message-used)
9359 (hi-lock-archaic-interface-deduce): New variables.
9360 (turn-on-hi-lock-if-enabled, hi-lock-line-face-buffer)
9361 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
9362 (hi-lock-find-patterns, hi-lock-font-lock-hook):
9363 Replace hi-lock-buffer-mode with hi-lock-mode.
9364
9365 2005-12-10 Kevin Rodgers <ihs_4664@yahoo.com>
9366
9367 * emacs-lisp/lisp.el (lisp-complete-symbol): Regenerate the
9368 completion list, even after a partial completion has been
9369 inserted in the current buffer. If there are more than 1
9370 completion, redisplay the *Completions* buffer; if the
9371 completion is unique, delete the *Completions* window.
9372
9373 2005-12-10 Eli Zaretskii <eliz@gnu.org>
9374
9375 * mail/rmail.el (rmail-next-same-subject): Handle multiple "Re: "
9376 strings and long subject lines that were broken into multiple
9377 lines at arbitrary places. Handle subjects that have "Re: " in
9378 the middle.
9379
9380 2005-12-10 John W. Eaton <jwe@octave.org>
9381
9382 * emacs/octave-mod.el (octave-electric-space): Don't indent
9383 comments or strings if octave-auto-indent is nil.
9384
9385 2005-12-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9386
9387 * term/mac-win.el: Require url when compiling.
9388 Call mac-process-deferred-apple-events after loading init files.
9389 (mac-apple-event-map): New defvar. Define event handlers in it.
9390 (core-event, internet-event): New Apple event class symbols.
9391 (open-application, reopen-application, open-documents)
9392 (print-documents, open-contents, quit-application)
9393 (application-died, show-preferences, autosave-now, get-url):
9394 New Apple event ID symbols.
9395 (about): New HICommand ID symbol.
9396 (mac-event-spec, mac-event-ae): New macros.
9397 (mac-ae-parameter, mac-ae-list, mac-bytes-to-integer)
9398 (mac-ae-selection-range, mac-ae-text-for-search)
9399 (mac-ae-open-documents, mac-ae-text, mac-ae-get-url): New functions.
9400 (mac-application-menu-map): Remove keymap. Handlers for HICommand
9401 and Services menu events are now defined in mac-apple-event-map.
9402 (mac-drag-n-drop): Remove selection range handling.
9403
9404 2005-12-10 Kenichi Handa <handa@m17n.org>
9405
9406 * simple.el (zap-to-char):
9407 * isearch.el (isearch-process-search-char): Translate CHAR by
9408 translation-table-for-input.
9409
9410 2005-12-09 Chong Yidong <cyd@stupidchicken.com>
9411
9412 * foldout.el (foldout-exit-fold): Properly hide subtree.
9413
9414 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
9415
9416 * files.el (save-buffer):
9417 * international/ucs-tables.el (ucs-set-table-for-input):
9418 * mail/mail-extr.el (mail-extract-address-components):
9419 * mail/sendmail.el (mail-mode): Reformat doc string.
9420
9421 2005-12-09 Juri Linkov <juri@jurta.org>
9422
9423 * isearch.el (isearch-highlight): Change main overlay priority
9424 from 1 to 1001. Simplify.
9425 (isearch-lazy-highlight-update): Change lazy overlay priority
9426 from 0 to 1000.
9427
9428 * replace.el (replace-highlight): Change overlay priority from
9429 1 to 1001.
9430
9431 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
9432 Change overlay priority from 1 to 1001. Reuse existing overlay.
9433
9434 * compare-w.el (compare-windows-highlight): Change overlay
9435 priority from 1 to 1000.
9436
9437 * menu-bar.el (menu-bar-edit-menu): Add listp around
9438 pending-undo-list to disable menu item "undo" when pending
9439 undo list is empty.
9440
9441 * locate.el (locate): Disable undo in *Locate* buffer.
9442
9443 2005-12-09 Kim F. Storm <storm@cua.dk>
9444
9445 * mail/smtpmail.el (smtpmail-via-smtp): Disable undo in SMTP buffer.
9446
9447 2005-12-09 David Ponce <david@dponce.com>
9448
9449 * recentf.el: Improvement of the menu code.
9450 (recentf-enabled-p): Move before first use. Use `kill-emacs-hook'
9451 instead of menu hook.
9452 (recentf-show-menu, recentf-hide-menu): New functions.
9453 (recentf-menu-customization-changed, recentf-mode): Use them.
9454 (recentf-menu-action, recentf-max-menu-items)
9455 (recentf-menu-open-all-flag, recentf-menu-append-commands-flag)
9456 (recentf-arrange-by-rule-others)
9457 (recentf-arrange-by-rules-min-items)
9458 (recentf-arrange-by-rule-subfilter) : Don't use
9459 `recentf-menu-customization-changed'.
9460 (recentf-arrange-rules): Likewise. Accept functions to compute
9461 sub-menu titles.
9462 (recentf-menu-filter): Likewise. Doc fix.
9463 (recentf-menu-value-shortcut): Doc fix.
9464 (recentf-dump-variable): Quote atom value.
9465 (recentf-make-menu-items): Update to use it as a menu filter.
9466 (recentf-match-rule): New function.
9467 (recentf-arrange-by-rule): Use it.
9468 (recentf-indirect-mode-rule): New function.
9469 (recentf-build-mode-rules): Use it.
9470 (recentf-dir-rule): New function.
9471 (recentf-arrange-by-dir): Use it.
9472 (recentf-filter-changer-current): Rename from
9473 `recentf-filter-changer-state'. All references updated.
9474 (recentf-filter-changer-alist): Update filter names.
9475 (recentf-filter-changer-select): New function.
9476 (recentf-filter-changer): Use it. Make a sub-menu from filters
9477 available in `recentf-filter-changer-alist'.
9478 (recentf-data-cache, recentf-clear-data)
9479 (recentf-update-menu): Remove. All references updated.
9480 (recentf-match-rule-p, recentf-build-dir-rules)
9481 (recentf-filter-changer-goto-next)
9482 (recentf-filter-changer-get-current)
9483 (recentf-filter-changer-get-next): Remove.
9484
9485 2005-12-08 Luc Teirlinck <teirllm@auburn.edu>
9486
9487 * cus-edit.el (custom-buffer-create-internal): Relabel the whole
9488 buffer "Reset" button to "Reset to Current" for consistency with
9489 the State buttons.
9490
9491 2005-12-08 John Paul Wallington <jpw@pobox.com>
9492
9493 * ibuf-ext.el (define-ibuffer-filter filename):
9494 If `dired-directory' is a list then really use its car.
9495
9496 2005-12-08 Kim F. Storm <storm@cua.dk>
9497
9498 * emulation/cua-rect.el (cua--rectangle-aux-replace):
9499 Fix indention of text on right side of replaced rectangle.
9500
9501 2005-12-09 Nick Roberts <nickrob@snap.net.nz>
9502
9503 * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
9504 No need to check gud-comint-buffer is bound.
9505 (gdb): Prevent multiple debugging when first session uses gdba.
9506
9507 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9508
9509 CC Mode update to 5.31.
9510
9511 * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
9512 Emacsen which lack `define-minor-mode'. (Currently Emacs <21.
9513 We might do this function properly in the future).
9514
9515 * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el:
9516 New macros c-sentence-end and c-default-value-sentence end, to cope
9517 with Emacs 22's new function `sentence-end'.
9518
9519 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9520
9521 * progmodes/cc-cmds.el (c-show-syntactic-information): Solve the
9522 compat issue using `c-put-overlay' and `c-delete-overlay'.
9523
9524 * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay):
9525 New compat macros to handle overlays/extents.
9526
9527 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9528
9529 * progmodes/cc-fix.el: Add definitions of the macros push and pop
9530 (for GNU Emacs 20.4)
9531
9532 * progmodes/cc-defs.el:
9533 (i) Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4)
9534
9535 * progmodes/cc-cmds.el (c-show-syntactic-information): Change the
9536 highlighting mechanism so it will work in XEmacs too.
9537
9538 * progmodes/cc-defs.el: Insert c-int-to-char.
9539
9540 * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
9541 call to the new macro c-int-to-char. This solves XEmacs's
9542 regarding characters as different from integers.
9543
9544 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9545
9546 * progmodes/cc-fonts.el (c-make-syntactic-matcher):
9547 New internal helper.
9548
9549 (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
9550 construct to make the indirect face lookup work in XEmacs.
9551
9552 (c-cpp-matchers): Append the negation char face to the existing
9553 fontification, so that the cpp face doesn't disappear.
9554 Use `c-make-syntactic-matcher' to avoid negation chars in comments
9555 and strings.
9556
9557 * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
9558 to map to `font-lock-negation-char-face' in emacsen where it exists.
9559
9560 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9561
9562 * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
9563
9564 * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el:
9565 Rename "c-subword-move-mode" as "c-subword-mode".
9566
9567 * progmodes/cc-mode.el: Added tty suitable bindings for C-c
9568 <delete> and C-c C-<delete>. (To the c-hungry- delete functions).
9569
9570 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9571
9572 * progmodes/cc-mode.el: Added autoload directive for
9573 `c-subword-move-mode' for use in older emacsen.
9574
9575 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9576
9577 * progmodes/cc-mode.el:
9578 (i) Insert a binding for C-c C-backspace into
9579 c-bind-special-erase-keys which works in TTYs.
9580 (ii) Make sure that when file styles are used, any explicitly
9581 given style variables take priority over those in the style.
9582 Do this by calling `hack-local-variables' a second time.
9583
9584 * progmodes/cc-vars.el: Add language specific customization
9585 widgets for AWK to c-doc-comment-style, c-require-final-newline
9586 and c-default-style. Add a defcustom for awk-mode-hook.
9587 Give c-syntactic-element and c-syntactic-context doc-strings by
9588 directly setting their `variable-documentation' propery.
9589 This allows Emacs 22.1 to read these with C-h v.
9590
9591 * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan Monnier).
9592
9593 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9594
9595 * progmodes/cc-fonts.el, cc-vars.el
9596 (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection)
9597 (gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
9598 Masatake YAMATO.
9599
9600 (c-doc-comment-style): Made GtkDoc default in C mode.
9601
9602 * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
9603 and C-c C-<delete>.
9604
9605 (c-bind-special-erase-keys): New function for use on
9606 `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
9607
9608 * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
9609 <delete> key behavior in XEmacs according to `delete-forward-p'.
9610 C.f. `c-electric-delete'.
9611
9612 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9613
9614 * progmodes/cc-mode.el: Give c-hungry-backspace and
9615 c-hungry-delete-forward permanent key bindings.
9616
9617 * progmodes/cc-cmds.el (c-electric-semi&comma):
9618 Bind c-syntactic-context for calls to "criteria functions", for
9619 consistency with other calls to user functions.
9620
9621 * progmodes/cc-cmds.el (c-indent-command): Expunge use of
9622 `current-prefix-arg', since this might be the prefix arg to a
9623 command which calls c-indent-command as a function. Change the
9624 interactive spec from "p" to "P".
9625
9626 * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
9627 reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
9628 was difficult to understand.
9629
9630 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9631
9632 * progmodes/cc-engine.el (c-on-identifier): Fix bug when at the
9633 first char of an identifier.
9634
9635 * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
9636 +" syntax in C++.
9637
9638 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9639
9640 * progmodes/cc-cmds.el (c-mask-paragraph): Correct, so that
9641 auto-fill doesn't split a c-comment's last word from a hanging
9642 "*/" when a space is typed between them after fill-column.
9643
9644 * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
9645
9646 * progmodes/cc-styles.el (c-set-style)
9647 (c-setup-paragraph-variables): Abort the command if we're not in a
9648 CC Mode buffer.
9649
9650 * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
9651 with blank comment-prefix, and a blank line as the comment's
9652 second line.
9653
9654 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9655
9656 * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
9657 Incorporate the patterns added in the Emacs development branch
9658 for the new Emacs 22 face `font-lock-negation-char-face'.
9659
9660 * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
9661 of "red" since it stands out better in xterms and DOS terminals.
9662
9663 * progmodes/cc-engine.el (c-literal-faces):
9664 Add `font-lock-comment-delimiter-face' which is new in Emacs 22.
9665
9666 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9667
9668 * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
9669 forcibly enable c-electric-flag.
9670
9671 * progmodes/cc-vars.el, cc-cmds.el: New clean-up
9672 `comment-close-slash' on c-electric-slash: if enabled, typing `/' just
9673 after the comment-prefix of a C-style comment will close that comment.
9674
9675 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9676
9677 * progmodes/cc-fonts.el (c-basic-matchers-before)
9678 (c-complex-decl-matchers): Fix the "not-arrow-prefix" regexp used
9679 in Pike.
9680
9681 * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
9682 digraphs.
9683
9684 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
9685 (c-cpp-message-directives, c-cpp-include-directives)
9686 (c-opt-cpp-macro-define, c-opt-cpp-macro-define-start)
9687 (c-cpp-expr-directives): Introduce new language constants to
9688 control cpp syntax in a cleaner way.
9689
9690 (c-cpp-expr-functions): Rename from c-cpp-defined-fns.
9691
9692 (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
9693
9694 * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines)
9695 (c-multiline-string-start-char): New language constants and
9696 variables to specify how newlines in string literals work.
9697
9698 (c-font-lock-invalid-string): Use them.
9699
9700 * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
9701 unbalanced close brace is entered. Optimization by avoiding going
9702 back over arbitrarily large blocks. Removed hints that this
9703 function only would be relevant/useful in AWK.
9704
9705 (c-electric-brace): Indent syntactically after the cleanups since
9706 lineup functions might do it differently then.
9707
9708 * progmodes/cc-engine.el, cc-langs.el
9709 (c-opt-op-identifier-prefix): New language constant and variable.
9710
9711 (c-just-after-func-arglist-p, c-after-special-operator-id)
9712 (c-search-decl-header-end, c-inside-bracelist-p): Use it.
9713
9714 * progmodes/cc-align.el, cc-engine.el
9715 (c-after-special-operator-id): New helper to handle C++ operator
9716 identifiers.
9717
9718 (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p)
9719 (c-guess-basic-syntax): Handle C++ operator identifiers in
9720 declarations.
9721
9722 * progmodes/cc-langs.el (c-assignment-operators): Add the
9723 trigraph version of ^= too.
9724
9725 * progmodes/cc-langs.el (c-assignment-operators): Add the
9726 trigraph version of |= in C++.
9727
9728 * progmodes/cc-fonts.el (c-font-lock-declarators):
9729 Handle `c-decl-hangon-kwds' after the identifier name.
9730
9731 * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
9732 whether an arglist is "nonempty", ignore a comment after the open
9733 paren if it isn't followed by a non-comment token on the same line.
9734
9735 * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4:
9736 Enable heuristics below the point to cope with classes inside special
9737 brace lists in Pike.
9738
9739 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9740
9741 * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
9742
9743 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9744
9745 * progmodes/cc-guess.el (cc-guess-install): New function to
9746 install an already guessed style in another buffer.
9747
9748 * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
9749 sets `inhibit-read-only' - `c-save-buffer-state' should be used
9750 anyway if the change always is undone.
9751
9752 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9753
9754 Implement togglable electricity:
9755
9756 * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
9757 saying when it should be used.
9758
9759 * progmodes/cc-engine.el: Add the new buffer-local variable,
9760 c-electric-flag.
9761
9762 * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
9763 c-toggle-auto-newline.
9764
9765 * progmodes/cc-mode.el: Rename c-toggle-auto-state to
9766 c-toggle-auto-newline. Remove the binding for
9767 c-toggle-auto-hungry-state. Add the binding C-c C-l for the new
9768 c-toggle-electric-state.
9769
9770 * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
9771
9772 * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
9773 c-\(forward\|backward\)-subword.
9774 (c-update-modeline): Add the new modeline flag `l' for
9775 `c-electric-flag'. Make the auto-newline flag `a' dependent on `l'.
9776 (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'.
9777 Make the old name an alias of the new name.
9778 (c-toggle-electric-state): New function.
9779 (c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\)):
9780 Adapt these functions to do electric things only when
9781 c-electric-flag is non-nil.
9782 (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
9783 new functions from c-electric-brace.
9784 (c-point-syntax): Add a check for "virtual semicolons" in AWK
9785 mode, so that the tentative extra newline doesn't change the
9786 syntax of the following brace.
9787 (c-electric-brace): Restructure by extracting the above functions.
9788 Tidy up the coding somewhat.
9789 (c-electric-semi&comma, c-electric-colon, c-electric-paren):
9790 restructure a bit.
9791
9792 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9793
9794 * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
9795 anchor position(s) using faces. Thanks to Masatake YAMATO for the idea.
9796
9797 * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
9798 (c-submode-indicators): Change name from `c-auto-hungry-string'
9799 since it's now used to track another submode.
9800
9801 (c-update-modeline): Convert to function and extended to check
9802 `c-subword-move-mode'.
9803
9804 (c-forward-into-nomenclature, c-backward-into-nomenclature):
9805 Convert to compat aliases for `c-forward-subword' and
9806 `c-backward-subword'.
9807
9808 * progmodes/cc-subword.el: New functions and minor mode to handle
9809 SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
9810
9811 (c-forward-subword, c-backward-subword, c-mark-subword)
9812 (c-kill-subword, c-backward-kill-subword, c-transpose-subwords)
9813 (c-capitalize-subword, c-downcase-subword, c-upcase-subword):
9814 Functions corresponding to the standard word handling functions.
9815
9816 (c-subword-move-mode): Minor mode that replaces all the standard
9817 word handling functions with their subword equivalences.
9818
9819 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9820
9821 * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
9822 entry for one-liner-defun.
9823
9824 * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
9825 name in its def-edebug-spec.
9826
9827 * progmodes/cc-cmds.el (c-electric-brace): Make the
9828 one-liner-defun clean-up work with empty-defun-braces. o-l-d now
9829 compacts space before a comment, if this will make things fit on
9830 one line.
9831
9832 Introduce an "awk" style, mainly for auto-newline and clean-ups.
9833
9834 * progmodes/cc-align.el: New function c-snug-1line-defun-close
9835
9836 * progmodes/cc-cmds.el: In c-electric-brace, add code for new
9837 clean-up one-liner-defun.
9838
9839 * progmodes/cc-styles.el: Add the new "awk" style.
9840
9841 * progmodes/cc-vars.el: Add description of one-liner-defun to
9842 c-cleanup-list's doc-string. New user options,
9843 c-max-one-liner-length. In c-default-style, set the default style
9844 for AWK to "awk".
9845
9846 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9847
9848 * progmodes/cc-engine.el (c-forward-label): Fix fontification of
9849 macros inside labels.
9850
9851 * progmodes/cc-engine.el (c-looking-at-bos): Obsolete in favor of
9852 `c-at-statement-start-p' and `c-at-expression-start-p'.
9853
9854 * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
9855 error if the mark isn't set.
9856
9857 * progmodes/cc-engine.el (c-guess-continued-construct)
9858 (c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
9859 accurately detect functions inside functions.
9860
9861 * progmodes/cc-engine.el (c-at-expression-start-p): New function
9862 like `c-at-statement-start-p' that additionally recognizes commas
9863 and expression parentheses as delimiters.
9864
9865 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Add flag
9866 to avoid heuristics that doesn't work for unclosed blocks.
9867 (c-at-statement-start-p): New function.
9868
9869 * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
9870 Objective-C directives, e.g. directives spanning lines should work
9871 reasonably well now.
9872
9873 (c-put-c-type-property, c-clear-c-type-property): New helpers.
9874
9875 (c-forward-objc-directive): New function to move over any ObjC
9876 directive.
9877
9878 (c-just-after-func-arglist-p, c-guess-basic-syntax)
9879 (c-basic-matchers-before): Use it.
9880
9881 (c-font-lock-objc-iip-decl): Remove.
9882
9883 * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
9884 in the template arglist recognition.
9885
9886 * progmodes/cc-styles.el (c-style-alist): Fix several
9887 inconsistencies in the Whitesmith style.
9888
9889 * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks):
9890 New lineup function to get lines after Whitesmith style blocks
9891 correctly indented.
9892
9893 (c-lineup-whitesmith-in-block): Back out the compensation for
9894 opening parens since it's done using `add' lists in the style
9895 definition instead. Don't use the anchor position since it varies
9896 too much between the syntactic symbols. :P
9897
9898 * progmodes/cc-vars.el (c-valid-offset): Update.
9899
9900 * progmodes/cc-engine.el (c-evaluate-offset): Extend to handle
9901 lists where the offsets are combined according to several
9902 different methods: `first', `min', `max', and `add'.
9903 Report offset evaluation errors with `c-benign-error' so that some kind
9904 of reindentation still is done.
9905
9906 * progmodes/cc-engine.el (c-guess-basic-syntax):
9907 Anchor `arglist-intro' the same way as `arglist-cont-nonempty' and
9908 `arglist-close'.
9909
9910 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix similar
9911 situations for `arglist-cont-nonempty' and `arglist-close'.
9912
9913 * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New const.
9914
9915 * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
9916 cc-bytecomp-boundp' in a number of places.
9917
9918 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a
9919 macro related issue.
9920
9921 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9922
9923 * progmodes/cc-awk.el: Change the terminology of regexps: A char
9924 list is now [asdf], a char class [:alpha:].
9925 Include code for char classes.
9926 Set c-awk-NL-prop on lines ending in open strings. (Bug fix.)
9927 Add character classes (e.g. "[:alpha:]") into AWK Mode's regexps.
9928
9929 Remove (nearly all of) the cruft associated with AWK Mode's former
9930 concept of "virtual semicolons":
9931
9932 Adapt c-beginning-of-statement, c-end-of-statement (together with
9933 subfunctions) to use the new notion of "virtual semicolon" in
9934 place of the old awkward special handling for AWK. There remains
9935 much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
9936 * progmodes/cc-cmds.el:
9937 (c-ascertain-adjacent-literal): In the backwards direction, now
9938 recognises AWK regexp delimiters as string delimiters.
9939 (c-after-statement-terminator-p): Adapt for virtual semicolons;
9940 check more rigorously for "end of macro".
9941 (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
9942 virtual semicolons;
9943 (c-beginning-of-statement): Adapt for virtual semicolons; Separate
9944 out the code for forward movement into ...
9945 (c-end-of-statement): Now contains the code for forward movement,
9946 adapted for virtual semicolons.
9947
9948 * progmodes/cc-engine.el:
9949 (c-ws*-string-limit-regexp): New regexp.
9950 (c-forward-single-comment, c-backward-single-comment): Comment out
9951 the (now redundant) "special" AWK stuff.
9952
9953 * progmodes/cc-styles.el, cc-vars.el: Change the settings of
9954 c-string-par-start, c-string-par-separate to be more like Text
9955 Mode than Fundamental Mode.
9956
9957 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9958
9959 * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
9960 to the fontified region so that fontification doesn't occur
9961 outside it (could happen e.g. when fontifying a line with an
9962 unfinished declaration).
9963
9964 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9965
9966 * progmodes/cc-awk.el: Move regexps for analysing AWK code to near the
9967 start of the file. ^L now separate sections of the file.
9968 (c-awk-non-eol-esc-pair-re, c-awk-blank-or-comment-line-re)
9969 (c-awk-one-line-possibly-open-string-re)
9970 (c-awk-regexp-one-line-possibly-open-char-class-re)
9971 (c-awk-one-line-possibly-open-regexp-re)
9972 (c-awk-one-line-non-syn-ws*-re): New defonsts.
9973 (c-awk-at-vsemi-p, c-awk-vsemi-status-unknown-p): New functions.
9974
9975 Amend the concept of "virtual semicolons" (in the indentation
9976 engine) for languages like AWK, such that they are now
9977 conceptually attached to end of the last token of a statement, not
9978 the end of the line. (In AWK Mode, however, the pertinent text
9979 property is still physically set on the EOL.) Remove the specific
9980 tests for awk-mode, thus facilitating the introduction of other
9981 language modes where EOLs can end statements.
9982 (Note: The funtionality in cc-cmds.el, specifically
9983 c-beginning/end-of-statement has yet to be amended.)
9984
9985 * progmodes/cc-defs.el (c-at-vsemi-p, c-vsemi-status-unknown-p):
9986 New macros.
9987
9988 * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
9989 c-stmt-delim-chars. New c-lang-defvars: c-at-vsemi-p-fn,
9990 c-vsemi-status-unknown-p-fn (in a new page).
9991
9992 * progmodes/cc-engine.el: In c-beginning-of-statement-1,
9993 c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
9994 numerous awkward forms like
9995 (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
9996 with (c-at-vsemi-p). Fix a few typos. In c-guess-basic-syntax, new
9997 variable before-ws-ip, the place just after char-before-ip appears.
9998
9999 * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
10000 a comment.
10001
10002 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10003
10004 * progmodes/cc-cmds.el (c-electric-brace): Clean up using
10005 `c-tentative-buffer-changes'.
10006
10007 * progmodes/cc-defs.el (c-region-is-active-p): Simplify and
10008 convert to macro to choose between Emacs and XEmacs at compile time.
10009
10010 (c-set-region-active): New set counterpart to `c-region-is-active-p'.
10011
10012 (c-tentative-buffer-changes): New macro to handle temporary buffer
10013 changes in a convenient way.
10014
10015 (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
10016 for `c-tentative-buffer-changes'.
10017
10018 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tighten up
10019 the checks for paren sexps between the point and the keyword, to
10020 avoid some false alarms.
10021
10022 * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
10023 Fixed a situation where an error could be thrown for unbalanced
10024 parens. Changed to make use of c-keyword-member' to avoid some
10025 repeated regexp matches.
10026
10027 (c-opt-lambda-key, c-opt-inexpr-block-key, c-opt-inexpr-class-key):
10028 These language variable are no longer necessary.
10029
10030 (c-block-stmt-kwds): New language constant used by
10031 c-looking-at-inexpr-block'.
10032
10033 (c-guess-basic-syntax): Remove an optional check that looked at
10034 the existence of the now removed language variables.
10035
10036 * progmodes/cc-engine.el (c-fdoc-shift-type-backward)
10037 (c-forward-decl-or-cast-1): Fix invalid recognition of C++ style
10038 object instantiation expressions as declarations in some contexts.
10039 This bug only affected languages where the declarator can't be
10040 enclosed in parentheses.
10041
10042 * progmodes/cc-styles.el (c-style-alist): Fix the GNU style to
10043 insert newlines before and after substatement braces.
10044
10045 * progmodes/cc-engine.el: Improved the heuristics for recognizing
10046 function declaration headers and the handling of C++ style member
10047 init lists.
10048
10049 (c-just-after-func-arglist-p): Rewritten to use
10050 `c-forward-decl-or-cast-1'. Now behaves a bit differently too.
10051
10052 (c-beginning-of-member-init-list): Remove since it isn't used anymore.
10053
10054 (c-guess-basic-syntax): Adapt case 5B for the new
10055 `c-just-after-func-arglist-p'. Merge cases 5B.1 and 5B.3.
10056 Remove cases 5D.1 and 5D.2 since they aren't trigged anymore (case 5B.1
10057 covers all cases now).
10058
10059 * progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'.
10060
10061 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10062
10063 * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
10064 c-string-par-start/separate c-sentence-end-with-esc-eol,
10065 initialised in c-setup-paragraph-variables, used in string
10066 scanning subroutines of c-beginning-of-statement.
10067
10068 * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
10069 which precedes the newly inserted `{'.
10070
10071 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10072
10073 * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
10074 function for declaration level blocks. It should now cope with
10075 templates better and also be a lot more comprehensible.
10076
10077 (c-looking-at-decl-block): The new function.
10078
10079 (c-search-uplist-for-classkey): The old one. It's now a wrapper
10080 for compatibility.
10081
10082 (c-add-class-syntax, c-guess-continued-construct)
10083 (c-guess-basic-syntax): Adapt for `c-looking-at-decl-block'.
10084
10085 (c-decl-block-key): Change to tell apart ambiguous and
10086 unambiguous keywords. Pike specials are now handled directly in
10087 the code instead.
10088
10089 (c-block-prefix-disallowed-chars, c-block-prefix-charset):
10090 New language constants and variables to make the backward skip in
10091 `c-looking-at-decl-block' as tight as possible.
10092
10093 (c-nonsymbol-token-char-list): New language constant.
10094
10095 * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
10096 find balanced template arglists backwards.
10097
10098 * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
10099 making char classes for `c-syntactic-skip-backward'.
10100
10101 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify case
10102 16D - can't be a class-close at that point.
10103
10104 * progmodes/cc-engine.el (c-guess-basic-syntax)
10105 (c-add-class-syntax): Don't narrow out the enclosing declaration
10106 level. This makes everything a lot easier, and it was actually
10107 only four small places that needed it to work. Some places that
10108 previously did `widen' are removed now, which has the effect that
10109 `c-guess-basic-syntax' never will look at things outside the
10110 current narrowment now. The anchor position for `topmost-intro'
10111 is affected by this, but it was so bogus it was basically useless
10112 before, and now it's equally bogus but in a slightly different way.
10113
10114 (c-narrow-out-enclosing-class): Gone.
10115
10116 (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
10117 the narrowed region.
10118
10119 (c-least-enclosing-brace): Remove silly optional argument.
10120
10121 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
10122 the point could be left directly after an open paren when finding
10123 the beginning of the first decl in the block.
10124
10125 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
10126 Specify which submatch to use.
10127
10128 * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
10129
10130 (c-decl-start-re): No longer any need for special treatment of
10131 ObjC due to the above.
10132
10133 (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
10134 presumably follows C in that regard.
10135
10136 * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
10137 New language constants to specify operator tokens inside
10138 identifiers in a more high level way.
10139
10140 (c-opt-identifier-prefix-key): New internal language constant.
10141
10142 (c-opt-identifier-concat-key, c-opt-after-id-concat-key)
10143 (c-identifier-start, c-identifier-key): Now completely calculated
10144 from other constants.
10145
10146 (c-identifier-last-sym-match): Decommission since it's no longer used.
10147
10148 (c-operators): Use `c-identifier-ops'. Document `postfix-if-paren'.
10149
10150 * progmodes/cc-engine.el (c-forward-name): Remove the
10151 optimization when c-identifier-key is equal to c-symbol-key since
10152 it doesn't work in byte compiled files. Don't record empty
10153 regions as identifiers.
10154
10155 * progmodes/cc-langs.el (c-filter-ops): New helper function to
10156 simplify access to `c-operators' and its likes.
10157
10158 (c-operator-list, c-all-op-syntax-tokens)
10159 (c-nonsymbol-token-regexp, c-<>-multichar-token-regexp)
10160 (c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds)
10161 (c-primary-expr-regexp, c-cast-parens): Use it.
10162
10163 * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
10164 an explicit language in functions.
10165
10166 * progmodes/cc-defs.el (c-make-keywords-re): Add an appendable
10167 variant of adornment.
10168
10169 * progmodes/cc-langs.el (c-any-class-key): Remove unused language
10170 variable.
10171
10172 (c-type-decl-prefix-key): Remove some now unnecessary cruft from
10173 the Pike value.
10174
10175 * progmodes/cc-engine.el (c-on-identifier)
10176 (c-simple-skip-symbol-backward): Small fix for handling "-"
10177 correctly in `skip-chars-backward'. Affected the operator lfun
10178 syntax in Pike.
10179
10180 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disable the
10181 diagnostic message about precompiled language vars not being used.
10182
10183 * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
10184 "__attribute__" is followed by a parenthesis.
10185
10186 (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re)
10187 (c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
10188 language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
10189
10190 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el:
10191 Internal cleanups to properly detect the declared identifiers in
10192 various declarations.
10193
10194 (c-decl-start-kwds): New language constant to recognize
10195 declarations that can start anywhere. Used for class declarations
10196 in Pike.
10197
10198 (c-specifier-key, c-not-decl-init-keywords)
10199 (c-decl-prefix-or-start-re, c-find-decl-prefix-search)
10200 (c-find-decl-spots): Implement `c-decl-start-kwds'.
10201
10202 (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds)
10203 (c-decl-hangon-key, c-forward-decl-or-cast-1): Separate the
10204 handling of the compiler specific extension keywords into a new
10205 language constant `c-decl-hangon-kwds' that defines keyword
10206 clauses to be ignored in declarations.
10207
10208 (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
10209 past unrecognized tokens when handling `c-colon-type-list-kwds'.
10210 Necessary to stop at the declared identifier in e.g. IDL valuetype
10211 declarations.
10212
10213 (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds)
10214 (c-prefix-spec-kwds-re, c-postfix-spec-kwds)
10215 (c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key)
10216 (c-forward-decl-or-cast-1): Recognize the declared identifier in
10217 class and enum declarations as such and not as part of the type.
10218
10219 (c-forward-decl-or-cast-1, c-forward-label): Relax the
10220 interpretation of PRECEDING-TOKEN-END when there's no preceding token.
10221
10222 (c-forward-decl-or-cast-1): Don't disregard sure signs of
10223 declarations when there's some syntax error later on.
10224
10225 (c-complex-decl-matchers): Did away with a reference to
10226 `c-specifier-key'.
10227
10228 * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
10229 value - this variable is always dynamically bound.
10230
10231 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el
10232 * cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el
10233 * cc-cmds.el, cc-defs.el: Change the policy for marking up
10234 functions that might do hidden buffer changes: All such internal
10235 functions are now marked instead of those that don't.
10236
10237 (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments)
10238 (c-(forward|backward)-single-comment, c-parse-state, c-on-identifier)
10239 (c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments)
10240 (c-literal-type): Allow these functions to make hidden buffer changes,
10241 so that they are free to use text property caching later on.
10242
10243 (c-electric-backspace, c-electric-delete-forward, c-electric-pound)
10244 (c-electric-brace, c-electric-slash, c-electric-star)
10245 (c-electric-semi&comma, c-electric-colon, c-electric-lt-gt)
10246 (c-electric-paren, c-electric-continued-statement, c-indent-command)
10247 (c-indent-region, c-mask-paragraph, c-indent-new-comment-line)
10248 (c-context-line-break): Add `c-save-buffer-state' calls to comply
10249 with the changed semantics of the functions above.
10250
10251 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a bug
10252 when macros occur in obscure places. Optimized the sexp movement
10253 a bit.
10254
10255 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10256
10257 Enhancements for c-beginning-of-statement to work in AWK Mode:
10258
10259 * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
10260 (completed statement) with `}' (statement completed by closing
10261 brace or semicolon) and `$' (statement completed by EOL).
10262
10263 (c-awk-virtual-semicolon-ends-prev-line-p)
10264 (c-awk-virtual-semicolon-ends-line-p)
10265 (c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward)
10266 (c-awk-at-statement-end-p): New functions.
10267
10268 * progmodes/cc-cmds.el: Simplify the structure of functions
10269 c-forward-over-illiterals, c-back-over-illiterals. Enhance these
10270 two functions and c-beginning-of-statement to handle AWK Mode.
10271
10272 * progmodes/cc-engine.el: Enhance c-forward-single-comment,
10273 c-backward-single-comment for AWK mode. Attempt to clarify their
10274 doc-strings.
10275
10276 * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
10277
10278 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10279
10280 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
10281 label handling. Labels are now recognized in a uniform and more
10282 robust way, regardless of context. Text properties are put on all
10283 labels to recognize the following declarations better.
10284 Multiword labels are handled both in indentation and fontification for
10285 the benefit of language extensions like Qt. For consistency, keywords
10286 in labels are now fontified with the label face instead.
10287 That also applies to "case" and "default".
10288
10289 (c-beginning-of-statement-1): Fix some bugs in the label
10290 handling. Disregard `c-nonlabel-token-key' in labels that begin
10291 with `c-label-kwds'.
10292
10293 (c-find-decl-spots): Support that the callback adds more
10294 `c-decl-end' spots to find.
10295
10296 (c-forward-decl-or-cast-1): Don't treat a list of plain
10297 identifiers followed by a colon as a declaration.
10298
10299 (c-forward-label): New function to recognize labels.
10300
10301 (c-guess-basic-syntax): Replace uses of `c-label-key' with
10302 `c-forward-label'. Moved the label recognition cases (14 and 15)
10303 earlier since they aren't so context sensitive now. Handle labels
10304 on the top level gracefully. Moved access label recognition to
10305 the generic label case (CASE 15) - removed CASE 5E.
10306
10307 (c-font-lock-declarations): Add recognition of labels in the
10308 same round since we need to handle labels in parallell with other
10309 declarations to recognize both accurately. It should also improve
10310 speed.
10311
10312 (c-simple-decl-matchers, c-basic-matchers-after):
10313 Move `c-font-lock-labels' so that it only is used on decoration level 2
10314 since `c-font-lock-declarations' handles it otherwise.
10315
10316 (c-complex-decl-matchers): Remove the simplistic recognition of
10317 access labels.
10318
10319 (c-decl-prefix-re): Remove the kludges that was necessary to cope
10320 with labels earlier.
10321
10322 (c-decl-start-re): New language variable to make
10323 `c-font-lock-declarations' stop for the special protection labels
10324 in Objective-C that start with `@'.
10325
10326 (c-label-key): Remove since it's no longer used.
10327
10328 (c-recognize-colon-labels, c-label-prefix-re): New language
10329 constants to support recognition of generic colon-terminated labels.
10330
10331 (c-type-decl-end-used): `c-decl-end' is now used whenever there
10332 are colon terminated labels.
10333
10334 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
10335 first argument starts with a special brace list.
10336
10337 * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1)
10338 (c-font-lock-declarations): Break out the declaration and cast
10339 recognition from `c-font-lock-declarations' to a new function, so
10340 that it can be used in the indentation engine.
10341
10342 * progmodes/cc-engine.el (c-find-decl-spots): Fix bug in backing
10343 up to the start of the literal. Fixed bug with the point on the
10344 wrong side of the search limit that could happen when the start
10345 position is inside a literal.
10346
10347 * progmodes/cc-engine.el (c-parse-state)
10348 (c-invalidate-state-cache): Modify the use of `c-state-cache-end'
10349 so that it's kept a little bit back to increase the hit rate.
10350
10351 (c-parse-state): Change the macro handling and fixed some
10352 glitches. Macro context is checked more often than necessary now,
10353 but otoh less garbage conses are generated.
10354
10355 * progmodes/cc-engine.el (c-parse-state)
10356 (c-invalidate-state-cache): Cache the last position where
10357 `c-state-cache' applies. This can speed up refontification quite
10358 a bit in blocks where there are many non-brace parens before the point.
10359
10360 (c-state-cache-end): New variable for this.
10361
10362 (c-guess-basic-syntax, c-debug-parse-state): Adapt for the new
10363 cache variable.
10364
10365 * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
10366 get close initial continue positions when the start position is
10367 inside a literal or macro. Do not call the callback for spots
10368 before the start position (which can happen e.g. for `c-decl-end'
10369 spots inside comments). Optimize better in special cases when the
10370 region is a single line inside a literal or macro (typically when
10371 the current line is refontified).
10372
10373 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify calls
10374 to `c-add-stmt-syntax' - there's no need to explicitly whack off
10375 entries from the paren state.
10376
10377 * progmodes/cc-engine.el (c-add-stmt-syntax): Narrow down the
10378 special case for "else if" clauses.
10379
10380 * progmodes/cc-engine.el (c-looking-at-inexpr-block)
10381 (c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
10382
10383 * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks):
10384 New language variable to recognize the gcc extension with statement
10385 blocks inside expressions.
10386
10387 * progmodes/cc-engine.el (c-add-stmt-syntax): Restructure to make
10388 it somewhat more comprehensible. The argument AT-BLOCK-START is
10389 no longer used and hence removed.
10390
10391 (c-guess-continued-construct, c-guess-basic-syntax): Update calls
10392 to `c-add-stmt-syntax'.
10393
10394 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
10395 Use `c-beginning-of-statement-1' instead of duplicating parts of it.
10396 This fixes bogus label recognition.
10397
10398 * progmodes/cc-engine.el (c-add-type, c-check-type)
10399 (c-forward-name, c-forward-type): Improve storage of template
10400 types in `c-found-types' so that they can be recognized better.
10401
10402 (c-syntactic-content): Add option to skip past nested parens.
10403
10404 * progmodes/cc-engine.el (c-forward-name):
10405 Set `c-last-identifier-range' all the time. It's less work that way.
10406 Handle that there might not be an identifier to store in
10407 `c-last-identifier-range'.
10408
10409 (c-forward-type): Handle that `c-last-identifier-range' might be
10410 nil from `c-forward-name'.
10411
10412 * progmodes/cc-defs.el (c-safe-scan-lists)
10413 (c-(go-)?(up|down)-list-(forward|backward)): Add limit arguments.
10414
10415 * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
10416 to work even if the form fails.
10417
10418 * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
10419 down in a large file in one go.
10420
10421 (c-get-fallback-start-pos): New helper function for `c-parse-state'.
10422
10423 * progmodes/cc-align.el (c-lineup-assignments): New lineup
10424 function which is like `c-lineup-math' but returns nil instead of
10425 `c-basic-offset' when it doesn't match.
10426
10427 (c-lineup-math): Change to use `c-lineup-assignments'.
10428
10429 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10430
10431 * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
10432 c-beginning-of-statement. New subfunctions
10433 c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
10434
10435 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10436
10437 * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
10438 hardcoded char classes whereever possible. Changed a couple of
10439 places to use skip by syntax instead of skip by char class.
10440
10441 * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
10442 Fix a bug in the regexp that caused extreme backtracking.
10443
10444 * progmodes/cc-langs.el (c-block-comment-starter)
10445 (c-block-comment-ender): New language constants to specify in a
10446 single place how block comments look.
10447
10448 (c-comment-start-regexp, c-block-comment-start-regexp)
10449 (comment-start, comment-end, comment-start-skip)
10450 (c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws)
10451 (c-syntactic-ws, c-nonempty-syntactic-ws)
10452 (c-single-line-syntactic-ws, c-syntactic-eol): Now built from
10453 `c-line-comment-starter', `c-block-comment-starter' and
10454 `c-block-comment-ender'.
10455
10456 (c-block-comment-regexp, c-unterminated-block-comment-regexp):
10457 New language constants to break up things a bit.
10458
10459 (c-simple-ws): New language constant for simple whitespace.
10460
10461 * progmodes/cc-defs.el (c-concat-separated): New convenience function.
10462
10463 * progmodes/cc-defs.el (c-make-keywords-re): Add kludge for bug
10464 in `regexp-opt' in Emacs 20 and XEmacs when strings contain
10465 newlines. Allow and ignore nil elements in the list.
10466
10467 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10468
10469 * progmodes/cc-cmds.el: Comment out a (n almost certainly
10470 superfluous) check, (eq here (point-max)) in c-beginning-of-statement.
10471
10472 * progmodes/cc-cmds.el: Tidy up the comments in
10473 c-beginning-of-statement and subfunctions.
10474
10475 * progmodes/cc-awk.el: Replace calls to put-text-property to the
10476 more flexible c-put-char-property and c-clear-char-properties.
10477 Add the author's email address.
10478
10479 * progmodes/cc-langs.el (c-block-comment-start-regexp): New variable.
10480
10481 * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
10482 closing "*/" of a block comment.
10483
10484 * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
10485 subfunctions) so that it works at BOB and EOB.
10486
10487 * progmodes/cc-cmds.el, cc-vars.el: More updating of
10488 c-beginning-of-statement, including new variable
10489 c-block-comment-start-regexp.
10490
10491 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10492
10493 * progmodes/cc-langs.el (c-known-type-key): Optimize simple
10494 symbols from `*-font-lock-extra-types' so that there's no need to
10495 use `regexp-opt' on those lists.
10496
10497 * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
10498 `c-type-modifier-kwds' is empty.
10499
10500 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
10501 there are several strings on the same line.
10502
10503 * progmodes/cc-engine.el (c-literal-limits): Remove the
10504 compatibility function for older emacsen. `c-literal-limits-fast'
10505 has now taken the place of this function.
10506
10507 * progmodes/cc-vars.el (c-emacs-features): Remove compatibility
10508 with older emacsen: We now require `pps-extended-state'.
10509
10510 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10511
10512 * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
10513 which obviates the need to hack sentence-end. This now handles
10514 escaped newlines in strings correctly. Correct minor bugs in
10515 c-move-over-sentence and in c-beginning-of-statement.
10516
10517 * progmodes/cc-cmds.el (c-beginning-of-statement (and
10518 subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
10519 that movement over macros and code are rigorously separated from
10520 eachother. Correct a few incidental bugs.
10521
10522 * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
10523 Improve its doc-string. Improve the handling of certain specific cases.
10524
10525 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10526
10527 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
10528 (c-guess-basic-syntax): Change the way class-level labels are
10529 recognized; they can now contain essentially any symbols.
10530
10531 (c-opt-extra-label-key): New language variable to cope with the
10532 special protection label syntax in Objective-C.
10533
10534 (c-opt-access-key): Remove; this is now handled better by
10535 `c-nonlabel-token-key' and `c-opt-extra-label-key'.
10536
10537 (c-complex-decl-matchers): Update to handle that
10538 `c-opt-access-key' no longer exists.
10539
10540 * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
10541 improved label recognition in `c-beginning-of-statement-1'.
10542
10543 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
10544 Recognize bitfields better.
10545
10546 * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
10547 Remove some cruft and fixed a bug that could cause it to go to a
10548 position further down.
10549
10550 * progmodes/cc-langs.el, cc-engine.el
10551 (c-beginning-of-statement-1): Improve detection of labels in
10552 declaration contexts.
10553
10554 (c-beginning-of-decl-1): Use it.
10555
10556 (c-nonlabel-token-key): New language constant and variable needed
10557 by `c-beginning-of-statement-1'.
10558
10559 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix bug that
10560 manifested itself due to the correction in `c-forward-sexp'.
10561
10562 * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp):
10563 Make these behave as documented when used at the buffer limits.
10564
10565 * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
10566 (c-type-decl-end-used): Made this a language variable.
10567
10568 * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
10569 correctly when `combine-after-change-calls' is used together with
10570 temporary narrowings.
10571
10572 * progmodes/cc-engine.el (c-beginning-of-statement-1):
10573 Report labels correctly when the start point is immediately after the
10574 colon.
10575
10576 * progmodes/cc-defs.el (c-parse-sexp-lookup-properties):
10577 Remove since it isn't used anymore.
10578
10579 * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
10580 bracket arglists such as template parens in C++.
10581
10582 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix a bug
10583 in the last check-in. Some optimization.
10584
10585 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix bug
10586 where it could stop at the same level in a preceding sexp when
10587 PAREN-LEVEL is set.
10588
10589 * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
10590 text property lookup only when it's needed.
10591
10592 * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
10593 Change the policy for paren marked angle brackets to be more
10594 persistent; once marked they remain marked even when they're found
10595 to be unbalanced in the searched region. This should keep the
10596 paren syntax around even when individual lines are refontified in
10597 multiline template arglists.
10598
10599 (c-parse-and-markup-<>-arglists): New dynamically bound variable
10600 to control markup so that incorrect angle bracket arglists aren't
10601 marked in contexts where the correct value for
10602 `c-disallow-comma-in-<>-arglists' isn't known.
10603
10604 (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
10605 argument has become `c-parse-and-markup-<>-arglists'.
10606
10607 (c-remove-<>-arglist-properties): Remove - no longer used.
10608
10609 (c-after-change-check-<>-operators): New function used on
10610 `after-change-functions' to avoid that "<" and ">" characters that
10611 are part of longer operators have paren syntax.
10612
10613 (c-<>-multichar-token-regexp): New language variable used by
10614 `c-after-change-check-<>-operators'.
10615
10616 (c-after-change): Call `c-after-change-check-<>-operators'.
10617
10618 (c-font-lock-<>-arglists): Use the context properties set by
10619 `c-font-lock-declarations' to set `c-disallow-comma-in-<>-arglists'
10620 correctly to avoid doing invalid markup.
10621
10622 (c-font-lock-declarations): Remove code that undoes the invalid
10623 markup done by `c-font-lock-<>-arglists'.
10624
10625 (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
10626 after `c-font-lock-declarations'.
10627
10628 * progmodes/cc-engine.el (c-syntactic-skip-backward):
10629 Add paren-level feature.
10630
10631 (c-guess-basic-syntax): Improve the anchor position for
10632 `template-args-cont' in nested template arglists. There's still
10633 much to be desired in this area, though.
10634
10635 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10636
10637 * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
10638 Make the "Text Filling and Line Breaking" commands work for AWK buffers.
10639
10640 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10641
10642 * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
10643 Removed; (c-major-mode-is 'awk-mode) can be used instead now.
10644
10645 * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
10646 it doesn't work no longer are supported.
10647
10648 * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el
10649 * cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
10650 requires support for the syntax-table' text property, which rules
10651 out Emacs 19 and XEmacs < 21.4. Removed various compatibility
10652 cruft associated with those versions.
10653
10654 * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
10655 for the `syntax-table' text property, which rules out Emacs 19 and
10656 XEmacs < 21.4. Removed various compatibility cruft associated
10657 with those versions.
10658
10659 * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
10660 support for the `syntax-table' text property.
10661
10662 * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
10663 variable and use an extra quoted face name instead. All the
10664 emacsen flavors handle that correctly.
10665
10666 * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare)
10667 (c-font-lock-declarators, c-font-lock-declarations)
10668 (c-complex-decl-matchers, c-basic-matchers-after): Use a text
10669 property to mark the items in in declarator lists to handle
10670 refontification inside multiline declarations better.
10671
10672 * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
10673 construct like "a * b = c;" as a declaration.
10674
10675 2005-12-08 Kim F. Storm <storm@cua.dk>
10676
10677 * emulation/cua-base.el (cua-use-hyper-key): Replace by ...
10678 (cua-rectangle-modifier-key): ... this. New defcustom. Can now
10679 select either meta, hyper, or super modifier for rectangle commands.
10680 (cua--rectangle-modifier-key): New defvar.
10681 (cua--M/H-key): Use it. Remove special case for `space'.
10682 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
10683 on X, to meta otherwise. Always bind C-return to toggle
10684 rectangle. Pass ?\s instead of `space' to cua--M/H-key.
10685
10686 * emulation/cua-rect.el (cua-help-for-rectangle):
10687 Use cua--rectangle-modifier-key. Handle super modifier too.
10688 (cua--init-rectangles): Always bind C-return to toggle rectangle.
10689 Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
10690
10691 * ido.el: Move Acknowledgements and History after Commentary.
10692 Minor changes to Commentary.
10693
10694 * emulation/cua-base.el (cua--select-keymaps): Enable repeat
10695 keymap if cua--prefix-override-timer is `shift'.
10696 (cua--shift-control-prefix): New function; emulate "type prefix
10697 key twice" functionality to handle shifted prefix key override.
10698 (cua--shift-control-c-prefix, cua--shift-control-x-prefix):
10699 New commands.
10700 (cua--init-keymaps): Bind them to S-C-c and S-C-x.
10701
10702 2005-12-08 Carsten Dominik <dominik@science.uva.nl>
10703
10704 * textmodes/org.el (org-insert-heading): Try to do items before
10705 headings.
10706 (org-agenda-mode): Quote `org-agenda-mode-hook'.
10707 (org-insert-item): New function.
10708 (org-renumber-ordered-list): Don't skip to higher level lists.
10709
10710 2005-12-08 Juri Linkov <juri@jurta.org>
10711
10712 * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
10713
10714 * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
10715
10716 * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
10717
10718 * pcvs.el (defun-cvs-mode): Put `definition-name' property on
10719 the constructed function name fun-1.
10720
10721 * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
10722 because such links don't lead to parent documentation.
10723
10724 2005-12-08 Kenichi Handa <handa@m17n.org>
10725
10726 * descr-text.el (describe-char): Use *Help-2* buffer if the
10727 current buffer is *Help*. Call describe-text-properties while
10728 setting the original buffer.
10729
10730 2005-12-07 Bill Wohler <wohler@newt.com>
10731
10732 * files.el (auto-mode-alist): Remove mh-letter-mode. Unnecessary,
10733 and causes problems with non-MH users (such as Gnus users).
10734
10735 2005-12-08 Nick Roberts <nickrob@snap.net.nz>
10736
10737 * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
10738 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
10739 (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
10740 command "info sources". Move calls to GDB command "list".
10741 (gdb-find-file-hook): Just use gdb-source-file-list.
10742 (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
10743 (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
10744 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
10745 (gdb-data-list-register-values-handler): Use correct trigger name.
10746
10747 2005-12-07 Kim F. Storm <storm@cua.dk>
10748
10749 * ido.el (ido-completion-map): Rename from ido-mode-map.
10750 (ido-common-completion-map, ido-file-completion-map)
10751 (ido-file-dir-completion-map, ido-buffer-completion-map):
10752 Rename from ido-mode-....-map.
10753 (ido-init-completion-maps): Rename from ido-init-mode-maps.
10754 (ido-setup-completion-map): Rename from ido-define-mode-map.
10755 (ido-read-internal): Bind minibuffer-local-filename-completion-map
10756 to ido-completion-map.
10757
10758 2005-12-07 Kenichi Handa <handa@m17n.org>
10759
10760 * international/mule-cmds.el
10761 (set-display-table-and-terminal-coding-system): If the coding
10762 system specified in `unibyte-display' property is different from
10763 the arg coding-system, don't setup standard-display-table.
10764
10765 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
10766
10767 * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
10768 that comments end at \n, regardless of selective-display.
10769
10770 2005-12-07 Nick Roberts <nickrob@snap.net.nz>
10771
10772 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
10773 (gdb-version): New variables.
10774 (gdb-source-file-list, gdb-register-names)
10775 (gdb-changed-registers): New variables for use with GDB 6.4+.
10776 (gdb-ann3): Replace with...
10777 (gdb-init-1, gdb-init-2): ...two new functions.
10778 (gdba, gdb-prompt): Call gdb-init-1.
10779 (gdb-get-version): New function. Call gdb-init-2 from here.
10780 (gud-watch): Make it work with mouse events too.
10781 (gdb-post-prompt): Don't add to queue until GDB version is known.
10782 (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
10783 (gdb-locals-mode): Use gdb-version.
10784 (gdb-memory-format-map, gdb-memory-unit-map)
10785 (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
10786 (gdb-locals-font-lock-keywords-1)
10787 (gdb-locals-font-lock-keywords-2): New variables.
10788 (gdb-find-file-hook): Make it work with GDB 6.4+ too.
10789 (gdb-set-gud-minor-mode-existing-buffers-1)
10790 (gdb-var-list-children-1, gdb-var-list-children-handler-1)
10791 (gdb-var-update-1, gdb-var-update-handler-1)
10792 (gdb-data-list-register-values-handler)
10793 (gdb-data-list-register-values-custom)
10794 (gdb-get-changed-registers, gdb-get-changed-registers-handler)
10795 (gdb-stack-list-locals-handler, gdb-get-register-names):
10796 New functions for use with GDB 6.4+.
10797 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
10798 (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
10799 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
10800 (gdb-stack-list-locals-regexp)
10801 (gdb-data-list-register-names-regexp): New regexps for use with
10802 GDB 6.4+.
10803
10804 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
10805
10806 * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
10807
10808 2005-12-06 Nozomu Ando <nand@mac.com> (tiny patch)
10809
10810 * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
10811 prompts work for AUTH PLAIN. Also reported by Steve Allan
10812 <seallan@verizon.net>.
10813
10814 2005-12-06 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
10815
10816 * frame.el (set-frame-parameter): Add doc string.
10817
10818 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
10819
10820 * textmodes/org.el (org-occur-highlights): New variable.
10821 (org-highlight-new-match, org-remove-occur-highlights): New functions.
10822 (org-highlight-sparse-tree-matches): New option.
10823 (org-do-occur): New function.
10824 (org-get-heading): Make it work also at beginning of line.
10825 (org-category-table): New variable.
10826 (org-get-category-table, org-get-category)
10827 (org-camel-to-words, org-link-search): New functions.
10828 (org-select-this-todo-keyword): New variable.
10829 (org-todo-list): New command.
10830 (org-shiftright, org-shiftleft): New commands.
10831 (org-agenda-todo): Add prefix argument.
10832 (org-show-hierarchy-above): New option.
10833 (org-show-todo-tree): Numerical prefix creates tree for specific
10834 TODO keyword.
10835 (org-outline-level): New function, to assign a level to plain
10836 lists items.
10837 (org-cycle-include-plain-lists): New option.
10838 (org-mode): Use `org-outline-level' as value of `outline-level'.
10839 (org-cycle): Temporarily switch `outline-regexp' if
10840 `org-cycle-include-plain-lists' is non-nil.
10841 (org-start-icalendar-file): Fix format bug.
10842 (org-agenda-get-day-entries): Create category table.
10843 (org-agenda-get-todos, org-agenda-get-timestamps)
10844 (org-agenda-get-deadlines, org-agenda-get-scheduled)
10845 (org-agenda-get-blocks): Use `org-get-category'.
10846 (org-context-in-file-links): Rename from
10847 `org-line-numbers-in-file-links'.
10848
10849 2005-12-06 Romain Francoise <romain@orebokech.com>
10850
10851 * window.el (balance-windows): Delete extraneous third arg in call
10852 to `enlarge-window'.
10853
10854 2005-12-06 Kenichi Handa <handa@m17n.org>
10855
10856 * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
10857
10858 2005-12-06 Nick Roberts <nickrob@snap.net.nz>
10859
10860 * progmodes/gdb-ui.el (gdb-var-create-handler)
10861 (gdb-var-evaluate-expression-handler, gdb-frame-handler)
10862 (gdb-var-list-children-handler, gdb-var-update-handler):
10863 Current buffer is already gdb-partial-output-buffer, don't
10864 make it current again.
10865
10866 2005-12-05 Luc Teirlinck <teirllm@auburn.edu>
10867
10868 * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
10869 (list-buffers-noselect): Use it.
10870
10871 2005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
10872
10873 * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
10874 (mail-yank-ignored-headers): Use regexp-opt.
10875 (mail-mode-map): Move initialization into declaration.
10876 (mail-sent-via): Remove unused shadowed var `to-line'.
10877 (mail-mailer-swallows-blank-line): Use with-temp-buffer.
10878 (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
10879 (mail-do-fcc): Use dolist and push.
10880 (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
10881 (mail-yank-ignored-headers): Don't autoload.
10882
10883 2005-12-05 Kenichi Handa <handa@m17n.org>
10884
10885 * international/mule-cmds.el (set-language-info-internal): New fun.
10886 (set-language-info): Call set-language-info-internal to update
10887 language-info-alist. If LANG-ENV is the current one, call
10888 set-language-environment to make INFO effective now.
10889 (set-language-info-alist): Likewise.
10890 (locale-language-names): With locale "en", use English
10891 lang. env. but set the default codings to iso-8859-1.
10892
10893 2005-12-04 Nick Roberts <nickrob@snap.net.nz>
10894
10895 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
10896 (gdb-speedbar-auto-raise): Echo new state in minibuffer.
10897 (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
10898 for plain strings.
10899 (gdb-frames-mode): Remove redundant call to font-lock-mode.
10900 (gdb-all-registers): Rename from toggle-gdb-all-registers.
10901 Create registers buffer if necessary. Echo new state in minibuffer.
10902 (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
10903
10904 2005-12-03 Chong Yidong <cyd@stupidchicken.com>
10905
10906 * info.el (Info-fontify-node): Match external links using
10907 non-directory part of filename.
10908
10909 2005-12-04 Juri Linkov <juri@jurta.org>
10910
10911 * font-core.el (global-font-lock-mode): Use define-global-minor-mode
10912 instead of easy-mmode-define-global-mode. Add `:group font-lock'.
10913 (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
10914 because there is no customization option for it.
10915
10916 * font-lock.el (lisp-font-lock-keywords-1):
10917 Add define-global-minor-mode.
10918
10919 * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
10920
10921 * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
10922 properties on the constructed variable names.
10923
10924 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
10925 Put `definition-name' properties on the constructed function names
10926 next-sym and prev-sym.
10927
10928 * emacs-lisp/find-func.el (find-function-regexp):
10929 Add define-global-minor-mode. Replace `easy-mmode-define-global-mode'
10930 with `easy-mmode-define-[a-z-]+'. Add easy-menu-define.
10931 (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
10932 and easy-menu-define.
10933
10934 * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
10935 easy-mmode-define-global-mode and define-global-minor-mode.
10936 (lisp-imenu-generic-expression): Add define-global-minor-mode.
10937
10938 * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
10939 instead of easy-mmode-define-global-mode.
10940
10941 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
10942 Use define-minor-mode instead of easy-mmode-define-minor-mode.
10943
10944 * cus-edit.el (customize-group, customize-group-other-window):
10945 Filter out autoloaded options from the group completion list by
10946 using heuristics that autoloaded groups don't have `custom-autoload'
10947 property on their symbols (they have only `custom-loads').
10948
10949 * simple.el (completion-setup-function): Put completions-common-part
10950 face on complete completion string too (i.e. completion string
10951 without completions-first-difference face).
10952
10953 * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
10954
10955 2005-12-03 Eli Zaretskii <eliz@gnu.org>
10956
10957 * view.el (view-mode): Doc fix.
10958
10959 * disp-table.el (standard-display-european): Add to the warning
10960 message a reference to the doc string.
10961
10962 * play/yow.el (apropos-zippy): Call print-help-return-message,
10963 similar to other Help and Apropos commands.
10964
10965 * help.el (print-help-return-message): If pop-up-frames is
10966 non-nil, set up help-return-method to delete the help window and,
10967 possibly, its frame as well, and don't display message about
10968 scrolling the help window. Doc fix.
10969 (help-return-method): Doc fix.
10970
10971 2005-12-03 Martin Rudalics <rudalics@gmx.at>
10972
10973 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
10974 whereby names of length one or names starting with a
10975 symbol-constituent character would not be returned.
10976
10977 2005-12-03 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
10978
10979 * subr.el (atomic-change-group): Add edebug and indentation spec.
10980
10981 2005-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
10982
10983 * completion.el (save-completions-file-name): Fix typo in last change.
10984
10985 2005-12-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10986
10987 * info.el: Move back/forward history to the beginning of the tool bar.
10988
10989 2005-12-02 Ken Manheimer <ken.manheimer@gmail.com>
10990
10991 * allout.el (eval-when-compile): Remove unnecessary load of cl.
10992 Add fset of allout-real-isearch-abort during compile to fix
10993 byte-compilation warnings.
10994 (allout-mode-p): Move definition of this macro above all uses, or
10995 byte compilation in barren emacs (eg, during emacs build) will
10996 lack the definition.
10997 (allout-mode): Move this variable above any uses, or byte
10998 compilation will fail.
10999 (allout-resolve-xref): Remove use of personal file-reference function.
11000 (allout-toggle-current-subtree-encryption): Do the current (ie,
11001 visible containing) topic, rather than nearest around point. Doc fix.
11002 (allout-toggle-subtree-encryption): New function, workhorse that
11003 works on nearest topic containing point.
11004 (allout-encrypt-string): Signal requirement for newer version of pgg.
11005 (allout-resumptions): Doc fix.
11006
11007 2005-12-02 Eli Zaretskii <eliz@gnu.org>
11008
11009 * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
11010
11011 2005-12-02 Agustin Martin <agustin.martin@hispalinux.es>
11012
11013 * textmodes/flyspell.el (flyspell-external-point-words):
11014 Consider a misspelling as found in the string search if: (a) misspelling
11015 and found string lengths match, or (b) misspelling is found as
11016 element in a boundary-chars separated longer string, or (c)
11017 ispell-program-name is really ispell and misspelling is found as
11018 part of a TeX string. After successful match move beginning of
11019 search region to end of match. Warn about not found misspellings
11020 once the process is done.
11021 (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
11022
11023 2005-12-02 Nick Roberts <nickrob@snap.net.nz>
11024
11025 * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
11026 tool bar (removed inadvertently).
11027
11028 2005-12-02 Juri Linkov <juri@jurta.org>
11029
11030 * log-view.el (log-view-diff): Clarify doc string.
11031
11032 2005-12-01 Bill Wohler <wohler@newt.com>
11033
11034 * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
11035 triggers lm-verify errors.
11036
11037 2005-12-01 Luc Teirlinck <teirllm@auburn.edu>
11038
11039 * simple.el (transient-mark-mode, line-number-mode)
11040 (column-number-mode, size-indication-mode): Remove `:require nil'.
11041
11042 2005-12-01 Nick Roberts <nickrob@snap.net.nz>
11043
11044 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
11045 in the margin also.
11046 (gdb-breakpoints-mode-map): Use D instead of d for
11047 gdb-delete-breakpoint.
11048 (gdb-get-frame-number): Require a number to match on.
11049 (gdb-threads-mode-map): Add follow-link binding.
11050
11051 2005-11-30 Jason Rumney <jasonr@gnu.org>
11052
11053 * isearch.el (isearch-mode-map): Avoid exiting search on
11054 language-change event.
11055
11056 2005-11-30 Romain Francoise <romain@orebokech.com>
11057
11058 * speedbar.el (speedbar-default-position): New defcustom.
11059 (speedbar-frame-reposition-smartly): Use it.
11060
11061 * dframe.el (dframe-reposition-frame-emacs): Fix position
11062 computation for `left' location.
11063 Update copyright year.
11064
11065 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
11066
11067 * help.el (help-map): Move initialization into declaration.
11068
11069 * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
11070
11071 * help-fns.el (help-argument-name): Don't autoload.
11072 It's useless and triggers a bug in cus-dep.el causing ldefs-boot
11073 to be re-loaded when customizing the `help' group.
11074
11075 2005-11-30 John Paul Wallington <jpw@gnu.org>
11076
11077 * help-fns.el (describe-function-1): Fill arglist output.
11078
11079 2005-11-30 Kim F. Storm <storm@cua.dk>
11080
11081 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
11082 (cua--rectangle-post-command): Cleanup overlays and deactivate mark
11083 after revert-buffer (or anything else which kills all local variables).
11084
11085 * apropos.el (apropos-parse-pattern): Doc fix.
11086 Set apropos-regexp directly, rather than expecting callers to do so.
11087 (apropos-command, apropos, apropos-value, apropos-documentation):
11088 Simplify calls to apropos-parse-pattern.
11089
11090 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
11091
11092 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
11093 (hi-lock-face-phrase-buffer): Use hi-yellow face.
11094 (hi-lock-write-interactive-patterns): Use comment-region.
11095
11096 * longlines.el (longlines-mode): Add mail-setup-hook.
11097
11098 * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
11099
11100 * simple.el (sendmail-user-agent-compose, next-line):
11101 Conditionally use hard-newline.
11102
11103 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
11104
11105 * international/latexenc.el (latex-inputenc-coding-alist):
11106 Reword doc string.
11107
11108 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
11109
11110 * help.el (describe-key-briefly, describe-key): Recognize default
11111 bindings.
11112
11113 2005-11-29 Romain Francoise <romain@orebokech.com>
11114
11115 * view.el (view-inhibit-help-message): New defcustom.
11116 (view-mode-enter): Use it.
11117
11118 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu>
11119
11120 * ediff-wind.el (ediff-setup-control-frame, ediff-make-wide-display):
11121 Preserve user position.
11122
11123 2005-11-28 Luc Teirlinck <teirllm@auburn.edu>
11124
11125 * font-lock.el: Throw error if facemenu is not loaded to prevent
11126 accidental change of loading order in loadup.el. (Suggested by RMS.)
11127
11128 * loadup.el: Add comment explaining why facemenu must be loaded
11129 before font-lock.
11130
11131 2005-11-28 Jay Belanger <belanger@truman.edu>
11132
11133 * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
11134 (calc-dispatch-map): Add more keys for `calc-same-interface'.
11135
11136 * calc/calc-misc.el (calc-dispatch-help): Update docstring.
11137
11138 * calc/calc-embed.el (calc-do-embedded): Update help message.
11139
11140 * calc/calc-prog.el (calc-user-define-invokation): Update help message.
11141
11142 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
11143
11144 * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
11145
11146 * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
11147 called-interactively-p.
11148 (elp-profilable-p): Rename from elp-not-profilable-p.
11149 Invert result and take into account macros and autoloaded functions.
11150 (elp-instrument-function): Update call.
11151 (elp-instrument-package): Update call. Add completion.
11152 (elp-pack-number): Use match-string.
11153 (elp-results-jump-to-definition-by-mouse): Merge into
11154 elp-results-jump-to-definition and then remove.
11155 (elp-output-insert-symname): Make help echo text single-line.
11156
11157 * replace.el (query-replace-map): Move initialization into declaration.
11158 (occur-engine): Use with-current-buffer.
11159 (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
11160 (occur-mode-mouse-goto): Replace with an alias.
11161
11162 2005-11-28 Juri Linkov <juri@jurta.org>
11163
11164 * simple.el (quoted-insert): Let-bind input-method-function to nil.
11165
11166 * term/w32-win.el: Bind [S-tab] to [backtab].
11167
11168 * info.el (Info-fontify-node): Set 2nd arg `noerror' of
11169 `Info-find-file' to t.
11170
11171 * replace.el (occur-mode-mouse-goto): Pop, don't switch.
11172 (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
11173 and same-window-regexps.
11174 (occur-next-error): Don't move point for arg 0.
11175
11176 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
11177
11178 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
11179
11180 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
11181
11182 * log-edit.el (log-edit-changelog-use-first): New var.
11183 (log-edit-changelog-ours-p): Use it.
11184 (log-edit-insert-changelog): Set it with new arg `use-first'.
11185 (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
11186 (log-edit-hook): Add them to the list of suggested options.
11187
11188 * textmodes/flyspell.el (flyspell-last-buffer): New var.
11189 (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
11190 redundant work.
11191 (flyspell-mode-on): Use add-hook for after-change-functions.
11192 (flyspell-mode-off): Use remove-hook for after-change-functions.
11193 (flyspell-changes): Make it buffer-local.
11194 (flyspell-after-change-function): Make it non-interactive. Use push.
11195 (flyspell-post-command-hook): Check input-pending-p while processing
11196 the potentially long list of buffer changes.
11197
11198 2005-11-28 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
11199
11200 * buff-menu.el (list-buffers-noselect): Display the selected
11201 frame's buffer list, not the global one.
11202
11203 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
11204
11205 * xt-mouse.el (xterm-mouse-event): Set last-input-event so
11206 that (list last-input-event) works as in interactive spec.
11207
11208 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
11209
11210 * loadup.el ("facemenu"): Load facemenu before font-lock, because
11211 `facemenu-keymap' needs to be defined when font-lock is loaded.
11212 Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
11213
11214 2005-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
11215
11216 * completion.el: Remove useless leading * in defcustom docstrings.
11217 (save-completions-file-name): Use ~/.emacs.d if available.
11218 (completion-standard-syntax-table): Rename from
11219 cmpl-standard-syntax-table and fold initialization into declaration,
11220 thus removing cmpl-make-standard-completion-syntax-table.
11221 (completion-lisp-syntax-table, completion-c-syntax-table)
11222 (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
11223 (cmpl-saved-syntax, cmpl-saved-point): Remove.
11224 (symbol-under-point, symbol-before-point)
11225 (symbol-under-or-before-point, symbol-before-point-for-complete)
11226 (add-completions-from-c-buffer): Use with-syntax-table.
11227 (make-completion): Don't return a list of completion entries.
11228 Update callers.
11229 (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
11230 (completion-initialize): Rename from initialize-completions.
11231 (completion-find-file-hook): Rename from cmpl-find-file-hook.
11232 (kill-emacs-save-completions): Collect stats here.
11233 (save-completions-to-file, load-completions-from-file):
11234 Use with-current-buffer.
11235 (completion-def-wrapper): Rename from def-completion-wrapper. Make it
11236 into a function. Move all calls to toplevel.
11237 (completion-lisp-mode-hook): New fun.
11238 (completion-c-mode-hook, completion-setup-fortran-mode):
11239 Set the syntax-table here. Use local-set-key.
11240 (completion-saved-bindings): New var.
11241 (dynamic-completion-mode): Make it into a proper minor mode.
11242 (load-completions-from-file): Remove unused var `num-uses'.
11243
11244 * emacs-lisp/cl-macs.el (defstruct): Don't define the default
11245 constructor if it is explicitly overridden.
11246
11247 * complete.el (PC-completion-as-file-name-predicate):
11248 Use minibuffer-completing-file-name.
11249 (partial-completion-mode): Use find-file-not-found-functions.
11250 (PC-lisp-complete-symbol): Use with-syntax-table.
11251 (PC-look-for-include-file): Remove dead setq.
11252 (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
11253 (PC-complete): Use with-current-buffer.
11254
11255 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
11256 escape single quotes.
11257
11258 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
11259
11260 * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
11261 of `if' whose condition always returned nil. Doc fix.
11262
11263 * buff-menu.el (Buffer-menu-revert-function): Make the selected
11264 window's buffer the current buffer around the call to
11265 `list-buffers-noselect'. This is necessary to mark that buffer
11266 with a `.' in the Buffer Menu when called from Lisp, for instance
11267 by Auto Revert Mode.
11268
11269 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
11270
11271 * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
11272 attaching to it.
11273 (gdb-pre-prompt): Make sure gdb-error is reset.
11274
11275 * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
11276 with a child process, detect it.
11277 (gud-speedbar-buttons): Match regexp more carefully.
11278
11279 2005-11-27 Richard M. Stallman <rms@gnu.org>
11280
11281 * mouse.el (mouse-drag-move-window-bottom):
11282 Use adjust-window-trailing-edge.
11283
11284 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
11285
11286 * simple.el (blink-matching-open): Ignore
11287 `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
11288 (blink-matching-paren-on-screen): Update docstring.
11289
11290 * paren.el (show-paren-mode): No longer change
11291 `blink-matching-paren-on-screen'.
11292
11293 2005-11-27 John Paul Wallington <jpw@pobox.com>
11294
11295 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
11296 (gdb-threads-select, gdb-edit-register-value):
11297 Use `posn-set-point' instead of `mouse-set-point' because the
11298 latter is not fbound when configured without X.
11299
11300 2005-11-27 Kim F. Storm <storm@cua.dk>
11301
11302 * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
11303 existing face when partially highlighting a TAB in a rectangle.
11304
11305 2005-11-26 Kim F. Storm <storm@cua.dk>
11306
11307 * ido.el (ido-mode-map): Doc fix.
11308 (ido-mode-common-map, ido-mode-file-map)
11309 (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
11310 (ido-define-mode-map): Rewrite. Select one of the new maps as
11311 parent for ido-mode-map instead of building from scratch.
11312 (ido-init-mode-maps): New defun to initialize new maps.
11313 (ido-mode): Call it.
11314 (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
11315 (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
11316
11317 2005-11-26 John Paul Wallington <jpw@pobox.com>
11318
11319 * arc-mode.el (archive-extract): Use `posn-set-point' instead of
11320 `mouse-set-point' because the latter is not fbound when configured
11321 without X.
11322
11323 2005-11-26 Thien-Thi Nguyen <ttn@gnu.org>
11324
11325 * files.el (file-relative-name): Doc fix.
11326
11327 2005-11-26 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
11328
11329 * progmodes/octave-inf.el (inferior-octave-startup): Force a
11330 non-empty string for secondary prompt PS2.
11331
11332 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
11333
11334 * progmodes/compile.el (compilation-setup): Fix last change.
11335
11336 2005-11-26 Nick Roberts <nickrob@snap.net.nz>
11337
11338 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
11339 (gdb-mouse-toggle-breakpoint-margin)
11340 (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
11341 Add gdb-server-prefix to keep out of command history.
11342 (gdb-edit-register-value): New function.
11343 (gdb-registers-mode-map): Bind mouse-2 and RET to it.
11344 (gdb-info-registers-custom): Use above map.
11345
11346 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
11347
11348 * custom.el (enable-theme): Signal error if argument is not a
11349 theme. Don't recalculate a face if it's not loaded yet.
11350
11351 * cus-face.el (custom-theme-set-faces): Don't change saved-face if
11352 the `user' theme is in effect.
11353
11354 * info.el (Info-on-current-buffer): Record actual filename in
11355 Info-current-file, instead of t, or a fake filename if a non-file
11356 buffer. Make autoload.
11357 (Info-find-node, Info-revert-find-node): No need to check for
11358 Info-current-file nil.
11359 (Info-set-mode-line, Info-up, Info-copy-current-node-name):
11360 Info-current-file is now never `t'.
11361 (Info-fontify-node): Many simplifications due to Info-current-file
11362 always being valid. Use Info-find-file to find node filename.
11363
11364 2005-11-25 David Kastrup <dak@gnu.org>
11365
11366 * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
11367 new character, then delete" in order to preserve markers.
11368
11369 2005-11-25 David Ponce <david@dponce.com>
11370
11371 * recentf.el (recentf-arrange-by-rule): Handle a special
11372 `auto-mode-alist'-like "strip suffix" rule.
11373 (recentf-build-mode-rules): Handle second level auto-mode entries.
11374
11375 2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
11376
11377 * viper-keym.el (viper-ESC-key): Use different values in terminal and
11378 window modes.
11379
11380 * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
11381 jde-javadoc-checker-report-mode.
11382
11383 * ediff-wind (ediff-make-wide-display): Slight simplification.
11384
11385 * ediff.el (ediff-date): Change the date of last update.
11386
11387 2005-11-24 Chong Yidong <cyd@stupidchicken.com>
11388
11389 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
11390 Use define-minor-mode, and make it a local mode. Turn on font-lock.
11391 (hi-lock-mode): New global minor mode.
11392 (turn-on-hi-lock-if-enabled): New function.
11393 (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
11394 Change arguments to regexp and face instead of a font-lock pattern.
11395 Directly set face property, instead of refontifying.
11396 (hi-lock-font-lock-hook): Check if font-lock is being turned on.
11397 (hi-lock-find-patterns): Use line-number-at-pos.
11398
11399 (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode. Use new
11400 arguments for hi-lock-set-pattern.
11401 (hi-lock-unface-buffer, hi-lock-set-file-patterns):
11402 Call font-lock-fontify-buffer.
11403 (hi-lock-find-file-hook, hi-lock-current-line)
11404 (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
11405
11406 (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
11407 turned off.
11408
11409 * progmodes/compile.el (compilation-setup): Don't fiddle with
11410 font-lock-defaults.
11411
11412 2005-11-25 Nick Roberts <nickrob@snap.net.nz>
11413
11414 * progmodes/gdb-ui.el (gdb-var-create-handler)
11415 (gdb-var-list-children-handler): Find values for all variable
11416 objects. gud-speedbar-buttons decides whether to display them.
11417
11418 2005-11-24 Romain Francoise <romain@orebokech.com>
11419
11420 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
11421 buffer name with a space.
11422
11423 2005-11-24 Carsten Dominik <dominik@science.uva.nl>
11424
11425 * textmodes/org.el (org-export-plain-list-max-depth): Rename from
11426 `org-export-local-list-max-depth'. Change default value to 3.
11427 (org-auto-renumber-ordered-lists)
11428 (org-plain-list-ordered-item-terminator): New options.
11429 (org-at-item-p, org-beginning-of-item, org-end-of-item)
11430 (org-get-indentation, org-get-string-indentation)
11431 (org-maybe-renumber-ordered-list, org-renumber-ordered-list):
11432 New functions.
11433 (org-move-item-down, org-move-item-up): New commands.
11434 (org-export-as-html): New classes for CSS support. Bug fix in
11435 regular expression detecting fixed-width regions. Respect
11436 `org-local-list-ordered-item-terminator'.
11437 (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
11438 also a list item.
11439 (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
11440 New item moving functions.
11441
11442 2005-11-24 Juri Linkov <juri@jurta.org>
11443
11444 * isearch.el (isearch-repeat): With empty search ring set
11445 `isearch-error' to the error string instead of signaling error
11446 with the function `error'.
11447
11448 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11449
11450 * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
11451
11452 2005-11-24 Nick Roberts <nickrob@snap.net.nz>
11453
11454 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
11455 and variable.
11456 (gdb-var-create-handler, gdb-var-list-children-handler):
11457 Don't match on "char **...".
11458 (gdb-var-update-handler): Find values for all variable objects.
11459 (gdb-info-frames-custom): Identify frames by leading "#".
11460
11461 * progmodes/gud.el (gud-speedbar-menu-items): Add
11462 gdb-speedbar-auto-raise as radio button.
11463 (gud-speedbar-buttons): Raise speedbar if requested.
11464 Don't match on "char **...".
11465 (gud-speedbar-buttons): Add (pointer) value for non-leaves.
11466 Make it editable.
11467
11468 2005-11-23 Chong Yidong <cyd@stupidchicken.com>
11469
11470 * info.el (Info-fontify-node): Handle the case where
11471 Info-current-file is t.
11472
11473 2005-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
11474
11475 * simple.el (blink-matching-open): Fix off-by-one in last change.
11476
11477 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11478
11479 * term/mac-win.el: Don't change default directory.
11480
11481 2005-11-22 Luc Teirlinck <teirllm@auburn.edu>
11482
11483 * cus-edit.el (Custom-reset-standard): Make it handle Custom group
11484 buffers correctly. (It used to throw an error in such buffers.)
11485 Make it ask for confirmation in group buffers and other Custom
11486 buffers containing more than one customization item.
11487
11488 2005-11-22 John Paul Wallington <jpw@gnu.org>
11489
11490 * net/goto-addr.el (goto-address-fontify): Put `follow-link'
11491 property on mail and url overlays.
11492 (goto-address-at-point): Use `posn-set-point' instead of
11493 `mouse-set-point' because the latter is not fbound when configured
11494 without X.
11495
11496 2005-11-22 Lars Hansen <larsh@soem.dk>
11497
11498 * ls-lisp.el (ls-lisp-parse-symlink): Delete.
11499 (ls-lisp-classify, ls-lisp-format): Delete call to
11500 ls-lisp-parse-symlink.
11501 (ls-lisp-handle-switches): Handle symlinks to directories as
11502 directories when ls-lisp-dirs-first in non-nil.
11503
11504 2005-11-21 Luc Teirlinck <teirllm@auburn.edu>
11505
11506 * startup.el (command-line): Make sure that loaddefs.el is handled
11507 correctly in load-history.
11508
11509 2005-11-22 Nick Roberts <nickrob@snap.net.nz>
11510
11511 * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
11512 (gdb-struct-string, gdb-array-string): New constants.
11513 (gdb-info-locals-handler): Use them.
11514 (gdb-reset): Reset gdb-var-list to nil.
11515
11516 2005-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
11517
11518 * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
11519 in patterns.
11520
11521 2005-11-21 Juri Linkov <juri@jurta.org>
11522
11523 * custom.el (defcustom): Update link types in docstring.
11524
11525 2005-11-20 Martin Rudalics <rudalics@gmx.at>
11526
11527 * custom.el (defgroup): Add doc-string-elt info.
11528
11529 * widget.el (define-widget): Don't use declare for the doc-string-elt.
11530
11531 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
11532
11533 * newcomment.el (comment-enter-backward): Fix last fix.
11534
11535 * simple.el (blink-matching-open):
11536 * paren.el (show-paren-function): Allow new paren-class info.
11537
11538 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
11539
11540 * faces.el: Revert 2005-11-17 change. :ignore-defface is now
11541 handled automagically.
11542
11543 2005-11-20 Andreas Schwab <schwab@suse.de>
11544
11545 * descr-text.el (describe-char): When copying overlays put them
11546 over the full char description instead of just the first character
11547 of it.
11548
11549 2005-11-20 Juri Linkov <juri@jurta.org>
11550
11551 * simple.el (what-cursor-position):
11552 * descr-text.el (describe-char): Use Lisp-readable syntax
11553 for octal and hex. Reorder decimal, octal and hex values.
11554 Remove excess whitespace in the output. Use `=' in `column='
11555 like in `point=' and `Hscroll='.
11556
11557 * international/mule-cmds.el (encoded-string-description):
11558 Use Lisp-readable syntax for hex.
11559
11560 2005-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11561
11562 * newcomment.el (comment-enter-backward): Handle the case where the
11563 comment is closed by EOB.
11564
11565 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
11566
11567 * longlines.el (longlines-before-revert-hook)
11568 (longlines-after-revert-hook): New functions.
11569 (longlines-mode): Turn off longlines temporarily when reverting.
11570 Add a message-setup-hook.
11571 (longlines-decode-buffer): New function.
11572 (longlines-wrap-line): Preserve marker positions.
11573
11574 2005-11-19 Andreas Schwab <schwab@suse.de>
11575
11576 * emacs-lisp/shadow.el: Handle compressed files.
11577
11578 2005-11-19 Romain Francoise <romain@orebokech.com>
11579
11580 * net/browse-url.el (browse-url-default-browser): Signal an error
11581 if no usable browser can be found, rather than try to load w3.
11582
11583 2005-11-16 Ryan Yeske <rcyeske@gmail.com>
11584
11585 * net/rcirc.el (rcirc-mangle-text): Add bold face property without
11586 replacing existing properties.
11587 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
11588 (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
11589 tty specs.
11590 (rcirc-server-prefix, rcirc-server): New faces.
11591 (rcirc-url-regexp): Generate with rx macro.
11592 (rcirc-last-server-message-time): New variable.
11593 (rcirc-filter): Record time of last message.
11594 (rcirc-keepalive): Kill processes that did not send a message
11595 since the last ping.
11596 (rcirc-mode): Give rcirc-topic a local binding here.
11597
11598 2005-11-19 Michael Cadilhac <michael.cadilhac@lrde.org>
11599
11600 * subr.el (read-passwd): Fontify the prompt as we do with other
11601 prompts.
11602
11603 2005-11-19 Ryan Yeske <rcyeske@gmail.com>
11604
11605 * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
11606 binding buffer-read-only to nil.
11607
11608 2005-11-19 Eli Zaretskii <eliz@gnu.org>
11609
11610 * complete.el (partial-completion-mode):
11611 Mention completion-auto-help in the doc string.
11612
11613 * man.el (Man-highlight-references): Doc fix. Reformat code in a
11614 more Lisp-ish way.
11615
11616 2005-11-19 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
11617
11618 * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
11619 digits, not 8, to avoid misalignment for files larger than 100MB.
11620
11621 2005-11-19 Eli Zaretskii <eliz@gnu.org>
11622
11623 * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
11624 Mention "keyboard shortcuts" in the help text.
11625
11626 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11627
11628 * startup.el (fancy-splash-default-action): Discard only
11629 mouse-down and succeeding mouse-up events in the splash screen
11630 window so that drag-n-drop event can be processed.
11631
11632 2005-11-18 Chong Yidong <cyd@stupidchicken.com>
11633
11634 * longlines.el (longlines-mode): Add hacks for mail-mode and
11635 message-mode.
11636
11637 2005-11-18 Carsten Dominik <dominik@science.uva.nl>
11638
11639 * textmodes/org.el (org-table-sort-lines): New command.
11640 (org-tbl-menu): Add entry for `org-table-sort-lines'.
11641 (org-add-file): Command removed, use `org-agenda-file-to-front'
11642 instead.
11643 (org-export-icalendar): Use `org-icalendar-combined-name'.
11644 (org-cycle-agenda-files, org-agenda-file-to-end)
11645 (org-agenda-file-to-front): New commands.
11646 (org-table-tab-jumps-over-hlines, org-export-html-style):
11647 New options.
11648 (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
11649 (org-at-table.el-p, org-set-autofill-regexps, org-html-protect):
11650 New functions.
11651 (org-fill-paragraph): Call `org-table-align' in tables.
11652 (org-mode): Call `org-set-autofill-regexps'.
11653 (org-export-as-html): Support for local handformatted lists.
11654 Modified to produce valid HTML 4.0. Use `org-export-html-style'.
11655 (org-export-local-list-max-depth): New option.
11656 (org-html-expand): Use `org-html-protect'.
11657
11658 2005-11-18 Nick Roberts <nickrob@snap.net.nz>
11659
11660 * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
11661 to "p".
11662 (gdb): Move definition of gud-pp to...
11663
11664 * progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
11665 speedbar.
11666 (gdb-find-watch-expression): New function.
11667
11668 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
11669
11670 * faces.el (face-attribute, set-face-attribute): Mention existence
11671 of `:ignore-defface' setting in docstring.
11672
11673 2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
11674
11675 * simple.el (completion-setup-function): Fix last change.
11676
11677 2005-11-17 John Paul Wallington <jpw@pobox.com>
11678
11679 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
11680 Use `posn-set-point' instead of `mouse-set-point' because the
11681 latter is not fbound when configured without X.
11682
11683 * comint.el (comint-insert-input): Likewise.
11684
11685 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
11686
11687 * simple.el (hard-newline): New variable.
11688 (sendmail-user-agent-compose, next-line): Use it.
11689
11690 * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
11691 (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
11692 (mail-mail-reply-to, mail-mail-followup-to)
11693 (mail-position-on-field, mail-signature, mail-yank-original)
11694 (mail-attach-file): Likewise.
11695
11696 * mail/mailheader.el (mail-header-format)
11697 (mail-header-format-function): Likewise.
11698
11699 * add-log.el (add-change-log-entry, change-log-merge): Likewise.
11700
11701 2005-11-17 Juri Linkov <juri@jurta.org>
11702
11703 * font-lock.el (font-lock-faces): Rename this defgroup from
11704 `font-lock-highlighting-faces'.
11705 (font-lock-comment-face, font-lock-comment-delimiter-face)
11706 (font-lock-string-face, font-lock-doc-face)
11707 (font-lock-keyword-face, font-lock-builtin-face)
11708 (font-lock-function-name-face, font-lock-variable-name-face)
11709 (font-lock-type-face, font-lock-constant-face)
11710 (font-lock-warning-face, font-lock-negation-char-face)
11711 (font-lock-preprocessor-face)
11712 (font-lock-regexp-grouping-backslash)
11713 (font-lock-regexp-grouping-construct): Rename :group from
11714 `font-lock-highlighting-faces' to `font-lock-faces'.
11715
11716 * cus-edit.el (lisp, c, tex):
11717 * progmodes/ada-mode.el (ada):
11718 * progmodes/asm-mode.el (asm):
11719 * progmodes/cperl-mode.el (cperl-faces):
11720 * progmodes/cpp.el (cpp):
11721 * progmodes/dcl-mode.el (dcl):
11722 * progmodes/f90.el (f90):
11723 * progmodes/fortran.el (fortran):
11724 * progmodes/icon.el (icon):
11725 * progmodes/idlwave.el (idlwave-misc):
11726 * progmodes/m4-mode.el (m4):
11727 * progmodes/make-mode.el (makefile):
11728 * progmodes/meta-mode.el (meta-font):
11729 * progmodes/modula2.el (modula2):
11730 * progmodes/octave-mod.el (octave):
11731 * progmodes/pascal.el (pascal):
11732 * progmodes/perl-mode.el (perl):
11733 * progmodes/prolog.el (prolog):
11734 * progmodes/ps-mode.el (PostScript-edit):
11735 * progmodes/scheme.el (scheme):
11736 * progmodes/sh-script.el (sh-script):
11737 * progmodes/simula.el (simula):
11738 * progmodes/tcl.el (tcl):
11739 * textmodes/nroff-mode.el (nroff):
11740 * textmodes/reftex-vars.el (reftex-fontification-configurations):
11741 * textmodes/sgml-mode.el (sgml):
11742 * textmodes/texinfo.el (texinfo):
11743 Add :link (custom-group-link font-lock-faces) to defgroup.
11744
11745 * hi-lock.el (hi-lock): Rename this defgroup from
11746 `hi-lock-interactive-text-highlighting'. Change parent group from
11747 `faces' to `font-lock'. Add link to the manual.
11748 (hi-lock-mode, hi-lock-file-patterns-range)
11749 (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
11750 `hi-lock-interactive-text-highlighting' to `hi-lock'.
11751 (hi-lock-faces): Add :group `faces'.
11752
11753 * cus-edit.el (custom-variable-prompt): Clarify the code.
11754
11755 * faces.el (face-read-string): Set the default value arg of
11756 completing-read.
11757
11758 2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
11759
11760 * rfn-eshadow.el (file-name-shadow-properties)
11761 (file-name-shadow-tty-properties, file-name-shadow-mode):
11762 Remove autoloads, because the file is now preloaded.
11763
11764 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
11765
11766 * printing.el (easy-menu-intern): Don't define.
11767 (pr-get-symbol): Use easy-menu-intern only if defined.
11768
11769 * simple.el (blink-matching-open): Simplify a bit.
11770 (completion-setup-function): Fix the case of partial-completion-mode
11771 when the minibuffer's contents start with "-".
11772 Obey completion-base-size-function even when
11773 minibuffer-completing-file-name is non-nil.
11774
11775 2005-11-16 Richard M. Stallman <rms@gnu.org>
11776
11777 * net/eudcb-ph.el (eudc-ph-open-session):
11778 Use set-process-query-on-exit-flag.
11779
11780 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
11781
11782 * international/ucs-tables.el (ucs-set-table-for-input):
11783 Use make-local-variable, not make-variable-buffer-local.
11784
11785 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
11786 Improve warning message text.
11787
11788 * savehist.el (savehist-save-hook): Add :group.
11789
11790 * menu-bar.el (menu-bar-help-menu):
11791 Rename Find Extra Packages to External Packages.
11792
11793 * cus-edit.el (Custom-reset-standard): Verify that
11794 :custom-standard-value prop exists before calling it.
11795
11796 * apropos.el (apropos-calc-scores): Use apropos-pattern.
11797
11798 2005-11-16 Martin Rudalics <rudalics@gmx.at>
11799
11800 * wid-edit.el (color): Enclose %t in %{...%}.
11801
11802 * cus-edit.el (face): Enclose %t in %{...%}.
11803
11804 2005-11-16 Hrvoje Niksic <hniksic@xemacs.org>
11805
11806 * savehist.el (savehist-mode-hook): Re-add the var.
11807 (savehist-mode): Use it.
11808
11809 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
11810
11811 * textmodes/flyspell.el: Fix commenting convention.
11812 Remove unnecessary leading * in custom docstrings.
11813 (flyspell-emacs): Remove unused var.
11814 (flyspell-delete-region-overlays): Use remove-overlays.
11815 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
11816 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
11817 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
11818 (flyspell-debug-signal-word-checked): Use with-current-buffer.
11819 (make-flyspell-overlay): Don't locally reuse a global name.
11820 (flyspell-highlight-incorrect-region)
11821 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
11822 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
11823 (flyspell-notify-misspell): Remove unused args `start' and `end'.
11824 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
11825 Wrap calls to accept-process-output inside with-local-quit since it's
11826 often called from a post-command-hook.
11827 (flyspell-correct-word, flyspell-auto-correct-word):
11828 Use ispell-send-string.
11829 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
11830
11831 * calendar/diary-lib.el (diary-list-entries): Also hide the
11832 terminating newline.
11833
11834 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
11835
11836 * textmodes/reftex.el (reftex-use-fonts): Remove the check for
11837 window-system, to allow fonts on tty.
11838
11839 2005-11-17 Nick Roberts <nickrob@snap.net.nz>
11840
11841 * progmodes/gud.el (gud-speedbar-item-info): New function.
11842 (gud-install-speedbar-variables): Use it to display data type
11843 of watch expression as a tooltip in speedbar.
11844
11845 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
11846
11847 * font-core.el (global-font-lock-mode): Add :version keyword,
11848 because default was changed.
11849
11850 * jka-cmpr-hook.el (auto-compression-mode): Ditto.
11851
11852 * startup.el (command-line): Use `custom-reevaluate-setting' for
11853 `file-name-shadow-mode'.
11854
11855 * loadup.el: Preload rfn-eshadow.
11856
11857 * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
11858 Add :version keyword.
11859 (file-name-shadow-properties, file-name-shadow-tty-properties)
11860 (file-name-shadow): Add :version keyword.
11861
11862 * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
11863 instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
11864 in the custom-group property of the symbol frames and the fringe
11865 group got no link to its parent group frames.
11866 Doc fix.
11867
11868 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
11869
11870 * progmodes/gud.el (gud-stop-subjob): New function.
11871 (gud-menu-map, gud-tool-bar-map): Use it.
11872
11873 2005-11-16 Kim F. Storm <storm@cua.dk>
11874
11875 * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
11876 than kill it.
11877 (gud-tool-bar-map): Likewise. Move cont/until/finish buttons
11878 to a more useful/logical place.
11879
11880 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
11881
11882 * progmodes/gud.el (gud-menu-map): Make visibility of stop and
11883 go buttons complementary.
11884
11885 2005-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
11886
11887 * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
11888 (rfn-eshadow-sifn-equal): New function.
11889 (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
11890
11891 2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
11892
11893 * viper-utils.el (viper-non-word-characters-reformed-vi):
11894 Quote `-' in string.
11895
11896 * viper.el (viper-emacs-state-mode-list): Ensure that
11897 rcirc-mode buffers come up in Emacs state.
11898
11899 * ediff-util.el (ediff-make-temp-file): Use proper file-name-handler
11900 operation.
11901
11902 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
11903
11904 * term.el (term-termcap-format): Fix typos.
11905 (term-down): Fix the negative argument case.
11906
11907 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
11908
11909 * progmodes/gdb-ui.el: Remove face-alias left over from change on
11910 2005-08-15.
11911 (gdb-ann3): New command gud-go.
11912 (menu): Accomodate gdb-mi.el.
11913 (gdb-assembler-custom): Make buffer of selected window current
11914 so that set-window-point works.
11915
11916 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
11917 buttons and include new ones.
11918
11919 2005-11-16 Kim F. Storm <storm@cua.dk>
11920
11921 * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
11922 (gud-menu-map): Use it.
11923
11924 2005-11-14 Luc Teirlinck <teirllm@auburn.edu>
11925
11926 * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
11927 that works correctly for Custom and that does not override a user
11928 who disables it.
11929
11930 * help-mode.el (help-make-xrefs, help-xref-on-pp)
11931 (help-xref-interned, help-follow): Make hyperlinks for variables
11932 that are unbound, but have a non-nil variable-documentation property.
11933
11934 * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
11935 mode hook. (It conflicted with defcustoms for some mode hooks.)
11936 Use the `variable-documentation' property to give the mode hook a
11937 docstring and expand that docstring.
11938
11939 2005-11-14 Hrvoje Niksic <hniksic@xemacs.org>
11940
11941 * savehist.el (savehist-mode): Don't bother with
11942 `custom-set-minor-mode'.
11943 (savehist-coding-system): Check XEmacs version.
11944 (history-length): Declare also at run time.
11945 (savehist-mode): Don't emit a message. Don't run the minor mode hook.
11946 Don't set the customize state.
11947 (savehist-minibuffer-hook): Special case for when
11948 minibuffer-history-variable is equal to t.
11949
11950 2005-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
11951
11952 * files.el (write-file): Refresh VC status.
11953
11954 * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
11955 (mark-diary-entries, make-diary-entry): Check default-major-mode rather
11956 than fundamental-mode to see if the mode was set.
11957
11958 2005-11-14 Romain Francoise <romain@orebokech.com>
11959
11960 * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
11961 dummy function in `eval-when-compile' to avoid compiler warning.
11962 Require `man' at compile time.
11963
11964 2005-11-14 Jay Belanger <belanger@truman.edu>
11965
11966 * calc-alg.el (calcFunc-write-out-power): Rename it to
11967 calcFunc-powerexpand.
11968 (math-write-out-power): Rename it to math-powerexpand; have it
11969 handle negative exponents.
11970 (calc-writeoutpower): Rename it to calc-powerexpand.
11971
11972 * calc-ext.el: Change calcFunc-writeoutpower and
11973 calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
11974 autoloads.
11975 Add calcFunc-ldiv to autoloads.
11976
11977 * calc-arith.el (calcFunc-ldiv): New function.
11978
11979 * calc.el (calc-left-divide): New function.
11980
11981 2005-11-14 Juri Linkov <juri@jurta.org>
11982
11983 * cus-edit.el (custom-variable-prompt): Set the default value arg
11984 of completing-read.
11985
11986 * cus-dep.el (custom-make-dependencies): Reverse the list of
11987 found dependencies.
11988
11989 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu>
11990
11991 * menu-bar.el (menu-bar-options-menu): Delete "Syntax
11992 Highlighting" entry, it is on by default now.
11993 (menu-bar-options-save): Do not save global-font-lock-mode.
11994
11995 2005-11-13 Richard M. Stallman <rms@gnu.org>
11996
11997 * textmodes/flyspell.el (flyspell-large-region):
11998 Call flyspell-accept-buffer-local-defs.
11999
12000 2005-11-13 Agustin Martin <agustin.martin@hispalinux.es>
12001
12002 * textmodes/flyspell.el (flyspell-notify-misspell):
12003 Fix misspelling of "Misspelling".
12004 (flyspell-process-localwords): New function.
12005 (flyspell-large-region): Call flyspell-process-localwords and
12006 flyspell-delete-region-overlays.
12007 (flyspell-delete-region-overlays): New function.
12008 (flyspell-delete-all-overlays): Call that.
12009
12010 2005-11-13 Richard M. Stallman <rms@gnu.org>
12011
12012 * help.el (help-for-help-internal): Improve doc of C-h a.
12013 (describe-key): Improve prompt; doc fix.
12014
12015 2005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
12016
12017 * vc-svn.el (vc-svn-registered): Catch all errors.
12018
12019 * cus-dep.el (custom-make-dependencies): Typo.
12020
12021 2005-11-13 Michael Albinus <michael.albinus@gmx.de>
12022
12023 * net/tramp-util.el (top): Fix compilation warning.
12024
12025 2005-11-13 Kim F. Storm <storm@cua.dk>
12026
12027 * help.el (help-for-help-internal): Fix `a' entry. Add `d' entry.
12028
12029 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
12030
12031 * progmodes/gud.el (gud-menu-map): Move parentheses (again).
12032 (gud-speedbar-buttons): Match on "const char *" too.
12033
12034 * progmodes/gdb-ui.el (gdb-var-create-handler)
12035 (gdb-var-list-children-handler): Match on "const char *" too.
12036 (gdb-var-evaluate-expression-handler): Match on empty string.
12037 (gdb-var-update-handler): Only call
12038 gdb-var-evaluate-expression-handler when required.
12039
12040 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
12041
12042 * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
12043 selected window. This still doesn't work for speedbar.
12044 (gud-speedbar-buttons): Handle string expressions properly.
12045
12046 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
12047 (gdb-var-create-handler): Handle string expressions properly.
12048 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
12049 Handle string expressions properly. Move "type" field into regexp.
12050
12051 2005-11-12 Karl Fogel <kfogel@red-bean.com>
12052
12053 * bookmark.el (bookmark-maybe-message): New function to reduce
12054 code duplication: invokes `message' iff baud-rate is high enough.
12055 (bookmark-write-file): Use above instead of an inline conditional.
12056 (bookmark-load): Same.
12057
12058 2005-11-12 Karl Fogel <kfogel@red-bean.com>
12059
12060 * bookmark.el (bookmark-write-file): Don't visit the destination
12061 file, just write the data to it using write-region. This is
12062 similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
12063 change to avoid visiting the file in the first place.
12064
12065 2005-11-12 Chong Yidong <cyd@stupidchicken.com>
12066
12067 * hi-lock.el (hi-lock-mode): Set the default value of
12068 font-lock-defaults.
12069
12070 2005-11-11 Luc Teirlinck <teirllm@auburn.edu>
12071
12072 * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
12073 arg to `file-attributes'.
12074 (find-lisp-format): The UID and GID can now be strings.
12075
12076 2005-11-12 Kim F. Storm <storm@cua.dk>
12077
12078 * help.el (help-map): Bind C-h d to apropos-documentation.
12079
12080 * simple.el (what-cursor-position): Print (EOB) instead of (100%)
12081 when point is at end-of-buffer.
12082
12083 * apropos.el (apropos-match-face): Doc fix.
12084 (apropos-sort-by-scores): Add new choice `verbose'.
12085 (apropos-documentation-sort-by-scores): New defcustom.
12086 (apropos-pattern): Now contains the pattern entered by the user.
12087 (apropos-pattern-quoted): New defvar.
12088 (apropos-regexp): New defvar, containing the regexp corresponding
12089 to apropos-pattern.
12090 (apropos-all-words-regexp): Rename from apropos-all-regexp.
12091 (apropos-read-pattern): New defun. Use it to read pattern arg in
12092 interactive calls; returns list of words for a word list, and
12093 string for a regexp.
12094 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
12095 parses a list of words or regexp as returned by apropos-read-pattern.
12096 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
12097 (apropos-score-doc): Return a very high score if the string
12098 entered by the user matches literally.
12099 (apropos-variable): Doc fix. Use apropos-read-pattern.
12100 (apropos-command): Doc fix. Use apropos-read-pattern and
12101 apropos-parse-pattern. Call apropos-print with nosubst=t.
12102 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
12103 apropos-parse-pattern.
12104 (apropos-documentation): Doc fix. Use apropos-read-pattern and
12105 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
12106 apropos-documentation-sort-by-scores. Call apropos-print with
12107 nosubst=t.
12108 (apropos-documentation-internal): Pass doc string through
12109 substitute-key-definition before adding text properties.
12110 Highlight substring matching literal user input if possible.
12111 (apropos-documentation-check-doc-file): Remove locals beg and end.
12112 Fix calculation of score (as added twice). Pass doc string through
12113 substitute-key-definition before adding text properties.
12114 (apropos-documentation-check-elc-file): Pass doc string through
12115 substitute-key-definition before adding text properties.
12116 Highlight substring matching literal user input if possible.
12117 (apropos-print): Add new arg NOSUBST; if set, command and variable
12118 doc strings have already been passed through substitute-key-definition.
12119 Add code to handle apropos-accumulator items without score element
12120 for backwards compatibility (e.g. with woman package).
12121 Only show scores if apropos-sort-by-scores is `verbose'.
12122
12123 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
12124
12125 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
12126 Add jka-compr-load-suffixes to load-suffixes.
12127
12128 * jka-compr.el: Require jka-cmpr-hook.
12129 (jka-compr-info-compress-message, jka-compr-info-compress-program)
12130 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
12131 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
12132 (jka-compr-info-can-append, jka-compr-info-strip-extension)
12133 (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
12134 (jka-compr-info-regexp): Remove. Provided by jka-cmpr-hook.
12135 (jka-compr-uninstall): Remove entries from
12136 jka-compr-added-to-file-coding-system-alist after they are used.
12137 (jka-compr-error): Remove unused var `curbuf'.
12138 (jka-compr-file-local-copy): Remove unused var `notfound'.
12139
12140 2005-11-10 Romain Francoise <romain@orebokech.com>
12141
12142 * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
12143
12144 2005-11-11 Nick Roberts <nickrob@snap.net.nz>
12145
12146 * progmodes/gud.el (gud-menu-map): Move parentheses.
12147 (gdb): New command gud-pv.
12148
12149 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
12150
12151 * tar-mode.el: Remove spurious or unnecessary leading stars
12152 in docstrings.
12153 (tar-header-block-tokenize): Also obey default-file-name-coding-system.
12154 (tar-parse-octal-integer-safe): Use mapc.
12155 (tar-header-block-summarize): Remove unused var `ck'.
12156 (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
12157 cleared before. Obey default-enable-multibyte-characters.
12158 Use mapconcat. Simplify setting of tar-header-offset.
12159 (tar-mode-map): Move initialization inside delcaration.
12160 (tar-flag-deleted): Use `abs'.
12161 (tar-expunge-internal): Remove unused var `line'.
12162 (tar-expunge-internal): Don't hardcode point-min==1.
12163 (tar-expunge): Widen while doing set-buffer-multibyte.
12164 (tar-rename-entry): Use file-name-coding-system.
12165 (tar-alter-one-field): Don't hardcode point-min==1.
12166 (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
12167 (tar-pad-to-blocksize): Don't hardcode point-min==1. Clarify the code.
12168
12169 2005-11-10 Masatake YAMATO <jet@gyve.org>
12170
12171 * add-log.el (add-log-current-defun): Handle class::method
12172 notation of c++. Fix incorrect comment.
12173
12174 2005-11-10 Alan Mackenzie <acm@muc.de>
12175
12176 * help-fns.el (describe-variable): Make C-h v work when a variable
12177 has variable documentation yet is unbound.
12178
12179 2005-11-10 Masatake YAMATO <jet@gyve.org>
12180
12181 * man.el (Man-highlight-references): Set an empty
12182 string to `Man-arguments' if it is nil.
12183 Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
12184
12185 2005-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
12186
12187 * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
12188 commenting conventions.
12189
12190 * cus-dep.el (custom-make-dependencies): Simplify.
12191 Better follow the commenting conventions.
12192
12193 2005-11-09 Richard M. Stallman <rms@gnu.org>
12194
12195 * apropos.el (apropos-pattern): Rename from apropos-regexp.
12196 (apropos-orig-pattern): Rename from apropos-orig-regexp.
12197 All uses changed.
12198 (apropos-rewrite-regexp): Doc fix.
12199 (apropos-variable, apropos-command, apropos, apropos-value):
12200 Change prompt; carry through the argument renaming.
12201
12202 2005-11-09 Luc Teirlinck <teirllm@auburn.edu>
12203
12204 * find-lisp.el: Require dired.
12205 (find-lisp-find-dired-internal): Do not call
12206 `abbreviate-file-name' on DIR.
12207
12208 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
12209
12210 * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
12211
12212 2005-11-09 Nick Roberts <nickrob@snap.net.nz>
12213
12214 * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
12215 when using the speedbar.
12216 (gdb): New command gud-pp.
12217 (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
12218
12219 2005-11-09 Juri Linkov <juri@jurta.org>
12220
12221 * replace.el (occur-excluded-properties): New defcustom.
12222 (occur-1, occur-engine, occur-accumulate-lines): Use it.
12223
12224 2005-11-08 Jay Belanger <belanger@truman.edu>
12225
12226 * calc/calc-units.el (math-convert-units): Replace any composite
12227 unit by its definition.
12228
12229 2005-11-08 Lars Hansen <larsh@soem.dk>
12230
12231 * emacs-lisp/autoload.el (update-directory-autoloads):
12232 Add obsolete function alias.
12233
12234 2005-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
12235
12236 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
12237 comment-indent-function.
12238 (lisp-comment-indent): Replace by an alias for comment-indent-default.
12239
12240 * reveal.el (reveal-post-command): Rework the handling of
12241 reveal-open-spots, so as to be more reliable. There were several
12242 tricky corner cases where an open spot might be lost, or where
12243 a closed spot might end up on the list of open spots.
12244 Only reveal text that's ellipsised.
12245
12246 2005-11-07 Carsten Dominik <dominik@science.uva.nl>
12247
12248 * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
12249
12250 2005-11-07 John Paul Wallington <jpw@gnu.org>
12251
12252 * ibuffer.el (ibuffer): Search iconified frames too when
12253 getting Ibuffer buffer's window.
12254
12255 2005-11-06 Richard M. Stallman <rms@gnu.org>
12256
12257 * progmodes/compile.el (compilation-internal-error-properties):
12258 save-excursion around the computation of MARKER.
12259
12260 2005-11-06 Piet van Oostrum <piet@cs.uu.nl>
12261
12262 * textmodes/flyspell.el (flyspell-external-point-words):
12263 flyspell-get-word returns a list, not just a string.
12264
12265 2005-11-06 John Paul Wallington <jpw@pobox.com>
12266
12267 * ibuffer.el (ibuffer): Search all visible frames when getting
12268 Ibuffer buffer's window.
12269
12270 2005-11-07 Masatake YAMATO <jet@gyve.org>
12271
12272 * man.el (Man-reference-regexp): Accept spaces between
12273 `Man-name-regexp' and `Man-section-regexp'.
12274 (Man-apropos-regexp): New variable.
12275 (Man-abstract-xref-man-page): Use value for `Man-target-string'
12276 if available.
12277 (Man-highlight-references, Man-highlight-references0):
12278 Handle the case when `Man-arguments' includes "-k".
12279 (Man-highlight-references0): Rename the argument `TARGET-POS' to
12280 `TARGET'. `TARGET' can be a number, function or nil.
12281
12282 2005-11-06 Nick Roberts <nickrob@snap.net.nz>
12283
12284 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
12285 (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
12286 (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
12287 (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
12288 (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
12289 (gdb-send-item): Use buffer-local-value and simplify.
12290
12291 2005-11-05 Luc Teirlinck <teirllm@auburn.edu>
12292
12293 * startup.el (command-line): Use `custom-reevaluate-setting' for
12294 `global-font-lock-mode'.
12295
12296 * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
12297 by default, except in batch mode or when the -D option is given.
12298
12299 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
12300 specified keyword args on to `define-minor-mode'. Update docstring.
12301
12302 2005-11-05 Romain Francoise <romain@orebokech.com>
12303
12304 * replace.el (occur-engine): Add marker at end of line, too.
12305
12306 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
12307
12308 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
12309 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
12310 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
12311 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
12312 argument to all these routines, so the passphrase can be managed
12313 externally and passed in to the system.
12314 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
12315 pgg-add-passphrase-to-cache function.
12316
12317 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
12318 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
12319 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
12320 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
12321 argument to all these routines, so the passphrase can be managed
12322 externally and passed in to the system.
12323 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
12324 function.
12325
12326 2005-11-04 Dan Nicolaescu <dann@ics.uci.edu>
12327
12328 * font-lock.el: Don't deal with font-lock-face-attributes here,
12329 move the code ...
12330
12331 * startup.el (command-line): ... here. Use face-spec-set instead
12332 of custom-declare-face.
12333
12334 * faces.el (face-spec-set): Reset the face if spec is not nil.
12335
12336 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
12337
12338 * newcomment.el (comment-region-internal): Box more tightly in the
12339 common case where there's no TAB in the boxed text.
12340
12341 2005-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12342
12343 * info.el (info-tool-bar-map): Use images prev-node, next-node and
12344 up-node.
12345
12346 2005-11-04 Ulf Jasper <ulf.jasper@web.de>
12347
12348 * newsticker.el: Commentary updated. Code formatting changed.
12349 (newsticker-version): Change to "1.9".
12350 (newsticker, newsticker-feed): Doc fix.
12351 (newsticker-url-list): Doc fix. Add option "Weekly".
12352 (newsticker-retrieval-interval): Add option "Weekly".
12353 (newsticker-headline-processing): Doc fix.
12354 (newsticker-auto-mark-filter): Remove.
12355 (newsticker-auto-mark-filter-list): New.
12356 (newsticker-layout, newsticker-sort-method): Doc fix.
12357 (newsticker-hide-old-items-in-newsticker-buffer)
12358 (newsticker-heading-format, newsticker-item-format)
12359 (newsticker-desc-format): Doc fix.
12360 (newsticker-show-all-rss-elements): Remove.
12361 (newsticker-show-all-news-elements): New.
12362 (newsticker-faces, newsticker-ticker): Doc fix.
12363 (remove-from-invisibility-spec): Code formatting.
12364 (newsticker--process-ids): New.
12365 (newsticker-mode): Doc fix.
12366 (newsticker-mode): Change mode-line-format.
12367 (newsticker-start): Remove debug output.
12368 (newsticker-start-ticker): Doc fix. Add autoload cookie.
12369 (newsticker-w3m-show-inline-images): Code formatting.
12370 (newsticker-next-item): Call `force-mode-line-update'.
12371 (newsticker-previous-item): Call `force-mode-line-update'.
12372 (newsticker-next-feed): Call `force-mode-line-update'.
12373 (newsticker-previous-feed): Call `force-mode-line-update'.
12374 (newsticker-mark-all-items-at-point-as-read): Code formatting.
12375 (newsticker-show-old-items): Do not show descs.
12376 (newsticker-hide-entry): Hide too much.
12377 (newsticker-hide-entry, newsticker-show-entry)
12378 (newsticker-toggle-auto-narrow-to-feed): Code formatting.
12379 (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
12380 (newsticker-toggle-auto-narrow-to-item): Code formatting.
12381 (newsticker-set-auto-narrow-to-item): Update buffer immediately.
12382 (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
12383 (newsticker-get-news): Call `force-mode-line-update'.
12384 Collect process ids.
12385 (newsticker--sentinel): Change coding system handling.
12386 Move image retrieval to new functions newsticker--get-logo-url-*.
12387 Move feed parsing to new functions newsticker--parse-*.
12388 Update list of process ids.
12389 (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
12390 (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
12391 (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
12392 (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
12393 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
12394 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
12395 (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
12396 (newsticker--decode-coding-string): Remove.
12397 (newsticker--decode-numeric-entities): Check input. Format code.
12398 (newsticker--remove-whitespace): Check input.
12399 (newsticker--do-forget-preformatted): Doc fix.
12400 (newsticker--decode-rfc822-date): Allow for missing time.
12401 (newsticker--update-process-ids): New.
12402 (newsticker--image-sentinel): Change comment.
12403 (newsticker--image-read): Change error message.
12404 (newsticker--imenu-goto): Doc fix. Show headline title.
12405 (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
12406 (newsticker--buffer-do-insert-text): Clean whitespace in
12407 html-rendered headline title. Code formatting.
12408 Call `newsticker--buffer-print-extra-elements'.
12409 (newsticker--buffer-print-extra-element): Remove.
12410 (newsticker--buffer-print-extra-elements): New.
12411 (newsticker--buffer-do-print-extra-element): New.
12412 (newsticker--buffer-insert-enclosure): Doc fix. Use MBytes for
12413 large sizes.
12414 (newsticker--run-auto-mark-filter)
12415 (newsticker--do-run-auto-mark-filter):
12416 Use `newsticker-auto-mark-filter-list'.
12417
12418 2005-11-04 Ryan Yeske <rcyeske@gmail.com>
12419
12420 * net/rcirc.el: Use split-string OMIT-NULLS argument.
12421 (rcirc-print): Force redisplay before running hooks. Do long
12422 buffer truncation after making new text read-only. Deal with nil
12423 text when decoding strings. If TARGET is nil, use either the
12424 currently selected buffer, if it is an rcirc buffer and of the
12425 same process or the process buffer.
12426 (rcirc-mode): Remove header-line. Recompute short buffer names.
12427 Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
12428 (rcirc-short-buffer-name): Add variable.
12429 (rcirc-kill-buffer-hook): Recompute short buffer names.
12430 Remove nick from private channel.
12431 (rcirc-send-input): Send command text to current-buffer.
12432 Don't clear overlay arrow here.
12433 (rcirc-short-buffer-name): Return a short buffer name.
12434 (rcirc-update-short-buffer-names, rcirc-abbreviate)
12435 (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
12436 buffer-name abbreviations.
12437 (rcirc-kill-buffer-hook-1): Split to make debugging easier.
12438 Do not touch nick-table when killing a parted channel.
12439 (rcirc-window-configuration-change): Rename from rcirc-update-activity.
12440 Clear arrow from current buffer if it is now hidden.
12441 (rcirc-current-buffer): Add variable.
12442 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
12443 (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
12444 Remove -face from names.
12445 (rcirc-update-activity-string): Print "DND" when globally ignoring
12446 activity.
12447 (rcirc-ignore-buffer-activity-flag): Rename from
12448 rcirc-ignore-channel-activity.
12449 (rcirc-ignore-all-activity-flag): Doc fix.
12450 (rcirc-channels): Remove variable.
12451 (rcirc-kill-buffer-hook):
12452 (rcirc-get-buffer-create): Add nick to private channel.
12453 (rcirc-multiline-edit-submit): Remove tabs.
12454 (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
12455 folded.
12456 (rcirc-remove-nick-channel): Bug fix.
12457 (rcirc-toggle-ignore-buffer-activity): Rename from
12458 rcirc-toggle-ignore-channel-activity.
12459 (rcirc-record-activity): Add buffers to the front of the list.
12460 (rcirc-update-activity): Remove killed buffers from list.
12461 (rcirc-process-server-response-1): Remove last argument if it is
12462 null before calling handler.
12463 (rcirc): Add "rcirc" defcustom prefix.
12464 (rcirc-prompt): Simplify default prompt.
12465 Use custom-initialize-default.
12466 (rcirc-private-chats): Remove variable.
12467 (rcirc-prompt): Change initialization.
12468 (rcirc-version): Remove function.
12469 (rcirc-id-string): Add constant.
12470 (rcirc-last-buffer): Remove variable.
12471 (rcirc-buffer-alist): Add variable.
12472 (rcirc-connect): Update variable setup.
12473 (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
12474 (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
12475 default.
12476 (rcirc-handler-generic): Trigger activity.
12477 (rcirc-send-message): Create the buffor of the target.
12478 (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
12479 (rcirc-get-buffer): Just return nil if there is no matching buffer.
12480 (rcirc-multiline-edit-cancel): Remove function.
12481 (rcirc-set-last-buffer): Remove function.
12482 (rcirc-get-any-buffer): Add function.
12483 (rcirc-join-channels): Don't print /join text.
12484 (rcirc-toggle-ignore-channel-activity): Add and update echo area
12485 messages.
12486 (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
12487 (rcirc-handler-NOTICE): Recognize CTCP responses.
12488 (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
12489 constructing TOPIC string for buffers we are not JOINed.
12490 (rcirc-handler-CTCP-response): Add handler.
12491 (rcirc-multiline-edit-submit): Restore the window-configuration
12492 before adjusting point.
12493 (rcirc): Add customization group.
12494 (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
12495 (rcirc-user-full-name, rcirc-startup-channels-alist)
12496 (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
12497 (rcirc-ignore-all-activity-flag, rcirc-time-format)
12498 (rcirc-input-ring-size, rcirc-read-only-flag)
12499 (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
12500 (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
12501 Change defvar to defcustom.
12502 (rcirc-update-prompt): Add optional ALL arg, which will update
12503 prompts in all rcirc buffers. Regexp quote replacement text.
12504 (rcirc-fill-column): Accept frame-width as a value.
12505 (rcirc-set-changed): Add function.
12506 (rcirc-next-active-buffer): Write more meaningful messages.
12507 (rcirc-faces): Add customization group.
12508 (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
12509 (rcirc-nick-in-message-face, rcirc-prompt-face)
12510 (rcirc-mode-line-nick-face): Move into rcirc-faces group.
12511 (with-rcirc-process-buffer): Move before first usage.
12512 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
12513 (rcirc-debug-flag): Rename from `rcirc-log-p'.
12514 (rcirc-debug): Rename from `rcirc-log'.
12515 (rcirc-format-response-string): Do not print `-' chars for a
12516 NOTICE with no sender. Simplify output of server responses.
12517
12518 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
12519
12520 (rcirc-browse-url-map, rcirc-browse-url-at-point)
12521 (rcirc-browse-url-at-mouse, rcirc-mangle-text):
12522 Make urls mouse and RET clickable.
12523
12524 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
12525
12526 * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
12527
12528 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
12529
12530 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
12531 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
12532 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
12533 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
12534 argument to all these routines, so the passphrase can be managed
12535 externally and passed in to the system.
12536 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
12537 pgg-add-passphrase-to-cache function.
12538
12539 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
12540 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
12541 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
12542 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
12543 argument to all these routines, so the passphrase can be managed
12544 externally and passed in to the system.
12545 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
12546 function.
12547
12548 2005-11-04 Edward O'Connor <hober0@gmail.com> (tiny change)
12549
12550 * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
12551 from goto-address-url-regexp.
12552
12553 2005-11-04 Carsten Dominik <dominik@science.uva.nl>
12554
12555 * textmodes/org.el (org-read-date, org-goto-calendar)
12556 (org-recenter-calendar, org-agenda-goto-calendar):
12557 Temporarily clear `calendar-move-hook'.
12558
12559 2005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
12560
12561 * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
12562 merging.
12563
12564 * ediff-util.el (ediff-previous-difference): Don't skip regions that
12565 have merge clashes.
12566
12567 2005-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12568
12569 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
12570 Undo previous change.
12571
12572 * startup.el (command-line): Use `custom-reevaluate-setting' for
12573 mouse-wheel-down-event and mouse-wheel-up-event. Don't call
12574 tty-register-default-colors on Mac.
12575
12576 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
12577
12578 * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
12579 (gdb-buffer-type): Make it automatically buffer local...
12580 (gdb-get-create-buffer): ...and set it accordingly.
12581 (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
12582 actually work.
12583
12584 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
12585
12586 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
12587 not red.
12588
12589 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
12590
12591 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
12592 case GUD buffer is not visible.
12593 (gdb-goto-breakpoint): Try to force display in source buffer.
12594 (gdb-frame-gdb-buffer): Copy other similar functions.
12595 (gdb-restore-windows): Don't display source if not asked for.
12596 (gdb-assembler-buffer-name): Don't capitalise.
12597
12598 2005-11-03 Richard M. Stallman <rms@gnu.org>
12599
12600 * wid-edit.el (key-sequence): New widget type.
12601
12602 * simple.el (set-mark-command-repeat-pop): New variable.
12603 (set-mark-command): Only interpret plan C-@ after a pop as a pop
12604 if set-mark-command-repeat-pop is true.
12605
12606 * info.el (Info-fontify-node): Don't display extra "see" if there
12607 already is one here.
12608
12609 * mouse.el: Fix special handling of DEL after dragging a region:
12610 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
12611 (mouse-region-delete-keys): Change to defcustom. Add [backspace].
12612
12613 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
12614
12615 * textmodes/ispell.el (ispell-command-loop): Change `i' description
12616 not to assume it pertains to an affix.
12617
12618 * textmodes/flyspell.el (flyspell-post-command-hook):
12619 Bind deactivate-mark to prevent deactivation.
12620
12621 2005-11-03 Lars Hansen <larsh@soem.dk>
12622
12623 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
12624 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
12625 dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
12626
12627 2005-11-03 Romain Francoise <romain@orebokech.com>
12628
12629 * net/eudcb-mab.el: Now part of GNU Emacs. Update FSF's address.
12630 Update copyright years.
12631
12632 2005-11-03 Sam Steingold <sds@gnu.org>
12633
12634 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
12635 Use system-type instead of window-system because window-system is not
12636 correctly defined during loadup.
12637
12638 2005-11-02 Mark A. Hershberger <mah@everybody.org>
12639
12640 * xml.el (xml-syntax-table): Allow xml.el to compile in xemacs.
12641 (xml-parse-tag): Join strings separated by a comment properly.
12642
12643 2005-11-02 Andreas Schwab <schwab@suse.de>
12644
12645 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
12646
12647 2005-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
12648
12649 * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
12650 (byte-optimize-pure-func): Quote the eval'd value.
12651
12652 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
12653 Rename from perl-font-lock-syntactic-face-function.
12654 Change the calling convention so it can be used as a font-lock MATCHER.
12655 Do the parse-partial-sexp loop outselves.
12656 (perl-font-lock-syntactic-keywords): Use it.
12657 (perl-mode): Don't set font-lock-syntactic-face-function any more.
12658
12659 2005-11-02 Nick Roberts <nickrob@snap.net.nz>
12660
12661 * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
12662 disassembly buffer too.
12663 (gdb-exited): Remove overlay arrows when execution has finished.
12664 (gdb-info-frames-custom, gdb-info-threads-custom)
12665 (gdb-info-registers-custom): Don't add inappropriate text
12666 properties if inferior is not active.
12667
12668 2005-11-02 Glenn Morris <rgm@gnu.org>
12669
12670 * progmodes/fortran.el (fortran-blink-match):
12671 Use `blink-matching-delay'.
12672
12673 2005-11-02 John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
12674
12675 * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
12676
12677 2005-11-02 Lars Hansen <larsh@soem.dk>
12678
12679 * net/tramp.el (tramp-action-out-of-band): Handle scp message
12680 "Permission denied".
12681
12682 2005-11-01 Richard M. Stallman <rms@gnu.org>
12683
12684 * textmodes/flyspell.el (flyspell-external-point-words):
12685 Pass nil to flyspell-get-word.
12686
12687 2005-11-02 Kim F. Storm <storm@cua.dk>
12688
12689 * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
12690 item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
12691
12692 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
12693
12694 * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
12695 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
12696 (calendar-mouse-print-dates): Add optional `event' argument.
12697 Update interactive-spec.
12698 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
12699 Use `calendar-event-to-date' instead of `event'.
12700
12701 2005-11-02 Masatake YAMATO <jet@gyve.org>
12702
12703 * progmodes/ld-script.el (ld-script-builtins):
12704 Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
12705 "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
12706 (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
12707
12708 2005-11-01 Romain Francoise <romain@orebokech.com>
12709
12710 * vc-sccs.el: Update copyright year.
12711 * ezimage.el: Likewise.
12712
12713 2005-11-01 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
12714
12715 * info.el (Info-fontify-node): Use `string-width' for fontifying
12716 underlined titles.
12717
12718 2005-11-01 Juri Linkov <juri@jurta.org>
12719
12720 * info.el (Info-fontify-node): Downcase node header keywords Node,
12721 Prev, Next, Up before comparison.
12722 (Info-history): Insert absolute directory name, and put invisible
12723 property on it.
12724
12725 2005-11-01 Juri Linkov <juri@jurta.org>
12726
12727 * info.el (Info-file-supports-index-cookies): New variable.
12728 (Info-find-node-2): Check makeinfo version for index cookie support.
12729 (Info-index-nodes): Search for nodes with index cookies only when
12730 Info-file-supports-index-cookies is t. Otherwise, search nodes
12731 with "Index" in the node name.
12732 (Info-index-node): Search index cookie in the current node only when
12733 Info-file-supports-index-cookies is t. Otherwise, check the word
12734 "Index" in the node name.
12735 (Info-find-emacs-command-nodes): Remove code that searches nodes
12736 with "Index" node name in the top menu.
12737
12738 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
12739
12740 * progmodes/scheme.el (scheme-mode-variables): Use the default
12741 comment-indent-function.
12742
12743 * faces.el (face-attribute): Handle the case where a face inherits from
12744 a non-existent face.
12745
12746 * simple.el (eval-expression-print-format): Use lisp-readable syntax
12747 for octal and hexa output, and merge the char into the paren.
12748 (kill-new): Use push.
12749 (copy-to-buffer): Use with-current-buffer.
12750 (completion-setup-function): Move code in loop to remove redundancy.
12751 (minibuffer-local-must-match-map): Don't add bindings that duplicate
12752 those inherited from minibuffer-local-completion-map.
12753
12754 * savehist.el (savehist-mode) <defcustom>:
12755 Use custom-set-minor-mode if available.
12756 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
12757 and emit a message if applicable.
12758
12759 2005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
12760
12761 * savehist.el: Sync up to version 19.
12762 (savehist-mode): New minor mode.
12763 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
12764 (savehist-length): Remove (use history-length instead).
12765 (savehist-file-modes): Rename from savehist-modes.
12766 (savehist-save-hook, savehist-loaded): New vars.
12767 (savehist-load): Use savehist-mode. Try to smooth up transition from
12768 old format to new format.
12769 (savehist-install): Allow savehist-autosave-interval to be nil.
12770 (savehist-save): Run the new hook. Be more careful to only trim the
12771 history variables.
12772 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
12773 (savehist-printable): Print into a buffer rather than char-by-char.
12774
12775 2005-11-01 John Wiegley <johnw@newartisans.com>
12776
12777 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
12778 toggle-ignore keybinding (C-a). The author said it had been
12779 disabled much earlier due to a possible incompatibility, but after
12780 many months of usage I have encountered no problems (and it is a
12781 rather useful option, especially for switching to " *temp*").
12782
12783 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
12784 support for OS/X's AddressBook, by calling out to the open source
12785 program "contacts" (installable through Fink).
12786
12787 * net/eudc.el (eudc-expand-inline): If the
12788 `eudc-multiple-match-handling-method' is set to `all', delete the
12789 query string before inserting the query result.
12790
12791 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
12792 flag, to prevent Eshell from using the system ls when
12793 `eshell-ls-insert-directory' is in used.
12794 (eshell-ls-insert-directory): Disable font-lock in directory
12795 buffer so that Eshell's own fontification is seen. This broke
12796 recently due to changes in font-lock, so this goes back to version
12797 21 behavior.
12798
12799 2005-11-01 Nick Roberts <nickrob@snap.net.nz>
12800
12801 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
12802 (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
12803 (gdb-many-windows): Doc fix.
12804
12805 2005-10-31 Romain Francoise <romain@orebokech.com>
12806
12807 * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
12808
12809 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
12810
12811 * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
12812 that global-font-lock-mode can be enabled by default.
12813
12814 * font-lock.el (font-lock-keywords, font-lock-mode-internal)
12815 (font-lock-add-keywords, font-lock-remove-keywords)
12816 (font-lock-fontify-buffer): Remove autoload cookies.
12817
12818 * jit-lock.el (jit-lock-register): Likewise.
12819
12820 * emacs-lisp/syntax.el (syntax-ppss): Likewise.
12821
12822 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
12823
12824 * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
12825 intact if there is no gud-comint-buffer.
12826
12827 2005-10-31 Luc Teirlinck <teirllm@auburn.edu>
12828
12829 * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
12830 old prompt comint-prompt-read-only is t and GDB commands are
12831 issued from tool bar etc.
12832
12833 2005-10-31 Masatake YAMATO <jet@gyve.org>
12834
12835 * vc.el (vc-directory-exclusion-list): Add "{arch}".
12836
12837 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
12838
12839 * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
12840 (thumbs-thumbsdir): Make .emacs.d if it does not exist.
12841
12842 2005-10-30 Michael Albinus <michael.albinus@gmx.de>
12843
12844 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
12845 starting at beginning of line. Fontification is messed up when
12846 `open-paren-in-column-0-is-defun-start' set to t.
12847 Reported by John Paul Wallington <jpw@pobox.com>.
12848
12849 2005-10-30 Luc Teirlinck <teirllm@auburn.edu>
12850
12851 * comint.el (comint-send-input): Call `comint-update-fence' when
12852 `comint-process-echoes' and `comint-prompt-read-only' are both
12853 non-nil, to avoid leftover read-only newline.
12854
12855 2005-10-30 Richard M. Stallman <rms@gnu.org>
12856
12857 * textmodes/flyspell.el (flyspell-external-point-words):
12858 Detect when WORD can't be checked properly because
12859 flyspell-get-word finds just part of it, and move on.
12860
12861 * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
12862 boundarychar for Polish.
12863 (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
12864 (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
12865
12866 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
12867
12868 * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
12869 (gdb-registers-font-lock-keywords): Delete.
12870 (gdb-registers-mode): Don't fontify.
12871 (gdb-info-registers-custom): Use text properties instead as, in
12872 future, changed register values will use font-lock-warning-face.
12873 (gdb-local-font-lock-keywords): Rename to...
12874 (gdb-locals-font-lock-keywords): ...for consistency.
12875
12876 2005-10-30 Andre Spiegel <spiegel@gnu.org>
12877
12878 * vc.el (vc-switch-backend): Better error message if the buffer is
12879 not visiting a file under version control.
12880
12881 * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
12882
12883 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
12884
12885 * startup.el (command-line): Use ~/.emacs.d/init.el instead of
12886 ~/.emacs.d/.emacs.
12887
12888 2005-10-29 Richard M. Stallman <rms@gnu.org>
12889
12890 * replace.el (occur-mode-mouse-goto): Always go to other window.
12891 (occur-mode-goto-occurrence): Always switch in same window.
12892
12893 * simple.el (undo): Display message at end, not at start.
12894
12895 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
12896 New arg REUSE-CELL.
12897 (cancel-timer-internal): New function.
12898 (timer-event-handler): Use cancel-timer-internal,
12899 and pass the cell it returns to timer-activate...
12900
12901 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
12902 (jit-lock-deferred-fontify, jit-lock-context-fontify)
12903 (jit-lock-after-change): Test memory-full.
12904
12905 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
12906
12907 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
12908 part of the decoded armor to find the key-identifier.
12909 (pgg-gpg-lookup-key-owner): New function to return the
12910 human-readable identifier of a key owner.
12911 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
12912 key itself.
12913 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
12914 the key value) if we have a key and can match it against a secret
12915 key. Also, added a note pointing out fact that the prompt only
12916 indicates the first matching key.
12917
12918 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
12919 pgg-decrypt-region.
12920 (pgg-pending-timers): A new hash for tracking the passphrase cache
12921 timers, so that new ones supercede old ones.
12922 (pgg-add-passphrase-to-cache): Rename from
12923 `pgg-add-passphrase-cache' to reduce confusion (all callers
12924 changed). Modified to cancel old timers when new ones are added.
12925 (pgg-remove-passphrase-from-cache): Rename from
12926 `pgg-remove-passphrase-cache' to reduce confusion (all callers
12927 changed). Modified to cancel old timers when their keys are
12928 removed from the cache.
12929 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
12930 XEmacs, an indirection to delete-itimer.
12931 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
12932 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
12933 users can only check cache without risk of prompting. Correct bug in
12934 notruncate behavior.
12935 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
12936 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
12937 Add informative docstrings.
12938 (pgg-decrypt): Convey provided passphrase in subordinate call to
12939 pgg-decrypt-region.
12940
12941 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
12942 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
12943 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
12944 `passphrase' argument, so the passphrase can be managed externally
12945 and then passed in to the system.
12946
12947 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
12948 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
12949 so the passphrase cache can be used reliably with identifiers
12950 besides a pgp packet's key id.
12951
12952 * pgg-gpg.el (pgg-pgp-encrypt-region)
12953 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
12954 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
12955 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
12956 argument to all these routines, so the passphrase can be managed
12957 externally and passed in to the system.
12958
12959 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
12960 `notruncate' argument, so the passphrase cache can be used
12961 reliably with identifiers besides a pgp packet's key id.
12962
12963 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
12964
12965 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
12966 symmetric encryption.
12967 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
12968 encrypted session key.
12969 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
12970 message ask for the passphrase in a proper way.
12971
12972 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
12973 New user commands for symmetric encryption.
12974
12975 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
12976
12977 * textmodes/conf-mode.el (conf-assignment-sign)
12978 (conf-assignment-regexp): Fix docstrings.
12979 (conf-mode-initialize): New function.
12980 (conf-mode): Remove optional args. Use delay-mode-hooks to
12981 recognize recursive calls.
12982 (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
12983 (conf-space-mode, conf-colon-mode, conf-ppd-mode)
12984 (conf-xdefaults-mode): Use define-derived-mode and
12985 conf-mode-initialize.
12986
12987 2005-10-29 Romain Francoise <romain@orebokech.com>
12988
12989 * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
12990
12991 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
12992
12993 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
12994 part of the decoded armor to find the key-identifier.
12995 (pgg-gpg-lookup-key-owner): New function to return the
12996 human-readable identifier of a key owner.
12997 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
12998 key itself.
12999 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
13000 the key value) if we have a key and can match it against a secret
13001 key. Also, added a note pointing out fact that the prompt only
13002 indicates the first matching key.
13003
13004 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
13005 pgg-decrypt-region.
13006 (pgg-pending-timers): A new hash for tracking the passphrase cache
13007 timers, so that new ones supercede old ones.
13008 (pgg-add-passphrase-to-cache): Rename from
13009 `pgg-add-passphrase-cache' to reduce confusion (all callers
13010 changed). Modified to cancel old timers when new ones are added.
13011 (pgg-remove-passphrase-from-cache): Rename from
13012 `pgg-remove-passphrase-cache' to reduce confusion (all callers
13013 changed). Modified to cancel old timers when their keys are
13014 removed from the cache.
13015 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
13016 XEmacs, an indirection to delete-itimer.
13017 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
13018 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
13019 users can only check cache without risk of prompting. Correct bug in
13020 notruncate behavior.
13021 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
13022 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
13023 Add informative docstrings.
13024 (pgg-decrypt): Convey provided passphrase in subordinate call to
13025 pgg-decrypt-region.
13026
13027 2005-10-20 Ken Manheimer <ken.manheimer+emacs@gmail.com>
13028
13029 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
13030 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
13031 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
13032 `passphrase' argument, so the passphrase can be managed externally
13033 and then passed in to the system.
13034
13035 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
13036 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
13037 so the passphrase cache can be used reliably with identifiers
13038 besides a pgp packet's key id.
13039
13040 * pgg-gpg.el (pgg-pgp-encrypt-region)
13041 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
13042 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
13043 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
13044 argument to all these routines, so the passphrase can be managed
13045 externally and passed in to the system.
13046
13047 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
13048 `notruncate' argument, so the passphrase cache can be used
13049 reliably with identifiers besides a pgp packet's key id.
13050
13051 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
13052
13053 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
13054 symmetric encryption.
13055 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
13056 encrypted session key.
13057 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
13058 message ask for the passphrase in a proper way.
13059
13060 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
13061 New user commands for symmetric encryption.
13062
13063 2005-10-28 Bill Wohler <wohler@newt.com>
13064
13065 * help-mode.el (help-url): New button type. Calls browse-url.
13066 (help-xref-url-regexp): New regexp to recognize URLs in docstring.
13067 Similar to Info nodes: URL `url'.
13068 (help-make-xrefs): Create help-url buttons for
13069 help-xref-url-regexp matches.
13070
13071 2005-10-29 Nick Roberts <nickrob@snap.net.nz>
13072
13073 * tool-bar.el (tool-bar-add-item-from-menu)
13074 (tool-bar-local-item-from-menu): Fix doc strings.
13075
13076 2005-10-28 Romain Francoise <romain@orebokech.com>
13077
13078 * ldefs-boot.el: Update.
13079
13080 * subr.el (locate-library): Move from help-fns.el.
13081 * help-fns.el (locate-library): Move to subr.el.
13082
13083 2005-10-28 Richard M. Stallman <rms@gnu.org>
13084
13085 * net/tramp.el (tramp-completion-mode): defvar moved up.
13086
13087 * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
13088
13089 * tool-bar.el (tool-bar-mode): Delete autoload cookie.
13090
13091 * files.el (find-file-noselect): Use %d to format large file size.
13092
13093 * bindings.el (mode-line-format): Add %e.
13094
13095 * loadup.el ("facemenu"): Load unconditionally.
13096 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
13097 ("x-dnd"): Load, when appropriate.
13098
13099 * startup.el (command-line): Call before-init-hook earlier.
13100 Warn about some bad characters in -u user name.
13101
13102 * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
13103 (flyspell-external-point-words): Error if misspelled word is not found.
13104 Set flyspell-large-region-beg at end of word.
13105
13106 2005-10-28 Andreas Schwab <schwab@suse.de>
13107
13108 * view.el (View-revert-buffer-scroll-page-forward):
13109 Use view-page-size-default.
13110
13111 2005-10-28 Juri Linkov <juri@jurta.org>
13112
13113 * international/quail.el (quail-get-current-str): Translate last
13114 raw character for deterministic input methods.
13115
13116 2005-10-27 Jay Belanger <belanger@truman.edu>
13117
13118 * calc/calc-ext.el: Add functions to autoloads.
13119 (math-identity-matrix-p, math-ident-row-p): New functions.
13120
13121 * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
13122 multiplication by an identity matrix; don't turn multiplication by
13123 an inverse matrix into division.
13124 (math-div-symbol-fancy): Replace division by matrices with
13125 multiplication by inverse.
13126
13127 * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
13128
13129 * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
13130 (calc-writeoutpower): New functions.
13131
13132 2005-10-27 Romain Francoise <romain@orebokech.com>
13133
13134 * replace.el (occur-engine): Include colon in mouse-face highlight.
13135
13136 * dired-x.el: Change Maintainer field.
13137
13138 2005-10-26 Chong Yidong <cyd@stupidchicken.com>
13139
13140 * longlines.el (longlines-mode): Bind after-change-functions to
13141 nil during initial decoding and final encoding.
13142
13143 2005-10-26 Dan Nicolaescu <dann@ics.uci.edu>
13144
13145 * term.el (term-emulate-terminal, term-handle-colors-array)
13146 (term-handle-ansi-escape): Specify the terminfo capabilities
13147 implemented.
13148
13149 2005-10-26 Richard M. Stallman <rms@gnu.org>
13150
13151 * info.el (Info-fontify-node): Fix detection of sentence-break
13152 before *Note.
13153
13154 2005-10-26 Romain Francoise <romain@orebokech.com>
13155
13156 * smerge-mode.el: Add `tools' to file keywords.
13157
13158 2005-10-26 Nick Roberts <nickrob@snap.net.nz>
13159
13160 * progmodes/gud.el (gud-menu-map): Only display gud-until icon
13161 when the fringe is not available.
13162
13163 * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
13164 (def-gdb-auto-update-trigger): Simplify construction.
13165 (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
13166 def-gdb-auto-updated-buffer as gdb-info-locals-handler is
13167 defined explicitly.
13168 (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
13169 def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
13170 defined explicitly.
13171 (gdb-info-locals-custom): Remove as it's a no-op.
13172
13173 2005-10-25 Chong Yidong <cyd@stupidchicken.com>
13174
13175 * longlines.el (longlines-mode): Remove narrowing before
13176 performing the initial decoding or final encoding.
13177
13178 2005-10-25 Romain Francoise <romain@orebokech.com>
13179
13180 * emacs-lisp/find-func.el (find-library-name): Also strip
13181 extension if library name ends in .el, to take advantage of
13182 `find-library-suffixes'.
13183
13184 2005-10-25 Richard M. Stallman <rms@gnu.org>
13185
13186 * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
13187
13188 2005-10-25 Juri Linkov <juri@jurta.org>
13189
13190 * textmodes/texinfo.el (texinfo-mode): Change charset of one
13191 quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
13192
13193 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13194
13195 * play/blackbox.el (blackbox-mode-map): Move init into declaration.
13196 (blackbox-redefine-key): Add argument `map'.
13197
13198 * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
13199 regions when moving the jit-lock-context-unfontify-pos boundary.
13200
13201 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
13202
13203 * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
13204
13205 2005-10-25 Masatake YAMATO <jet@gyve.org>
13206
13207 * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
13208
13209 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
13210
13211 * play/blackbox.el (blackbox-redefine-key): New function.
13212 (blackbox-mode-map): Use it to remap existing bindings for cursor
13213 motion instead of binding literal keys.
13214
13215 2005-10-25 Glenn Morris <rgm@gnu.org>
13216
13217 * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
13218 diary does not end in a newline. Do not assume a blank line at
13219 the start of the diary file.
13220
13221 2005-10-25 Kenichi Handa <handa@m17n.org>
13222
13223 * international/quail.el (quail-translate-key): If the input
13224 method is deterministic and failed to handle the last key, restart
13225 the key handling loop from an appropriate key.
13226
13227 2005-10-25 Michael Albinus <michael.albinus@gmx.de>
13228
13229 * vc.el (vc-dired-mode): Extend comment for binding of
13230 `directory-listing-before-filename-regexp'.
13231
13232 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13233
13234 * textmodes/texinfo.el (texinfo-mode):
13235 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
13236 not to unnecessarily expose emacs-mule's internal char codes.
13237
13238 2005-10-25 Nick Roberts <nickrob@snap.net.nz>
13239
13240 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
13241 Display hand pointer and help-echo on disabled icon too.
13242 (gdb-mouse-until): New function.
13243 (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
13244
13245 2005-10-24 Chong Yidong <cyd@stupidchicken.com>
13246
13247 * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
13248 with 2005-10-23 change to doctor.el.
13249
13250 * finder.el (finder-mode-map): Add follow-link binding.
13251
13252 2005-10-25 Kim F. Storm <storm@cua.dk>
13253
13254 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
13255 to gdb-mouse-toggle-breakpoint-fringe.
13256 (gdb-mouse-toggle-breakpoint-margin): Rename from
13257 gdb-mouse-toggle-breakpoint. Fix doc.
13258 (gdb-mouse-toggle-breakpoint-fringe): New defun.
13259 (gdb-put-string): Add optional SPROPS arg. Add props to string.
13260 (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
13261 string properties also for fringe breakpoint bitmaps.
13262
13263 2005-10-24 Carsten Dominik <dominik@science.uva.nl>
13264
13265 * textmodes/org.el (org-start-icalendar-file): Fix format form.
13266
13267 2005-10-25 Masatake YAMATO <jet@gyve.org>
13268
13269 * simple.el (completion-common-substring):
13270 Use `completion-common-substring' prior to `completion-base-size'.
13271
13272 2005-10-24 Hrvoje Niksic <hniksic@xemacs.org>
13273
13274 * savehist.el: Require CL while compiling.
13275 (savehist-history-variables): Remove.
13276 (savehist-save-minibuffer-history, savehist-additional-variables)
13277 (savehist-minibuffer-history-variables): New vars.
13278 (savehist-save): Use them.
13279 (savehist-uninstall, savehist-minibuffer-hook): New funs.
13280 (savehist-install): New fun, extracted from savehist-load.
13281 (savehist-load): Use them.
13282
13283 2005-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
13284
13285 * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
13286 a dummy doc-string-elt property.
13287 (defalias, defvaralias, define-category): Add a docstring property.
13288
13289 * image.el (defimage):
13290 * widget.el (define-widget):
13291 * custom.el (defface, defcustom): Add `doc-string' declaration.
13292
13293 * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
13294 (defadvice): Add `doc-string' declaration.
13295
13296 * emacs-lisp/byte-run.el (macro-declaration-function):
13297 Handle `doc-string' declarations.
13298 (define-obsolete-function-alias, define-obsolete-variable-alias):
13299 Add `doc-string' declaration.
13300
13301 2005-10-24 Kenichi Handa <handa@m17n.org>
13302
13303 * international/utf-7.el (utf-7): Add autoload cookie.
13304
13305 * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
13306
13307 2005-10-24 Eli Zaretskii <eliz@gnu.org>
13308
13309 * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
13310 list of directories passed to batch-update-autoloads. Add "." to
13311 the list of the echoed directories.
13312
13313 * pgg-def.el:
13314 * pgg-gpg.el:
13315 * pgg-parse.el:
13316 * pgg-pgp.el:
13317 * pgg-pgp5.el:
13318 * pgg.el: Moved here from the gnus subdirectory.
13319
13320 2005-10-24 Nick Roberts <nickrob@snap.net.nz>
13321
13322 * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
13323 in case comint-prompt-read-only is set to t.
13324
13325 * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
13326 in case comint-prompt-read-only is set to t.
13327
13328 2005-10-24 Ulf Jasper <ulf.jasper@web.de>
13329
13330 * calendar/icalendar.el (icalendar-version): Increase to 0.13.
13331 Now a string.
13332 (icalendar-import-format): Handle CLASS, STATUS, URL.
13333 Rename `subject' to `summary'.
13334 (icalendar-import-format-summary): Rename from
13335 `icalendar-import-format-subject'.
13336 (icalendar-import-format-url, icalendar-import-format-status)
13337 (icalendar-import-format-class): New variables.
13338 (icalendar--rris): Take variable argument list.
13339 (icalendar--datestring-to-isodate): Remove unnecessary
13340 calendar-style check when converting dates with explicit month names.
13341 (icalendar-export-region): Change return type of conversion
13342 subroutines. Bury current buffer unless error occurred.
13343 (icalendar--convert-to-ical)
13344 (icalendar--parse-summary-and-rest): New functions.
13345 (icalendar--convert-ordinary-to-ical)
13346 (icalendar--convert-weekly-to-ical)
13347 (icalendar--convert-yearly-to-ical)
13348 (icalendar--convert-block-to-ical)
13349 (icalendar--convert-cyclic-to-ical)
13350 (icalendar--convert-anniversary-to-ical): Change return type.
13351 Strip trailing blanks from subject.
13352 (icalendar--convert-sexp-to-ical): Change return type.
13353 Strip trailing blanks from subject. Handle simple sexp
13354 entries as generated by icalendar.el.
13355 (icalendar--convert-float-to-ical)
13356 (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
13357 (icalendar-import-file): Doc fix.
13358 (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
13359 Correct call to icalendar--rris.
13360 (icalendar--convert-ical-to-diary): Doc fix. Rename `subject' to
13361 `summary'.
13362 (icalendar--add-diary-entry): Rename `subject' to `summary'.
13363
13364 2005-10-24 Romain Francoise <romain@orebokech.com>
13365
13366 * server.el (server-sentinel): Set query-on-exit flag to nil on
13367 new client processes (it isn't inherited from the server process).
13368
13369 * replace.el (occur-engine): Rearrange text properties.
13370
13371 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
13372
13373 * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
13374 case-fold-search is nil.
13375 (debug-help-follow): Use help-xref-interned directly.
13376
13377 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
13378
13379 * thumbs.el (thumbs-image-type): Add .pbm.
13380
13381 2005-10-23 Richard M. Stallman <rms@gnu.org>
13382
13383 * faces.el (inhibit-face-set-after-frame-default): New variable.
13384 (set-face-attribute): Bind it.
13385 (face-set-after-frame-default): Test it.
13386
13387 * help-fns.el (describe-simplify-lib-file-name): New function.
13388 (describe-function-1, describe-variable): Use it.
13389
13390 * faces.el (describe-face): Use describe-simplify-lib-file-name.
13391
13392 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
13393 Eliminate nil as possible value.
13394 (tooltip-hide-delay): Reduce internal-border-width.
13395
13396 * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
13397 (menu-bar-file-menu) <new-file>: Likewise.
13398
13399 * simple.el (line-move-finish): Ignore fields computing LINE-END.
13400
13401 * international/mule.el (load-with-code-conversion):
13402 Pass full file name to `eval-buffer' unless preloading.
13403
13404 * textmodes/flyspell.el (flyspell-large-region):
13405 Call ispell-check-version.
13406
13407 * textmodes/ispell.el (ispell-local-dictionary-overridden):
13408 Fix the make-variable-buffer-local call that was supposed
13409 to be for this variable.
13410 (ispell-aspell-supports-utf8): Doc fix.
13411 (ispell-find-aspell-dictionaries): Preserve elements of
13412 ispell-dictionary-alist for dictionaries that aspell doesn't report.
13413 (ispell-aspell-find-dictionary): Return nil on error.
13414
13415 * play/doctor.el (doctor-doc): Don't say "psychiatrist".
13416 (doctor-symptoms): Likewise.
13417
13418 * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
13419
13420 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
13421
13422 * cus-edit.el (custom-button, custom-button-pressed): New vars.
13423 (custom-raised-buttons): Add :set spec.
13424 (custom-button-unraised, custom-button-pressed-unraised):
13425 New faces, so that custom-raised-buttons actually does something.
13426 (custom-mode): Use custom-button and custom-button-pressed.
13427
13428 * wid-edit.el (widget-specify-button): Don't ignore
13429 widget-mouse-face on graphic terminals.
13430 (widget-move-and-invoke): Cleanup.
13431
13432 2005-10-23 Thien-Thi Nguyen <ttn@gnu.org>
13433
13434 * whitespace.el (whitespace-cleanup): Doc fix.
13435
13436 2005-10-23 Romain Francoise <romain@orebokech.com>
13437
13438 * emulation/viper.el (viper-set-hooks): Quote forms passed to
13439 `eval-after-load' to avoid evaluating their result.
13440
13441 2005-10-23 Michael Albinus <michael.albinus@gmx.de>
13442
13443 * files.el (directory-listing-before-filename-regexp):
13444 New defvar. Replaces `dired-move-to-filename-regexp' from dired.el.
13445
13446 * dired.el (dired-move-to-filename-regexp): Remove.
13447 All occurences replaced by `directory-listing-before-filename-regexp'.
13448
13449 * dired-x.el, locate.el, vc.el:
13450 Replace `dired-move-to-filename-regexp' by
13451 `directory-listing-before-filename-regexp'. In vc.el it is
13452 overwritten locally; maybe this can be handled in files.el too.
13453
13454 * net/ange-ftp.el (ange-ftp-date-regexp): Remove. All occurences
13455 replaced by `directory-listing-before-filename-regexp'.
13456
13457 2005-10-23 Andreas Schwab <schwab@suse.de>
13458
13459 * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
13460 and eval-next-after-load.
13461
13462 2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
13463
13464 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
13465 exist, create it.
13466
13467 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
13468
13469 * allout.el: Remove autoloads for mailcrypt and crypt++.
13470 Require pgg, pgg-gpg during compilation.
13471 (allout-version): Increment version number to 2.1, and use a literal
13472 rather than RCS Id.
13473 (allout-default-encryption-scheme): Remove.
13474 (allout-passphrase-verifier-handling)
13475 (allout-passphrase-verifier-string)
13476 (allout-file-passphrase-verifier-string)
13477 (allout-passphrase-hint-string): Rename -key- to -passphrase-.
13478 (allout-passphrase-hint-handling): Rename and simplify.
13479 (allout-init): Use `find-file-hook' if available, otherwise
13480 `find-file-hooks'.
13481 (allout-mode): Use `write-file-functions' if available, otherwise
13482 `local-write-file-hooks' and, instead of making auto-save-hook
13483 buffer local, make the write-file-hook activity contingent to
13484 allout-mode.
13485 (allout-mode): Use key-binding substitution in the docstring.
13486 (allout-kill-line): Spell-out kill ring data structure mutation
13487 instead of using byte-compiler-complaint-provoking `pop'.
13488 (allout-insert-listified): Use `insert' rather than `insert-string'
13489 (allout-toggle-current-subtree-encryption): Update docstring, adjust
13490 to new gpp-based encryption, use new `allout-encrypted-topic-p'.
13491 (allout-encrypt-string): Totally revamped vis new underlying
13492 encryption facilities.
13493 (allout-mc-activate-passwd): Remove.
13494 (allout-obtain-passphrase): New, more or less replaces
13495 allout-mc-activate-passwd.
13496 (allout-encrypted-key-info): More or less replaces
13497 allout-encrypted-text-type.
13498 (outlineify-sticky, outlinify-sticky): Add autoload cookie.
13499 (my-mark-marker): Use `(featurep 'xemacs)'.
13500
13501 2005-10-23 Lars Hansen <larsh@soem.dk>
13502
13503 * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
13504 (byte-compile-file-form-defmumble, byte-compile-defun)
13505 (byte-compile-defmacro): Use it.
13506 (byte-compile-form): Don't call byte-compile-set-symbol-position
13507 when a byte-compile handler is called.
13508
13509 2005-10-22 Romain Francoise <romain@orebokech.com>
13510
13511 * savehist.el (savehist-history-variables): Add `grep-find-history'.
13512
13513 * subr.el (eval-after-load): Convert library name to an absolute
13514 file name using locate-library, since load-history no longer has
13515 library names in it.
13516
13517 2005-10-22 Richard M. Stallman <rms@gnu.org>
13518
13519 * files.el (make-temp-file): Move from subr.el.
13520 * subr.el (make-temp-file): Move to files.el.
13521
13522 * window.el (get-buffer-window-list): Move from subr.el.
13523 * subr.el (get-buffer-window-list): Move to window.el.
13524
13525 * image.el (image-load-path): Use eval-at-startup to initialize.
13526
13527 * subr.el (eval-at-startup): New macro.
13528
13529 * subr.el: Much rearrangement of functions and division
13530 into pages. No code changes.
13531
13532 2005-10-22 Kenichi Handa <handa@m17n.org>
13533
13534 * tar-mode.el (tar-extract): Be sure to call
13535 find-operation-coding-system if set-auto-coding doesn't find a
13536 coding system.
13537
13538 2005-10-22 Kim F. Storm <storm@cua.dk>
13539
13540 * image.el (image-type-header-regexps): Rename from image-type-regexps.
13541 Change users.
13542 (image-type-file-name-regexps): New defconst.
13543 (image-type-from-data): Simplify loop.
13544 (image-type-from-buffer): New defun.
13545 (image-type-from-file-header): Use it instead of image-type-from-data.
13546 Use image-search-load-path instead of only looking in data-directory.
13547 (image-type-from-file-name): New defun.
13548 (image-search-load-path): Change `pathname' to `filename'.
13549 Make PATH arg optional, default to image-load-path.
13550
13551 2005-10-21 Richard M. Stallman <rms@gnu.org>
13552
13553 * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
13554
13555 * textmodes/paragraphs.el (sentence-end-base): New variable.
13556 (sentence-end): Use sentence-end-base.
13557
13558 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
13559
13560 * font-lock.el (font-lock-default-fontify-region): Check the multiline
13561 property independently from the font-lock-multiline variable.
13562
13563 2005-10-21 Richard M. Stallman <rms@gnu.org>
13564
13565 * emacs-lisp/find-func.el (find-library-name): Doc fix.
13566
13567 * startup.el (command-line): Convert library names
13568 in `load-history' to absolute file names.
13569
13570 * subr.el (symbol-file): Doc fix.
13571
13572 * loadhist.el (file-loadhist-lookup): Call locate-library
13573 instead of find-library-name. Don't try converting
13574 abs file names to library names, since load-history no longer
13575 has library names in it.
13576 (file-dependents, file-provides, file-requires): Doc fixes.
13577
13578 2005-10-21 Juri Linkov <juri@jurta.org>
13579
13580 * progmodes/etags.el (tags-table-mode): New function.
13581 (tags-verify-table): Replace initialize-new-tags-table with
13582 tags-table-mode.
13583
13584 * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
13585 default value.
13586 (desktop-modes-not-to-save): Add tags-table-mode to the
13587 default value.
13588
13589 * info.el (Info-index-next): Add total number of index
13590 alternatives to the message.
13591
13592 * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
13593 backward only space (instead of space and period) before looking
13594 at sentence end.
13595
13596 * simple.el (set-variable): Use user-variable-p instead of symbolp.
13597 Add the old variable value as 4th default-value arg of read-string.
13598
13599 2005-10-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13600
13601 * cus-face.el (custom-declare-face): Make face from X resources
13602 also on Mac.
13603
13604 * disp-table.el (standard-display-g1, standard-display-graphic):
13605 Refuse to use string glyphs also on Mac.
13606 (standard-display-european): Don't set terminal coding system also
13607 on Mac.
13608
13609 * frame.el (display-screens): Use x-display-screens also on Mac.
13610
13611 2005-10-21 Romain Francoise <romain@orebokech.com>
13612
13613 * net/rcirc.el: Now part of GNU Emacs. Update FSF's address.
13614
13615 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
13616
13617 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
13618 and $? into sexps.
13619
13620 * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
13621 warning face on open-paren-in-column-0.
13622
13623 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
13624 boundary case. Fix typo.
13625 Suggested by Martin Rudalics <rudalics@gmx.at>.
13626
13627 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
13628
13629 * textmodes/org.el (org-combined-agenda-icalendar-file)
13630 (org-icalendar-include-todo, org-icalendar-combined-name): New options.
13631 (org-export-icalendar-this-file)
13632 (org-export-icalendar-all-agenda-files)
13633 (org-export-icalendar-combine-agenda-files): New commands.
13634 (org-export-icalendar, org-print-icalendar-entries)
13635 (org-start-icalendar-file, org-finish-icalendar-file)
13636 (org-ical-ts-to-string): New functions.
13637 (org-read-date, org-goto-calendar)
13638 (org-agenda-goto-calendar): Inhibit displaying diary entries by
13639 call to `calendar'.
13640 (orgtbl-setup): Remove the :keys arguments from the menu description.
13641 (org-after-save-iCalendar-file-hook): New variable.
13642
13643 2005-10-21 Kenichi Handa <handa@m17n.org>
13644
13645 * language/vietnamese.el (tcvn-5712): Make it an alias of
13646 vietnamese-tcvn coding-system.
13647
13648 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
13649
13650 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
13651 group id is given.
13652
13653 2005-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
13654
13655 * progmodes/sh-script.el (sh-escaped-line-re): New var.
13656 (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
13657 (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
13658 whose line is either continued or ends with a comment.
13659
13660 2005-10-20 Romain Francoise <romain@orebokech.com>
13661
13662 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
13663
13664 * replace.el (occur-engine): Add follow-link property.
13665
13666 * font-core.el (font-lock-mode): Doc fix.
13667
13668 2005-10-20 Richard M. Stallman <rms@gnu.org>
13669
13670 * net/rcirc.el: New file.
13671
13672 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
13673
13674 * term.el (term-term-name): Initialize to "eterm-color".
13675
13676 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
13677
13678 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
13679 for encryption functionality.
13680 Move allout customization subgroup from `editing' to `outlines' group.
13681 Fix commentary keywords to legitimate ones.
13682 Update author info (using my current email address, obscurified).
13683 (allout-encrypt-string, allout-encryption-produce-work-buffer)
13684 (allout-encrypted-topic-p, allout-encrypted-text-type)
13685 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
13686 (allout-situate-encryption-key-verifier)
13687 (allout-get-encryption-key-verifier, allout-verify-key)
13688 (allout-next-topic-pending-encryption)
13689 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
13690 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
13691 (outline-key-verifier-handling, outline-key-hint-handling)
13692 (outline-encrypt-unencrypted-on-saves): New defcustoms.
13693 (allout-file-key-verifier-string, allout-encryption-scheme)
13694 (allout-key-verifier-string, allout-key-hint-string)
13695 (allout-after-save-decrypt): New variables.
13696 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
13697 (allout-after-saves-handler): New hook functions.
13698 (allout-post-command-business): Do allout-after-save-decrypt.
13699 (allout-enable-file-variable-adjustment): Custom var to enable
13700 mechanism for adding and adjusting settings of Emacs file variables.
13701 (allout-adjust-file-variable, allout-file-vars-section-data):
13702 New functions, implement the mechanism.
13703 (outlineify-sticky): Use the file vars mechanism.
13704 (allout-inhibit-protection, allout-during-write-cue)
13705 (allout-override-protect, allout-before-change-protect): Remove.
13706 (allout-flag-region, allout-open-topic): Adjust read-only text.
13707 (allout-open-line-not-read-only): Add to facilitate read-only
13708 text based protection.
13709 (allout-kill-line): Revise to adjust read-only text, clue the
13710 user about the inhibition.
13711 (allout-unprotected): Use unwind-protect.
13712 (allout-shift-in, allout-shift-out): Disallow manually shifting a
13713 topic deeper than the offspring depth of the previous topic -
13714 avoiding confusing "containment discontinuities".
13715 (allout-reindent-bodies): Fix retention of body relative hanging
13716 indent during promotion of collapsed bodies.
13717 (allout-open-topic): Make it easy to open new topic with same
13718 bullet as current topic - topic creation functions provided with
13719 any universal argument provokes now prompt for bullet, defaulting
13720 to the bullet of the previous topic.
13721 (allout-plain-bullets-string, allout-distinctive-bullets-string):
13722 Plain bullet alternates `.' period and `,' comma only. All other
13723 bullets are relegated to special status (but customizable).
13724 (allout-end-of-entry): Rename from allout-end-of-current-entry
13725 since it actually operates w.r.t. most immediately containing
13726 entry, visible or not.
13727 (allout-hide-current-entry, allout-show-current-entry): Use the
13728 revised version.
13729 (allout-old-expose-topic): Solidify deprecation.
13730 (allout-end-of-subtree): Add so we can span concealed as well
13731 as visible topics.
13732 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
13733 (allout-end-of-current-heading): Tweak to just respect the first line.
13734 (allout-get-body-text): Add.
13735 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
13736 when invoked interactively.
13737 (allout-up-current-level): Use `interactive-p'.
13738 (allout-mode, allout-init): Miscellaneous docstring and
13739 operational refinements, as well as hookups of new encryption stuff.
13740 (allout-beginning-of-current-entry): Now works as advertised.
13741 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
13742 (allout-isearch-rectification): Refine condition for isearching.
13743 (allout-isearch-abort, allout-enwrap-isearch)
13744 (allout-flag-region, my-region-active-p): Relocate some macros.
13745 (allout-title): Fallback title is (buffer-name), not
13746 non-existing (current-buffer-name).
13747 (subst-char-in-string): Define if absent (for some XEmacs versions).
13748
13749 2005-10-20 Jari Aalto <jari.aalto@cante.net>
13750
13751 * mail/sendmail.el (mail-setup-hook, mail-aliases)
13752 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
13753 (mail-citation-prefix-regexp, mail-signature-file)
13754 (mail-default-headers, mail-bury-selects-summary)
13755 (mail-send-nonascii): Add autoload cookies.
13756
13757 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
13758
13759 * frame.el (blink-cursor-mode): Add `mac' to the list of
13760 window-system's that support blinking cursor.
13761
13762 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
13763
13764 * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
13765
13766 2005-10-20 Eli Zaretskii <eliz@gnu.org>
13767
13768 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
13769 Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
13770 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
13771
13772 2005-10-20 Kim F. Storm <storm@cua.dk>
13773
13774 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
13775 (ido-set-current-directory): Don't add / after final @.
13776 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
13777 Explicitly handle ange-ftp completion oddities.
13778 (ido-make-file-list): Don't rotate list at tramp root to avoid
13779 triggering tramp file handler for expand-file-name via get-file-buffer.
13780
13781 2005-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
13782
13783 * savehist.el (savehist-coding-system): Revert to checking XEmacs.
13784
13785 2005-10-19 Jay Belanger <belanger@truman.edu>
13786
13787 * calc/calc-units.el (math-standard-units): Add units, adjust
13788 symbols and update values.
13789 (math-unit-prefixes): Add more prefixes.
13790
13791 2005-10-19 Romain Francoise <romain@orebokech.com>
13792
13793 * bookmark.el (bookmark-menu-heading): New face.
13794 (bookmark-bmenu-list): Use it.
13795 Don't fiddle with `baud-rate' at top-level.
13796
13797 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
13798
13799 * image.el (create-image, find-image): Mention max-image-size in
13800 docstring.
13801
13802 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13803
13804 * savehist.el (savehist-load): Revert to checking XEmacs.
13805
13806 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
13807 Various docstring and line-width fixups.
13808 (conf-mode): Use cond.
13809 Set font-lock-defaults. Don't set comment-use-syntax.
13810
13811 2005-10-18 David Ponce <david@dponce.com>
13812
13813 * tree-widget.el (tree-widget-button-click): New function.
13814 (tree-widget-button-keymap): Use it.
13815
13816 2005-10-18 Romain Francoise <romain@orebokech.com>
13817
13818 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
13819 (bookmark-bmenu-hide-filenames): Add follow-link property.
13820 Improve help-echo text.
13821
13822 * ffap.el (find-file-at-point): Doc fix.
13823
13824 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13825
13826 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
13827
13828 2005-10-18 Masatake YAMATO <jet@gyve.org>
13829
13830 Install to the CVS repository what I forgot to install in my
13831 2005-10-16 changes.
13832
13833 * progmodes/python.el (python-complete-symbol): Pass the common
13834 prefix substring of completion to `display-completion-list'.
13835
13836 * textmodes/org.el (org-complete): Ditto.
13837
13838 2005-10-18 Masatake YAMATO <jet@gyve.org>
13839
13840 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
13841
13842 * woman.el (WoMan-xref-man-page): New button type derived
13843 from `Man-abstract-xref-man-page'.
13844 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
13845
13846 * man.el (Man-abstract-xref-man-page): New button type.
13847 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
13848 (Man-highlight-references): Add new optional argument `xref-man-type'.
13849
13850 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
13851
13852 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
13853
13854 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
13855
13856 * cus-edit.el (Custom-move-and-invoke): Delete.
13857 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
13858
13859 * wid-edit.el (widget-move-and-invoke): New function, from
13860 Custom-move-and-invoke.
13861
13862 2005-10-17 Bill Wohler <wohler@newt.com>
13863
13864 Move all remaining images from lisp/toolbar to etc/images, move
13865 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
13866 the low resolution images in their own directory (low-color).
13867
13868 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*
13869 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*
13870 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*
13871 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*
13872 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*
13873 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*
13874 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
13875
13876 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
13877 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
13878 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
13879 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
13880 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
13881 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
13882 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
13883 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
13884 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
13885 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
13886 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
13887 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
13888 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
13889 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
13890 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
13891
13892 To conform with convention, replace the underscore (_) in the
13893 following image names with dash (-) or (/) as appropriate.
13894
13895 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
13896 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
13897 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
13898 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
13899 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
13900 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
13901 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
13902 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
13903 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
13904 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
13905 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
13906 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
13907 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
13908 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
13909 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
13910
13911 * info.el (info-tool-bar-map): Replace underscores in image names
13912 with dashes.
13913
13914 * makefile.w32-in (WINS): Remove toolbar.
13915
13916 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
13917
13918 * tool-bar.el: Move to lisp from toolbar. Now that
13919 toolbar is empty, it should be deleted when folks run "cvs up -P".
13920
13921 2005-10-18 Jay Belanger <belanger@truman.edu>
13922
13923 * calc/calc-store.el (calc-store-into): Get the proper variable name
13924 to display in message.
13925
13926 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
13927
13928 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
13929 expressions display in speedbar for all buffers when debugging.
13930 (gdb-speedbar-expand-node): Ensure node contraction is always updated.
13931
13932 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
13933 (speedbar-insert-button, speedbar-make-button):
13934 Use add-text-properties.
13935 (speedbar-update-localized-contents)
13936 (speedbar-update-directory-contents)
13937 (speedbar-update-special-contents): Use dolist.
13938 (speedbar-buffer-easymenu-definition): Add a menu separator.
13939
13940 2005-10-17 Jason Rumney <jasonr@gnu.org>
13941
13942 * makefile.w32-in: Use $(lisp) consistently.
13943 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
13944 for shell specific generation of mh-autoloads.
13945
13946 2005-10-17 Richard M. Stallman <rms@gnu.org>
13947
13948 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
13949
13950 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13951
13952 * jit-lock.el (jit-lock-fontify-now):
13953 Move jit-lock-context-unfontify-pos to avoid wasted work.
13954
13955 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
13956
13957 * net/tramp.el (tramp-completion-mode): New defvar. Used in
13958 `tramp-completion-mode' for checking if we are in completion mode.
13959 (tramp-completion-handle-file-name-all-completions): Reorder code
13960 in order to complete for file names only in case there are no
13961 method/user/host completions. This is necessary for cooperation
13962 with ido. Reported by Kim F. Storm <storm@cua.dk>.
13963
13964 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
13965
13966 * longlines.el (longlines-search-forward)
13967 (longlines-search-backward): Match any number of spaces.
13968
13969 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
13970
13971 * diff-mode.el (diff-mode): Doc fix.
13972
13973 2005-10-16 David Reitter <david.reitter@gmail.com>
13974
13975 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
13976 as default on darwin and windows systems.
13977
13978 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
13979
13980 * arc-mode.el (archive-zip-extract): Doc fix.
13981
13982 2005-10-16 Romain Francoise <romain@orebokech.com>
13983
13984 * mouse.el (mouse-1-click-follows-link): Doc fix.
13985
13986 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
13987
13988 * savehist.el: Don't require CL at runtime.
13989 (savehist-xemacs): Remove.
13990 (savehist-coding-system): Use utf-8 if present, regardless of religion.
13991 (savehist-no-conversion): Use (featurep 'xemacs).
13992 (savehist-load): Check existence of start-itimer rather than XEmacs.
13993 Use an idle timer.
13994 (savehist-process-for-saving): Replace use of CL funs `subseq' and
13995 `delete-if-not'.
13996
13997 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
13998
13999 * savehist.el: Newer version.
14000 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
14001 (savehist-last-checksum, savehist-no-conversion): New vars.
14002 (savehist-autosave, savehist-process-for-saving, savehist-printable):
14003 New functions.
14004 (savehist-load, savehist-save): Use them.
14005 (savehist-delimit): Remove.
14006
14007 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
14008
14009 * progmodes/compile.el (compilation-goto-locus): Display the
14010 compilation buffer first and the source buffer second, in case they're
14011 in overlapping frames. Don't raise the compilation frame if it was the
14012 selected window upon entry. Pass the `other-window' arg to
14013 pop-to-buffer.
14014
14015 * info.el (Info-fontify-node): Use dolist.
14016 Change add-text-properties to put-text-property.
14017
14018 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14019
14020 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
14021 bound of search.
14022
14023 2005-10-16 Masatake YAMATO <jet@gyve.org>
14024
14025 * dabbrev.el (dabbrev-completion): Pass the common
14026 prefix substring of completion to `display-completion-list'.
14027
14028 * filecache.el (file-cache-minibuffer-complete)
14029 (file-cache-complete): Ditto.
14030
14031 * tempo.el (tempo-display-completions): Ditto.
14032
14033 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
14034
14035 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
14036
14037 * eshell/em-hist.el (eshell-list-history): Ditto.
14038
14039 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
14040
14041 * mail/mailalias.el (mail-complete): Ditto.
14042
14043 * progmodes/etags.el (complete-tag): Ditto.
14044
14045 * progmodes/make-mode.el (makefile-complete): Ditto.
14046
14047 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
14048
14049 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
14050
14051 * progmodes/pascal.el (pascal-complete-word)
14052 (pascal-show-completions): Ditto.
14053
14054 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
14055
14056 * simple.el (completion-common-substring): New variable.
14057 (completion-setup-function): Use `completion-common-substring'
14058 to put faces.
14059
14060 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14061
14062 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
14063 (x-get-selection, mac-select-convert-to-string): Convert from/to
14064 UTF-16 clipboard data as in native byte order, no BOM.
14065
14066 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
14067
14068 * progmodes/gud.el (gud-tool-bar-map): Rename the images
14069 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
14070 (gud-sentinel): Use speedbar-frame to check for speedbar.
14071
14072 2005-10-15 Richard M. Stallman <rms@gnu.org>
14073
14074 * savehist.el: New file.
14075
14076 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
14077
14078 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
14079 Fix bug in \bf fontification.
14080
14081 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
14082
14083 * pcvs.el (cvs-edit-log-files): New var.
14084 (cvs-mode-edit-log): New arg `file'.
14085 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
14086 Instead force the use of the original file and nothing else.
14087 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
14088 the cvs-minor-wrap-function is set.
14089 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
14090
14091 2005-10-14 Bill Wohler <wohler@newt.com>
14092
14093 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
14094 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
14095 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
14096 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
14097 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
14098 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
14099 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
14100 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
14101 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
14102 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
14103 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
14104 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
14105 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
14106 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
14107 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
14108
14109 * progmodes/gud.el (gud-tool-bar-map): Rename the images
14110 appropriately (for example, gud-break to gud/break).
14111
14112 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
14113
14114 * longlines.el (longlinges-search-function)
14115 (longlines-search-forward, longlines-search-backward): New functions.
14116 (longlines-mode): Set isearch-search-fun-function to
14117 longlinges-search-function.
14118
14119 * mouse.el (mouse-drag-region-1): Handle the case where a
14120 double-click event is bound to an arbitrary function.
14121
14122 2005-10-14 David Ponce <david@dponce.com>
14123
14124 * recentf.el (recentf-track-opened-file)
14125 (recentf-track-closed-file, recentf-update-menu)
14126 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
14127 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
14128 mouse-1-click-follows-link.
14129
14130 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14131
14132 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
14133 Gnome file-manager.png. Suggested by
14134 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
14135
14136 * toolbar/README: Add diropen.xpm.
14137
14138 2005-10-13 Bill Wohler <wohler@newt.com>
14139
14140 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
14141 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
14142
14143 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
14144
14145 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
14146 Don't waste the byte-compiler's time on constant data.
14147
14148 2005-10-13 Kenichi Handa <handa@m17n.org>
14149
14150 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
14151 byte with `escape-glyph' face.
14152
14153 * international/fontset.el (ccl-encode-unicode-font):
14154 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
14155 Handle the case that ucs-mule-to-mule-unicode translates a character to
14156 ASCII (usually for IPA characters).
14157
14158 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14159
14160 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
14161 Don't hide the underline of titles if font-lock-mode is disabled.
14162
14163 2005-10-12 Bill Wohler <wohler@newt.com>
14164
14165 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
14166 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
14167 files in MH-E-SRC have been updated.
14168 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
14169
14170 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14171
14172 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
14173 (mixal-mode-syntax-table): Add \n as end-comment.
14174 (mixal-operation-codes-alist): Immediately initialize to full value.
14175 (mixal-add-operation-code): Remove.
14176 (mixal-describe-operation-code): Make the arg non-optional.
14177 Use the interactive spec instead.
14178 Use mixal-operation-codes-alist rather than mixal-operation-codes.
14179 (mixal-font-lock-keywords): Don't highlight comments here any more.
14180 (mixal-font-lock-syntactic-keywords): New var.
14181 (mixal-mode): Use it. Fix comment-start-skip.
14182
14183 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14184
14185 * startup.el (command-line-x-option-alist): -nb => -nbi
14186
14187 2005-10-12 Kim F. Storm <storm@cua.dk>
14188
14189 * startup.el (fancy-splash-default-action): Discard mouse click in
14190 the splash screen window, as it has no sensible meaning in the
14191 next window to be selected. Fixes error reported by Jan D.
14192
14193 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
14194
14195 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
14196
14197 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14198
14199 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
14200 Try to fix up minor layout issues like indentation, line break, etc...
14201 (mixal-mode-syntax-table): Don't try to specify comment syntax,
14202 because it doesn't work.
14203 (mixal-operation-codes): Add some more codes.
14204 (mixal-font-lock-keywords): Process comments here.
14205 (mixal-mode): mixasm no longer needs -g option.
14206
14207 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
14208
14209 * progmodes/sh-script.el (sh-tmp-file):
14210 Use mktemp -t. Finish support for es and rc shells.
14211
14212 2005-10-11 Jay Belanger <belanger@truman.edu>
14213
14214 * calc/calcalg2.el (calc-integral): With an argument, compute the
14215 definite integral.
14216
14217 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
14218
14219 * mouse.el (mouse-drag-region-1): Don't try to catch a
14220 double-click when doing follow-link (it's overridden anyway).
14221
14222 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
14223
14224 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
14225 (autoload-print-form-outbuf): Add docstring.
14226
14227 2005-10-11 Juri Linkov <juri@jurta.org>
14228
14229 * info.el (Info-mode-menu): Delete menu item "Edit".
14230 (Info-mode): Delete description of Info-edit from docstring,
14231 and rearrange descriptions of Info commands in the order
14232 they are documented in the Info manual.
14233
14234 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14235
14236 * calendar/appt.el (appt-check): Use diary-selective-display var.
14237
14238 2005-10-10 Richard M. Stallman <rms@gnu.org>
14239
14240 * net/newsticker.el (newsticker-start, newsticker-show-news):
14241 Add autoload cookies.
14242
14243 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
14244
14245 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
14246
14247 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
14248
14249 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
14250
14251 2005-10-10 Jay Belanger <belanger@truman.edu>
14252
14253 * calc/calc-arith.el (math-check-known-scalarp)
14254 (math-check-known-matrixp): Check the values of arguments that are
14255 variables.
14256 (math-check-known-square-matrixp): New function.
14257 (math-known-square-matrixp): Use math-check-known-square-matrixp.
14258 (math-super-types): Add sqmatrix type.
14259
14260 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
14261 mode name `square' to `sqmatrix'.
14262
14263 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
14264 mode name `square' to `sqmatrix'.
14265
14266 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
14267
14268 * progmodes/etags.el (select-tags-table-mode): Don't use
14269 selective-display.
14270 (tags-select-tags-table): Pass `button' to the action function.
14271 (select-tags-table): Place the side-info on button properties rather
14272 than in hidden text. Abbreviate file names.
14273 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
14274 (select-tags-table-select): Add `button' argument.
14275 Get side-info from the button property rather than from hidden text.
14276
14277 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
14278
14279 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
14280 (gud-speedbar-buttons): Preserve point if possible.
14281 (gud-sentinel): Restore previous speedbar display type.
14282
14283 * progmodes/gdb-ui.el (gdba): Improve diagram.
14284 (def-gdb-auto-update-handler, gdb-info-locals-handler)
14285 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
14286 Call get-buffer-window once.
14287
14288 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
14289
14290 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
14291 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
14292 (pascal-indent-command): Remove unused var `ind'.
14293 (pascal-indent-case): Remove unused var `oldpos'.
14294 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
14295 since it's now used as a proper minor mode map.
14296 (pascal-outline): Rename to pascal-outline-mode.
14297 (pascal-outline-mode): Use define-minor-mode.
14298 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
14299 selective-display.
14300
14301 2005-10-10 Andreas Schwab <schwab@suse.de>
14302
14303 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
14304 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
14305
14306 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
14307 outside source directory.
14308
14309 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
14310
14311 * textmodes/org.el (org-mode-map): Explicit definition of `C-c
14312 C-x' as a prefix.
14313 (orgtbl-mode-map): Full keymap instead of sparse, because all
14314 `self-insert-command' keys are redefined in this map.
14315 (org-export-as-html): Specify charset for HTML file, by taking it
14316 from the coding system.
14317
14318 2005-10-10 Kenichi Handa <handa@m17n.org>
14319
14320 * textmodes/flyspell.el (flyspell-check-word-p):
14321 If unread-command-events is non-empty, don't call sit-for.
14322
14323 2005-10-09 Richard M. Stallman <rms@gnu.org>
14324
14325 * font-lock.el (font-lock-syntactic-keywords)
14326 (font-lock-keywords): Doc fixes.
14327
14328 * textmodes/flyspell.el (flyspell-external-point-words):
14329 Simplify logic, and don't try to check for consecutive appearances
14330 of one incorrect word.
14331
14332 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
14333
14334 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
14335 separator.
14336
14337 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
14338 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
14339 (gud-expansion-speedbar-buttons): New function.
14340 (gud-speedbar-buttons): Check for gud-comint-buffer.
14341
14342 2005-10-09 Bill Wohler <wohler@newt.com>
14343
14344 * Makefile.in (updates): Add mh-loaddefs dependency.
14345
14346 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
14347
14348 * speedbar.el (speedbar-file-key-map): Fix typo.
14349
14350 2005-10-09 Daniel Brockman <daniel@brockman.se>
14351
14352 * cus-start.el (line-spacing): Add custom spec.
14353
14354 2005-10-09 Romain Francoise <romain@orebokech.com>
14355
14356 * textmodes/ispell.el (ispell-check-version): Fix last change.
14357
14358 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14359
14360 * term/x-win.el: Remove -i, --icon-type from comment.
14361
14362 * startup.el (command-line-x-option-alist): Remove options -i,
14363 -itype, --icon-type, added -nb, --no-bitmap-icon
14364
14365 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
14366
14367 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
14368 instead of :active.
14369
14370 2005-10-08 Eric Hanchrow <offby1@blarg.net> (tiny change)
14371
14372 * textmodes/ispell.el (ispell-check-version):
14373 Ignore hyphen, and all that follows, in aspell's version text.
14374
14375 2005-10-08 Jay Belanger <belanger@truman.edu>
14376
14377 * calc/calc-arith.el (math-known-square-matrixp): New function.
14378 (math-pow-fancy): Check for matrices before distributing exponent
14379 across products.
14380
14381 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
14382 fullscreen keypad. Suggested by Luc Teirlinck.
14383 (calc-keypad-show-input): Add space for formatting.
14384
14385 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
14386 Add square matrix option.
14387
14388 * calc/calc-poly.el (math-expand-term): Check for matrices instead
14389 of checking calc-matrix-mode when deciding how to expand.
14390
14391 * calc/calc.el (calc-set-mode-line): Add square matrix option.
14392
14393 2005-10-08 Lars Hansen <larsh@soem.dk>
14394
14395 * net/tramp.el (tramp-perl-directory-files-and-attributes):
14396 Add error handling.
14397 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
14398
14399 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
14400
14401 Sync with Tramp 2.0.51.
14402
14403 * net/tramp.el (tramp-handle-set-visited-file-modtime)
14404 (tramp-handle-insert-file-contents, tramp-handle-write-region):
14405 Insert special handling for `last-coding-system-used', again
14406 it still seems to be necessary (unlike stated before).
14407 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
14408 (tramp-password-prompt-regexp): There might be other words before
14409 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
14410 (tramp-chunksize): Improve docstring.
14411 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
14412 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
14413 Christian Joergensen <bugs@razor.dk>.
14414
14415 2005-10-07 Glenn Morris <rgm@gnu.org>
14416
14417 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
14418 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
14419 precision'.
14420
14421 2005-10-07 Romain Francoise <romain@orebokech.com>
14422
14423 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
14424 (ibuffer-do-shell-command-pipe-replace)
14425 (ibuffer-do-shell-command-file, ibuffer-do-eval)
14426 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
14427 (ibuffer-do-revert, ibuffer-do-replace-regexp)
14428 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
14429 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
14430 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
14431 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
14432 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
14433 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
14434 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
14435 Autoload file sans suffix.
14436
14437 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
14438
14439 2005-10-07 David Ponce <david@dponce.com>
14440
14441 * recentf.el (recentf-menu-open-all-flag): New option.
14442 (recentf-digit-shortcut-command-name): New function.
14443 (recentf--shortcuts-keymap): New variable.
14444 (recentf-menu-shortcuts): New variable.
14445 (recentf-make-menu-items): Initialize it. Replace the "More..."
14446 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
14447 (recentf-menu-value-shortcut): New function.
14448 (recentf-make-menu-item): Use it. No more in-lined.
14449 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
14450 (recentf-open-most-recent-file): Rename from
14451 `recentf-open-file-with-key'. Don't depend on key binding.
14452 (recentf-mode-map): New variable.
14453 (recentf-mode): Use it.
14454
14455 2005-10-06 Bill Wohler <wohler@newt.com>
14456
14457 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
14458
14459 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
14460 (MH-E-SRC): New. Used by mh-autoloads.
14461 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
14462 files in MH-E-SRC have been updated.
14463 (compile, recompile, bootstrap): Depend on mh-autoloads.
14464
14465 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
14466
14467 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
14468 gud-break and gud-remove icons when the fringe is not available.
14469
14470 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
14471 Typo.
14472
14473 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
14474
14475 * play/zone.el (zone): Wrap body with save-window-excursion.
14476
14477 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
14478
14479 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
14480 Use the new `list-only' arg to diary-list-entries.
14481
14482 * calendar/diary-lib.el: Use overlays rather than selective-display.
14483 (diary-selective-display): New var.
14484 (diary-header-line-format): Use it.
14485 (diary-list-entries): Add argument `list-only'.
14486 Put the buffer in diary-mode. Don't add \^M at beg and end.
14487 Replace \^M by invisible overlays.
14488 (diary-unhide-everything): Replace \^M by invisible overlays.
14489 (print-diary-entries): Look for overlays rather than \^M.
14490 Add a space to the temp buffer name.
14491 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
14492 Put the buffer in diary-mode.
14493 (list-sexp-diary-entries): Replace \^M by invisible overlays.
14494 (diary-anniversary): Make the year arg optional.
14495 (diary-time-regexp): New const.
14496 (diary-font-lock-keywords): Use it to accept a few more time formats.
14497
14498 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
14499
14500 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
14501
14502 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
14503 Fix bug introduced 2005-07-03: Use (car (last ...))
14504 to faithfully reproduce replaced artist-last.
14505 (artist-set-arrow-points-for-poly): Likewise.
14506 Suggested by Johan Bockg\e,Ae\e(Brd.
14507
14508 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
14509
14510 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
14511 * wid-edit.el (widget):
14512 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
14513 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
14514
14515 2005-10-06 Kenichi Handa <handa@m17n.org>
14516
14517 * international/mule-cmds.el (set-language-environment):
14518 Fix setting up of case-table for unibyte mode.
14519
14520 * simple.el (what-cursor-position): If the character is displayed
14521 by some `display' text property, show that. Don't use
14522 single-key-description for eight-bit characters in multibyte mode.
14523
14524 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
14525
14526 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
14527 (gdb-ann3): Set it.
14528 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
14529 (gdb-info-frames-custom): Use inverse-video for first five
14530 characters of selected frame only.
14531 (gdb-get-frame-number): Select frame even when point is on frame
14532 number.
14533
14534 2005-10-06 Masatake YAMATO <jet@gyve.org>
14535
14536 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
14537 Put `font-lock-function-name-face'.
14538 (gdb-info-frames-custom): Put `font-lock-function-name-face'
14539 and `font-lock-variable-name-face'
14540 (gdb-registers-font-lock-keywords): New font lock keywords definition.
14541 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
14542 (gdb-memory-font-lock-keywords): New font lock keywords definition.
14543 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
14544 (gdb-local-font-lock-keywords): New font lock keywords definition.
14545 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
14546 (gdb-threads-font-lock-keywords): New font lock keywords definition.
14547 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
14548
14549 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
14550
14551 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
14552 (ediff-merge-region-is-non-clash-to-skip): Previously called
14553 ediff-merge-region-is-non-clash.
14554
14555 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
14556 Use insert-buffer-substring.
14557
14558 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
14559 selecting files to patch. Also bug fixes.
14560
14561 * ediff-util.el (ediff-setup): Bug fix.
14562 (ediff-next-difference): Never skip clashes that differ in white
14563 space only.
14564
14565 * ediff-wind.el (ediff-setup-control-frame)
14566 (ediff-destroy-control-frame): Check the menubar feature.
14567
14568 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
14569 (viper-refresh-mode-line): Use make-local-variable to localize
14570 some vars instead of make-variable-buffer-local. Suggested by
14571 Stefan Monnier.
14572
14573 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
14574 (viper-restore-cursor-type, viper-set-insert-cursor-type):
14575 Use make-local-variable instead of make-variable-buffer-local.
14576 Suggested by Stefan Monnier.
14577
14578 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
14579 (viper-comint-mode-hook): Use make-local-variable on
14580 require-final-newline.
14581 (viper-non-hook-settings): Don't use make-variable-buffer-local.
14582
14583 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
14584
14585 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
14586 also the second char of a comment-start sequence.
14587 (scheme-sexp-comment-syntax-table): New var.
14588 (lambda, define): Set their scheme-doc-string-elt property.
14589 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
14590 Use lisp-font-lock-syntactic-face-function now that it properly
14591 handles |...| symbols.
14592 (scheme-mode-variables): Set lisp-doc-string-elt-property,
14593 parse-sexp-lookup-properties and font-lock-extra-managed-props.
14594
14595 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
14596 bit from # to |.
14597 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
14598
14599 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
14600 (lisp-doc-string-elt-property): New var.
14601 (lisp-font-lock-syntactic-face-function): Use it.
14602 Rewrite to recognize docstrings even for forms not at toplevel.
14603
14604 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
14605 annotation on the | part of #| rather than on the # part.
14606 (scheme-font-lock-syntactic-face-function): New function, to
14607 distinguish strings from |...| symbols.
14608 (scheme-mode-variables): Use it. Also fix up the font-lock-time
14609 syntax-table so that #|...|# is properly highlighted.
14610
14611 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
14612 Don't mark as docstring the 3rd elem of an unknown toplevel form.
14613
14614 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
14615
14616 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
14617 and C-e.
14618
14619 * emacs-lisp/eldoc.el: Move comments into docstrings.
14620 (eldoc-message-commands): Initialize in its declaration.
14621 Add move-beginning-of-line and move-end-of-line.
14622 (eldoc-add-command, eldoc-add-command-completions)
14623 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
14624
14625 * outline.el (outline-mark-subtree): Activate the mark.
14626
14627 * calendar/appt.el (appt-time-regexp): New var.
14628 (appt-add, appt-make-list): Use it.
14629 (appt-convert-time): Clean up.
14630
14631 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
14632 Don't set any syntax-table property here.
14633 (tex-font-lock-verb): New function. Do it here.
14634 (tex-font-lock-syntactic-keywords): Use it.
14635
14636 2005-10-04 Richard M. Stallman <rms@gnu.org>
14637
14638 * wid-edit.el (widget-file-complete): Get the widget start point
14639 the right way. Default directory to `/' if file has none.
14640
14641 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
14642
14643 * textmodes/flyspell.el (flyspell-mode-on):
14644 Call ispell-maybe-find-aspell-dictionaries.
14645
14646 * textmodes/ispell.el (ispell-word, ispell-region):
14647 Call ispell-maybe-find-aspell-dictionaries.
14648 (ispell-accept-buffer-local-defs):
14649 Don't call ispell-maybe-find-aspell-dictionaries
14650
14651 2005-10-04 Richard M. Stallman <rms@gnu.org>
14652
14653 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
14654
14655 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
14656
14657 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
14658 instead of `fboundp' in order to allow for anonymous functions.
14659
14660 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
14661
14662 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
14663 case the user clicks on the link while another window is selected.
14664 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
14665
14666 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
14667 functionality.
14668 (dframe-help-echo): Save point in case mouse tracking is off.
14669
14670 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
14671
14672 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
14673
14674 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14675
14676 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
14677 not change the global value of those vars.
14678
14679 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
14680 make-local-variable which we do not need any more.
14681
14682 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
14683
14684 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
14685 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
14686 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
14687 (speedbar-path-line): Define obsolete aliases.
14688 (speedbar-line-directory): Doc fix.
14689
14690 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
14691 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
14692 instead of speedbar-line-path.
14693
14694 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14695
14696 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
14697 to nil if dropping on a window. Handle dropping on a minibuffer window
14698 like dropping on a non-window part of Emacs.
14699
14700 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14701
14702 * net/ange-ftp.el: Use with-current-buffer.
14703 (ange-ftp-insert-directory): Do not follow symlinks any more.
14704
14705 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
14706 Remove interactive spec.
14707
14708 2005-10-03 Kim F. Storm <storm@cua.dk>
14709
14710 * ido.el (ido-mode): Use custom-initialize-set.
14711
14712 2005-10-02 Richard M. Stallman <rms@gnu.org>
14713
14714 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
14715 Use insert-buffer-substring.
14716
14717 * net/tramp.el: Pacify byte compiler warnings in pacification code.
14718 (tramp-handle-file-local-copy): Use insert-buffer-substring.
14719
14720 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14721
14722 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
14723 in last change.
14724 (ange-ftp-insert-directory): Fix up the search for the case where
14725 `file' is absolute.
14726
14727 2005-10-02 Romain Francoise <romain@orebokech.com>
14728
14729 * progmodes/compile.el (compile-goto-error): Delete extra paren.
14730
14731 2005-10-02 Andreas Schwab <schwab@suse.de>
14732
14733 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
14734 directory component in the session info.
14735
14736 2005-10-01 Richard M. Stallman <rms@gnu.org>
14737
14738 * comint.el (comint-redirect-subvert-readonly): Doc fix.
14739
14740 * simple.el (next-error-internal): New function.
14741
14742 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
14743 (compilation-start): Pass new arg to compilation-buffer-name.
14744 (compile-goto-error): Use next-error-internal.
14745
14746 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
14747
14748 * speedbar.el: Remove RCS tag.
14749 (speedbar-check-read-only): Handle non-existent files.
14750
14751 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
14752
14753 * info.el (Info-speedbar-hierarchy-buttons)
14754 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
14755
14756 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14757
14758 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
14759 Do not match newline.
14760 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
14761 (bibtex-summary): Remove unnecessary save-excursion.
14762 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
14763
14764 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14765
14766 * term/mac-win.el: Add charset info for "iso10646-1".
14767 Modify default fontset to use ATSUI-compatible fonts for some charsets
14768 if available.
14769
14770 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
14771
14772 * speedbar.el: Re-apply arch tag.
14773 (speedbar-version): Rename to version 1.0. Suggested by Eric
14774 M. Ludlam.
14775 Reapply two changes from Emacs CVS' version of speedbar lost
14776 during the merge:
14777 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
14778 (speedbar-frame-parameters): Improve customize type.
14779
14780 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
14781
14782 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
14783 (ange-ftp-file-directory-p): Fix the symlink case.
14784 (ange-ftp-insert-directory): When listing a single file, get a list of
14785 the parent buffer and extract the relevant line. Inspired from a patch
14786 by Katsumi Yamaoka <yamaoka@jpl.org>.
14787 (ange-ftp-file-name-sans-versions): Simplify.
14788
14789 2005-09-30 Bill Wohler <wohler@newt.com>
14790
14791 Move MH-E image files from toolbar and mail directories into
14792 etc/images.
14793
14794 * mail/reply2.*: Move to etc/images/mail/reply*.
14795
14796 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
14797 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
14798 etc/images.
14799
14800 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
14801 * toolbar/reply*: Move to etc/images/mail.
14802
14803 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
14804
14805 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
14806
14807 * speedbar.el: New version 1.0pre3.
14808
14809 Frame management code (including timer, and mouse click specifics)
14810 moved to dframe.el:
14811 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
14812 (speedbar-timer): Removed. Use dframe-timer.
14813 (speedbar-close-frame): Removed. Use dframe-close-frame.
14814 (speedbar-activity-change-focus-flag): Removed. Use
14815 dframe-activity-change-focus-flag.
14816 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
14817 dframe-update-speed.
14818
14819 (speedbar-current-frame): New macro. Use this instead of the
14820 variable speedbar-frame.
14821
14822 (speedbar-use-images, speedbar-expand-image-button-alist)
14823 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
14824
14825 (speedbar-find-image-on-load-path): Removed. Replaced by
14826 defezimage in ezimage.el.
14827 (speedbar-expand-image-button-alist): Removed. Replaced by
14828 ezimage-expand-image-button-alist in ezimage.el.
14829
14830 (speedbar-ignored-directory-regexp)
14831 (speedbar-add-ignored-directory-regexp)
14832 (speedbar-ignored-directory-expressions)
14833 (speedbar-line-directory, speedbar-buffers-line-directory)
14834 (speedbar-directory-line, speedbar-buffers-line-directory):
14835 Renamed, replacing `path' with `directory'.
14836
14837 (speedbar-create-directory, speedbar-expand-line-descendants)
14838 (speedbar-toggle-line-expansion)
14839 (speedbar-contract-line-descendants): New commands.
14840
14841 (speedbar-query-confirmation-method, speedbar-select-frame-method)
14842 (speedbar-use-tool-tips-flag): New options.
14843
14844 (speedbar-check-read-only, speedbar-require-version)
14845 (speedbar-insert-separator, speedbar-buffers-tail-notes)
14846 (speedbar-handle-delete-frame, speedbar-try-completion)
14847 (speedbar-update-localized-contents): New functions.
14848
14849 (speedbar-incompatible-version, speedbar-ro-to-do-point)
14850 (speedbar-object-read-only-indicator): New variables.
14851
14852 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
14853 New hooks.
14854
14855 (speedbar-separator-face): New face.
14856
14857 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
14858 (speedbar-ignored-modes): Add fundamental-mode.
14859 (speedbar-directory-unshown-regexp): Add . directories.
14860
14861 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
14862 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
14863 `]' for full expand/close.
14864 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
14865
14866 (speedbar-check-vc): Support hidden files.
14867 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
14868 (speedbar-this-file-in-vc): Use vc-state if available. If VC
14869 state is nil, it is not checked out.
14870
14871 (speedbar-line-text, speedbar-line-token): Support expand buttons
14872 with no text.
14873 (speedbar-refresh): Universal argument acts as power-click.
14874 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
14875 that buffer to get variable values.
14876
14877 And many other bugfixes.
14878
14879 * dframe.el, ezimage.el, sb-image.el: New files.
14880
14881 * sb-*.xpm: Remove files. New image files installed into
14882 etc/images/ezimage.
14883
14884 2005-09-30 Kenichi Handa <handa@m17n.org>
14885
14886 * ps-mule.el (ps-mule-show-warning): If a character is in
14887 ps-print-translation-table, don't treat it as non-printable.
14888
14889 2005-09-30 David Ponce <david@dponce.com>
14890
14891 * tree-widget.el (tree-widget-themes-load-path): New variable.
14892 (tree-widget-themes-directory): Doc fix.
14893 (tree-widget-image-formats) [Emacs]: Doc fix.
14894 (tree-widget--locate-sub-directory): New function.
14895 (tree-widget-themes-directory): Use it.
14896
14897 * recentf.el (recentf-filename-handlers): Rename from
14898 `recentf-filename-handler'. Allow a list of functions.
14899 (recentf-menu-items-for-commands): Fix :help strings.
14900 (recentf-apply-filename-handlers): New function.
14901 (recentf-expand-file-name): Use it.
14902 (recentf-cleanup): Remove duplicates too.
14903
14904 2005-09-29 Juri Linkov <juri@jurta.org>
14905
14906 * faces.el: Rearrange face definitions to be in the same order as
14907 their face descriptions in "(emacs)Standard Faces".
14908
14909 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
14910
14911 * tooltip.el (tooltip): Add group `basic-faces'.
14912
14913 * buff-menu.el (Buffer-menu-buffer): Remove group
14914 `font-lock-highlighting-faces'.
14915
14916 * progmodes/compile.el (compilation-error, compilation-warning)
14917 (compilation-info, compilation-line-number, compilation-column-number):
14918 Change group from `font-lock-highlighting-faces' to `compilation'.
14919
14920 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
14921 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
14922 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
14923 (vhdl-font-lock-reserved-words-face)
14924 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
14925 `font-lock-highlighting-faces'.
14926
14927 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
14928
14929 2005-09-28 Kim F. Storm <storm@cua.dk>
14930
14931 * emulation/cua-base.el: Set CUA move property on additional commands:
14932 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
14933 forward-sexp, backward-sexp, forward-list, backward-list.
14934
14935 2005-09-28 Romain Francoise <romain@orebokech.com>
14936
14937 * comint.el (comint-show-output): Really set point at the
14938 beginning of the output when not using `comint-use-prompt-regexp'.
14939
14940 2005-09-27 Jay Belanger <belanger@truman.edu>
14941
14942 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
14943 in TeX mode.
14944
14945 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
14946
14947 * textmodes/org.el (org-table-sum): Fix format string.
14948
14949 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
14950 Quote face names.
14951
14952 2005-09-26 Romain Francoise <romain@orebokech.com>
14953
14954 * isearch.el (isearch-forward-regexp): Close doc string.
14955
14956 2005-09-25 Richard M. Stallman <rms@gnu.org>
14957
14958 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
14959
14960 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
14961
14962 * progmodes/compile.el (compilation-error-properties):
14963 When getting the file from the previous error message,
14964 correctly decode the new data format.
14965
14966 * progmodes/cc-cmds.el (c-electric-paren):
14967 Call old-blink-paren only for close-paren.
14968
14969 2005-09-24 Andreas Schwab <schwab@suse.de>
14970
14971 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
14972 condition.
14973
14974 2005-09-25 Romain Francoise <romain@orebokech.com>
14975
14976 * dired-aux.el (dired-copy-file-recursive):
14977 * dired.el (dired-delete-file):
14978 * ediff-mult.el (ediff-dir-diff-copy-file):
14979 * ediff-util.el (ediff-test-save-region):
14980 * forms.el (forms-mode):
14981 * ido.el (ido-file-internal, ido-delete-file-at-head):
14982 * log-edit.el (log-edit-done):
14983 * ses.el (ses-yank-resize):
14984 * play/gomoku.el (gomoku-human-plays, gomoku)
14985 (gomoku-human-resigns, gomoku-prompt-for-other-game)
14986 (gomoku-offer-a-draw):
14987 * play/landmark.el (lm-human-resigns, lm):
14988 * net/eudcb-ldap.el (eudc-ldap-check-base):
14989 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
14990 * progmodes/ebrowse.el (ebrowse-find-pattern):
14991 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
14992 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
14993 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
14994
14995 * vc.el (vc-delete-file):
14996 * play/gomoku.el (gomoku-terminate-game, gomoku)
14997 (gomoku-prompt-for-move, gomoku-human-takes-back):
14998 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
14999 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
15000
15001 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
15002
15003 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
15004 color rxvt terminals by using the code xterm.el used to use before
15005 2005-04-09 in order to match the colors used by rxvt.
15006
15007 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
15008
15009 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
15010 colors rxvt-unicode terminals by using the same code as xterm.el.
15011
15012 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
15013
15014 * textmodes/tex-mode.el (tex-font-lock-append-prop)
15015 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
15016 new symbol used for the tex-verbatim face.
15017
15018 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
15019
15020 * woman.el (woman-file-name):
15021 * wid-edit.el (widget-file-prompt-value)
15022 (widget-coding-system-prompt-value):
15023 * w32-fns.el (set-w32-system-coding-system):
15024 * vc.el (vc-version-diff, vc-annotate):
15025 * textmodes/reftex-auc.el (reftex-arg-cite)
15026 (reftex-arg-index-tag):
15027 * textmodes/refer.el (refer-get-bib-files):
15028 * textmodes/artist.el (artist-figlet-choose-font):
15029 * terminal.el (terminal-emulator):
15030 * replace.el (occur-read-primary-args):
15031 * rect.el (string-rectangle, string-insert-rectangle):
15032 * ps-print.el (ps-print-preprint):
15033 * progmodes/pascal.el (pascal-goto-defun):
15034 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
15035 * progmodes/compile.el (compilation-find-file):
15036 * printing.el (pr-interactive-n-up):
15037 * play/animate.el (animate-birthday-present):
15038 * net/rcompile.el (remote-compile):
15039 * man.el (man, Man-goto-section, Man-follow-manual-reference):
15040 * mail/rmailsum.el (rmail-summary-search-backward)
15041 (rmail-summary-search):
15042 * mail/rmailout.el (rmail-output-read-rmail-file-name)
15043 (rmail-output-read-file-name):
15044 * mail/rmail.el (rmail-search, rmail-search-backwards):
15045 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
15046 * locate.el (locate):
15047 * international/quail.el (quail-show-keyboard-layout):
15048 * international/mule.el (set-buffer-file-coding-system)
15049 (revert-buffer-with-coding-system, set-file-name-coding-system)
15050 (set-terminal-coding-system, set-keyboard-coding-system)
15051 (set-next-selection-coding-system):
15052 * international/mule-diag.el (describe-coding-system)
15053 (describe-font, describe-fontset):
15054 * international/mule-cmds.el (universal-coding-system-argument)
15055 (search-unencodable-char, describe-input-method)
15056 (set-language-environment, describe-language-environment):
15057 * international/codepage.el (codepage-setup):
15058 * international/code-pages.el (codepage-setup):
15059 * info.el (Info-search, Info-follow-reference)
15060 (Info-search-backward):
15061 * emacs-lisp/advice.el (ad-read-advised-function)
15062 (ad-read-advice-class, ad-clear-cache, ad-activate)
15063 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
15064 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
15065 (ad-read-regexp):
15066 * ediff-util.el (ediff-toggle-regexp-match):
15067 * ediff-ptch.el (ediff-prompt-for-patch-file):
15068 * dired-aux.el (dired-diff):
15069 * diff.el (diff):
15070 * cus-edit.el (custom-variable-prompt):
15071 * calendar/timeclock.el (timeclock-ask-for-project):
15072 * calc/calcalg3.el (calc-get-fit-variables):
15073 * calc/calc-store.el (calc-edit-variable)
15074 (calc-permanent-variable):
15075 * vc-mcvs.el (vc-mcvs-register):
15076 * shadowfile.el (shadow-define-literal-group):
15077 * woman.el (woman-file-name):
15078 * vc.el (vc-version-diff, vc-merge):
15079 * textmodes/reftex-index.el (reftex-index-complete-tag):
15080 * format.el (format-decode-buffer, format-decode-region):
15081 * emulation/viper-cmd.el (viper-read-string-with-history):
15082 * emacs-lisp/debug.el (cancel-debug-on-entry):
15083 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
15084 * ediff.el (ediff-merge-revisions)
15085 (ediff-merge-revisions-with-ancestor, ediff-revision):
15086 * completion.el (interactive-completion-string-reader):
15087 * calc/calc-prog.el (calc-user-define-formula):
15088 Follow convention for reading with the minibuffer.
15089
15090 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
15091
15092 * progmodes/python.el (python-describe-symbol): Add globals() and
15093 locals() to the arguments of emacs.ehelp.
15094
15095 2005-09-24 Magnus Henoch <mange@freemail.hu>
15096
15097 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
15098 New function, code extracted from ispell-valid-dictionary-list.
15099 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
15100 Call it.
15101
15102 2005-09-24 Eli Zaretskii <eliz@gnu.org>
15103
15104 * subr.el (version-regexp-alist): Extend valid syntax for version
15105 strings: allow any of the characters -,_,+ to separate the
15106 alpha/beta/rc part from the version part. Doc fix.
15107 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
15108
15109 2005-09-23 David Reitter <david.reitter@gmail.com>
15110
15111 * mail/mailclient.el: New file.
15112
15113 2005-09-23 Richard M. Stallman <rms@gnu.org>
15114
15115 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
15116 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
15117 Doc fixes.
15118
15119 * progmodes/cc-mode.el (c-font-lock-init):
15120 Specify font-lock-lines-before.
15121
15122 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
15123
15124 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
15125 whole conflict.
15126
15127 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
15128
15129 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
15130 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
15131 of `remap' feature when available. Additional key bindings for
15132 better tty support.
15133 (org-mode-restart, org-force-self-insert): New commands.
15134 (org-time-stamp-inactive): New command.
15135 (org-remap): New function.
15136 (org-table-auto-blank-field, org-level-color-stars-only): New options.
15137 (org-enable-fixed-width-editor): Move to `org-structure'
15138 customization group.
15139 (org-self-insert-command, orgtbl-self-insert-command): Modify to
15140 blank field after field motion commands.
15141
15142 2005-09-23 Kenichi Handa <handa@m17n.org>
15143
15144 * international/mule-cmds.el (set-language-environment):
15145 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
15146 have to call utf-translate-cjk-load-tables.
15147
15148 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
15149
15150 * mouse.el (mouse-move-drag-overlay): Fix last change.
15151
15152 2005-09-22 David Ponce <david@dponce.com>
15153
15154 * tree-widget.el (tree-widget-value-create): Fix previous change.
15155
15156 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
15157
15158 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
15159
15160 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
15161
15162 * mouse.el (mouse-move-drag-overlay): New function.
15163 (mouse-drag-region-1): Use it.
15164 Try to simplify a bit the state handling. Handle clicks on links
15165 inside intangible areas.
15166 (mouse-save-then-kill): Minor simplification.
15167 (mouse-secondary-overlay): Make it always non-nil instead of
15168 recreating it each time.
15169 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
15170 (mouse-kill-secondary, mouse-secondary-save-then-kill):
15171 Simplify accordingly.
15172
15173 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
15174
15175 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
15176
15177 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
15178
15179 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
15180 (ediff-file-name-sans-prefix): Treat nil as an empty string.
15181 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
15182 to patch.
15183
15184 * ediff-util.el: Use insert-buffer-substring.
15185
15186 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
15187
15188 * emulation/viper-cmd.el (viper-change-state): Don't move over the
15189 field boundaries in the minibuffer.
15190 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
15191 (viper-minibuffer-post-command-hook): New hook.
15192 (viper-line): Don't move cursor at bolp.
15193
15194 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
15195
15196 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
15197 avoid compiler warnings.
15198
15199 * emulation/viper-macs.el (ex-map): Better messages.
15200
15201 * emulation/viper-utils.el (viper-beginning-of-field): New function.
15202
15203 * emulation/viper.el: Replace make-variable-buffer-local with
15204 viper-make-variable-buffer-local everywhere, to avoid warnings.
15205
15206 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
15207
15208 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
15209 Delete unused var `old-selected-window'.
15210 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
15211 (mouse-drag-secondary): Delete unused var `start-frame'.
15212
15213 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
15214
15215 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
15216
15217 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
15218
15219 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
15220 Re-indent within 80 columns. Use inhibit-read-only.
15221
15222 2005-09-19 Romain Francoise <romain@orebokech.com>
15223
15224 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
15225
15226 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
15227
15228 * font-lock.el (font-lock-default-fontify-region): Don't add a line
15229 unconditionally, since the after-change-function already did it.
15230
15231 2005-09-19 Miles Bader <miles@gnu.org>
15232
15233 * net/newsticker.el: Get rid of CVS keyword.
15234
15235 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan+sf@dd.chalmers.se>
15236
15237 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
15238 The prompt is formatted later.
15239
15240 2005-09-19 David Ponce <david@dponce.com>
15241
15242 * tree-widget.el (tree-widget-value-create): Save the converted
15243 tree :node widget.
15244
15245 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
15246
15247 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
15248 variable `message'.
15249
15250 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
15251
15252 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
15253 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
15254 <slawomir.nowaczyk.847@student.lu.se>.
15255
15256 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
15257
15258 * image.el (image-load-path): Use symbol `data-directory' instead
15259 of its value, for backward compatibility with packages that bind
15260 it during `find-image'. Suggested by Katsumi Yamaoka.
15261 (image-search-load-path): Handle symbols whose values are strings.
15262
15263 2005-09-18 Romain Francoise <romain@orebokech.com>
15264
15265 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
15266 with-current-buffer form in save-excursion.
15267
15268 2005-09-18 Deepak Goel <deego@gnufans.org>
15269
15270 * apropos.el (apropos-command): Fix `message' call: first arg
15271 should be a format spec. In this and all other cases that appear
15272 below and elsewhere in the source code, I made a change only when
15273 two conditions were satisfied: [1] I can think of a possibility
15274 that the arguments would cause an error, for example, the code in
15275 question relies on external variables such as filenames. [2] I
15276 was sure that the arg to `message' could not have been nil in the code.
15277
15278 * textmodes/tildify.el (tildify-region): Ditto.
15279
15280 * textmodes/reftex-index.el (reftex-index-change-entry)
15281 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
15282 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
15283 * textmodes/org.el (org-complete, org-deadline, org-schedule)
15284 (org-priority, org-table-sum):
15285 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
15286 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
15287 (flyspell-word, flyspell-display-next-corrections):
15288 * textmodes/bibtex.el (bibtex-print-help-message):
15289 * textmodes/artist.el (artist-key-set-point-poly):
15290 * term/mac-win.el (mac-services-insert-text):
15291 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
15292 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
15293 (vhdl-port-paste-testbench, vhdl-compose-new-component)
15294 (vhdl-compose-configuration):
15295 * progmodes/sh-script.el (sh-blink, sh-show-indent)
15296 (sh-set-indent, sh-learn-line-indent):
15297 * progmodes/ps-mode.el (ps-mode-target-column):
15298 * progmodes/idlwave.el (idlwave-make-tags)
15299 (idlwave-scan-library-catalogs):
15300 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
15301 * progmodes/gud.el (gud-jdb-analyze-source):
15302 * progmodes/flymake.el (flymake-log):
15303 * progmodes/ebnf2ps.el (ebnf-generate-region):
15304 * progmodes/cmacexp.el (c-macro-expansion):
15305 * progmodes/ada-xref.el (ada-treat-cmd-string):
15306 * progmodes/ada-mode.el (ada-create-case-exception-substring)
15307 (ada-justified-indent-current, ada-batch-reformat):
15308 * play/zone.el (zone):
15309 * play/landmark.el (lm-move):
15310 * play/decipher.el (decipher-show-alphabet):
15311 * net/newsticker.el (newsticker--display-jump)
15312 (newsticker--display-scroll):
15313 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
15314 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
15315 * mail/feedmail.el (feedmail-dump-message-to-queue):
15316 * eshell/esh-proc.el (eshell-remove-process-entry):
15317 * emulation/ws-mode.el (ws-last-error):
15318 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
15319 (viper-record-kbd-macro):
15320 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
15321 * emacs-lisp/lisp-mnt.el (lm-report-bug):
15322 * emacs-lisp/find-func.el (find-function-noselect):
15323 * calendar/timeclock.el (timeclock-status-string)
15324 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
15325 (timeclock-when-to-leave-string):
15326 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
15327 * calc/calc-units.el (calc-enter-units-table):
15328 * calc/calc-mode.el (calc-mode-record-mode):
15329 * woman.el (woman-mini-help):
15330 * wdired.el (wdired-change-to-wdired-mode):
15331 * vc.el (vc-retrieve-snapshot):
15332 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
15333 * startup.el (display-startup-echo-area-message):
15334 * simple.el (set-goal-column):
15335 * ses.el (ses-command-hook, ses-recalculate-cell):
15336 * server.el (server-process-filter):
15337 * printing.el (pr-interface-txt-print, pr-interface-printify)
15338 (pr-interface-ps):
15339 * pcvs.el (cvs-help):
15340 * log-edit.el (log-edit, log-edit-mode-help):
15341 * iswitchb.el (iswitchb-possible-new-buffer):
15342 * isearch.el (isearch-edit-string):
15343 * image-mode.el (image-mode, image-minor-mode):
15344 * ibuf-macs.el (define-ibuffer-filter):
15345 * hi-lock.el (hi-lock-find-patterns):
15346 * files.el (toggle-read-only):
15347 * ediff-util.el (ediff-copy-diff)
15348 (ediff-write-merge-buffer-and-maybe-kill):
15349 * echistory.el (Electric-history-undefined):
15350 * dnd.el (dnd-insert-text):
15351 * dired-aux.el (dired-query):
15352 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
15353 * bookmark.el (bookmark-bmenu-locate):
15354 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
15355 Fix `message' calls to ensure first arg is a format string.
15356 The change was made only when these two conditions were satisfied:
15357 [1] when there is a possibility that the arguments would cause an error
15358 for example, if the code in question relies on external variables
15359 such as filenames, and
15360 [2] if the arg to `message' could not have been nil in the code.
15361
15362 * pcomplete.el (pcomplete--help): Fix `message' format spec.
15363 Not having a %s would be weird, though not technically wrong.
15364
15365 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15366
15367 * term/mac-win.el (mac-add-charset-info): Doc fix.
15368
15369 2005-09-17 Romain Francoise <romain@orebokech.com>
15370
15371 * shell.el (shell-resync-dirs): Handle echoing processes more
15372 reliably. Don't insert resync command if `comint-process-echoes'
15373 is non-nil.
15374
15375 2005-09-17 Magnus Henoch <mange@freemail.hu>
15376
15377 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
15378 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
15379 aspell versions >= 0.60.
15380 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
15381 only if ispell-aspell-supports-utf8 is non-nil.
15382
15383 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
15384
15385 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
15386 buffer-local value to lisp-indent-function.
15387
15388 2005-09-17 Milan Zamazal <pdm@zamazal.org>
15389
15390 * progmodes/glasses.el (glasses-make-readable): If
15391 glasses-separator differs from underscore, put appropriate
15392 overlays over underscore characters.
15393 (glasses-convert-to-unreadable): If glasses-separator differs from
15394 underscore, try to convert glasses-separator characters to
15395 underscores.
15396
15397 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
15398
15399 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
15400 Use with-syntax-table and dolist.
15401
15402 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
15403
15404 * textmodes/reftex-auc.el:
15405 * textmodes/reftex-cite.el:
15406 * textmodes/reftex-dcr.el:
15407 * textmodes/reftex-global.el:
15408 * textmodes/reftex-parse.el:
15409 * textmodes/reftex-ref.el:
15410 * textmodes/reftex-sel.el:
15411 * textmodes/reftex-toc.el:
15412 * textmodes/reftex-vars.el:
15413 * textmodes/reftex.el: Small changes to remove compiler warnings.
15414
15415 * textmodes/reftex-index.el: Likewise.
15416 (reftex-query-index-phrase): More efficient use of markers.
15417
15418 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
15419
15420 * image.el (image-load-path): New variable.
15421 (image-search-load-path): New function.
15422 (find-image): Search for images in `image-load-path'.
15423
15424 2005-09-15 Richard M. Stallman <rms@gnu.org>
15425
15426 * follow.el: Change Maintainer field.
15427
15428 2005-09-15 David Ponce <david@dponce.com>
15429
15430 * recentf.el (recentf-save-file-modes): New option.
15431 (recentf-save-list): Use it.
15432
15433 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
15434
15435 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
15436 (mode-line-mule-info, mode-line-modified): Move bindings from
15437 mouse-3 to mouse-1.
15438
15439 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
15440
15441 * simple.el (sendmail-user-agent-compose): Revert last change.
15442
15443 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
15444
15445 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
15446 Use with-current-buffer.
15447 (ange-ftp-gwp-start): Remove unused var `gw-user'.
15448 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
15449 (ange-ftp-insert-directory): Remove unused var `short'.
15450 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
15451
15452 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
15453 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
15454
15455 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
15456 (check-calendar-holidays, diary-list-entries): Autoload.
15457 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
15458 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
15459
15460 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
15461 which mistakenly removed a call to display-buffer.
15462
15463 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
15464
15465 * obsolete/iso-insert.el: Move to obsolete/ from international/.
15466
15467 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
15468
15469 * progmodes/hideshow.el
15470 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
15471 (hs-allow-nesting): New user var.
15472 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
15473 (hs-hide-block-at-point): When nesting allowed,
15474 if there is already an overlay in place, delete it.
15475 (hs-safety-is-job-n): Delete func; remove call sites.
15476 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
15477 (hs-overlay-at): New func.
15478 (hs-already-hidden-p, hs-show-block): Use it.
15479 (hs-hide-all): Don't pre-clean if nesting allowed.
15480 (hs-show-all): Temporarily disallow
15481 nesting around call to `hs-discard-overlays'.
15482
15483 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
15484
15485 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
15486 Delete unused local var.
15487
15488 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
15489
15490 * help-fns.el (describe-categories): "?\ " -> "?\s".
15491 (help-do-arg-highlight): Recognize also ARG-n, as in
15492 `move-to-left-margin' (ARG+n is already recognized). Simplify.
15493
15494 * international/codepage.el (dos-unsupported-char-glyph):
15495 * net/newsticker.el (tool-bar-map, w3-mode-map)
15496 (w3m-minor-mode-map):
15497 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
15498 (ent-alist):
15499 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
15500
15501 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
15502
15503 * custom.el (custom-push-theme): Handle the case where a symbol is
15504 bound but face properties have not yet been assigned.
15505
15506 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
15507 Fix behavior if noerase is `t' and there is no mail buffer.
15508
15509 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
15510 if `continue' is nil, rather than signal an error.
15511
15512 2005-09-12 Richard M. Stallman <rms@gnu.org>
15513
15514 * font-lock.el (font-lock-keywords): Add autoload.
15515
15516 * help-fns.el (describe-variable): Rearrange to put source link
15517 in a predictable place.
15518
15519 * net/newsticker.el: New file.
15520
15521 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15522
15523 * calendar/calendar.el (calendar-for-loop): Add edebug info.
15524 (calendar-basic-setup): Use the new nil arg.
15525 (number-of-diary-entries): Move to diary-lib.el.
15526
15527 * calendar/diary-lib.el: Use with-current-buffer, match-string.
15528 (diary-list-entries): Use with-syntax-table and dolist.
15529 Rename from list-diary-entries.
15530 Use number-of-diary-entries if `number' is nil.
15531 (diary, diary-view-entries): Use this new name and new nil arg value.
15532 (number-of-diary-entries): Move from calendar.el.
15533 (diary-unhide-everything): New function.
15534 (include-other-diary-files, fancy-diary-display)
15535 (diary-show-all-entries, make-diary-entry): Use it.
15536 (diary-mail-entries): Use buffer-string.
15537 (mark-diary-entries): Fix long standing paren typo.
15538 (diary-sexp-entry): Use count-lines.
15539 (make-diary-entry): Avoid `previous-line'.
15540 (diary-mode-map): New var.
15541 (diary-mode): Redraw cal after saving. Setup header-line.
15542 (fancy-diary-display-mode): Use local-set-key.
15543
15544 * startup.el (command-line): Try calling various terminal-init-foo-bar
15545 functions by stripping hyphenated suffixes from $TERM.
15546
15547 * files.el (normal-mode): Check boundness of font-lock-keywords.
15548
15549 2005-09-12 Richard M. Stallman <rms@gnu.org>
15550
15551 * progmodes/compile.el: Don't decide a file's directory
15552 until the user actually tries to go there.
15553 (compilation-next-error-function):
15554 Pass compilation-find-file the directory from the file-struct.
15555 (compilation-internal-error-properties): Separate local FILE-STRUCT
15556 from FILE. Doc the args better. Rename arg FMT to FMTS.
15557 (compilation-find-file): Arg DIR renamed to DIRECTORY.
15558 Expand it, and if nil, use default-directory.
15559 (compilation-get-file-structure): Don't mix specified directory
15560 with default directory. Put specified directory into
15561 file-struct. Don't make the file name absolute.
15562
15563 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
15564 (compile-command): Add autoload.
15565 (compilation-disable-input): Add autoload.
15566
15567 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
15568
15569 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
15570 strings of the variables it can override.
15571 (time-stamp): New (as yet undocumented) time-stamp-format escapes
15572 %Q and %q, for fully-qualified domain name and unqualified host name.
15573
15574 2005-09-11 Kim F. Storm <storm@cua.dk>
15575
15576 * emacs-lisp/authors.el (authors-aliases): Update list.
15577 (authors-fixed-entries): Update mldrag.el entry.
15578
15579 2005-09-10 Alan Mackenzie <acm@muc.de>
15580
15581 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
15582 from the region narrowed to.
15583
15584 2005-09-10 Magnus Henoch <mange@freemail.hu>
15585
15586 * textmodes/ispell.el (ispell-check-version): Signal an error if
15587 aspell version is less than 0.60.
15588
15589 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
15590
15591 * progmodes/octave-inf.el (inferior-octave-startup):
15592 Resync current dir at the end.
15593
15594 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
15595
15596 * woman.el (woman-topic-at-point-default):
15597 Rename to woman-use-topic-at-point-default.
15598 (woman-topic-at-point): Rename to woman-use-topic-at-point.
15599 (woman-file-name): Reflect renames above. Automatically use the
15600 word at point as topic if woman-use-topic-at-point is non-nil.
15601 Otherwise offer it as default but don't insert it in the
15602 minibuffer. Also use `test-completion' instead of `assoc' as
15603 suggested by Stefan Monnier.
15604
15605 2005-09-10 Andre Spiegel <spiegel@gnu.org>
15606
15607 * vc.el (vc-directory, vc-update-change-log): Throw an error on
15608 the attempt to do it over Tramp. This is not yet supported.
15609
15610 2005-09-10 Eli Zaretskii <eliz@gnu.org>
15611
15612 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
15613 (menu-bar-non-minibuffer-window-p): New functions.
15614 ("Split Window", "Save As..."): Use them.
15615 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
15616 ("Print Buffer", "Truncate Long Lines in this Buffer"):
15617 Use menu-bar-menu-frame-live-and-visible-p.
15618 ("Save Buffer", "Insert File", "Open Directory...")
15619 ("Open File...", "Visit New File..."):
15620 Use menu-bar-non-minibuffer-window-p.
15621 (kill-this-buffer-enabled-p, dired <menu-enable>):
15622 Use menu-bar-non-minibuffer-window-p.
15623
15624 2005-09-09 Eli Zaretskii <eliz@gnu.org>
15625
15626 * cus-start.el (all): Don't complain about fringe-related
15627 built-ins if fringes are not supported. Ditto about
15628 selection-related built-ins. Fix the test for GTK-related built-ins.
15629
15630 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
15631 ("Postscript Print Buffer", "Print Region", "Save As...")
15632 ("Save", "Insert File...", "Open Directory...")
15633 ("Open File...", "Visit New File..."")
15634 ("Truncate Long Lines in this Buffer"): Don't look at
15635 menu-updating-frame if this display does not support multiple frames.
15636
15637 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
15638
15639 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
15640
15641 2005-09-09 Emilio Lopes <eclig@gmx.net>
15642
15643 * woman.el: Format- and whitespace-related changes.
15644
15645 2005-09-09 Eli Zaretskii <eliz@gnu.org>
15646
15647 * woman.el: Fix my email address.
15648
15649 2005-09-08 Richard M. Stallman <rms@gnu.org>
15650
15651 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
15652 (sh-mode): Locally set skeleton-pair-default-alist.
15653
15654 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
15655
15656 * progmodes/flymake.el: Require `compile' unconditionally.
15657
15658 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
15659
15660 * woman.el (woman-file-name): Provide a default, not initial input.
15661
15662 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
15663
15664 * font-lock.el (font-lock-support-mode): Doc fix.
15665
15666 * descr-text.el (describe-property-list): Handle non-symbol prop names.
15667
15668 2005-09-08 Richard M. Stallman <rms@gnu.org>
15669
15670 * simple.el (blink-matching-open): Get rid of text props from
15671 the string shown in echo area. Don't permanently set point.
15672 Some rearrangements.
15673
15674 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
15675
15676 * recentf.el (recentf-filename-handler): Add custom choice
15677 `abbreviate-file-name'.
15678
15679 * msb.el (msb--very-many-menus): Fix typo.
15680
15681 * disp-table.el (standard-display-european): Don't set
15682 enable-multibyte-characters to nil.
15683
15684 2005-09-08 David Ponce <david@dponce.com>
15685
15686 * recentf.el (recentf-show-file-shortcuts-flag): New option.
15687 (recentf-expand-file-name): Doc fix.
15688 (recentf-dialog-mode-map): Define digit shortcuts.
15689 (recentf--files-with-key): New variable.
15690 (recentf-show-digit-shortcut-filter): New function.
15691 (recentf-open-files-items): New function.
15692 (recentf-open-files): Use it.
15693 (recentf-open-file-with-key): New command.
15694
15695 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
15696
15697 * buff-menu.el (Buffer-menu-sort-by-column): New function.
15698 Suggested by Kim F. Storm.
15699 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
15700 (Buffer-menu-make-sort-button): Use global keymap.
15701
15702 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
15703
15704 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
15705 (Man-getpage-in-background-advice): Remove defadvice; it isn't
15706 necessary any longer with the remapped command.
15707 (Man-bgproc-sentinel-advice): Remove defadvice which counts
15708 formatting time only.
15709
15710 * net/tramp.el (tramp-action-password)
15711 (tramp-multi-action-password): Compile the password prompt from
15712 `method', `user' and `host'. Sometimes it isn't obvious which
15713 password to enter, for example with remote files offered by
15714 recentf.el, or with multiple steps. Suggested by Robert Marshall
15715 <robert@chezmarshall.freeserve.co.uk>.
15716
15717 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
15718
15719 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
15720 Fix regexp for when "s///" is at the beginning of line.
15721
15722 2005-09-07 Jay Belanger <belanger@truman.edu>
15723
15724 * calc/calc-poly.el (math-expand-term): Multiply out any powers
15725 when in matrix mode.
15726
15727 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
15728
15729 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
15730 non-anonymous functions.
15731
15732 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
15733
15734 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
15735 when using a header line. Otherwise, use mouse-1-click-follows-link.
15736
15737 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
15738 can't be moved; don't signal an error.
15739
15740 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
15741
15742 * cus-theme.el (custom-theme-write-faces): Save the current face
15743 spec, not the defface spec.
15744
15745 * custom.el (custom-known-themes): Clarify meaning of "standard".
15746 (custom-push-theme): Save old values in the standard theme.
15747 (disable-theme): Correct typo.
15748 (custom-face-theme-value) Deleted unused function.
15749 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
15750
15751 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
15752
15753 * progmodes/compile.el (compilation-goto-locus): Take into account
15754 iconified frames when determining whether the buffer is
15755 already visible.
15756 Don't reset window height if the window already existed.
15757
15758 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
15759
15760 * custom.el (load-theme): Rename from require-theme.
15761 Add interactive spec.
15762 (enable-theme): Rename from custom-enable-theme.
15763 Add interactive spec.
15764 (disable-theme): Rename from custom-disable-theme.
15765 Add interactive spec.
15766 (custom-make-theme-feature): Doc fix.
15767 (custom-theme-directory): Doc fix.
15768 (provide-theme): Call enable-theme.
15769
15770 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
15771
15772 * obsolete/lazy-lock.el (lazy-lock-mode):
15773 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
15774 font-lock-mode if it's off. Print a warning instead.
15775
15776 * progmodes/compile.el (compilation-start): Ignore errors if the
15777 process died before we get to send-eof.
15778
15779 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
15780 Undo last change. Enclosing the result in quotes broke things on Unix
15781 since tex-send-command passes it through shell-quote-argument.
15782 (tex-send-command): Pass `file' through convert-standard-filename
15783 when possible.
15784 (tex-uptodate-p): Handle the case where TeX hasn't put additional
15785 info in a transcript.
15786
15787 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
15788
15789 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
15790 fix compilation warning. Reorder the key definitions to group
15791 together keys emitted by the current version of xterm.
15792
15793 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
15794 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
15795 Reorder predicates to correct min-color usage.
15796
15797 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
15798
15799 * longlines.el (longlines-mode): Inhibit read-only when encoding.
15800 Kill local variables when longlines-mode is turned off.
15801
15802 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
15803
15804 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
15805
15806 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
15807
15808 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
15809
15810 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
15811 (font-lock-lines-before): Change default to being inactive.
15812 (font-lock-default-fontify-region): Obey font-lock-lines-before.
15813 (font-lock-after-change-function): Don't handle f-l-lines-before here.
15814
15815 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
15816
15817 * net/tramp.el (tramp-handle-make-auto-save-file-name):
15818 Deactivate temporarily advice if active (not needed for Emacs 22,
15819 but for backwards compatibility).
15820 (tramp-exists-file-name-handler): Rewrite. First implementation
15821 was too simple.
15822 (tramp-advice-make-auto-save-file-name):
15823 Call `tramp-handle-make-auto-save-file-name' (again, just for
15824 backwards compatibility).
15825
15826 2005-08-31 Reto Zimmermann <reto@gnu.org>
15827
15828 * progmodes/vhdl-mode.el
15829 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
15830 (vhdl-end-p): Fix indentation bug "else" after "-- when".
15831 (vhdl-set-default-project): New function (easier setting of default).
15832 (vhdl-port-copy): Handle extended identifiers for generics.
15833 (vhdl-compiler-alist): Better description for error message regexp.
15834 (vhdl-make): Query for target, use previous as default.
15835 (vhdl-port-copy): Fix port copy for port names starting with "signal".
15836 (vhdl-font-lock-keywords-2): Fix fontification for record
15837 el. assign.
15838 (vhdl-speedbar-make-subpack-line): Add package body link.
15839 (vhdl-generate-makefile-1): Not include itself as dependency.
15840 (vhdl-font-lock-init): Highlight c-preprocessor directives.
15841 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
15842 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
15843 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
15844 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
15845 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
15846 (vhdl-import-project): Add string argument for `error'.
15847 (vhdl-compose-configuration)
15848 (vhdl-compose-configuration-architecture): Add configuration
15849 declaration generation.
15850 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
15851 (vhdl-trailer-re): Add "record" keyword (better indentation).
15852 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
15853 "[^ \t-\"]+".
15854 (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
15855 (vhdl-testbench-entity-file-name)
15856 (vhdl-testbench-architecture-file-name): Allow separate
15857 customization of testbench file names.
15858 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
15859 (vhdl-get-visible-signals): Allow newline within alias declaration.
15860 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
15861 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
15862 (member-ignore-case): Alias for missing function in XEmacs.
15863 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
15864 (vhdl-update-sensitivity-list): Ignore case on read signals.
15865 (vhdl-replace-string): Adjust case only for file names.
15866 (vhdl-update-sensitivity-list): Fix search for read signals.
15867 (vhdl-update-sensitivity-list): Exclude formal parameters.
15868 (vhdl-get-visible-signals): Include aliases of signals.
15869 (vhdl-get-visible-signals): Fix signal name searching.
15870 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
15871 (vhdl-fixup-whitespace-region): Fix for character
15872 literals (e.g. `:').
15873
15874 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
15875
15876 * ansi-color.el (comint-last-output-start):
15877 * bs.el (font-lock-verbose):
15878 * diff-mode.el (add-log-buffer-file-name-function):
15879 * dired-x.el (vm-folder-directory):
15880 * faces.el (help-xref-stack-item):
15881 * files.el (font-lock-keywords):
15882 * find-lisp.el (dired-buffers, dired-subdir-alist):
15883 * ido.el (cua-inhibit-cua-keys):
15884 * log-view.el (cvs-minor-wrap-function):
15885 * outline.el (font-lock-warning-face):
15886 * simple.el (compilation-current-error):
15887 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
15888 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
15889 * tooltip.el (comint-prompt-regexp):
15890 * w32-fns.el (explicit-shell-file-name):
15891 * term/mac-win.el (mac-charset-info-alist)
15892 (mac-services-selection, mac-system-script-code):
15893 * term/tty-colors.el (msdos-color-values):
15894 * term/w32-win.el (xlfd-regexp-registry-subnum):
15895 * term/x-win.el (x-keysym-table, x-selection-timeout)
15896 (x-session-id, x-session-previous-id):
15897 * textmodes/ispell.el (mail-yank-prefix):
15898 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
15899 * textmodes/org.el (calc-embedded-close-formula)
15900 (calc-embedded-open-formula)
15901 (font-lock-unfontify-region-function):
15902 * textmodes/reftex-global.el (isearch-next-buffer-function)
15903 (TeX-master):
15904 * textmodes/reftex.el (font-lock-keywords):
15905 * textmodes/tex-mode.el (font-lock-comment-face)
15906 (font-lock-doc-face):
15907 * textmodes/texinfo.el (outline-heading-alist):
15908 Add defvars.
15909
15910 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
15911 (artist-spray-chars, artist-mode-init, artist-replace-string)
15912 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
15913 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
15914 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
15915
15916 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
15917 (conf-align-assignments): "?\ " -> "?\s".
15918
15919 * textmodes/reftex-index.el (TeX-master): Add defvar.
15920 (reftex-index-phrases-marker): Move up defvar.
15921
15922 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
15923 (reftex-toc-include-labels-indicator)
15924 (reftex-toc-include-index-indicator)
15925 (reftex-toc-max-level-indicator): Move up declarations.
15926
15927 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
15928 of args to `tramp-run-real-handler', even if it's empty in this case.
15929
15930 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15931
15932 * dired.el (dired-move-to-filename-regexp): Add date format for
15933 Mac OS X 10.3 in East Asian locales.
15934
15935 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
15936
15937 * files.el (make-auto-save-file-name): Add file name handler call
15938 if applicable.
15939
15940 * net/tramp.el (tramp-file-name-handler-alist)
15941 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
15942 (tramp-handle-make-auto-save-file-name): Rename from
15943 `tramp-make-auto-save-file-name'.
15944 (tramp-exists-file-name-handler): New defun.
15945 (tramp-advice-make-auto-save-file-name): Make defadvice only when
15946 `make-auto-save-file-name' is not a magic file name operation.
15947
15948 2005-08-30 Richard M. Stallman <rms@gnu.org>
15949
15950 * files.el (risky-local-variable-p):
15951 Match `-predicates' and `-commands.
15952
15953 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
15954 (custom-save-all): Visit the file if necessary;
15955 kill the buffer if we created it.
15956 (custom-save-delete): Don't visit file or kill buffer here.
15957
15958 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
15959
15960 * textmodes/org.el (org-special-keyword): New face.
15961 (org-table-copy-down, org-table-eval-formula)
15962 (org-table-recalculate, org-init-section-numbers):
15963 Use `string-to-number' instead of `string-to-int'.
15964 (org-get-location): Use `insert-buffer-substring' instead of
15965 `insert-buffer'.
15966 (org-modify-diary-entry-string): New function.
15967 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
15968 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
15969 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
15970 active region.
15971 (org-export-as-html): Handle QUOTE keyword.
15972 (org-quote-string): New option.
15973 (org-bookmark-jump-unhide): New function, used for
15974 `bookmark-after-jump-hook'.
15975 (org-diary-default-entry): Apply only when not called through
15976 `org-agenda'.
15977
15978 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
15979
15980 * net/eudc.el (mode-popup-menu):
15981 * play/handwrite.el (ps-printer-name, ps-lpr-command):
15982 * progmodes/ada-mode.el (compile-auto-highlight)
15983 (skeleton-further-elements):
15984 * progmodes/autoconf.el (font-lock-syntactic-keywords):
15985 * progmodes/cmacexp.el (msdos-shells):
15986 * progmodes/compile.el (font-lock-extra-managed-props)
15987 (font-lock-keywords, font-lock-maximum-size)
15988 (font-lock-support-mode):
15989 * progmodes/grep.el (font-lock-lines-before):
15990 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
15991 * progmodes/mixal-mode.el (compile-command):
15992 * progmodes/perl-mode.el (font-lock-comment-face)
15993 (font-lock-doc-face, font-lock-string-face):
15994 * progmodes/prolog.el (comint-prompt-regexp):
15995 * progmodes/sh-script.el (font-lock-comment-face)
15996 (font-lock-set-defaults, font-lock-string-face):
15997 * progmodes/sql.el (font-lock-keyword-face)
15998 (font-lock-set-defaults, font-lock-string-face):
15999 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
16000 (itimer-version, lazy-lock-defer-contextually)
16001 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
16002 Add defvars.
16003
16004 * progmodes/cperl-mode.el (cperl-electric-lbrace)
16005 (cperl-electric-keyword, cperl-electric-pod)
16006 (cperl-electric-backspace, cperl-forward-re)
16007 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
16008 (vc-rcs-header, vc-sccs-header): Add defvars.
16009
16010 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
16011 (font-lock-syntactic-keywords, gud-find-expr-function):
16012 Add defvars.
16013
16014 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
16015 (gdb-frame-parameters): Declare before use.
16016
16017 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
16018 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
16019 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
16020 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
16021
16022 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
16023 (idlwave-help-with-source): Use `insert-buffer-substring', not
16024 `insert-buffer'.
16025
16026 2005-08-29 Juri Linkov <juri@jurta.org>
16027
16028 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
16029 Put outline-back-to-heading function call inside save-excursion.
16030
16031 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
16032
16033 * man.el (Man-init-defvars, Man-translate-references)
16034 (Man-support-local-filenames, Man-highlight-references):
16035 * progmodes/sql.el (sql-interactive-mode):
16036 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
16037
16038 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
16039 (compilation-mode-font-lock-keywords): Add defvars.
16040 (checkdoc-interactive-loop): "?\ " -> "?\s".
16041
16042 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
16043 (font-lock-doc-face, font-lock-string-face)
16044 (font-lock-keywords-case-fold-search): Add defvars.
16045 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
16046
16047 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
16048 Don't pass X and Y (they are ignored anyway).
16049 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
16050 (mouse-delete-window): Make arguments optional.
16051
16052 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
16053 (caesar-translate-table, minor-modes, news-buffer-save)
16054 (news-group-name, news-minor-modes): Add defvars.
16055
16056 * emacs-lisp/lselect.el (mouse-highlight-priority)
16057 (x-lost-selection-functions, zmacs-regions):
16058 * emacs-lisp/pp.el (font-lock-verbose):
16059 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
16060 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
16061 (ses-mode-map):
16062 * emacs-lisp/tcover-unsafep.el (safe-functions):
16063 * international/mule-cmds.el (mac-system-coding-system)
16064 (mac-system-locale):
16065 * language/ethio-util.el (rmail-current-message)
16066 (rmail-message-vector):
16067 * language/thai-util.el (thai-auto-composition-mode):
16068 * mail/metamail.el (rmail-current-message, rmail-message-vector):
16069 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
16070 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
16071 (vm-primary-inbox, vm-spool-files):
16072 * mail/rmail.el (deleted-head, font-lock-fontified)
16073 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
16074 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
16075 (total-messages):
16076 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
16077 (rmail-summary-mode-map):
16078 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
16079 (rmail-last-label, rmail-last-multi-labels)
16080 (rmail-summary-vector, rmail-total-messages):
16081 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
16082 * mail/rmailsum.el (msgnum):
16083 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
16084 (rmail-current-message):
16085 * obsolete/fast-lock.el (font-lock-face-list):
16086 * obsolete/rnewspost.el (mail-reply-buffer):
16087 * obsolete/scribe.el (compile-command):
16088 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
16089
16090 2005-08-28 John Paul Wallington <jpw@gnu.org>
16091
16092 * ibuf-ext.el (ibuffer-auto-update-changed):
16093 Use `frame-or-buffer-changed-p' to check whether we need to update.
16094 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
16095 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
16096 as a `frame-or-buffer-changed-p' state vector instead.
16097
16098 2005-08-27 Romain Francoise <romain@orebokech.com>
16099
16100 * textmodes/makeinfo.el (makeinfo-compile):
16101 Use `compilation-start'. Set `next-error-function' according to
16102 `disable-errors'.
16103 (makeinfo-next-error): New function.
16104 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
16105 (makeinfo-buffer): Likewise.
16106
16107 * progmodes/compile.el (compilation-start): Add autoload cookie.
16108
16109 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
16110 * textmodes/sgml-mode.el: Likewise.
16111 * progmodes/python.el: Likewise.
16112
16113 2005-08-27 Eli Zaretskii <eliz@gnu.org>
16114
16115 * simple.el (blink-matching-paren-distance): Document the meaning
16116 of nil value, and allow to customize to nil.
16117
16118 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
16119 command.com, not command.exe.
16120
16121 2005-08-26 John Wiegley <johnw@newartisans.com>
16122
16123 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
16124 code around a bit so that an extraneous nil argument is not added
16125 to a command when no args are given.
16126
16127 * eshell/esh-arg.el (eshell-parse-double-quote): If a
16128 double-quoted argument resolves to nil, return it as an empty
16129 string rather than as nil. This made it impossible to pass "" to
16130 a shell script as a null string argument.
16131
16132 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
16133
16134 * outline.el (outline-invent-heading): New fun.
16135 (outline-promote, outline-demote): Use it.
16136 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
16137 (outline-end-of-subtree): Remove unused var `opoint'.
16138
16139 2005-08-26 David Reitter <david.reitter@gmail.com>
16140
16141 * menu-bar.el (truncate-lines, write-file, print-buffer)
16142 (ps-print-buffer-faces, ps-print-buffer, split-window):
16143 Disable menu items when the frame they refer to is invisible, or when
16144 they refer to a buffer and the minibuffer is selected.
16145
16146 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
16147
16148 * progmodes/flymake.el (flymake-highlight-err-lines):
16149 Use save-excursion around flymake-highlight-line to preserve point.
16150
16151 2005-08-26 Eli Zaretskii <eliz@gnu.org>
16152
16153 * progmodes/octave-mod.el: Change Author and Maintainer address.
16154 (octave-maintainer-address): Change Kurt's email address.
16155 * progmodes/octave-inf.el: Change Author and Maintainer address.
16156 * progmodes/octave-hlp.el: Change Author and Maintainer address.
16157
16158 2005-08-26 Kim F. Storm <storm@cua.dk>
16159
16160 * subr.el (version-list-<, version-list-<=, version-list-=):
16161 Rename from integer-list-*.
16162 (version-list-not-zero): Likewise. Fix while loop.
16163 (version=): Use version-list-= instead of string-equal.
16164
16165 2005-08-26 Richard M. Stallman <rms@gnu.org>
16166
16167 * outline.el (outline-promote): Try shortening the heading.
16168 As last resort, read the heading to use.
16169 (outline-demote): As last resort, read the heading to use.
16170
16171 2005-08-26 Romain Francoise <romain@orebokech.com>
16172
16173 * progmodes/compile.el (compilation-start): Doc fix.
16174
16175 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
16176 (antlr-font-lock-additional-keywords): Fix reference to
16177 `antlr-font-lock-literal-regexp' erroneously changed during the
16178 mass face rename.
16179 (antlr-run-tool): Use `compilation-start'.
16180
16181 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
16182 instead of the obsolete `compile-internal'.
16183
16184 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
16185
16186 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
16187 (number, original-date):
16188 * calendar/cal-china.el (date):
16189 * calendar/cal-coptic.el (date):
16190 * calendar/cal-french.el (date):
16191 * calendar/cal-hebrew.el (date, entry, number, original-date):
16192 * calendar/cal-islam.el (date, number, original-date):
16193 * calendar/cal-iso.el (date):
16194 * calendar/cal-julian.el (date):
16195 * calendar/cal-mayan.el (date):
16196 * calendar/cal-menu.el (date, event):
16197 * calendar/cal-persia.el (date):
16198 * calendar/lunar.el (date):
16199 * calendar/solar.el (date): Add defvars.
16200
16201 * emerge.el:
16202 * ibuffer.el:
16203 * info-xref.el:
16204 * obsolete/bg-mouse.el:
16205 * obsolete/sun-curs.el:
16206 * obsolete/swedish.el: Move the `defvar's to the top level.
16207
16208 * smerge-mode.el (smerge-refined-change): Add :group.
16209
16210 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
16211
16212 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
16213 (smerge-keep-n): Remove props.
16214 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
16215 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
16216 now that it's done in smerge-keep-n.
16217 (smerge-refined-change): New face.
16218 (smerge-refine-chopup-region, smerge-refine-highlight-change)
16219 (smerge-refine): New funs.
16220 (smerge-basic-map): Bind smerge-refine.
16221
16222 2005-08-25 Juri Linkov <juri@jurta.org>
16223
16224 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
16225 compilation-process-setup-function and compilation-disable-input
16226 in grep-mode instead of let-bindings in grep.
16227
16228 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
16229 Delete "Automatic File De/compression" (auto-compression-mode).
16230
16231 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
16232
16233 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
16234 Silence warning about non-existent variable.
16235
16236 2005-08-25 Richard M. Stallman <rms@gnu.org>
16237
16238 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
16239 Rename "Describe Key" to "Describe Key or Mouse Operation".
16240
16241 * mail/mailalias.el (build-mail-aliases): Delete comments
16242 from the contents before processing them.
16243
16244 * isearch.el (isearch-edit-string): Erase the Search prompt
16245 if user enters an empty string and there is no default.
16246
16247 * comint.el (comint-file-name-prefix): Add autoload.
16248
16249 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
16250
16251 * subr.el (play-sound): Rearrange to avoid warning.
16252
16253 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
16254
16255 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
16256 New hook.
16257 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
16258
16259 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
16260
16261 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
16262
16263 * custom.el (custom-theme-set-variables): Sort minor modes last.
16264
16265 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16266
16267 * subr.el (version-separator, version-regexp-alist): New vars used by
16268 version comparison funs.
16269 (integer-list-<, integer-list-=, integer-list-<=)
16270 (integer-list-not-zero): New funs for integer list comparison.
16271 (version-to-list, version=, version<, version<=): New funs for version
16272 comparison.
16273
16274 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
16275
16276 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
16277 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
16278 time to silence the byte-compiler.
16279
16280 * ibuffer.el (ibuffer-compile-make-eliding-form)
16281 (ibuffer-check-formats): Use `with-no-warnings' to hide references
16282 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
16283 so it's silly to get warnings for it).
16284 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
16285 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
16286 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
16287 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
16288 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
16289 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
16290 Defvar at compile time.
16291 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
16292 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
16293 Declare them before use.
16294
16295 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
16296 (info-xref-good, info-xref-bad): Defvar at compile time.
16297
16298 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
16299 Use `let*' instead of `let'.
16300
16301 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
16302 (*mouse-y*, menu, char): Defvar at compile time.
16303 (sc::menu): Declare it before use.
16304 (sc::pack-one-line): Use `let', not `let*'.
16305
16306 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
16307 (mail-send-hook): Defvar at compile time.
16308
16309 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
16310 Defvar at compile time.
16311
16312 * term/sun-mouse.el (current-global-mousemap)
16313 (current-local-mousemap): Declare them before use.
16314
16315 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
16316
16317 * bookmark.el (bookmark-after-jump-hook): New hook.
16318 (bookmark-jump): Run `bookmark-after-jump-hook'.
16319
16320 2005-08-23 Juri Linkov <juri@jurta.org>
16321
16322 * faces.el (minibuffer-prompt): Doc fix.
16323
16324 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
16325
16326 * progmodes/xscheme.el: Trivial changes to silence warnings.
16327 (xscheme-previous-mode, xscheme-previous-process-state):
16328 Add defvars.
16329 (xscheme-last-input-end, xscheme-process-command-line)
16330 (xscheme-process-name, xscheme-buffer-name)
16331 (xscheme-expressions-ring-max, xscheme-expressions-ring)
16332 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
16333 (xscheme-control-g-synchronization-p)
16334 (xscheme-control-g-disabled-p, xscheme-string-receiver)
16335 (default-xscheme-runlight, xscheme-runlight)
16336 (xscheme-runlight-string, xscheme-process-filter-state)
16337 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
16338 Move to beginning of file.
16339 (scheme-interaction-mode-commands-alist)
16340 (scheme-interaction-mode-map, scheme-debugger-mode-map):
16341 Declare them before use. Note: the initialization code for the
16342 variables has not been moved because it uses functions that reference
16343 the variables.
16344 (xscheme-control-g-message-string, xscheme-process-filter-alist)
16345 (xscheme-prompt-for-expression-map): Declare them before use.
16346 (scheme-debugger-mode-commands): "?\ " -> "?\s".
16347
16348 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
16349
16350 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
16351
16352 2005-08-22 Juri Linkov <juri@jurta.org>
16353
16354 * faces.el (set-face-underline): Delete this duplicate function
16355 and make an obsolete alias to set-face-underline-p.
16356 (set-face-underline-p): Use docstring of set-face-underline.
16357 (describe-face): Create hyperlink to parent face.
16358
16359 * info.el (Info-insert-dir): Use save-excursion around
16360 insert-buffer-substring.
16361 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
16362 (Info-escape-percent): Delete function.
16363 (Info-fontify-node): Replace Info-escape-percent by
16364 replace-regexp-in-string with REP arg set to lambda that
16365 duplicates `%' and preserves text properties.
16366
16367 * progmodes/compile.el (compilation-disable-input): Doc fix.
16368 (define-compilation-mode): Doc fix and refill.
16369 (kill-compilation): Use `mode-name' in the error message.
16370 (compilation-find-file): Use `compilation-error' in the
16371 read-file-name's prompt.
16372
16373 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
16374
16375 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
16376 (smerge-auto-leave): Make undo re-enable the mode.
16377 (debug-ignored-errors): Add the user-error of impossible resolution.
16378 (smerge-resolve): Move things around a bit, in preparation for later.
16379 (smerge-diff): Don't fail if the buffer has no associated file.
16380 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
16381 (smerge-conflict-overlay): New function.
16382 (smerge-match-conflict): Don't add text properties here.
16383 (smerge-find-conflict): Instead, add an overlay here.
16384 Also check for the case where we're inside a conflict already, so as to
16385 obviate the need for font-lock-multiline, which is unbearably slow with
16386 large conflicts and ciomplex font-lock patterns.
16387 (smerge-remove-props): Remove overlay rather than text-properties.
16388 (smerge-mode): Don't set font-lock-multiline.
16389 Remove overlays when turned off.
16390
16391 2005-08-21 Kim F. Storm <storm@cua.dk>
16392
16393 * ido.el (ido-ignore-item-p): Use save-match-data.
16394 Bind case-fold-search to ido-case-fold locally.
16395
16396 2005-08-20 Richard M. Stallman <rms@gnu.org>
16397
16398 * files.el (normal-mode): If font lock is on, turn it off and on.
16399
16400 * subr.el (replace-regexp-in-string): Doc fix.
16401
16402 * startup.el (command-line-1): Don't suppress startup screen
16403 due to existing processes.
16404
16405 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
16406
16407 * progmodes/compile.el (compilation-disable-input): Default to nil.
16408
16409 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
16410
16411 * progmodes/compile.el (compilation-disable-input): New defcustom.
16412 (compilation-start): If compilation-disable-input is non-nil, send
16413 EOF to the compilation process.
16414
16415 2005-08-20 Eli Zaretskii <eliz@gnu.org>
16416
16417 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
16418 Run the argument of tex-shell-cd-command through
16419 convert-standard-filename, to get the correct style of slashes on
16420 Windows, and enclose the result in quotes, in case the file name
16421 includes whitespace or other special characters.
16422
16423 2005-08-19 Andreas Schwab <schwab@suse.de>
16424
16425 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
16426 process.
16427
16428 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
16429
16430 * cus-start.el (minibuffer-prompt-properties): Correct typo.
16431
16432 2005-08-18 Kim F. Storm <storm@cua.dk>
16433
16434 * scroll-lock.el: Fix errors due to incorrect line wrapping.
16435
16436 2005-08-18 Richard M. Stallman <rms@gnu.org>
16437
16438 * scroll-lock.el: New file.
16439
16440 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
16441
16442 * dired.el (dired-move-to-end-of-filename):
16443 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
16444
16445 2005-08-18 Kim F. Storm <storm@cua.dk>
16446
16447 * ido.el (ido-everywhere): Fix defcustom :set function to disable
16448 rather than toggle mode when custom value is nil.
16449 (ido-everywhere): Fix defun doc string.
16450
16451 2005-08-17 Richard M. Stallman <rms@gnu.org>
16452
16453 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
16454 as tag instead of "Inviolable".
16455
16456 2005-08-17 Kim F. Storm <storm@cua.dk>
16457
16458 * windmove.el (windmove-coordinates-of-position): Remove.
16459 (windmove-coordinates-of-window-position): Remove.
16460 (windmove-reference-loc): Use posn-at-point instead.
16461
16462 * subr.el (insert-for-yank-1): Doc fix.
16463
16464 * ido.el (ido-enter-matching-directory): Rename from
16465 ido-enter-single-matching-directory. Change `slash' choice to
16466 `only'. Add `first' choice.
16467 (ido-exhibit): Adapt to above changes.
16468
16469 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
16470
16471 * Makefile.in: Expand comment about building loaddefs.el.
16472
16473 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
16474
16475 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
16476 Comment use of defadvice.
16477
16478 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
16479
16480 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
16481
16482 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
16483 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
16484 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
16485 * progmodes/idlw-shell.el, progmodes/ld-script.el,
16486 * progmodes/which-func.el, ruler-mode.el, strokes.el,
16487 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
16488 for backward compatibility for faces that did not appear in the
16489 previous Emacs release.
16490
16491 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
16492
16493 2005-08-15 Kim F. Storm <storm@cua.dk>
16494
16495 * emulation/cua-base.el (cua-delete-region): Return t if
16496 deleted region was non-empty.
16497 (cua-replace-region): Inhibit overwrite-mode for
16498 self-insert-command if replaced region was non-empty.
16499 (cua--explicit-region-start, cua--status-string): Make them
16500 buffer-local at top-level...
16501 (cua-mode): ...rather than when mode is enabled.
16502
16503 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
16504
16505 * progmodes/vhdl-mode.el (vhdl-emacs-21):
16506 Set t for Emacs 21, 22, and so on.
16507
16508 2005-08-15 David Ponce <david@dponce.com>
16509
16510 * tree-widget.el: Update Commentary header.
16511 (tree-widget-theme): Doc fix.
16512 (tree-widget-space-width): New option.
16513 (tree-widget-image-properties): Look up in the default theme too.
16514 (tree-widget--cursors): Only for images with arrow pointer shape.
16515 (tree-widget-lookup-image): Pointer shape is hand by default.
16516 (tree-widget-icon): Rename generic icon widget from
16517 `tree-widget-control'.
16518 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
16519 derive from `tree-widget-icon'.
16520 (tree-widget-handle): Improve default look and feel of the text
16521 representation.
16522 (tree-widget): Rename :*-control properties to :*-icon properties.
16523 Add :action and :help-echo properties.
16524 (tree-widget-after-toggle-functions): Move.
16525 (tree-widget-close-node, tree-widget-open-node): Remove.
16526 (tree-widget-before-create-icon-functions): New hook.
16527 (tree-widget-value-create): Update to allow customization of icons
16528 and nodes at run-time via that new hook.
16529 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
16530 (tree-widget-icon-action, tree-widget-icon-help-echo)
16531 (tree-widget-action, tree-widget-help-echo): New functions.
16532
16533 2005-08-15 Kim F. Storm <storm@cua.dk>
16534
16535 * ido.el (ido-buffer-internal): Use with-no-warnings.
16536 (ido-make-merged-file-list): Use while-no-input.
16537
16538 2005-08-15 Richard M. Stallman <rms@gnu.org>
16539
16540 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
16541 (flyspell-large-region): Fix doc and custom type.
16542
16543 2005-08-14 Richard M. Stallman <rms@gnu.org>
16544
16545 * files.el (interpreter-mode-alist): Doc fix.
16546
16547 * mail/rmail.el (rmail-nonignored-headers): New variable.
16548 (rmail-clear-headers): Use it.
16549 (rmail-reply): Better handling of mail-followup-to header.
16550
16551 * progmodes/sh-script.el (sh-font-lock-keywords-var):
16552 Rename variable from sh-font-lock-keywords. In the `shell' entry,
16553 don't try to refer to executable-font-lock-keywords.
16554 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
16555 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
16556 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
16557 (sh-mode): Set comment-start-skip, local-abbrev-table,
16558 imenu-case-fold-search.
16559 (sh-set-shell): Don't set them here.
16560 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
16561 Don't cache the results in the original alist; don't ever modify
16562 that alist.
16563
16564 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
16565
16566 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
16567 empty.
16568
16569 2005-08-15 Andreas Schwab <schwab@suse.de>
16570
16571 * desktop.el: Put autoload cookie at risky-local-variable declarations.
16572
16573 * dired.el, info.el, mail/rmail.el: Revert last change.
16574
16575 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
16576
16577 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
16578 modification in `eval-after-load' form.
16579 * info.el: Likewise.
16580 * mail/rmail.el: Likewise.
16581
16582 2005-08-14 Juri Linkov <juri@jurta.org>
16583
16584 * progmodes/compile.el (compilation-mode-font-lock-keywords):
16585 Remove highlighting of "Compilation started". Highlight only
16586 the word "finished" in "Compilation finished". Add highlighting
16587 of "interrupt", "killed", "terminated" and the exit code.
16588 (compilation-start): Add newline after header. Use exactly the
16589 same time stamp format as the finishing message.
16590 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
16591
16592 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
16593 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
16594 Add highlighting of "interrupt", "killed", "terminated".
16595
16596 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
16597 enabled and the current command is self-insert-command, call it
16598 explicitly with overwrite-mode bound to nil, to not allow it
16599 to delete the character after the selected region.
16600
16601 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
16602
16603 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
16604 move-end-of-line, end-of-line, and beginning-of-line to the list
16605 of commands after which the echo area is updated.
16606
16607 2005-08-12 Eli Zaretskii <eliz@gnu.org>
16608
16609 * cus-edit.el (custom-save-all, custom-save-delete):
16610 Bind recentf-exclude to exclude custom-file.
16611
16612 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
16613
16614 * mail/rmailsum.el (rmail-summary-end-of-message): New command
16615 to go to the bottom of the mail message. Added to
16616 `rmail-summary-mode-map' with key "/".
16617 (rmail-summary-show-message): New (internal) function for use by
16618 both `rmail-summary-beginning/end-of-message'.
16619 (rmail-summary-beginning-of-message): Change to use
16620 rmail-summary-show-message.
16621
16622 * mail/rmail.el (rmail-end-of-message): New command to go to the
16623 end of the current message. Added to `rmail-mode-map' with key "/".
16624 (rmail-beginning-of-message): Fix to work as documented.
16625 (rmail-mode): Change documentation.
16626
16627 * progmodes/compile.el (compilation-start): Add the line
16628 "Compilation started" with compilation start time.
16629 (compilation-mode-font-lock-keywords): Add `started' to keywords.
16630
16631 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
16632
16633 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
16634 of menu items.
16635
16636 2005-08-11 Richard M. Stallman <rms@gnu.org>
16637
16638 * simple.el (pop-global-mark): Reverse test of widen-automatically.
16639
16640 * battery.el (battery-status-function): Don't use ignore-errors.
16641
16642 2005-08-11 Lute Kamstra <lute@gnu.org>
16643
16644 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
16645 define-obsolete-variable-alias.
16646
16647 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
16648
16649 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
16650 (ange-ftp-send-cmd): Revert last change, and expand
16651 the comment explaining the problem.
16652
16653 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
16654
16655 * ldefs-boot.el: Update.
16656
16657 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
16658 item to "Time, Load and Mail". Change help echo text.
16659
16660 * time.el (display-time-use-mail-icon, display-time-format)
16661 (display-time-string-forms): Shorten first line of docstrings.
16662
16663 2005-08-10 Lars Hansen <larsh@soem.dk>
16664
16665 * desktop.el (desktop-buffer-mode-handlers):
16666 Make non-customizable. Add autoload cookie. Change initial value to
16667 nil; add elements in respective modules instead. Fix doc string.
16668 (desktop-load-file): New function.
16669 (desktop-minor-mode-handlers): New autoloaded variable.
16670 (desktop-create-buffer): Call minor mode handlers.
16671 Use desktop-load-file to load major and minor mode modules prior to
16672 checking for a handler.
16673 (desktop-save): Don't add nil to desktop-minor-modes for minor
16674 modes with nil function in desktop-minor-mode-table. Don't delete
16675 desktop file before rewriting it.
16676 (desktop-locals-to-save): Add autoload cookie. Don't make
16677 automatically buffer-local. Add variables column-number-mode,
16678 size-indication-mode, indent-tabs-mode,
16679 indicate-buffer-boundaries, indicate-empty-lines and
16680 show-trailing-whitespace.
16681 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
16682 regexps. Don't use desktop-clear-preserve-buffers-regexp.
16683 (desktop-clear-preserve-buffers-regexp): Delete.
16684 (desktop-clear-preserve-buffers): Update initial value and docstring.
16685 (desktop-save-buffer): Fix doc string.
16686
16687 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
16688 (hilit-chg-desktop-restore): New function.
16689 (highlight-changes-mode): Add highlight-changes-mode to
16690 desktop-locals-to-save.
16691
16692 * dired.el: Add handler to desktop-buffer-mode-handlers.
16693 (dired-restore-desktop-buffer): Remove autoload cookie.
16694 (dired-mode): Add autoload cookie.
16695
16696 * info.el: Add handler to desktop-buffer-mode-handlers.
16697 (Info-restore-desktop-buffer): Remove autoload cookie.
16698 (Info-mode): Add autoload cookie.
16699
16700 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
16701 (mh-restore-desktop-buffer): Remove autoload cookie.
16702 (mh-folder-mode): Add autoload cookie.
16703
16704 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
16705 (rmail-restore-desktop-buffer): Remove autoload cookie.
16706
16707 2005-08-11 Masatake YAMATO <jet@gyve.org>
16708
16709 * hexl.el (hexl-address-region):
16710 (hexl-ascii-region, hexl-font-lock-keywords):
16711 (hexl-highlight-line-range): Use the term "region"
16712 instead of "area" for consistency with the other symbols
16713 defined in hexl.el.
16714
16715 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
16716
16717 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
16718 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
16719 out by Juri Linkov). Add `display-battery-mode'.
16720
16721 2005-08-09 Juri Linkov <juri@jurta.org>
16722
16723 * progmodes/compile.el (compilation-mode-font-lock-keywords):
16724 Remove `-text' from face variable names.
16725 (compilation-error-file-name, compilation-warning-file-name)
16726 (compilation-info-file-name): Delete faces.
16727 (compilation-line-number, compilation-column-number):
16728 Remove face underlining.
16729 (compilation-message-face): Set to `underline' value by default.
16730 (compilation-error-face, compilation-warning-face)
16731 (compilation-info-face): Remove `-file-name' from face names.
16732 (compilation-error-text-face, compilation-warning-text-face)
16733 (compilation-info-text-face): Delete face variables.
16734 (compilation-text-face): Delete function.
16735
16736 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
16737 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
16738 (grep-error-face): Set to `compilation-error' instead of
16739 `compilation-error-face' (which is redefined to `grep-hit-face' in
16740 grep buffers).
16741 (grep-mode-font-lock-keywords): Remove `-text' from face variable
16742 names. Use `grep-error-face' instead of `compilation-error-text-face'.
16743
16744 * dired-aux.el (dired-do-query-replace-regexp):
16745 Use `query-replace-read-args'.
16746
16747 * replace.el (query-replace-read-from, query-replace-read-to)
16748 (query-replace-read-args): Rename arg `string' to `prompt'.
16749
16750 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
16751
16752 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
16753
16754 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
16755 uploading files.
16756 (ange-ftp-canonize-filename): Handle file names beginning with ~
16757 correctly.
16758
16759 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
16760
16761 * textmodes/fill.el (canonically-space-region)
16762 (fill-context-prefix, fill-french-nobreak-p)
16763 (fill-delete-newlines, fill-comment-paragraph)
16764 (justify-current-line): "?\ " -> "?\s".
16765
16766 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
16767
16768 * textmodes/fill.el (fill-nonuniform-paragraphs):
16769 Improve argument/docstring consistency.
16770
16771 2005-08-09 Richard M. Stallman <rms@gnu.org>
16772
16773 * textmodes/ispell.el (ispell-word): More fboundp checks.
16774
16775 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
16776 (find-file-noselect-1): Call it here, only if RAWFILE.
16777 (normal-mode): Always set some major mode.
16778 (save-some-buffers-action-alist): Change some explanation strings.
16779 (file-name-non-special): In the `quote' method, use unwind-protect.
16780
16781 2005-08-09 Magnus Henoch <mange@freemail.hu>
16782
16783 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
16784 (ispell-have-aspell-dictionaries): New variable.
16785 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
16786 (ispell-get-aspell-config-value): New function.
16787 (ispell-aspell-find-dictionary): New function.
16788 (ispell-aspell-add-aliases): New function.
16789 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
16790 appropriate. Don't look for ispell dictionaries if we use aspell.
16791 (ispell-menu-map): Don't build a submenu of dictionaries.
16792
16793 2005-08-09 Richard M. Stallman <rms@gnu.org>
16794
16795 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
16796 (sql-read-passwd): Use read-passwd.
16797
16798 * progmodes/idlw-toolbar.el (idlwave-toolbar)
16799 (idlwave-toolbar-is-possible): Add defvars.
16800
16801 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
16802 Avoid warnings.
16803
16804 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
16805 (idlwave-system-class-info, idlwave-executive-commands-alist):
16806 Use defvar.
16807
16808 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
16809
16810 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
16811 Avoid warnings.
16812
16813 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
16814 and content-type: headers.
16815
16816 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
16817
16818 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
16819 and rename some of them to be more self-explanatory.
16820
16821 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
16822
16823 * startup.el (command-line-1): Implement -scriptload.
16824
16825 * replace.el (occur-engine): Initial *Occur* output not undoable.
16826
16827 * menu-bar.el (menu-bar-file-menu): Rename some menu items
16828 and improve help strings.
16829
16830 * isearch.el (isearch-repeat): When changing direction,
16831 mark search successful.
16832
16833 * ediff-init.el: Use (featurep 'xemacs).
16834
16835 * comint.el (send-invisible): Identify buffer, if not selected.
16836
16837 * align.el: Delete autoload for c-guess-basic-syntax.
16838
16839 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
16840
16841 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
16842 Improve argument/docstring consistency. Doc fixes.
16843 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
16844 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
16845 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
16846 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
16847 (r2bv-organization, r2bv-pages, r2bv-primary-author)
16848 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
16849 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
16850 Defvar at compile time.
16851
16852 2005-08-09 Juri Linkov <juri@jurta.org>
16853
16854 * info.el: Replace `info' with upper-case `Info' where appropriate.
16855 (info-title-1, info-title-2, info-title-3, info-title-4)
16856 (info-menu-header): Move up face definitions.
16857 (info-menu-star): Rename from `info-menu-5'.
16858 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
16859 (Info-fontify-visited-nodes): Fix docstring.
16860 (Info-hide-note-references): Fix docstring.
16861 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
16862 menu items in the same way as on cross-references.
16863 (info-apropos): Fix sorting order and formatting to be like in the
16864 stand-alone Info browser. Display error messages for 1 sec.
16865 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
16866 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
16867 from the menu bar.
16868 (Info-insert-dir): Restore point after calling
16869 `insert-buffer-substring'.
16870
16871 2005-08-08 Richard M. Stallman <rms@gnu.org>
16872
16873 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
16874 (recompute-lucid-menubar): Add defvars.
16875
16876 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
16877
16878 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
16879
16880 * net/net-utils.el (run-dig): Rename from `dig'.
16881
16882 * play/gametree.el (gametree-mode): Use make-local-variable,
16883 not make-variable-buffer-local.
16884
16885 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
16886
16887 * ansi-color.el (ansi-color-make-extent)
16888 (ansi-color-set-extent-face): Use fboundp, not functionp.
16889
16890 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
16891 not make-variable-buffer-local.
16892
16893 * bookmark.el (Info-current-file): Add defvar.
16894 (bookmark-jump-noselect): Use with-no-warnings.
16895
16896 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
16897
16898 * ebuff-menu.el (Helper-return-blurb): Add defvar.
16899
16900 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
16901
16902 * find-file.el (ada-procedure-start-regexp)
16903 (ada-package-start-regexp): Add defvars.
16904
16905 * info.el (Info-insert-dir): Use insert-buffer-substring.
16906
16907 * xml.el (xml-att-def-re): Add defvar.
16908
16909 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
16910 calling convention.
16911
16912 * subr.el (while-no-input): Return t if there is input.
16913
16914 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
16915
16916 * cus-start.el (all): Add `overflow-newline-into-fringe'.
16917
16918 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
16919
16920 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
16921 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
16922
16923 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
16924
16925 * cmuscheme.el (scheme-start-file): Replace reference to
16926 `user-emacs-directory' by "~/.emacs.d/".
16927
16928 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
16929
16930 * info.el (Info-dir-remove-duplicates): Avoid case folding
16931 in loop; instead, keep downcased strings for comparison.
16932 Suggested by Helmut Eller.
16933
16934 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
16935
16936 Sync with Tramp 2.0.50.
16937
16938 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
16939 XEmacs case; not necessary anymore.
16940 (tramp-user-regexp): Allow "@" as part of user name.
16941 (tramp-handle-set-visited-file-modtime)
16942 (tramp-handle-insert-file-contents)
16943 (tramp-handle-write-region): No special handling for
16944 `last-coding-system-used, because this is done in
16945 `tramp-accept-process-output' now.
16946 (tramp-accept-process-output): New defun.
16947 (tramp-process-one-action, tramp-process-one-multi-action)
16948 (tramp-wait-for-regexp, tramp-wait-for-output)
16949 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
16950 Howells <dhowells@redhat.com>.
16951 (clear-visited-file-modtime): Defadvice removed. The check for
16952 unset buffer's modtime does not need to be based on
16953 `tramp-buffer-file-attributes'. Suggested by RMS.
16954 (tramp-message): Insert "\n" if not being at beginning of line.
16955 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
16956 sequence with same logic.
16957 (tramp-completion-handle-expand-file-name): Discard call of
16958 `tramp-drop-volume-letter'. It is not necessary, and there have
16959 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
16960 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
16961 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
16962 should always be visible.
16963 (tramp-handle-insert-directory, tramp-setup-complete)
16964 (tramp-set-process-query-on-exit-flag)
16965 (tramp-append-tramp-buffers): Pacify byte-compiler.
16966 (tramp-bug): Delete non-existing variables from list.
16967 Apply `tramp-load-report-modules' as pre-hook.
16968 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
16969 `shell-prompt-pattern' because of non-7bit characters.
16970 Reported by Sebastian Luque <sluque@mun.ca>.
16971 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
16972 (tramp-match-string-list): Remove function.
16973 (tramp-wait-for-regexp): Remove call of that function.
16974 Suggested by Kim F. Storm <storm@cua.dk>.
16975 (tramp-set-auto-save-file-modes): Use octal integer code #o600
16976 instead of octal character code ?\600. The latter resulted in a
16977 syntax error with XEmacs.
16978
16979 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
16980 XEmacs case; not necessary anymore.
16981 (tramp-smb-handle-write-region): No special handling for
16982 `last-coding-system-used, because this is done in
16983 `tramp-accept-process-output' now.
16984 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
16985
16986 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
16987
16988 * wid-edit.el (widget-choice-value-create):
16989 Unconditionally respect user choice. Set :explicit-choice back to nil
16990 when no longer needed.
16991 (widget-choice-action): Unconditionally respect user choice.
16992 Eliminate :explicit-choice-value.
16993
16994 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
16995
16996 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
16997 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
16998 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
16999 running new function `toggle-indicate-empty-lines'.
17000 Rename "Customize" item to "Customize fringe".
17001 Rename "Indicators" item to "Buffer boundaries" and change help echo.
17002 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
17003 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
17004 Delete "Empty lines only" item.
17005 (menu-bar-showhide-fringe-ind-customize): New function.
17006 (menu-bar-showhide-fringe-ind-mixed)
17007 (menu-bar-showhide-fringe-ind-box)
17008 (menu-bar-showhide-fringe-ind-right)
17009 (menu-bar-showhide-fringe-ind-left)
17010 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
17011 instead of `fringe-indicators'.
17012
17013 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
17014
17015 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
17016 Change the date of last update.
17017
17018 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
17019
17020 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
17021 (viper-exec-yank, viper-put-back): Don't display modification msg
17022 if in the minibuffer.
17023
17024 * viper-init.el (viper-replace-overlay-cursor-color)
17025 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
17026 Make variables frame local.
17027
17028 * viper-util.el (viper-append-filter-alist): Use append instead of
17029 nconc.
17030
17031 * viper.el (viper-vi-state-mode-list)
17032 (viper-emacs-state-mode-list): Move help-mode and
17033 completion-list-mode from the first list to the second.
17034 (viper-mode): Docstring.
17035 (viper-go-away, viper-non-hook-settings): Don't localize
17036 minor-mode-alist in newer Emacsen. Add advice to
17037 set-cursor-color. Don't bind "\C-c\\".
17038
17039 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
17040
17041 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
17042 (scheme-macro-expand-command): New user options.
17043 (scheme-trace-procedure, scheme-expand-current-form): New commands.
17044 (scheme-form-at-point, scheme-start-file)
17045 (scheme-interactively-start-process): New functions.
17046 (scheme-get-process): New function, extracted from `scheme-proc'.
17047 (run-scheme): Call `scheme-start-file' to get start file, and pass
17048 it to `make-comint'.
17049 (switch-to-scheme, scheme-proc):
17050 Call `scheme-interactively-start-process' if no Scheme buffer/process
17051 is available.
17052
17053 2005-08-06 Juri Linkov <juri@jurta.org>
17054
17055 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17056 Use `compilation-text-face', `compilation-info-text-face' and
17057 `compilation-error-text-face' instead of `font-lock-keyword-face'.
17058 (compilation-error): New face.
17059 (compilation-error-file-name): Inherit from
17060 `compilation-error' instead of `font-lock-warning-face'.
17061 (compilation-warning-file-name): Inherit from
17062 `compilation-warning' instead of `font-lock-warning-face'.
17063 (compilation-info, compilation-error-file-name)
17064 (compilation-warning-file-name, compilation-info-file-name)
17065 (compilation-line-number, compilation-column-number): Doc fix.
17066 (compilation-error-text-face, compilation-warning-text-face)
17067 (compilation-info-text-face): New face variables.
17068 (compilation-line-face, compilation-column-face)
17069 (compilation-enter-directory-face)
17070 (compilation-leave-directory-face): Doc fix.
17071 (compilation-text-face): New function.
17072
17073 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
17074 instead of 1 to display binary file names as info file links.
17075 (grep-error-face): Use `compilation-error-face' instead of
17076 `font-lock-keyword-face'.
17077 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
17078 and `compilation-warning-text-face' instead of
17079 `font-lock-keyword-face'. Use `compilation-error-text-face'
17080 instead of `grep-error-face'.
17081
17082 2005-08-05 Kenichi Handa <handa@m17n.org>
17083
17084 * international/code-pages.el: Add autoload cookies for all coding
17085 systems.
17086
17087 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
17088
17089 * cus-start.el (all): Put undo.c where it alphabetically belongs.
17090
17091 2005-08-04 Juri Linkov <juri@jurta.org>
17092
17093 * progmodes/compile.el (compilation-mode-map):
17094 * progmodes/grep.el (grep-mode-map):
17095 Bind TAB to `compilation-next-error' and [backtab] to
17096 `compilation-previous-error'.
17097
17098 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
17099 matching line numbers, column numbers and their ranges with regexp
17100 matching only line numbers.
17101 (grep-context-face): New face variable.
17102 (grep-mode-font-lock-keywords): Use it.
17103
17104 * faces.el (read-face-name): Delete duplicate faces.
17105
17106 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
17107
17108 * thumbs.el (thumbs-find-image): Don't make variables
17109 automatically buffer local.
17110 (thumbs-current-tmp-filename, thumbs-current-image-filename)
17111 (thumbs-image-num): Make automatically buffer local.
17112 (thumbs-show-thumbs-list): Use `make-local-variable', not
17113 `make-variable-buffer-local'.
17114 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
17115
17116 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
17117 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
17118 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
17119 (bother, bye, canyou, chatlst, continue, deathlst, describe)
17120 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
17121 (feelings-about, foullst, found, hello, history, howareyoulst)
17122 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
17123 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
17124 (neglst, obj, object, owner, please, problems, qlist)
17125 (random-adjective, relation, remlst, repetitive-shortness)
17126 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
17127 (shortlst, something, sportslst, stallmanlst, states, subj)
17128 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
17129 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
17130 Defvar at compile time.
17131
17132 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
17133 not `make-variable-buffer-local'.
17134
17135 2005-08-02 Kim F. Storm <storm@cua.dk>
17136
17137 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
17138 rectangle overlay in selected window.
17139
17140 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
17141
17142 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
17143 instead of display group. Make `indicate-buffer-boundaries'
17144 customizable through Custom.
17145
17146 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
17147
17148 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
17149 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
17150 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
17151 (gdb-put-string): Fix typos in docstrings.
17152
17153 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
17154
17155 Update copyright notices of files in progmodes directory for
17156 release of Emacs 22.1.
17157
17158 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
17159
17160 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
17161 Don't barf if the GUD buffer has been killed.
17162
17163 2005-08-01 Kim F. Storm <storm@cua.dk>
17164
17165 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
17166
17167 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
17168
17169 * simple.el (next-error-follow-minor-mode):
17170 make-variable-buffer-local -> make-local-variable.
17171
17172 * emacs-lisp/cl-extra.el: Require CL also when compiling.
17173
17174 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
17175 (byte-compile-form-make-variable-buffer-local): New functions to warn
17176 about misuses of make-variable-buffer-local where make-local-variable
17177 was meant.
17178
17179 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
17180
17181 * bs.el (bs-attributes-list): Doc fix.
17182 (bs): Update url-link.
17183
17184 * desktop.el (desktop-save-buffer): Fix typos in docstring.
17185 (desktop-load-default): Simplify.
17186
17187 * ibuffer.el (ibuffer-columnize-and-insert-list)
17188 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
17189 (ibuffer-unmark-all, ibuffer-toggle-marks)
17190 (ibuffer-unmark-forward, ibuffer-unmark-backward)
17191 (ibuffer-compile-make-format-form, ibuffer-format-column)
17192 (ibuffer-current-buffers-with-marks)
17193 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
17194 (ibuffer): Doc fix.
17195 (ibuffer-mode): Fix typo in docstring.
17196 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
17197 with `define-obsolete-variable-alias'.
17198 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
17199
17200 2005-07-29 Kenichi Handa <handa@m17n.org>
17201
17202 * international/mule-cmds.el (select-message-coding-system):
17203 Be sure to use LF for end-of-line. If no coding system is decided,
17204 return iso-8859-1-unix.
17205
17206 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
17207
17208 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
17209 (ange-ftp-pending-error-line): New vars.
17210 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
17211 to handle the non-fatal no-route-to-host messages.
17212 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
17213
17214 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
17215
17216 * isearch.el (isearch-mode-map, isearch-other-meta-char)
17217 (isearch-quote-char, isearch-printing-char)
17218 (isearch-text-char-description): "?\ " -> "?\s".
17219 (isearch-lazy-highlight-cleanup)
17220 (isearch-lazy-highlight-initial-delay)
17221 (isearch-lazy-highlight-interval)
17222 (isearch-lazy-highlight-max-at-a-time)
17223 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
17224 Declare with define-obsolete-*-alias macros.
17225 (isearch-forward): Fix typo in docstring.
17226 (search-invisible, search-ring-yank-pointer)
17227 (regexp-search-ring-yank-pointer): Doc fixes.
17228
17229 * recentf.el (recentf-menu-append-commands-p): Declare with
17230 `define-obsolete-variable-alias'.
17231 (recentf-max-saved-items, recentf-menu-filter)
17232 (recentf-arrange-by-rule-subfilter): Doc fixes.
17233 (recentf-menu-append-commands-flag)
17234 (recentf-initialize-file-name-history, recentf-expand-file-name)
17235 (recentf-clear-data): Fix typos in docstrings.
17236
17237 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
17238
17239 * progmodes/gdb-ui.el: Smarten comments.
17240 (gdb-info-breakpoints-custom): Use nowarn when finding file.
17241
17242 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
17243
17244 * term/apollo.el (terminal-init-apollo): New function containing
17245 all former top level forms in the file.
17246 * term/bobcat.el (terminal-init-bobcat):
17247 * term/cygwin.el (terminal-init-cygwin):
17248 * term/iris-ansi.el (terminal-init-iris-ansi):
17249 * term/linux.el (terminal-init-linux):
17250 * term/news.el (terminal-init-news):
17251 * term/rxvt.el (terminal-init-rxvt):
17252 * term/sun.el (terminal-init-sun):
17253 * term/tvi970.el (terminal-init-tvi970):
17254 * term/vt100.el (terminal-init-vt100):
17255 * term/vt102.el (terminal-init-vt102):
17256 * term/vt125.el (terminal-init-vt125):
17257 * term/vt200.el (terminal-init-vt200):
17258 * term/vt201.el (terminal-init-vt201):
17259 * term/vt220.el (terminal-init-vt220):
17260 * term/vt240.el (terminal-init-vt240):
17261 * term/vt300.el (terminal-init-vt300):
17262 * term/vt320.el (terminal-init-vt320):
17263 * term/vt400.el (terminal-init-vt400):
17264 * term/vt420.el (terminal-init-vt420):
17265 * term/wyse50.el (terminal-init-wyse50):
17266 * term/xterm.el (terminal-init-xterm): Likewise.
17267
17268 * term/README: Describe the terminal-init-* functionality.
17269
17270 * startup.el (command-line): After loading the terminal initialization
17271 file call the corresponding terminal initialization function.
17272
17273 2005-07-27 Kenichi Handa <handa@m17n.org>
17274
17275 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
17276 negative.
17277
17278 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
17279 (ps-mule-composition-prologue): Fix for the case that
17280 RelativeCompose is false.
17281
17282 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
17283
17284 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
17285
17286 * descr-text.el (describe-char): Handle the case where the list of
17287 chars is displayed in a separate frame.
17288 Be a bit more discriminating when looking for the char.
17289
17290 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
17291
17292 * bookmark.el (bookmark-automatically-show-annotations)
17293 (bookmark-read-annotation-text-func): Doc fixes.
17294 (bookmark-save): Improve argument/docstring consistency.
17295 (bookmark-get-bookmark, bookmark-get-bookmark-record)
17296 (bookmark-alist-from-buffer)
17297 (bookmark-upgrade-file-format-from-0)
17298 (bookmark-grok-file-format-version)
17299 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
17300 (bookmark-read-annotation-mode)
17301 (bookmark-insert-current-bookmark, bookmark-jump)
17302 (bookmark-exit-hook): Fix typos in docstrings.
17303 (bookmark-exit-hooks): Define as obsolete alias.
17304 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
17305 not `bookmark-exit-hooks'. Fix docstring.
17306 (bookmark-bmenu-select): "?\ " -> "?\s".
17307
17308 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
17309
17310 * startup.el (command-line): Fix typo.
17311
17312 2005-07-24 Richard M. Stallman <rms@gnu.org>
17313
17314 * tooltip.el (tooltip-mode): Test emacs-basic-display,
17315 not emacs-quick-startup.
17316
17317 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
17318
17319 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
17320 (reb-next-match, reb-show-subexp): Use `with-selected-window'
17321 instead of `reb-with-current-window'.
17322 (reb-prev-match): Likewise. Also, don't move left if the search
17323 was unsuccessful.
17324 (reb-initialize-buffer): New function.
17325 (re-builder, reb-change-syntax): Use it.
17326
17327 * man.el (Man-goto-page): Make second argument NOERROR optional.
17328
17329 2005-07-23 Richard M. Stallman <rms@gnu.org>
17330
17331 * man.el (Man-bgproc-sentinel): Check here for failure to find
17332 any man page in the output, and report the error here.
17333 (Man-arguments): Make it permanent local.
17334 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
17335 (Man-mode): Pass t for NOERROR.
17336
17337 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
17338 (grep-mode-font-lock-keywords):
17339 Don't use compilation-...-face for messages that are not file names.
17340
17341 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17342 Don't use compilation-...-face for messages that are not file names.
17343
17344 2005-07-22 Juri Linkov <juri@jurta.org>
17345
17346 * startup.el (normal-splash-screen): Update menu name.
17347
17348 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
17349
17350 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
17351
17352 * term/xterm.el: Load term/rxvt if the terminal is actually an
17353 rxvt terminal.
17354 (xterm-rxvt-set-background-mode): Remove, not used anymore.
17355
17356 * term/rxvt.el (function-key-map): Use substitute-key-definition
17357 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
17358
17359 * term/cygwin.el: New file.
17360
17361 2005-07-22 Kim F. Storm <storm@cua.dk>
17362
17363 * image-file.el (insert-image-file, image-file-yank-handler):
17364 Fix last change to maintain a (unique) yank-handler on yanked images.
17365
17366 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
17367
17368 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
17369 of the file size (as in "177B" for 177 bytes). This happens with
17370 "ls -lh" on FreeBSD.
17371
17372 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
17373
17374 * hilit-chg.el (highlight-changes-global-initial-state)
17375 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
17376 (hilit-chg-fixup, highlight-changes-mode):
17377 Fix typos in docstrings.
17378 (highlight-changes-global-modes, highlight-changes-rotate-faces):
17379 Doc fixes.
17380
17381 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
17382
17383 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
17384 mode function using `eval-after-load'.
17385
17386 2005-07-21 Kim F. Storm <storm@cua.dk>
17387
17388 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
17389 included when reporting an emacs crash, and tell about the DEBUG file.
17390
17391 * image-file.el (insert-image-file): Add yank-handler.
17392 (image-file-yank-handler): Yank handler to make unique copies of
17393 images when they are yanked into a buffer next to each other.
17394
17395 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
17396
17397 * comint.el (comint-use-prompt-regexp, comint-send-input)
17398 (comint-source-default, comint-extract-string)
17399 (comint-get-source, comint-word, comint-completion)
17400 (comint-source, comint-prompt-read-only, comint-update-fence):
17401 Fix typos in docstrings.
17402 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
17403 Declare with define-obsolete-*-alias macros.
17404 (comint-previous-matching-input-from-input)
17405 (comint-next-matching-input-from-input)
17406 (comint-previous-matching-input, comint-next-matching-input)
17407 (comint-forward-matching-input):
17408 Improve argument/docstring consistency.
17409
17410 * desktop.el (desktop-clear-preserve-buffers-regexp):
17411 Also preserve the *server* buffer.
17412
17413 * simple.el (clone-indirect-buffer): Doc fix.
17414 (fixup-whitespace, just-one-space)
17415 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
17416 (next-error, next-error-highlight)
17417 (next-error-highlight-no-select, next-error-last-buffer)
17418 (next-error-buffer-p, next-error-find-buffer, next-error)
17419 (previous-error, next-error-no-select, previous-error-no-select)
17420 (open-line, split-line, minibuffer-prompt-width, kill-new)
17421 (binary-overwrite-mode): Fix typos in docstrings.
17422 (set-fill-column): Fix typo in message.
17423
17424 * skeleton.el (skeleton-proxy-new): Doc fix.
17425
17426 * strokes.el (strokes-load-hook): Doc fix.
17427 (strokes-grid-resolution, strokes-get-grid-position)
17428 (strokes-renormalize-to-grid, strokes-read-stroke)
17429 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
17430 (strokes-global-map): Fix typos in docstrings.
17431 (strokes-help): Doc fix. Fix help message and pass it through
17432 `substitute-command-keys'.
17433
17434 * tempo.el (tempo-insert-prompt, tempo-interactive)
17435 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
17436 (tempo-insert-string-functions, tempo-local-tags)
17437 (tempo-define-template, tempo-insert-template)
17438 (tempo-insert-prompt-compat, tempo-is-user-element)
17439 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
17440 Fix typos in docstrings.
17441
17442 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
17443 (vcursor-key-bindings, vcursor-use-vcursor-map)
17444 (vcursor-find-window, vcursor-scroll-down)
17445 (vcursor-disable, vcursor-beginning-of-buffer)
17446 (vcursor-end-of-buffer): Fix typos in docstrings.
17447 (vcursor-relative-move, vcursor-get-char-count):
17448 Improve argument/docstring consistency.
17449
17450 * version.el: "?\ " -> "?\s".
17451
17452 * wid-edit.el (widget-default-create, widget-after-change)
17453 (widget-default-format-handler, widget-checklist-add-item)
17454 (widget-radio-add-item, widget-choose, widget-specify-secret)
17455 (widget-field-value-create, widget-field-value-get)
17456 (widget-editable-list-format-handler)
17457 (widget-editable-list-entry-create, widget-group-value-create)
17458 (widget-documentation-link-add)
17459 (widget-documentation-string-value-create): "?\ " -> "?\s".
17460 (widget-convert-text): Doc fix.
17461 (widget-narrow-to-field, widget-field-find)
17462 (widget-url-link-action, widget-emacs-library-link-action)
17463 (widget-color-notify): Fix typos in docstrings.
17464
17465 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
17466 (x-select-text, set-w32-system-coding-system)
17467 (w32-add-charset-info): Fix typos in docstrings.
17468
17469 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
17470 (cua-enable-cua-keys, cua-use-hyper-key)
17471 (cua-virtual-rectangle-edges): Fix typos in docstrings.
17472 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
17473
17474 * net/tramp.el (tramp-handle-load): Fix typo in error message.
17475
17476 * emacs-lisp/re-builder.el (regexp-builder): Declare with
17477 `defalias' instead of faking it.
17478
17479 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
17480 (eshell-ls-missing, eshell-ls-dired-initial-args)
17481 (eshell-ls-use-in-dired): Fix typos in docstrings.
17482
17483 2005-07-20 Kim F. Storm <storm@cua.dk>
17484
17485 * emulation/cua-base.el (cua-mode): Improve doc string.
17486
17487 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
17488
17489 * abbrev.el (expand-region-abbrevs): Doc fix.
17490 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
17491 Improve argument/docstring consistency.
17492
17493 * arc-mode.el (archive-get-descr, archive-alternate-display):
17494 Doc fixes.
17495 (archive-l-e): Improve argument/docstring consistency.
17496 (archive-tmpdir, archive-unixdate, archive-unixtime)
17497 (archive-chmod-entry): Fix typos in docstrings.
17498 (archive-unflag, archive-unflag-backwards)
17499 (archive-unmark-all-files): "?\ " -> "?\s".
17500
17501 * buff-menu.el (Buffer-menu-unmark): Doc fix.
17502 (Buffer-menu-not-modified, Buffer-menu-execute)
17503 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
17504 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
17505
17506 * composite.el (compose-string, encode-composition-rule)
17507 (compose-last-chars): Fix typos in docstrings.
17508
17509 * desktop.el (desktop-enable, desktop-basefilename):
17510 Declare with `define-obsolete-variable-alias'.
17511 (desktop-internal-v2s): Don't quote keywords.
17512 (desktop-clear): "?\ " -> "?\s".
17513
17514 * dired.el (dired-align-file, dired-flag-backup-files)
17515 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
17516 (dired-listing-switches, dired-ls-F-marks-symlinks)
17517 (dired-dwim-target, dired-load-hook, dired-mode-hook)
17518 (dired-directory, dired-faces, dired, dired-revert)
17519 (dired-mode, dired-summary, dired-view-file)
17520 (dired-copy-filename-as-kill, dired-delete-file)
17521 (dired-no-confirm, dired-unmark-all-marks)
17522 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
17523 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
17524 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
17525 Fix typos in message strings.
17526
17527 * dired-x.el (virtual-dired): Declare with `defalias'.
17528 (dired-mark-unmarked-files, dired-local-variables-file)
17529 (dired-omit-here-always): Doc fix.
17530 (dired-omit-mode, dired-find-subdir)
17531 (dired-enable-local-variables, dired-clean-up-buffers-too)
17532 (dired-extra-startup, dired-mark-extension, dired-jump)
17533 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
17534 (dired-smart-shell-command, dired-guess-shell-alist-user)
17535 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
17536 (dired-x-bind-find-file, dired-x-submit-report):
17537 Fix typos in docstrings.
17538 (dired-mark-unmarked-files): "?\ " -> "?\s".
17539
17540 * dirtrack.el (dirtrack-list): Fix typos in docstring.
17541
17542 * faces.el (describe-face): "?\ " -> "?\s".
17543 (read-all-face-attributes, read-face-font, modify-face)
17544 (face-attr-construct, italic): Fix typos in docstrings.
17545 (frame-update-face-colors): Declare with
17546 `define-obsolete-function-alias'.
17547
17548 * files.el (find-file-noselect, recode-file-name): Doc fixes.
17549 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
17550 (magic-mode-alist, buffer-file-numbers-unique)
17551 (write-file-functions, get-free-disk-space):
17552 Fix typos in docstrings.
17553 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
17554 (write-contents-hooks, write-file-hooks):
17555 Declare with `define-obsolete-variable-alias'.
17556
17557 * forms-d2.el (arch-rj): Fix typo in docstrings.
17558 (arch-tocol): Likewise. "?\ " -> "?\s".
17559
17560 * frame.el (set-frame-font, cursor-in-non-selected-windows):
17561 Fix typo in docstring.
17562 (set-screen-width, set-screen-height): Delete redundant info in
17563 doctrings.
17564 (new-frame, screen-height, screen-width): Declare with
17565 `define-obsolete-function-alias'.
17566 (delete-frame-hook, blink-cursor): Declare with
17567 `define-obsolete-variable-alias'.
17568
17569 * paths.el (prune-directory-list): Fix typos in docstring.
17570
17571 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
17572 (cvs-prefix-get): Fix typos in docstrings.
17573
17574 * ps-print.el (ps-extend-face-list, ps-extend-face)
17575 (ps-print-background-image): Fix typos in docstrings.
17576 (ps-default-fg, ps-default-bg): Doc fixes.
17577
17578 * s-region.el (s-region-bind): Doc fix.
17579 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
17580
17581 * textmodes/org.el (org-table-formula-substitute-names)
17582 (org-table-get-vertical-vector): Doc fixes.
17583 (org-table-recalculate): Remove unused argument to `message'.
17584
17585 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
17586
17587 * textmodes/org.el (org-table-column-names)
17588 (org-table-column-name-regexp)
17589 (org-table-named-field-locations): New variables.
17590 (org-archive-subtree): Protect `this-command' when calling
17591 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
17592 the kill buffer.
17593 (org-complete): Remove fixed-formula completion.
17594 (org-edit-formulas-map): New variable.
17595 (org-table-edit-formulas): New command.
17596 (org-finish-edit-formulas, org-abort-edit-formulas)
17597 (org-show-variable, org-table-get-vertical-vector): New functions.
17598 (org-table-maybe-eval-formula): Handle `:=' fields.
17599 (org-table-get-stored-formulas, org-table-store-formulas)
17600 (org-table-get-formula, org-table-modify-formulas)
17601 (org-table-replace-in-formulas): Handle named field formulas.
17602 (org-table-get-specials): Store locations of named fields.
17603
17604 2005-07-19 Juri Linkov <juri@jurta.org>
17605
17606 * progmodes/grep.el (grep-regexp-alist)
17607 (grep-mode-font-lock-keywords, grep-process-setup):
17608 Use default GNU grep match color "01;31m" instead of "01;41m".
17609 (grep-regexp-alist, grep-mode-font-lock-keywords):
17610 Use `\\[[0-9]*m' instead of `\\[00m'.
17611 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
17612 sgr_start where its handling is more important. Use the real
17613 length of sgr_start instead of constant 8.
17614 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
17615 specially. Delete all remaining escape sequences.
17616 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
17617 (grep-regexp-alist): Make hyperlink only for binary file name
17618 instead of the whole line.
17619 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
17620 (grep-mode): Add autoload.
17621
17622 * emacs-lisp/find-func.el (find-function-regexp):
17623 Add `define-compilation-mode'.
17624
17625 2005-07-19 Juri Linkov <juri@jurta.org>
17626
17627 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
17628 (compare-windows-sync-string-size, compare-windows-recenter)
17629 (compare-windows-highlight, compare-windows): Add version 22.1.
17630 (compare-windows) <defface>: Inherit from lazy-highlight instead
17631 of duplicating its default value.
17632
17633 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
17634 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
17635
17636 * descr-text.el (describe-char): Create link buttons for `charset'
17637 and `code point'. Add the current input method name with a link
17638 button to `to input' field. Print face names of display table
17639 characters in `The display table entry is displayed by' section
17640 instead of printing face-id in the `display' field.
17641 Guess hardcoded faces and create a link button for them.
17642 Skip empty fields when calculating max-width.
17643 Treat `widget-create' specially while inserting strings from the
17644 collected field list.
17645 (describe-char-after): Made obsolete in version 22.1, not 21.5.
17646
17647 * diff-mode.el (diff-file-header): Change foreground color from
17648 yellow to green on light backgrounds.
17649 (diff-context): Inherit from `shadow' only for color/grayscale
17650 with more than 88 colors.
17651 (diff-indicator-removed, diff-indicator-added)
17652 (diff-indicator-changed): New faces.
17653 (diff-font-lock-keywords): Use new faces. Regroup rules.
17654 Add "^---$" for `normal' diff format. Fontify `#' lines with
17655 font-lock-comment-delimiter-face and font-lock-comment-face.
17656 Add `#' to ^[^...] in the rule for `diff-context-face'.
17657
17658 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
17659 a button-like box. Inherit from `highlight' on low colors.
17660 (shadow): Use shades of gray only for color/grayscale with
17661 more than 88 colors. Use green for light backgrounds with
17662 8 colors, and yellow for dark backgrounds with 8 colors.
17663
17664 * font-lock.el (font-lock-regexp-grouping-backslash):
17665 Don't inherit from escape-glyph (use bold for all cases).
17666
17667 * info.el (info-xref-visited): Use light foreground color `violet'
17668 for dark backgrounds instead of dark color `magenta3'.
17669 (info-title-1): Use `yellow' color for dark backgrounds.
17670
17671 * isearch.el (isearch): Use not-too-dark magenta3 instead of
17672 too-light magenta2.
17673
17674 * replace.el (match): Use slightly more light RoyalBlue3 instead
17675 of dark RoyalBlue4.
17676
17677 * wid-edit.el (widget-inactive): Inherit from `shadow'.
17678
17679 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
17680
17681 * novice.el (disabled-command-hook): Declare it with
17682 `define-obsolete-variable-alias'.
17683
17684 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
17685 (desktop-buffer-misc-functions, desktop-buffer-handlers)
17686 (desktop-load-default): Add release to obsolescence info.
17687 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
17688 (desktop-append-buffer-args, desktop-read):
17689 Fix typos in docstrings.
17690 (desktop-kill): Fix typo in message.
17691 (desktop-save): Doc fix.
17692
17693 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
17694
17695 * viper-cmd.el (viper-escape-to-state): Bug fix.
17696 (viper-envelop-ESC-key): Change the definition of fast
17697 keysequence so it'll work with keyboard macros.
17698
17699 * ediff.el (ediff-patch-buffer): Change the docstring.
17700
17701 2005-07-19 Kenichi Handa <handa@m17n.org>
17702
17703 * international/mule-cmds.el (select-safe-coding-system): Try to
17704 use an auto-coding (if any) before anything else. If the found
17705 auto-coding is invalid, show a warning message.
17706
17707 * international/mule.el (find-auto-coding): New function created
17708 by modifying the body of set-auto-coding.
17709 (set-auto-coding): Use find-auto-coding to find a coding.
17710
17711 2005-07-18 Richard M. Stallman <rms@gnu.org>
17712
17713 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
17714 not isearch-mode-end-hook-error.
17715 (allout-before-change-protect): Fix error message.
17716
17717 2005-07-18 Juri Linkov <juri@jurta.org>
17718
17719 * allout.el (allout-mode):
17720 * calculator.el (calculator-copy):
17721 * custom.el (custom-known-themes):
17722 * dired.el (dired-desktop-buffer-misc-data)
17723 (dired-restore-desktop-buffer):
17724 * dired-x.el (dired-omit-marker-char):
17725 * files.el (basic-save-buffer):
17726 * font-core.el (font-lock-mode):
17727 * calendar/calendar.el (calendar-goto-hebrew-date)
17728 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
17729 (calendar-goto-persian-date):
17730 * language/ethio-util.el (ethio-sera-to-fidel-region):
17731 * textmodes/picture.el (picture-mode):
17732 Delete duplicate duplicate words.
17733
17734 2005-07-18 Juri Linkov <juri@jurta.org>
17735
17736 * isearch.el (isearch-mode-map): Remove key bindings for regexp
17737 chars * ? } |.
17738 (isearch-fallback): Don't call `isearch-process-search-char'.
17739 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
17740 (isearch-process-search-char): Call `isearch-fallback' for regexp
17741 chars * ? } |.
17742 (isearch-return-char): Make obsolete with `make-obsolete' instead
17743 of simply documenting it as obsolete in the docstring.
17744 (isearch-fallback): Refill docstring.
17745
17746 * international/isearch-x.el
17747 (isearch-process-search-multibyte-characters): Remove unneeded
17748 `concat'. Add intermediate values to `junk-hist' instead of
17749 `minibuffer-history'. Test the length of `str'.
17750
17751 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
17752
17753 * allout.el (allout-resolve-xref): Fix typos in error strings.
17754 (allout-before-change-protect): Remove unneeded `concat'.
17755
17756 * array.el (array-mode, array-reconfigure-rows)
17757 (untabify-backward): Fix typos in docstrings.
17758 (array-reconfigure-rows): Use `insert-buffer-substring', not
17759 `insert-buffer'.
17760
17761 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
17762 * progmodes/ada-mode.el (ada-make-body):
17763 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
17764
17765 * dired.el (dired-log):
17766 * tar-mode.el (tar-subfile-save-buffer):
17767 * play/zone.el (zone-pgm-stress-destress):
17768 Use `insert-buffer-substring', not `insert-buffer'.
17769
17770 2005-07-17 Simon Josefsson <jas@extundo.com>
17771
17772 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
17773
17774 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
17775
17776 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
17777 Add plain auth method.
17778 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
17779
17780 2005-07-17 Kim F. Storm <storm@cua.dk>
17781
17782 * ido.el (dired-other-window): Add ido property.
17783
17784 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
17785
17786 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
17787 Fix typo in docstring.
17788 (byte-compile-interactive-only-functions): Add `insert-buffer' and
17789 `insert-file-literally'.
17790
17791 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
17792 info and delete redundant message. Doc fix.
17793 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
17794 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
17795
17796 2005-07-16 Richard M. Stallman <rms@gnu.org>
17797
17798 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
17799 (byte-compile-and): Use byte-compile-and-recursion.
17800 (byte-compile-or-recursion): New function.
17801 (byte-compile-or): Use that.
17802 (byte-compile-if): Guard the else-clause too.
17803 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
17804
17805 * isearch.el (isearch-mode-end-hook-quit): New variable.
17806 (isearch-done): Bind it.
17807 (isearch-mode-end-hook): Doc fix.
17808
17809 * allout.el (allout-isearch-did-quit): Variable deleted.
17810 (allout-real-isearch-abort): Function name no longer used.
17811 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
17812 (allout-isearch-rectification): isearch-mode always exists.
17813 Don't set allout-isearch-did-quit.
17814 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
17815 allout-isearch-did-quit.
17816 (allout-enwrap-isearch): Just add the hook.
17817 (allout-isearch-abort): Function deleted.
17818 (allout-pre-command-business): Avoid warning.
17819
17820 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
17821 Correctly avoid warnings.
17822 (pascal-outline): Likewise.
17823
17824 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
17825
17826 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
17827
17828 * play/tetris.el (tetris-mode): Avoid warning.
17829
17830 * play/snake.el (snake-mode): Avoid warning.
17831
17832 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
17833 (gamegrid-set-display-table): Avoid warning.
17834 (gamegrid-set-timer): Likewise.
17835 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
17836 (gamegrid-add-score-with-update-game-score-1): Take FILE
17837 as argument.
17838 (gamegrid-add-score-with-update-game-score): Pass that argument.
17839 Rename have-shared-game-dir to gamegrid-shared-game-dir.
17840
17841 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
17842
17843 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
17844 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
17845
17846 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
17847 and insert-file.
17848
17849 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
17850 (sc-ask): Avoid warnings.
17851
17852 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
17853 (eshell-hist-initialize): Use that var the natural way.
17854
17855 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
17856
17857 * emacs-lisp/re-builder.el (reb-cook-regexp):
17858 Avoid warning calling lre-compile-string.
17859 (reb-color-display-p): Avoid warning.
17860
17861 * calculator.el (calculator-last-input): Guard uses
17862 of event-key and key-press-event-p.
17863 (event-key, key-press-event-p): Delete definitions.
17864
17865 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
17866 (find-gc-source-directory, find-gc-subrs-callers)
17867 (find-gc-noreturn-list, find-gc-source-files)
17868 (find-gc-subrs-called): Vars renamed and defvar'd.
17869
17870 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
17871 (checkdoc-overlay-put, checkdoc-delete-overlay)
17872 (checkdoc-overlay-start, checkdoc-overlay-end)
17873 (checkdoc-mode-line-update, checkdoc-char=):
17874 Define such that compiler knows they are defined.
17875 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
17876 (checkdoc-read-event): Delete. Use read-event directly.
17877
17878 * whitespace.el (whitespace-make-overlay)
17879 (whitespace-overlay-put, whitespace-delete-overlay)
17880 (whitespace-overlay-start, whitespace-overlay-end):
17881 Define such that compiler knows they are defined.
17882 (whitespace): Move conditional inside.
17883
17884 * tempo.el (tempo-insert-template): Suppress warning.
17885
17886 * ediff-diff.el (longlines-mode): Add defvar.
17887
17888 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
17889
17890 * server.el: Bind "C-x #" in a way that works even if C-x is
17891 redefined to a command key, not a prefix key.
17892
17893 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
17894
17895 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
17896 cl-make-type-test till execution time.
17897
17898 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
17899
17900 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
17901 arg ARG and use it.
17902
17903 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
17904
17905 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
17906
17907 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
17908
17909 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
17910 a defcustom with two :set or :type keywords.
17911
17912 2005-07-15 Richard M. Stallman <rms@gnu.org>
17913
17914 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17915 Don't give ^M comment-end syntax.
17916
17917 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
17918
17919 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
17920 Don't consider gdbmi (gdb-mi.el has its own update functions).
17921 (gdb-var-delete): Make it work for gdbmi as well.
17922 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
17923
17924 * progmodes/gud.el (etags, sdb): Only require etags when needed.
17925 (gud-speedbar-menu-items): Correct logic for enabling items.
17926
17927 2005-07-15 Kim F. Storm <storm@cua.dk>
17928
17929 * ido.el: Fix commentary.
17930 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
17931 Use with-no-warnings around ffap-guesser.
17932 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
17933 Let bind minibuffer-completing-file-name to t.
17934
17935 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
17936
17937 * startup.el (site-run-file, keyboard-type): Doc fixes.
17938 (command-line): Check for "--basic-display" argument; also for
17939 "--quick", not "--bare-bones" (which was renamed).
17940 (fancy-splash-text): Add missing item "Getting New Versions".
17941 (normal-splash-screen): Fix typos and improve consistency with
17942 `fancy-splash-text'. Update copyright year.
17943
17944 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
17945 valid binding for `help-char'.
17946
17947 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
17948
17949 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
17950
17951 * term.el (term-mode): Disable cua-mode for term buffers.
17952
17953 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
17954
17955 * add-log.el (add-log-mailing-address, change-log-merge):
17956 Doc fixes.
17957 (change-log-get-method-definition): Fix typo in docstring.
17958
17959 2005-07-14 Kim F. Storm <storm@cua.dk>
17960
17961 * emulation/cua-base.el:
17962 (cua--pre-command-handler-1, cua--pre-command-handler)
17963 (cua--post-command-handler-1, cua--post-command-handler):
17964 Split in two. Check (buffer local) value of cua-mode.
17965 (cua-selection-mode): New command.
17966
17967 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
17968
17969 * custom.el (custom-initialize-safe-set)
17970 (custom-initialize-safe-default): Doc fixes.
17971
17972 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
17973 and simplify :init-value again.
17974
17975 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
17976 and simplify :init-value again. Delete autoload.
17977
17978 * startup.el (command-line): Use `custom-reevaluate-setting' again
17979 for tooltip-mode.
17980
17981 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
17982 a defcustom with two :initialize keywords.
17983
17984 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
17985
17986 * allout.el (my-mark-marker, allout-isearch-prior-pos)
17987 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
17988 (allout-post-command-business, allout-flag-region)
17989 (isearch-reenable-font-lock, allout-yank)
17990 (allout-insert-latex-header, allout-insert-latex-trailer)
17991 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
17992 (allout-latex-verb-quote): Fix typos in docstrings.
17993 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
17994 (allout-unprotected, allout-prefix-data):
17995 Improve argument/docstring consistency.
17996 (allout-chart-subtree): Fix argument spec.
17997 (allout-open-topic): Rename `use_sib_bullet' argument to
17998 `use-sib-bullet'. Doc fix.
17999
18000 * whitespace.el (whitespace-check-buffer-leading)
18001 (whitespace-check-buffer-trailing)
18002 (whitespace-check-buffer-indent)
18003 (whitespace-check-buffer-spacetab)
18004 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
18005 (whitespace-check-leading-whitespace)
18006 (whitespace-check-trailing-whitespace)
18007 (whitespace-check-spacetab-whitespace)
18008 (whitespace-check-indent-whitespace)
18009 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
18010 (whitespace-modes): Fix typos in docstrings.
18011 (defgroup, defcustom): Doc fixes.
18012
18013 * winner.el (winner-mode, winner-boring-buffers)
18014 (winner-pending-undo-ring): Doc fixes.
18015 (winner-ring): Remove unneeded `progn'.
18016 (winner-equal): `defsubst' it.
18017 (winner-redo): Fix message.
18018
18019 2005-07-13 Kim F. Storm <storm@cua.dk>
18020
18021 * simple.el (line-move-1): Always use vertical-motion to
18022 do the last (or only) line move to ensure some movement.
18023 Undo 2005-06-23 change--don't check for overlays.
18024
18025 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18026
18027 * term/mac-win.el (ccl-encode-mac-roman-font)
18028 (ccl-encode-mac-centraleurroman-font)
18029 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
18030 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
18031 Change charset-id boundary of dimension to ?\xef.
18032 (mac-char-fontspec-list): New constant.
18033 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
18034 argument. Nil uses itself as family in font-spec. Previous
18035 behavior for nil is now provided by non-nil non-string argument.
18036 All callers changed. Add font-specs for Mac fonts to
18037 "fontset-default" unless iso8859-1 fonts are installed.
18038
18039 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
18040
18041 * progmodes/sh-script.el (sh-get-indent-info): Only indent
18042 a continuation line if the \ is preceded by SPC or TAB.
18043 (sh-get-indent-info): Simplify.
18044 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
18045 Use with-current-buffer.
18046
18047 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
18048 when the matched text is empty.
18049
18050 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
18051
18052 * startup.el (command-line): Revert to previous handling of
18053 tooltip-mode. Explain in comment why the complexity is needed.
18054
18055 * tooltip.el (tooltip-mode): Revert to previous implementation of
18056 its defcustom.
18057
18058 * frame.el (blink-cursor-mode): Revert to previous implementation
18059 of its defcustom. Update comment.
18060
18061 2005-07-12 Lars Hansen <larsh@soem.dk>
18062
18063 * desktop.el: Update e-mail address.
18064
18065 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18066
18067 * term/mac-win.el (mac-services-mail-selection)
18068 (mac-services-mail-to): New functions.
18069 (mac-application-menu-map): Bind them.
18070
18071 2005-07-12 wulei <milton@wulei.net> (tiny change)
18072
18073 * progmodes/gdb-ui.el: Add note about buffering with Windows.
18074
18075 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
18076
18077 * custom.el (custom-reevaluate-setting): Doc fix.
18078
18079 2005-07-11 Jay Belanger <belanger@truman.edu>
18080
18081 * calc/calc.el (calc-embedded-announce-formula-alist)
18082 (calc-embedded-open-close-plain-alist)
18083 (calc-embedded-open-close-mode-alist): Add checks for additional
18084 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
18085
18086 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
18087
18088 * custom.el (custom-enable-theme): Don't add theme to
18089 `custom-enabled-themes' with `push' because there is no
18090 setf-method for `delq'.
18091
18092 2005-07-11 Richard M. Stallman <rms@gnu.org>
18093
18094 * custom.el (custom-declare-variable): Doc fix.
18095
18096 * dired-aux.el (dired-compare-directories): Remove "." and ".."
18097 from the alists.
18098
18099 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
18100 Do nothing if edebug-active.
18101
18102 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
18103 (edebug-display): Do it here instead.
18104
18105 2005-07-10 Richard M. Stallman <rms@gnu.org>
18106
18107 * cus-face.el (custom-theme-set-faces): Make it work.
18108 (custom-reset-faces): Doc fix.
18109 (custom-theme-reset-internal-face, custom-theme-face-value):
18110 Functions deleted.
18111
18112 * custom.el (custom-push-theme): Maintain list of the settings
18113 of a given theme in its theme-settings property.
18114 Maintain position of old settings in the theme-value
18115 or theme-face property.
18116 (custom-enabled-themes): New variable.
18117 (custom-theme-enabled-p): New function.
18118 (provide-theme): Update custom-enabled-themes.
18119 Disable and reenable the `user' theme.
18120 (require-theme): Doc fix.
18121 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
18122 (custom-theme-value, custom-theme-variable-value): Likewise.
18123 (custom-theme-reset-internal): Likewise.
18124 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
18125 (custom-enable-theme, custom-disable-theme): New functions.
18126 (custom-variable-theme-value, custom-face-theme-value): Likewise.
18127 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
18128 (custom-theme-reset-variables): Simplify.
18129 (deftheme, custom-declare-theme, custom-make-theme-feature):
18130 Definitions moved.
18131
18132 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
18133
18134 * longlines.el (longlines-show-region)
18135 (longlines-unshow-hard-newlines): Recognize hard newlines by
18136 non-nil hard property, instead of t.
18137
18138 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
18139
18140 * viper-cmd.el (viper--key-maps): New variable.
18141 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
18142 emulation-mode-map-alists.
18143 (viper-envelop-ESC-key): Use viper-subseq.
18144 (viper-search-forward/backward/next): Disable debug-on-error.
18145
18146 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
18147 (viper-ESC-key): New defcustoms.
18148
18149 * viper-macs.el (ex-map-read-args): Use viper-subseq.
18150
18151 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
18152 (viper-subseq): Copy of subseq from cl.el.
18153
18154 * viper.el (viper-go-away, viper-set-hooks): Use
18155 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
18156
18157 * viper-mous.el (viper-current-frame-saved): Use defvar.
18158
18159 * viper-init.el: Get rid of -face in face names.
18160
18161 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
18162 Make it work with longlines mode
18163
18164 * ediff-mult.el (ediff-meta-mode-hook): New variable.
18165
18166 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
18167
18168 * ediff-init.el: Get rid of -face in face names.
18169
18170 2005-07-10 Richard M. Stallman <rms@gnu.org>
18171
18172 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
18173 and with-timeout-unsuspend.
18174
18175 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
18176 and with-timeout-unsuspend.
18177
18178 * emacs-lisp/timer.el (with-timeout-timers): New variable.
18179 (with-timeout): Bind that variable to record timers.
18180 (with-timeout-suspend, with-timeout-unsuspend): New functions.
18181
18182 * emacs-lisp/debug.el (debug-help-follow): New function.
18183 (debugger-mode-map): Use that instead of help-follow.
18184 (debugger-setup-buffer): Use eval-buffer-list
18185 to handle eval-buffer frames.
18186
18187 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
18188
18189 * timezone.el (timezone-parse-date): Change first regexp
18190 so it will not mistakenly match dates with no time zone.
18191
18192 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
18193
18194 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
18195
18196 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
18197
18198 * custom.el (custom-initialize-safe-set)
18199 (custom-initialize-safe-default): New functions.
18200
18201 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
18202 and simplify :init-value.
18203
18204 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
18205 and simplify :init-value. Delete obsolete comment.
18206
18207 * startup.el (command-line): Use `custom-reevaluate-setting' to
18208 handle `tooltip-mode'. Delete obsolete comment.
18209
18210 * files.el (set-visited-file-name): Avoid calling
18211 `file-name-nondirectory' with a nil argument.
18212
18213 2005-07-09 Richard M. Stallman <rms@gnu.org>
18214
18215 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
18216 was called with nil for the buffer, handle the read position right.
18217 Handle read position for eval-region, too.
18218
18219 2005-07-09 Juri Linkov <juri@jurta.org>
18220
18221 * fringe.el (fringe-mode): Add period in docstring.
18222 (fringe-query-style): Build prompt depending on `all-frames' arg.
18223
18224 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
18225 to not create links to unrelated functions in the Help buffer.
18226
18227 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
18228 Doc fix.
18229
18230 * simple.el (next-error-hook): New variable.
18231 (next-error): Use it. Doc fix.
18232
18233 * textmodes/ispell.el (ispell-command-loop): Add current
18234 dictionary name and program name to mode-line-format.
18235 (ispell-region, ispell-process-line): Add current dictionary name
18236 and program name to messages.
18237
18238 2005-07-08 Jay Belanger <belanger@truman.edu>
18239
18240 * calc/calc.el (calc-embedded-announce-formula-alist)
18241 (calc-embedded-open-close-formula-alist)
18242 (calc-embedded-open-close-word-alist)
18243 (calc-embedded-open-close-plain-alist)
18244 (calc-embedded-open-close-new-formula-alist)
18245 (calc-embedded-open-close-mode-alist)
18246 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
18247 (calc-embedded-mode-hook): New variables.
18248
18249 * calc/calc-embed.el (calc-embedded-firsttime)
18250 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
18251 New variables.
18252 (calc-do-embedded): Use calc-embedded-firsttime,
18253 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
18254 determine whether or not to run hooks.
18255 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
18256 calc-embedded-firsttime-formula appropriately.
18257 Set calc-embedded delimiter variables according to mode.
18258
18259 2005-07-08 Richard M. Stallman <rms@gnu.org>
18260
18261 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
18262 Check for "emacs", etc., as entire symbol, not just as word.
18263 (checkdoc-file-comments-engine): Use regexp-quote on FN.
18264
18265 * files.el (set-visited-file-name): Report the error
18266 for "empty filename" earlier.
18267 (kill-some-buffers): Ignore buffers already dead.
18268
18269 * fringe.el (fringe-mode): Doc fix.
18270
18271 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
18272 Check for (featurep 'xemacs) and turn off warnings in what it guards.
18273 Use unwind-protect to ensure byte-compile-unresolved-functions
18274 is updated.
18275
18276 * whitespace.el (whitespace-buffer-leading-cleanup):
18277 Simplify w/ skip-chars-forward.
18278 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
18279
18280 * mail/rmail.el (rmail-only-expunge): Fix paren error.
18281 Unconditionally try to leave point at the same old place.
18282
18283 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
18284
18285 * comint.el (comint-postoutput-scroll-to-bottom)
18286 (comint-show-maximum-output): Take scroll-margin into consideration.
18287
18288 2005-07-08 Kim F. Storm <storm@cua.dk>
18289
18290 * ido.el (ido-use-filename-at-point): New choice `guess'.
18291 (ido-file-internal): Try ffap-guesser if selected.
18292
18293 * ido.el (ido-before-fallback-functions): New hook.
18294 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
18295 (ido-read-file-name): Run it.
18296
18297 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
18298
18299 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
18300 strings rather than a list of symbols to the completion function.
18301
18302 2005-07-07 Jay Belanger <belanger@truman.edu>
18303
18304 * calc/calc-units.el (math-apply-units): Change the places in
18305 which units are simplified.
18306
18307 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
18308
18309 * cus-edit.el (customize-option, customize-option-other-window):
18310 Make them handle aliases.
18311
18312 * custom.el (custom-variable-p): Make it recursively follow
18313 aliases. Mention that in the docstring.
18314
18315 2005-07-07 Richard M. Stallman <rms@gnu.org>
18316
18317 * cus-start.el (exec-path): Use `directory' instead of `file'.
18318 Fix tag for nil.
18319
18320 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
18321
18322 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
18323 when called non-interactively. Doc fix.
18324
18325 2005-07-07 Lute Kamstra <lute@gnu.org>
18326
18327 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
18328 new address as well.
18329
18330 2005-07-07 Kenichi Handa <handa@m17n.org>
18331
18332 * international/mule.el (make-coding-system):
18333 Describe `ascii-incompatible' property in the docstring.
18334 (set-file-name-coding-system): Signal an error if coding-system is
18335 ascii-incompatible.
18336 (set-keyboard-coding-system): Likewise.
18337
18338 * international/mule-cmds.el (set-default-coding-systems):
18339 Don't set default-file-name-coding-system and
18340 default-keyboard-coding-system if coding-system is ASCII-incompatible.
18341
18342 * international/utf-16.el: Declare that all UTF-16-based coding
18343 systems are ASCII-incompatible.
18344
18345 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
18346
18347 * progmodes/gud.el: Require font-lock for displaying errors.
18348 Used by gdb-ui.el.
18349
18350 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
18351
18352 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
18353 values for the pattern lists which are `read'able but not
18354 `append'able (like symbols).
18355
18356 2005-07-06 Richard M. Stallman <rms@gnu.org>
18357
18358 * progmodes/flymake.el (flymake-float-time): Instead of
18359 with-no-warnings, test for xemacs.
18360 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
18361 to avoid warning.
18362
18363 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
18364
18365 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
18366
18367 2005-07-05 Lute Kamstra <lute@gnu.org>
18368
18369 * battery.el: Add support for Darwin (with much debugging help
18370 from Samuel Lauber <sam124@operamail.com>).
18371 (battery-status-function, battery-echo-area-format)
18372 (battery-mode-line-format): Add support for pmset on Darwin.
18373 (battery-load-low, battery-load-critical): New user options.
18374 (battery-pmset): New function.
18375
18376 2005-07-05 Lute Kamstra <lute@gnu.org>
18377
18378 Update FSF's address in GPL notices.
18379
18380 * textmodes/page-ext.el: Update FSF's address.
18381
18382 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
18383
18384 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
18385 filling from using prefix when filling a single-line docstring.
18386
18387 * progmodes/flymake.el: Remove useless eval-when-compile.
18388
18389 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
18390
18391 2005-07-04 Richard M. Stallman <rms@gnu.org>
18392
18393 * textmodes/org.el (org-file-apps-defaults-gnu):
18394 Rename from org-file-apps-defaults-linux.
18395 (org-default-apps): Don't test system-type for `linux'.
18396 (org-file-apps): Doc fix.
18397
18398 2005-07-04 David Ponce <david@dponce.com>
18399
18400 * tree-widget.el: Improve header Commentary section.
18401 (tree-widget) [defgroup]
18402 (tree-widget-image-enable, tree-widget-themes-directory)
18403 (tree-widget-theme, tree-widget-image-properties-emacs)
18404 (tree-widget-image-properties-xemacs, tree-widget-create-image)
18405 (tree-widget-image-formats, tree-widget-control)
18406 (tree-widget-empty-control, tree-widget-leaf-control
18407 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
18408 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
18409 (tree-widget-keep, tree-widget-after-toggle-functions)
18410 (tree-widget-open-node, tree-widget-close-node): Doc fix.
18411 (tree-widget-open-control, tree-widget-close-control): Fix doc and
18412 :help-echo message.
18413 (tree-widget-set-theme): Doc fix. Use `string-equal'.
18414 (tree-widget-image-properties): Doc fix. Clearer implementation.
18415 (tree-widget--cursors): New constant.
18416 (tree-widget-lookup-image): New function split from
18417 `tree-widget-find-image'. Clearer implementation.
18418 (tree-widget-find-image): Use it.
18419 (tree-widget-button-keymap): Use `set-keymap-parent'.
18420 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
18421 Define the sub-widgets here.
18422 (tree-widget-node): Check that :node is not a tree-widget.
18423 (tree-widget-get-super, tree-widget-open-control)
18424 (tree-widget-close-control, tree-widget-empty-control)
18425 (tree-widget-leaf-control, tree-widget-guide)
18426 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
18427 (tree-widget-no-handle, tree-widget-value-delete)
18428 (tree-widget-map): Remove.
18429 (tree-widget-children-value-save): Doc fix. Simplified.
18430 (tree-widget-value-create): Update according to previous changes.
18431
18432 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
18433
18434 * textmodes/org.el: Leading space replaced by TABS.
18435 (org-recalc-marks, org-table-rotate-recalc-marks)
18436 (org-table-get-specials): Treat "^" and "_" marks.
18437 (org-table-justify-field-maybe): Optional argument NEW.
18438 (org-table-eval-formula): Parsing of the format simplified.
18439 New modes C,I. Honor the %= parameter in the current table.
18440 Avoid unnecessary re-align by using the NEW argument to
18441 `org-table-justify-field-maybe'.
18442 (org-calc-default-modes): Default for date-format mimicks org-mode.
18443 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
18444
18445 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
18446
18447 * cus-face.el (custom-theme-set-faces): Make it handle face
18448 aliases whose alias declarations are pre- or autoloaded.
18449
18450 2005-07-04 Juri Linkov <juri@jurta.org>
18451
18452 * faces.el (read-face-name): Put the code for getting a face name
18453 from the buffer before adding the faces from the `face' property.
18454 Use `completing-read-multiple' instead of `completing-read'.
18455 Require `crm'. Add default value and post-process the returned
18456 list of faces.
18457
18458 * emacs-lisp/crm.el (crm-find-current-element)
18459 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
18460
18461 * emacs-lisp/lisp-mode.el (eval-defun-1):
18462 * emacs-lisp/edebug.el (edebug-eval-defun):
18463 Remove unnecessary quotes.
18464
18465 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
18466
18467 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
18468 (prolog-indent-level): Fix typo in docstring.
18469
18470 * info.el (Info-history, Info-history-forward)
18471 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
18472
18473 * add-log.el (add-change-log-entry):
18474 * comint.el (comint-dynamic-list-input-ring)
18475 (comint-dynamic-list-completions):
18476 * dabbrev.el (dabbrev-expand):
18477 * delim-col.el (delimit-columns-rectangle-line):
18478 * diff-mode.el (diff-context->unified, diff-reverse-direction)
18479 (diff-unified->context):
18480 * ediff-init.el (ediff-abbrev-jobname):
18481 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
18482 (ediff-replace-session-activity-marker-in-meta-buffer):
18483 * info.el (Info-summary):
18484 * lpr.el (printify-region):
18485 * printing.el (pr-create-interface):
18486 * ps-print.el (ps-print-quote):
18487 * ses.el (ses-column-widths, ses-print-cell)
18488 (ses-adjust-print-width, ses-center):
18489 * shell.el (shell-file-name-quote-list):
18490 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
18491 (strokes-fill-current-buffer-with-whitespace)
18492 (strokes-xpm-for-stroke, strokes-list-strokes)
18493 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
18494 * term.el (term-dynamic-list-input-ring)
18495 (term-dynamic-list-completions):
18496 * calc/calc.el (math-format-stack-value):
18497 * emacs-lisp/edebug.el (edebug-display-freq-count):
18498 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
18499 (delphi-new-comment-line):
18500 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
18501 * progmodes/executable.el (executable-set-magic):
18502 * progmodes/python.el (inferior-python-mode):
18503 * progmodes/scheme.el (scheme-mode-syntax-table):
18504 * progmodes/sh-script.el (sh-maybe-here-document):
18505 * progmodes/sql.el (sql-copy-column):
18506 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
18507 * textmodes/bibtex.el (bibtex-mode):
18508 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
18509 (sgml-auto-attributes):
18510 * textmodes/table.el (table-insert, table-shorten-cell)
18511 (table--generate-source-scan-lines, table-delete-row)
18512 (*table--cell-delete-char, table--spacify-frame)
18513 (table--horizontally-shift-above-and-below)
18514 (table--cell-insert-char, table--cell-blank-str)
18515 (table--fill-region-strictly):
18516 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
18517 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
18518
18519 * add-log.el (change-log):
18520 * apropos.el (apropos):
18521 * comint.el (comint-completion, comint-source):
18522 * dabbrev.el (dabbrev):
18523 * delim-col.el (columns):
18524 * diff-mode.el (diff-mode):
18525 * ediff.el (ediff):
18526 * ediff-diff.el (ediff-diff):
18527 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
18528 * ediff-mult.el (ediff-mult):
18529 * ediff-ptch.el (ediff-ptch):
18530 * ediff-wind.el (ediff-window):
18531 * facemenu.el (facemenu):
18532 * indent.el (indent):
18533 * info.el (info):
18534 * jka-cmpr-hook.el (compression, jka-compr):
18535 * lpr.el (lpr):
18536 * outline.el (outlines):
18537 * pcmpl-cvs.el (pcmpl-cvs):
18538 * pcmpl-rpm.el (pcmpl-rpm):
18539 * printing.el (printing):
18540 * ps-print.el (postscript, ps-print, ps-print-horizontal)
18541 (ps-print-vertical, ps-print-headers, ps-print-font)
18542 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
18543 (ps-print-background, ps-print-printer, ps-print-page)
18544 (ps-print-miscellany):
18545 * ses.el (ses):
18546 * shell.el (shell, shell-directories, shell-faces):
18547 * startup.el (initialization):
18548 * strokes.el (strokes):
18549 * term.el (term):
18550 * uniquify.el (uniquify):
18551 * w32-vars.el (w32):
18552 * calc/calc.el (calc):
18553 * emacs-lisp/bytecomp.el (bytecomp):
18554 * emacs-lisp/cl-indent.el (lisp-indent):
18555 * emacs-lisp/edebug.el (edebug):
18556 * emacs-lisp/elp.el (elp):
18557 * emacs-lisp/testcover.el (testcover):
18558 * emacs-lisp/trace.el (trace):
18559 * emulation/viper-ex.el (viper-ex):
18560 * emulation/viper-mous.el (viper-mouse):
18561 * mail/mailalias.el (mailalias):
18562 * mail/supercite.el (supercite, supercite-frames)
18563 (supercite-attr, supercite-cite, supercite-hooks):
18564 * net/rcompile.el (remote-compile):
18565 * net/rlogin.el (rlogin):
18566 * obsolete/ooutline.el (outlines):
18567 * progmodes/delphi.el (delphi):
18568 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
18569 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
18570 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
18571 (ebnf-optimization):
18572 * progmodes/etags.el (etags):
18573 * progmodes/executable.el (executable):
18574 * progmodes/idlwave.el (idlwave):
18575 * progmodes/pascal.el (pascal):
18576 * progmodes/prolog.el (prolog):
18577 * progmodes/python.el (python):
18578 * progmodes/scheme.el (scheme):
18579 * progmodes/sh-script.el (sh, sh-script):
18580 * progmodes/sql.el (SQL):
18581 * progmodes/tcl.el (tcl):
18582 * textmodes/bibtex.el (bibtex, bibtex-autokey):
18583 * textmodes/enriched.el (enriched):
18584 * textmodes/makeinfo.el (makeinfo):
18585 * textmodes/sgml-mode.el (sgml):
18586 * textmodes/table.el (table-hooks):
18587 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
18588 * textmodes/texinfo.el (texinfo):
18589 * textmodes/two-column.el (two-column):
18590 Finish `defgroup' description with period.
18591
18592 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
18593 * eshell/esh-var.el (eshell-var):
18594 * progmodes/vhdl-mode.el (vhdl-testbench):
18595 * textmodes/org.el (org): Fix typos in docstrings.
18596
18597 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
18598 consistency.
18599
18600 * progmodes/flymake.el (flymake-find-file): Remove.
18601 (flymake-float-time): Use `with-no-warnings'.
18602 (flymake-check-start-time, flymake-check-was-interrupted)
18603 (flymake-err-info, flymake-is-running, flymake-last-change-time)
18604 (flymake-new-err-info): `defvar' at compile time.
18605
18606 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
18607
18608 * replace.el (occur-hook): Doc fix.
18609 (occur-1): Don't call `occur-hook' if there are no matches.
18610
18611 2005-07-03 Richard M. Stallman <rms@gnu.org>
18612
18613 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
18614 global-map, save the same map.
18615 (global-map): Don't alter it at top level.
18616 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
18617 Then alter it here instead.
18618 (tpu-edt-off): Set global-map to the saved one.
18619
18620 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
18621 All references simplified.
18622 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
18623 (zmacs-regions): Add defvar.
18624 (repeat-complex-command-map): Everything about that deleted.
18625
18626 * textmodes/artist.el (artist-key-is-drawing)
18627 (artist-key-endpoint1, artist-key-poly-point-list)
18628 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
18629 (artist-key-compl-table, artist-rb-save-data)
18630 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
18631 Don't put them in eval-when-compile.
18632 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
18633
18634 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
18635 Use with-no-warnings.
18636
18637 * net/browse-url.el (dos-windows-version): Add defvar.
18638
18639 * mail/supercite.el (filladapt-prefix-table): Add defvar.
18640
18641 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
18642 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
18643 (rmail-new-summary-line-count): Rename from new-summary-line-count.
18644 Add defvar.
18645 (rmail-summary-beginning-of-message): Use with-no-warnings.
18646 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
18647
18648 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
18649 Use with-no-warnings.
18650
18651 * emulation/vi.el (vi-mark-region): Use c-mark-function.
18652 (c-mark-function): Add point-moving-unit property.
18653 (vi-goto-line): Use with-no-warnings.
18654
18655 * emulation/edt.el (edt-last-copied-word): Add defvar.
18656 (zmacs-region-stays): Likewise.
18657 (edt-mark-section-wisely): Use c-mark-function for C.
18658 Use makr-defun for Fortran.
18659 (time-string): defvar deleted.
18660 (edt-display-the-time): Don't set time-string.
18661
18662 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
18663
18664 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
18665 Don't warn when name is not constant
18666 or for defining the group `emacs'.
18667
18668 * tooltip.el (gud-tooltip-mode): Add defvar.
18669
18670 * startup.el (default-frame-background-mode): Add defvar.
18671
18672 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
18673
18674 * info.el (tool-bar-map): Add defvar.
18675
18676 * dired.el (dnd-protocol-alist): Add defvar.
18677
18678 * dired-aux.el (dired-query): Display question with answer, when
18679 the user answers.
18680
18681 * custom.el (custom-add-option): Doc fix.
18682
18683 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
18684
18685 2005-07-03 Eli Zaretskii <eliz@gnu.org>
18686
18687 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
18688 bogus name from the last change.
18689
18690 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
18691
18692 * custom.el (custom-declare-variable): Fix typos in comment.
18693 (custom-known-themes): Doc fix.
18694 (custom-theme-directory): New defcustom.
18695 (require-theme): Make it check `custom-theme-directory'.
18696
18697 * cus-theme.el (custom-new-theme-mode): New function.
18698 (custom-theme-name, custom-theme-variables, custom-theme-faces)
18699 (custom-theme-description): Add compiler defvars.
18700 (customize-create-theme): Add doc to the "*New Custom Theme*"
18701 buffer. Use `custom-new-theme-mode'.
18702 (custom-theme-write): Put the created buffer in emacs-lisp-mode
18703 and save it to the `custom-theme-directory'. Make this the
18704 default directory of the buffer.
18705
18706 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
18707
18708 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
18709 Fix unbalanced parentheses.
18710
18711 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
18712
18713 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
18714 into flymake-mode and delegate to flymake-mode.
18715
18716 * find-file.el (ff-which-function-are-we-in): Clean up.
18717
18718 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
18719
18720 * replace.el (occur-rename-buffer): Fix docstring.
18721
18722 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
18723 (edt-last-copied-word, edt-learn-macro-count)
18724 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
18725 (edt-rect-start-point, edt-user-global-map, rect-start-point)
18726 (time-string, zmacs-region-stays):
18727 * emulation/edt-mapper.el (edt-save-function-key-map)
18728 (EDT-key-name): `defvar' to silence the byte-compiler.
18729
18730 2005-07-02 Martin Rudalics <rudalics@gmx.at>
18731
18732 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
18733 font-lock-regexp-backslash. Doc fix.
18734 (font-lock-regexp-backslash-grouping-construct): Rename from
18735 font-lock-regexp-backslash-construct. Doc fix.
18736 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
18737 grouping constructs.
18738
18739 2005-07-02 Eli Zaretskii <eliz@gnu.org>
18740
18741 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
18742 updating all the prerequisites.
18743
18744 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
18745
18746 * textmodes/org.el (org-agenda-start-on-weekday)
18747 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
18748 (org-agenda-use-time-grid, org-archive-location)
18749 (org-allow-space-in-links, org-usenet-links-prefer-google)
18750 (org-enable-table-editor, org-export-default-language)
18751 (org-export-html-show-new-buffer, org-fill-paragraph)
18752 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
18753 (org-goto-quit, org-occur, org-eval-in-calendar)
18754 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
18755 (org-agenda-diary-entry, org-remember-help)
18756 (org-table-convert-region, org-at-table-p)
18757 (org-table-move-row-down, org-table-move-row-up)
18758 (org-table-copy-region, org-table-toggle-vline-visibility)
18759 (org-table-get-stored-formulas, org-table-get-specials)
18760 (org-recalc-commands, org-table-eval-formula)
18761 (org-table-formula-substitute-names, orgtbl-make-binding)
18762 (org-format-org-table-html, org-format-table-table-html)
18763 (org-format-table-table-html-using-table-generate-source)
18764 (org-customize): Fix typos in docstrings.
18765 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
18766 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
18767 (org-back-to-heading): Doc fixes.
18768 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
18769 (org-agenda-change-all-lines, org-get-header):
18770 Improve argument/docstring consistency.
18771 (orgtbl-error): Fix error message.
18772
18773 * progmodes/flymake.el (flymake-find-possible-master-files)
18774 (flymake-master-file-compare, flymake-get-line-err-count)
18775 (flymake-highlight-line, flymake-gui-warnings-enabled):
18776 Fix typos in docstrings.
18777 (flymake-parse-line, flymake-get-project-include-dirs-function)
18778 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
18779 Doc fixes.
18780 (flymake-get-project-include-dirs-function)
18781 (flymake-make-err-menu-data):
18782 Improve argument/docstring consistency.
18783
18784 2005-07-01 Lute Kamstra <lute@gnu.org>
18785
18786 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
18787 Catch errors with ignore-errors. Use temporary buffer.
18788 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
18789
18790 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
18791 background color faces.
18792 (facemenu-set-foreground, facemenu-set-background):
18793 Use facemenu-set-face-from-menu.
18794 (facemenu-set-face-from-menu): Treat face names that start with
18795 "fg:" or "bg:" as special.
18796 (facemenu-add-new-color): Don't create faces. Simplify.
18797
18798 2005-06-30 Richard M. Stallman <rms@gnu.org>
18799
18800 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
18801 (crm-find-current-element): Likewise.
18802
18803 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
18804
18805 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
18806
18807 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
18808
18809 * arc-mode.el (archive-extract): Make it work as a mouse binding.
18810 (archive-mouse-extract): Make it an obsolete alias.
18811 (archive-mode-map): Don't use archive-mouse-extract any more.
18812 (archive-mode, archive-extract): write-contents-hooks ->
18813 write-contents-functions.
18814 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
18815 first arg.
18816 (archive-rename-entry): Update the call.
18817 (archive-zip-summarize): Remove unused var `method'.
18818 (archive-lzh-summarize): Remove unused var `creator'.
18819
18820 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
18821 dedicated frame upon exit.
18822
18823 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
18824 (archive-zip-extract, archive-zip-expunge)
18825 (archive-zip-update, archive-zip-update-case): Use executable-find.
18826 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
18827 Use restore-buffer-modified-p.
18828 (archive-extract, archive-add-new-member, archive-write-file-member):
18829 Use with-current-buffer.
18830 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
18831
18832 2005-06-30 Andreas Schwab <schwab@suse.de>
18833
18834 * progmodes/gud.el (gud-filter): Remove unneeded progn.
18835
18836 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
18837
18838 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
18839
18840 2005-06-30 Juri Linkov <juri@jurta.org>
18841
18842 * faces.el (vertical-border): Inherit from mode-line-inactive
18843 only on tty.
18844
18845 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
18846
18847 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
18848 example, -NLINES in the `occur' docstring).
18849
18850 * replace.el (occur-1): When no matches are found, do not set the
18851 `buffer-read-only' and modified flags for the occur buffer,
18852 because it is deleted.
18853
18854 * emulation/cua-base.el (cua-check-pending-input)
18855 (cua-repeat-replace-region, cua-mode, cua-debug)
18856 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
18857 Fix typos in docstrings.
18858
18859 * emulation/cua-gmrk.el (cua-toggle-global-mark)
18860 (cua-cut-region-to-global-mark)
18861 (cua--cut-rectangle-to-global-mark):
18862 Remove period from end of messages.
18863
18864 * emulation/cua-rect.el (cua-do-rectangle-padding):
18865 Remove period from end of messages.
18866 (cua--rectangle-seq-format): Fix typo in docstring.
18867 (cua-sequence-rectangle, cua-fill-char-rectangle):
18868 Improve argument/docstring consistency.
18869
18870 2005-06-29 Juri Linkov <juri@jurta.org>
18871
18872 * faces.el (default-frame-background-mode): New internal variable.
18873 (frame-set-background-mode): Use it.
18874
18875 * startup.el (normal-top-level): Set default-frame-background-mode
18876 instead of frame-background-mode. Before setting it, test for its
18877 nil value. Remove tests for frame-background-mode and frame
18878 parameter `reverse'. Add test for "unspecified-fg".
18879
18880 * term/xterm.el (xterm-rxvt-set-background-mode):
18881 * term/rxvt.el (rxvt-set-background-mode):
18882 Set default-frame-background-mode instead of frame-background-mode.
18883
18884 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
18885
18886 * simple.el (set-variable): Warn about obsolete user variables.
18887
18888 * imenu.el (imenu--completion-buffer):
18889 * mouse.el (mouse-buffer-menu-alist):
18890 * msb.el (msb-invisible-buffer-p):
18891 * calendar/diary-lib.el (diary-header-line-format):
18892 * emacs-lisp/pp.el (pp-buffer):
18893 * progmodes/cperl-mode.el (cperl-do-auto-fill):
18894 * textmodes/picture.el (picture-replace-match):
18895 Change space constants followed by a sexp to "?\s ".
18896
18897 * play/decipher.el (decipher-loop-with-breaks):
18898 * textmodes/texinfo.el (texinfo-insert-@item): Change space
18899 constants "protected" from end of line by a comment to "?\s".
18900
18901 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
18902
18903 * font-lock.el (save-buffer-state): Use `declare'.
18904
18905 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
18906 reset the syntax-table to cperl-mode-syntax-table.
18907 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
18908 "foo_print_bar" is not matched as a reserved keyword.
18909
18910 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
18911
18912 * textmodes/org.el (orgtbl-setup): New function, for delayed
18913 setup for the orgtbl commands.
18914 (org-calc-default-modes): New option.
18915 (orgtbl-make-binding): Use `defun' to get better help display.
18916 (org-diary): Call `org-compile-prefix-format'.
18917 (org-table-formula-substitute-names): New function.
18918 (org-agenda-day-view, org-agenda-week-view): New commands.
18919 (org-agenda-toggle-week-view): Command removed.
18920 (org-tbl-menu): Split off from org-org-menu.
18921 (org-mode): Move removal of outline-mode menus to here.
18922 (org-table-formula-debug): New option.
18923 (org-table-insert-row): Keep first field if just "#" or "*".
18924 (org-mode): Paragraph regexps fixed.
18925 (org-table-recalculate-regexp): New constant.
18926 (org-table-justify-field-maybe): Avoid replace if not necessary.
18927 (org-copy-special, org-cut-special): Use `call-interactively'.
18928 (org-table-copy-region): Take region from `interactive' call.
18929 (org-trim): Return string even if no match.
18930 (org-formula): New face.
18931 (org-set-font-lock-defaults): No longer highlight "FIXME".
18932 But highlight formula-related fields in table.
18933 (org-table-p): Use regexp, not fontification.
18934 (org-table-align): Handle white space at end of line.
18935 (org-table-formula-evaluate-inline): New option.
18936 (org-mode): Auto-wrapping in comment lines turned off.
18937 (org-table-copy-down): Evaluate only in copied field, not in
18938 destination.
18939 (org-table-current-formula): Variable removed.
18940 (org-table-store-formulas, org-table-get-stored-formulas)
18941 (org-table-modify-formulas, org-table-replace-in-formulas)
18942 (org-table-maybe-eval-formula): New functions.
18943 (org-table-get-formula): Modify to use stored formulas.
18944 (org-table-insert-column, org-table-delete-column)
18945 (org-table-move-column): Call `org-table-modify-formulas'.
18946 (org-complete): Add completion for keyword formulas.
18947 (orgtbl-mode): Pull orgtbl-mode-map to start of
18948 minor-mode-map-alist.
18949
18950 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
18951
18952 * progmodes/python.el (python-check): Require `compile' before
18953 modifying its variables.
18954
18955 * newcomment.el (comment-indent-default): Don't get fooled by an early
18956 end of buffer.
18957
18958 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
18959
18960 * ps-print.el (ps-print-version): Fix version number.
18961
18962 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
18963
18964 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
18965
18966 2005-06-28 Richard M. Stallman <rms@gnu.org>
18967
18968 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
18969 (flyspell-local-mouse-map): Declaration deleted.
18970 (flyspell-mouse-map): Bind only mouse-2.
18971 (flyspell-mode-map): Don't test flyspell-use-local-map.
18972 (flyspell-overlay-keymap-property-name): Var deleted.
18973 (flyspell-mode-on): Don't make local bindings for
18974 flyspell-mouse-map and flyspell-mode-map.
18975 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
18976
18977 * textmodes/ispell.el (ispell-word): Do not ignore short words.
18978
18979 * progmodes/compile.el (compilation-next-error-function):
18980 Don't switch buffers; operate on the current buffer.
18981
18982 * progmodes/compile.el (compilation-error-file-name)
18983 (compilation-warning-file-name, compilation-info-file-name)
18984 (compilation-line-number, compilation-column-number): New faces.
18985 (compilation-error-face, compilation-warning-face)
18986 (compilation-info-face, compilation-line-face)
18987 (compilation-column-face): Use them.
18988
18989 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
18990
18991 * comint.el (comint-password-prompt-regexp): Accept ", try again".
18992
18993 * bindings.el (global-map): Bind insertchar and its variants.
18994
18995 2005-06-27 Richard M. Stallman <rms@gnu.org>
18996
18997 * textmodes/artist.el (artist-text-overwrite)
18998 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
18999
19000 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19001
19002 * ps-print.el: It was not working the page selection for printing.
19003 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
19004 (ps-print-version): New version 6.6.7.
19005 (ps-end-sheet): New fun.
19006 (ps-header-sheet, ps-end-job): Call it.
19007
19008 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
19009
19010 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
19011
19012 2005-06-27 Lute Kamstra <lute@gnu.org>
19013
19014 * facemenu.el (facemenu-unlisted-faces): Add foreground and
19015 background color faces.
19016 (facemenu-get-face): Delete function.
19017 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
19018 (facemenu-add-new-color): Make second argument mandatory.
19019 Create the appropriate face and return it. Simplify.
19020 (facemenu-set-foreground, facemenu-set-background): Don't check if
19021 color is defined. Use return value of facemenu-add-new-color.
19022
19023 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
19024
19025 * progmodes/gud.el (gud-filter): Add missing argument to
19026 with-selected-window.
19027
19028 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
19029
19030 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
19031 a :require to the defcustom.
19032
19033 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
19034 defcustoms corresponding to minor modes.
19035
19036 2005-06-26 David Ponce <david@dponce.com>
19037
19038 * recentf.el: Require tree-widget instead of wid-edit.
19039 (recentf-filename-handler): Fix widget :type.
19040 (recentf-cancel-dialog, recentf-open-more-files)
19041 (recentf-open-files-action): Doc fix.
19042 (recentf-dialog-goto-first): New function.
19043 (recentf-dialog-mode-map): Set parent keymap first.
19044 (recentf-dialog-mode): Define with define-derived-mode.
19045 Don't display continuation lines in dialogs.
19046 (recentf-edit-list): Rename from recentf-edit-selected-items.
19047 (recentf-edit-list-select): Rename from recentf-edit-list-action.
19048 Simplify.
19049 (recentf-edit-list-validate): New function.
19050 (recentf-edit-list): Update accordingly.
19051 (recentf-open-files-item-shift): Remove.
19052 (recentf-open-files-item): Convert menu elements into tree and
19053 link widgets. Don't create the widgets.
19054 (recentf-open-files): Update accordingly.
19055 (recentf-save-list): Untabify.
19056
19057 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
19058
19059 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
19060 (keep-lines): Add INTERACTIVE arg. Never delete lines only
19061 partially contained in the active region. Do not take active
19062 region into account when called from Lisp, unless INTERACTIVE arg
19063 is non-nil. Use `forward-line' instead of `beginning-of-line' to
19064 avoid trouble with fields. Make marker point nowhere when no
19065 longer used. Always return nil. Doc fix.
19066 (flush-lines): Add INTERACTIVE arg. Do not take active region
19067 into account when called from Lisp, unless INTERACTIVE arg is
19068 non-nil. Use `forward-line' instead of `beginning-of-line' to
19069 avoid trouble with fields. Make marker point nowhere when no
19070 longer used. Always return nil. Doc fix.
19071 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
19072 interchangeable. Do not take active region into account when
19073 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
19074 message in echo area when called from Lisp, unless INTERACTIVE arg
19075 is non-nil. Avoid saying "1 occurrences". Do not use markers.
19076 Return the number of matches. Doc fix.
19077 (occur): Doc fix.
19078 (perform-replace): Make comment follow double space convention for
19079 the sake of `outline-minor-mode'.
19080
19081 * faces.el (facep): Doc fix.
19082
19083 2005-06-25 Richard M. Stallman <rms@gnu.org>
19084
19085 * facemenu.el (facemenu-enable-faces-p): New function.
19086 (facemenu-background-menu, facemenu-foreground-menu)
19087 (facemenu-face-menu): Add menu-enable property.
19088
19089 * jka-compr.el (jka-compr-insert-file-contents):
19090 Special handling if cannot find the uncompression program.
19091
19092 * cus-face.el (custom-face-attributes): Add autoload.
19093
19094 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
19095 Bind comment-indent-function locally.
19096
19097 * window.el (save-selected-window): Use save-current-buffer.
19098
19099 * subr.el (with-selected-window): Use save-current-buffer.
19100
19101 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
19102 and with-current-buffer.
19103
19104 2005-06-24 Richard M. Stallman <rms@gnu.org>
19105
19106 * simple.el (line-move-1): Fix previous change.
19107
19108 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
19109
19110 * replace.el (occur-1): Set `buffer-read-only' and the
19111 buffer-modified flag before running `occur-hook' to protect
19112 against unintentional buffer switches that can lead to data loss.
19113
19114 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
19115
19116 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
19117 (gud-gdb-marker-filter): Use font-lock-warning-face for any
19118 initial error.
19119
19120 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
19121 after fresh input.
19122 (gdb-var-create-handler): Put name of expression in quotes.
19123
19124 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
19125
19126 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
19127 elements of RING in order, and without bogus nil elements.
19128
19129 2005-06-23 Richard M. Stallman <rms@gnu.org>
19130
19131 * simple.el (set-variable): Args renamed; doc fix.
19132 (line-move-1): When there are overlays around, use vertical-motion.
19133
19134 * faces.el (escape-glyph): Use brown against light background.
19135 (nobreak-space): Rename from no-break-space.
19136 Fix previous change.
19137
19138 * dired-aux.el (dired-do-copy): Fix arg prompt.
19139
19140 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
19141
19142 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
19143
19144 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
19145 rather than "Distributor".
19146
19147 2005-06-23 Lute Kamstra <lute@gnu.org>
19148
19149 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
19150 (debug-on-entry): Use it. New interactive declaration that uses
19151 function-called-at-point.
19152
19153 2005-06-23 Kim F. Storm <storm@cua.dk>
19154
19155 * subr.el (save-match-data): Add comment about using evaporate arg
19156 to set-match-data.
19157
19158 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
19159
19160 * cus-edit.el (customize-face)
19161 (customize-face-other-window): Handle face aliases.
19162
19163 * faces.el (face-documentation, set-face-attribute)
19164 (face-spec-set): Handle face aliases.
19165
19166 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
19167
19168 * help-mode.el (help-make-xrefs): If a symbol representing a face
19169 name is not followed by the word "face", it could still be a
19170 function or variable name, so don't bypass other checks.
19171
19172 2005-06-22 Juri Linkov <juri@jurta.org>
19173
19174 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
19175 Replace aliased functions with calls where second arg `inherit' is t.
19176
19177 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
19178
19179 * progmodes/gdb-ui.el (gdb-error): New variable.
19180 (gdb-error): New function.
19181 (gdb-annotation-rules): Act on error-begin and error annotations.
19182 (gdb-concat-output): Use font-lock-warning-face for errors.
19183
19184 2005-06-22 Miles Bader <miles@gnu.org>
19185
19186 * bindings.el (propertized-buffer-identification): Use renamed
19187 `Buffer-menu-buffer' face.
19188
19189 * faces.el (vertical-border): Rename from `vertical-divider'.
19190 (escape-glyph): Change dark-background color back to `cyan'.
19191
19192 2005-06-21 Juri Linkov <juri@jurta.org>
19193
19194 * faces.el (face-user-default-spec): Try getting `customized-face'
19195 prior to `saved-face'.
19196 (frame-background-mode): Refill docstring.
19197
19198 * emacs-lisp/lisp-mode.el (eval-defun-1):
19199 * emacs-lisp/edebug.el (edebug-eval-defun):
19200 Set `saved-face' temporarily to nil before calling form.
19201 Set `customized-face' to the new spec after that.
19202
19203 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
19204
19205 * subr.el (1value, lambda, key-substitution-in-progress):
19206 Doc fixes.
19207
19208 * autoinsert.el (auto-insert-alist):
19209 * ses.el (ses-call-printer):
19210 * subr.el (noreturn):
19211 * emacs-lisp/lisp.el (check-parens):
19212 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
19213 * net/browse-url.el (browse-url-mosaic):
19214 * progmodes/cc-defs.el (c-safe-scan-lists):
19215 * progmodes/ebnf-abn.el (ebnf-abn-lex):
19216 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
19217 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
19218 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
19219 * progmodes/ebnf-iso.el (ebnf-iso-lex):
19220 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
19221
19222 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
19223
19224 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
19225
19226 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
19227
19228 * calendar/appt.el (appt-make-list): Activate the package, if
19229 not already active (for backwards compatibility).
19230
19231 2005-06-20 Kim F. Storm <storm@cua.dk>
19232
19233 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
19234
19235 2005-06-20 Miles Bader <miles@gnu.org>
19236
19237 * faces.el (vertical-divider): New face.
19238
19239 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
19240
19241 * simple.el (kill-whole-line): Doc fix.
19242 (next-error-buffer-p, next-error-find-buffer)
19243 (clone-indirect-buffer): Fix typos in docstrings.
19244 (comment-line-break-function): Doc fix: don't say variable
19245 is automatically buffer-local (it isn't).
19246
19247 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
19248
19249 * net/tramp-ftp.el (top):
19250 * net/tramp-smb.el (top):
19251 * net/tramp-util.el (top):
19252 * net/tramp-uu.el (top):
19253 * net/tramp-vc.el (top):
19254 * net/tramp.el (top): Revert copyright years back to original
19255 ones. Tramp has a life outside GNU Emacs.
19256
19257 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
19258
19259 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
19260
19261 2005-06-18 Juri Linkov <juri@jurta.org>
19262
19263 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
19264 end of first regexp to limit the match to the position between
19265 line number and source line with same separator character as used
19266 between file name and line number. In the second regexp limit
19267 mouse-face area to file name and line number by adding new group
19268 for them and referring it in HYPERLINK arg.
19269 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
19270 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
19271 previous line where grep markers may be already removed.
19272
19273 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
19274
19275 * progmodes/ps-mode.el: Update version and maintainer's email address.
19276
19277 2005-06-18 Steve Youngs <steve@xemacs.org>
19278
19279 * net/browse-url.el (browse-url-browser-function)
19280 (browse-url-default-browser): Add firefox.
19281 (browse-url-firefox-program, browse-url-firefox-arguments)
19282 (browse-url-firefox-startup-arguments)
19283 (browse-url-firefox-new-window-is-tab): New defcustoms.
19284 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
19285
19286 2005-06-17 Richard M. Stallman <rms@gnu.org>
19287
19288 * startup.el (command-line): Warn if specified user name has
19289 no home directory.
19290
19291 * term.el (term-get-old-input, term-input-filter, term-input-sender)
19292 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
19293
19294 * longlines.el (longlines-mode, longlines-show-hard-newlines):
19295 Doc fixes.
19296
19297 * faces.el (underline): Try bold if terminal doesn't support underline.
19298
19299 * mail/sendmail.el (mail-setup-with-from): New variable.
19300 (mail-insert-from-field): New function.
19301 (sendmail-send-it): Call it.
19302 (mail-setup): Optionally call it here.
19303
19304 * term/linux.el: Call tty-no-underline.
19305
19306 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
19307
19308 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
19309
19310 2005-06-17 Miles Bader <miles@gnu.org>
19311
19312 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
19313 (ediff-current-diff-C, ediff-current-diff-Ancestor)
19314 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
19315 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
19316 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
19317 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
19318 Remove "-face" suffix from face names.
19319 (ediff-current-diff-face-A, ediff-current-diff-face-B)
19320 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
19321 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
19322 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
19323 (ediff-even-diff-face-A, ediff-even-diff-face-B)
19324 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
19325 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
19326 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
19327 New backward-compatibility aliases for renamed faces.
19328 (ediff-current-diff-face-A, ediff-current-diff-face-B)
19329 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
19330 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
19331 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
19332 (ediff-even-diff-face-A, ediff-even-diff-face-B)
19333 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
19334 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
19335 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
19336 Use renamed ediff faces.
19337
19338 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
19339 Remove "-face" suffix from face names.
19340 (eshell-test-ok-face, eshell-test-failed-face):
19341 New backward-compatibility aliases for renamed faces.
19342 (eshell-run-test): Use renamed eshell-test faces.
19343
19344 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
19345 face name.
19346 (eshell-prompt-face): New backward-compatibility alias for renamed
19347 face.
19348 (eshell-emit-prompt): Use renamed eshell-prompt face.
19349
19350 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
19351 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
19352 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
19353 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
19354 Remove "-face" suffix from face names.
19355 (eshell-ls-directory-face, eshell-ls-symlink-face)
19356 (eshell-ls-executable-face, eshell-ls-readonly-face)
19357 (eshell-ls-unreadable-face, eshell-ls-special-face)
19358 (eshell-ls-missing-face, eshell-ls-archive-face)
19359 (eshell-ls-backup-face, eshell-ls-product-face)
19360 (eshell-ls-clutter-face):
19361 New backward-compatibility aliases for renamed faces.
19362 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
19363
19364 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
19365 Remove "-face" suffix from face name.
19366 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
19367 instead of literal face.
19368
19369 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
19370
19371 * emacs-lisp/warnings.el (display-warning, lwarn)
19372 (warning-minimum-log-level): Doc fixes.
19373 (warning-minimum-level, warning-minimum-log-level):
19374 Add :debug to :type choices.
19375
19376 * progmodes/ada-mode.el (ada-format-paramlist)
19377 (ada-get-indent-case, ada-check-matching-start)
19378 (ada-check-defun-name, ada-goto-matching-decl-start)
19379 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
19380 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
19381 (ada-make-subprogram-body): Follow error conventions.
19382 (ada-case-exception-file, ada-indent-comment-as-code)
19383 (ada-indent-handle-comment-special, ada-indent-renames)
19384 (ada-indent-return, ada-search-directories-internal)
19385 (ada-tab-policy, ada-case-exception-substring)
19386 (ada-other-file-alist, ada-matching-start-re)
19387 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
19388 (ada-imenu-generic-expression, ada-compile-goto-error)
19389 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
19390 (ada-popup-menu, ada-add-extensions, ada-mode)
19391 (ada-region-selected, ada-create-case-exception)
19392 (ada-create-case-exception-substring, ada-after-keyword-p)
19393 (ada-activate-keys-for-case, ada-adjust-case-region)
19394 (ada-adjust-case-buffer, ada-format-paramlist)
19395 (ada-scan-paramlist, ada-insert-paramlist)
19396 (ada-indent-newline-indent)
19397 (ada-indent-newline-indent-conditional)
19398 (ada-justified-indent-current, ada-goto-previous-word)
19399 (ada-indent-current, ada-get-indent-open-paren)
19400 (ada-get-indent-paramlist, ada-get-indent-end)
19401 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
19402 (ada-get-indent-block-start, ada-get-indent-subprog)
19403 (ada-get-indent-noindent, ada-get-indent-label)
19404 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
19405 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
19406 (ada-goto-stmt-end, ada-goto-next-word)
19407 (ada-check-matching-start, ada-check-defun-name)
19408 (ada-goto-matching-decl-start, ada-goto-matching-start)
19409 (ada-goto-matching-end, ada-search-ignore-string-comment)
19410 (ada-in-decl-p, ada-looking-at-semi-or)
19411 (ada-looking-at-semi-private, ada-in-paramlist-p)
19412 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
19413 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
19414 (ada-next-procedure, ada-previous-procedure, ada-next-package)
19415 (ada-previous-package, ada-create-menu)
19416 (ada-fill-comment-paragraph-justify)
19417 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
19418 (ada-other-file-name, ada-last-which-function-line)
19419 (ada-last-which-function-subprog, ada-which-function)
19420 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
19421 (ada-gen-treat-proc, ada-check-emacs-version)
19422 (ada-continuation-indent, ada-align-region-separate):
19423 Fix typos in docstrings.
19424 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
19425
19426 2005-06-16 Lute Kamstra <lute@gnu.org>
19427
19428 * simple.el (fundamental-mode): Run after-change-major-mode-hook
19429 conditionally.
19430
19431 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
19432
19433 * comint.el (comint-replace-by-expanded-filename)
19434 (comint-prompt-regexp, comint-delimiter-argument-list)
19435 (comint-preinput-scroll-to-bottom):
19436 * info.el (Info-hide-cookies-node):
19437 * ls-lisp.el (ls-lisp-classify):
19438 * find-file.el (ff-search-directories, ff-special-constructs)
19439 (ff-find-other-file):
19440 * font-lock.el (font-lock-keywords):
19441 * shell.el (shell-prompt-pattern)
19442 (shell-dynamic-complete-functions, shell-mode)
19443 (shell-delimiter-argument-list):
19444 * term.el (term-replace-by-expanded-filename)
19445 (term-prompt-regexp, term-delimiter-argument-list):
19446 * woman.el (woman-ignore, woman0-if):
19447 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
19448 * emacs-lisp/elint.el (elint-init-env):
19449 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
19450 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
19451 * language/ethio-util.el (ethio-tilde-escape)
19452 (ethio-use-three-dot-question):
19453 * net/zone-mode.el (zone-mode-load-time-setup):
19454 * progmodes/cc-align.el (c-lineup-argcont):
19455 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
19456 * progmodes/cperl-mode.el (cperl-set-style-back):
19457 * progmodes/inf-lisp.el (inferior-lisp-prompt):
19458 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
19459 Fix spellings in docstrings.
19460
19461 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
19462 * progmodes/modula2.el (m2-for): Fix spellings.
19463
19464 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
19465
19466 * simple.el (undo-more): Don't use `format' on `error' arguments.
19467 Improve argument/docstring consistency.
19468 (pending-undo-list): Doc fix.
19469
19470 * smerge-mode.el (smerge-ensure-match):
19471 * emulation/vip.el (vip-ex):
19472 * net/zone-mode.el (zone-mode-update-serial):
19473 * progmodes/idlwave.el (idlwave-complete):
19474 * progmodes/vhdl-mode.el (vhdl-visit-file)
19475 (vhdl-compose-wire-components):
19476 Don't use `format' on `error' arguments.
19477
19478 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
19479 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
19480 (tooltip-help-tips): Fix typos in docstrings.
19481
19482 2005-06-16 David Ponce <david@dponce.com>
19483
19484 * tree-widget.el (tree-widget-value-create): Simplify last change.
19485
19486 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
19487
19488 * ido.el (ido-incomplete-regexp): New variable.
19489 (ido-set-matches-1): Handle invalid-regexp error and set
19490 ido-incomplete-regexp.
19491 (ido-incomplete-regexp): New face.
19492 (ido-completions): Use it.
19493 (ido-complete, ido-exit-minibuffer, ido-completions):
19494 Handle incomplete regexps.
19495 (ido-completions): Add check for complete match when entering a regexp.
19496
19497 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
19498
19499 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
19500
19501 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
19502
19503 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
19504 by field delimiters.
19505
19506 2005-06-15 David Ponce <david@dponce.com>
19507
19508 * tree-widget.el: eval-and-compile inlined functions so they will
19509 be available at run-time too.
19510 (tree-widget-super-format-handler)
19511 (tree-widget-format-handler): Remove.
19512 (tree-widget-value-create): Handle the :indent property.
19513
19514 2005-06-15 Miles Bader <miles@gnu.org>
19515
19516 * progmodes/which-func.el (which-func): Only inherit
19517 `font-lock-function-name-face' when that makes sense against the
19518 default mode-line face, otherwise set the face color explicitly.
19519
19520 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
19521 faces instead of (non-existent) variables.
19522
19523 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
19524
19525 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
19526 (iswitchb-get-matched-buffers): Likewise. Simplify.
19527
19528 2005-06-14 Miles Bader <miles@gnu.org>
19529
19530 * progmodes/ld-script.el (ld-script-location-counter):
19531 Remove "-face" suffix from face name.
19532 (ld-script-location-counter-face):
19533 New backward-compatibility alias for renamed face.
19534 (ld-script-location-counter-face): Use renamed face.
19535
19536 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
19537 (cperl-hash): Remove "-face" suffix from face names.
19538 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
19539 New backward-compatibility aliases for renamed faces.
19540 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
19541 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
19542
19543 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
19544 name.
19545 (which-func-face): New backward-compatibility alias for renamed face.
19546 (which-func-format): Use renamed which-func face.
19547
19548 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
19549 (vhdl-function, vhdl-directive, vhdl-reserved-word)
19550 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
19551 names.
19552 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
19553 (vhdl-speedbar-configuration, vhdl-speedbar-package)
19554 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
19555 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
19556 (vhdl-speedbar-architecture-selected)
19557 (vhdl-speedbar-configuration-selected)
19558 (vhdl-speedbar-package-selected)
19559 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
19560 names.
19561 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
19562 Use renamed faces.
19563 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
19564 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
19565 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
19566 Use renamed faces.
19567 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
19568 names.
19569 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
19570 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
19571 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
19572 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
19573 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
19574 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
19575
19576 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
19577 face name.
19578 (sh-heredoc-face): New backward-compatibility alias for renamed face.
19579 (sh-heredoc-face): Use renamed sh-heredoc face.
19580
19581 * progmodes/idlw-help.el (idlwave-help-link):
19582 Remove "-face" suffix from face name.
19583 (idlwave-help-link-face):
19584 New backward-compatibility alias for renamed face.
19585 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
19586
19587 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
19588 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
19589 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
19590 New backward-compatibility aliases for renamed faces.
19591 (idlwave-shell-disabled-breakpoint-face)
19592 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
19593
19594 * progmodes/flymake.el (flymake-errline, flymake-warnline):
19595 Remove "-face" suffix from face names.
19596 (flymake-errline-face, flymake-warnline-face):
19597 New backward-compatibility aliases for renamed faces.
19598 (flymake-highlight-line): Use renamed flymake faces.
19599
19600 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
19601 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
19602 (ebrowse-member-class, ebrowse-progress):
19603 Remove "-face" suffix from face names.
19604 (ebrowse-tree-mark-face, ebrowse-root-class-face)
19605 (ebrowse-file-name-face, ebrowse-default-face)
19606 (ebrowse-member-attribute-face, ebrowse-member-class-face)
19607 (ebrowse-progress-face):
19608 New backward-compatibility aliases for renamed faces.
19609 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
19610 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
19611 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
19612 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
19613
19614 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
19615 antlr-syntax)
19616 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
19617 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
19618 names.
19619 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
19620 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
19621 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
19622 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
19623 backward-compatibility aliases for renamed faces.
19624 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
19625 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
19626 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
19627 remove "font-lock-". Use renamed antlr-mode faces.
19628 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
19629 literal face-names with face variable references.
19630
19631 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
19632 face name.
19633 (Buffer-menu-buffer-face): New backward-compatibility alias for
19634 renamed face.
19635 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
19636
19637 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
19638
19639 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
19640 Eliminate "-face" suffix.
19641 (makefile-targets): Inherit from font-lock-function-name-face and
19642 eliminate "-face" suffix.
19643 (makefile-shell): Remove attributes and eliminate "-face" suffix.
19644 (makefile-*-font-lock-keywords): Append makefile-targets in rule
19645 actions, instead of prepending, to make it less visible.
19646 (makefile-previous-dependency, makefile-match-dependency):
19647 Don't match a target on a continuation line.
19648
19649 * files.el (auto-mode-alist): Put Makefile in gmake mode.
19650
19651 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
19652
19653 * progmodes/gdb-ui.el (menu): Re-order menu items.
19654 (gdb-tooltip-print): Respect tooltip-use-echo-area.
19655
19656 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
19657 Define in tooltip.el.
19658 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
19659 (gud-tooltip-tips): Respect tooltip-use-echo-area and
19660 gud-tooltip-echo-area.
19661
19662 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
19663 backward compatibility and make obsolete.
19664 (tooltip-help-tips): Use tooltip-use-echo-area.
19665 (tooltip-show-help-function): Rename to...
19666 (tooltip-show-help): ...this, because it is a function.
19667 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
19668
19669 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
19670
19671 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
19672 (edebug-print-length, edebug-print-level, edebug-print-circle)
19673 (edebug-modify-breakpoint, edebug-eval-last-sexp)
19674 (edebug-eval-print-last-sexp): Doc fixes.
19675
19676 2005-06-14 Kim F. Storm <storm@cua.dk>
19677
19678 * ido.el (ido-mode): Make a new keymap every time we enable ido,
19679 as the coverage buffer/file/both may change.
19680
19681 2005-06-14 Lute Kamstra <lute@gnu.org>
19682
19683 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
19684 and run-mode-hooks. Simplify.
19685
19686 * mail/rmailedit.el (rmail-edit-mode):
19687 * progmodes/octave-inf.el (inferior-octave-mode):
19688 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
19689
19690 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
19691 and run-mode-hooks.
19692 (recentf-edit-list, recentf-open-files): Don't call
19693 kill-all-local-variables directly.
19694
19695 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
19696
19697 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
19698
19699 * emacs-lisp/byte-run.el (make-obsolete)
19700 (define-obsolete-function-alias): Rename arguments FUNCTION and
19701 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
19702 (make-obsolete-variable, define-obsolete-variable-alias):
19703 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
19704 respectively.
19705
19706 * isearchb.el (isearchb-activate):
19707 * pcvs.el (cvs-mode):
19708 * ses.el (ses-load):
19709 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
19710 * net/tramp.el (tramp-find-file-exists-command)
19711 (tramp-find-shell):
19712 * progmodes/ada-mode.el (ada-create-case-exception)
19713 (ada-create-case-exception-substring, ada-make-subprogram-body):
19714 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
19715 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
19716 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
19717 * textmodes/org.el (org-promote, org-evaluate-time-range)
19718 (org-agenda-next-date-line, org-agenda-previous-date-line)
19719 (org-agenda-error, org-open-at-point, org-table-move-row)
19720 (org-format-table-table-html-using-table-generate-source)
19721 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
19722 * textmodes/reftex.el (reftex-access-scan-info):
19723 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
19724 (reftex-toc-promote-prepare): Follow error conventions.
19725
19726 * diff-mode.el (diff-mode): Fix typo in docstring.
19727
19728 * forms.el (forms--intuit-from-file): Fix reference to
19729 `forms-number-of-fields' in error message.
19730 (forms-print): Fix quoting in error message.
19731
19732 * forms.el (forms-mode):
19733 * emulation/vi.el (vi-goto-insert-state):
19734 * progmodes/flymake.el (flymake-new-err-info)
19735 (flymake-start-syntax-check-for-current-buffer)
19736 (flymake-simple-cleanup):
19737 * eshell/esh-var.el (eshell/export):
19738 * progmodes/gud.el (xdb):
19739 * textmodes/flyspell.el (flyspell-incorrect-hook)
19740 (flyspell-maybe-correct-transposition)
19741 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
19742
19743 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
19744
19745 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
19746 minibuffer prompt.
19747
19748 2005-06-13 Kim F. Storm <storm@cua.dk>
19749
19750 * subr.el (add-to-ordered-list): New defun.
19751
19752 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
19753 add cua--keymap-alist to emulation-mode-map-alists.
19754
19755 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
19756
19757 * subr.el (complete-in-turn): New macro.
19758 (dynamic-completion-table, lazy-completion-table): Add debug info.
19759
19760 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
19761 in preference to face aliases.
19762
19763 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
19764 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
19765 Remove unused vars `start' and `firstline'.
19766 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
19767 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
19768
19769 2005-06-13 Eli Zaretskii <eliz@gnu.org>
19770
19771 * cus-start.el (all): Don't complain about missing GTK-related
19772 variables, unless either `gtk' is boundp or this isn't a
19773 `windows-nt' build.
19774
19775 2005-06-13 Lute Kamstra <lute@gnu.org>
19776
19777 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
19778 run-mode-hooks.
19779
19780 * ediff-mult.el (ediff-meta-mode):
19781 * ediff-util.el (ediff-mode): Use run-mode-hooks.
19782
19783 * ledit.el (ledit-mode): Use delay-mode-hooks.
19784
19785 * woman.el (woman-mode-line-format): Delete constant.
19786 (woman-mode-map): Initialize it properly.
19787 (woman-mode): Set mode-class property to special.
19788 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
19789 Set major-mode and mode-name. Don't set mode-line-format directly.
19790 (Man-getpage-in-background): Don't reference woman-mode-line-format.
19791
19792 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
19793 string argument obsolete.
19794
19795 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
19796
19797 * textmodes/org.el (org-CUA-compatible): New option.
19798 (org-disputed-keys): New variable.
19799 (org-key): New function.
19800 (orgtbl-make-binding): Add docstring to the created function.
19801 (org-mode): Set paragraph start/separate regexps.
19802 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
19803 (org-archive-location, org-archive-mark-done)
19804 (org-archive-stamp-time): New options.
19805 (org-archive-subtree): New command.
19806 (org-fill-paragraph): New function.
19807 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
19808 (org-fake-empty-table-line): Function removed.
19809 (org-format-org-table-html): Do not create empty table lines at
19810 separator lines. Improved table header treatment.
19811 (org-link-format): New option.
19812 (org-make-link): New function.
19813 (org-insert-link, org-store-link): Use org-make-link.
19814 (org-open-file): Quote file name for shell command, to allow
19815 spaces in file names.
19816 (org-link-regexp): Fix bug with mailto link.
19817 (org-link-maybe-angles-regexp, org-protected-link-regexp):
19818 New constants.
19819 (org-export-as-html): Deal with the optional angles around a link.
19820 Better treatment of file: links.
19821 (org-open-at-point): Replace @{ and @} with < and >.
19822 (org-run-mode-hooks): Function removed.
19823 (org-agenda-mode): No longer use `org-run-mode-hooks'.
19824
19825 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
19826
19827 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
19828 MI command -data-list-register-values.
19829 (gdb-post-prompt): Indent properly.
19830
19831 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
19832
19833 * hilit-chg.el (highlight-changes-colors): Rename from
19834 `highlight-changes-colours'.
19835 (highlight-changes-colours): Keep as obsolete alias.
19836 (highlight-changes-face-list): Doc fix.
19837 (hilit-chg-make-list): Use `highlight-changes-colors'.
19838
19839 2005-06-12 Mark A. Hershberger <mah@everybody.org>
19840
19841 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
19842 defun-prompt-regexp.
19843
19844 2005-06-12 Eli Zaretskii <eliz@gnu.org>
19845
19846 * loadup.el: Don't say we are dumping under 2 names on windows-nt
19847 and cygwin.
19848
19849 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
19850 Don't use an old loaddefs.el, as in Makefile.in.
19851
19852 2005-06-12 Lute Kamstra <lute@gnu.org>
19853
19854 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
19855
19856 * man.el (Man-mode-map): Initialize it properly.
19857 (Man-mode): Set mode-class property to special.
19858
19859 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
19860
19861 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
19862
19863 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
19864 A newline is needed in the docstring there.
19865
19866 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
19867 Doc fixes.
19868
19869 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19870
19871 * printing.el: Doc fix. The menubar is no more changed when printing
19872 is loaded, it only changes when pr-menu-bind or pr-update-menus is
19873 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
19874 (pr-version): New version number (6.8.4).
19875 (pr-menu-bind): New command.
19876 (pr-update-menus): Docstring and code fix.
19877 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
19878 Docstring fix.
19879 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
19880 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
19881
19882 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
19883
19884 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
19885 "Returns" to "return", document useful return values, etc.
19886
19887 2005-06-11 Alan Mackenzie <acm@muc.de>
19888
19889 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
19890 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
19891 (adaptive-file-function): Minor amendment to doc-string.
19892
19893 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
19894
19895 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
19896 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
19897 Fix :type--it is `integer', not `string'.
19898
19899 * faces.el (modeline-highlight): Rename from (the erroneous)
19900 `modeline-higilight'.
19901
19902 2005-06-11 Lute Kamstra <lute@gnu.org>
19903
19904 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
19905 lisp-interaction-mode-map but make it the parent.
19906 (edebug-eval-mode): Use define-derived-mode.
19907
19908 2005-06-11 Andreas Schwab <schwab@suse.de>
19909
19910 * bindings.el: Add binding of `ESC functionkey' for every
19911 `M-functionkey'.
19912 * hexl.el (hexl-mode-map): Likewise.
19913
19914 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
19915
19916 * progmodes/compile.el (compilation-error-regexp-alist-alist)
19917 [msft]: update regexp for newer msft compilers.
19918
19919 2005-06-10 Mark A. Hershberger <mah@everybody.org>
19920
19921 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
19922 ATTLIST portions of included DTDs.
19923 (xml-parse-dtd): Eliminate use of inefficient match-data.
19924
19925 2005-06-10 Miles Bader <miles@gnu.org>
19926
19927 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
19928 (mpuz-text): Remove "-face" suffix from face names.
19929 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
19930 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
19931 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
19932
19933 * play/gomoku.el (gomoku-O, gomoku-X):
19934 Remove "-face" suffix from face names.
19935 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
19936 New backward-compatibility aliases for renamed faces.
19937 (gomoku-font-lock-keywords): Use renamed gomoku faces.
19938
19939 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
19940
19941 * thumbs.el: Fixes for changes of 2005-06-09.
19942 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
19943 as a directory.
19944 (thumbs-thumbname): Remove directory separator from format string;
19945 `thumbs-thumbsdir' now returns a valid directory name.
19946 (thumbs-temp-dir): New defsubst.
19947 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
19948 Use it.
19949
19950 * cus-edit.el (minibuffer):
19951 * files.el (make-backup-file-name-function):
19952 * filesets.el (filesets-external-viewers):
19953 * hilit-chg.el (highlight-changes-colours)
19954 (highlight-changes-face-list, highlight-changes-rotate-faces):
19955 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
19956 * kmacro.el (kmacro-call-macro):
19957 * log-edit.el (log-edit-changelog-full-paragraphs):
19958 * mouse.el (mouse-1-click-follows-link):
19959 * skeleton.el (skeleton-autowrap):
19960 * subr.el (insert-for-yank-1):
19961 * tempo.el (tempo-insert-region):
19962 * terminal.el (terminal-emulator):
19963 * time.el (display-time-mail-face):
19964 * vc.el (vc-annotate):
19965 * vcursor.el (vcursor-copy-line):
19966 * woman.el (woman-bold-headings, woman-ignore)
19967 (woman-default-faces, woman-monochrome-faces):
19968 * calendar/todo-mode.el (todo-insert-threshold):
19969 * emulation/pc-select.el (pc-select-selection-keys-only)
19970 (pc-selection-mode):
19971 * emulation/vip.el (vip-find-char-forward):
19972 * emulation/viper-cmd.el (viper-find-char-forward):
19973 * international/mule-cmds.el
19974 (select-safe-coding-system-accept-default-p)
19975 (input-method-exit-on-invalid-key):
19976 * international/mule-diag.el (describe-coding-system):
19977 * international/ucs-tables.el (unify-8859-on-encoding-mode):
19978 * net/browse-url.el (browse-url-xterm-program):
19979 * obsolete/lazy-lock.el (lazy-lock-mode):
19980 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
19981 (cperl-mode):
19982 * progmodes/cpp.el (cpp-face-light-name-list)
19983 (cpp-face-dark-name-list):
19984 * progmodes/delphi.el (delphi-newline-always-indents):
19985 Fix spellings in docstrings.
19986
19987 * ido.el (ido-mode, ido-file-extensions-order)
19988 (ido-default-file-method, ido-default-buffer-method)
19989 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
19990 (ido-decorations, ido-read-file-name-as-directory-commands)
19991 (ido-read-file-name-non-ido, ido-work-directory-list)
19992 (ido-ignore-item-temp-list, ido-current-directory)
19993 (ido-magic-forward-char, ido-enter-find-file)
19994 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
19995 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
19996
19997 2005-06-10 Lute Kamstra <lute@gnu.org>
19998
19999 * play/dunnet.el (dun-mode): Use define-derived-mode.
20000 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
20001 obsolete alias.
20002
20003 * play/doctor.el (doctor-mode-map): Remove defvar.
20004 (doctor-mode): Use define-derived-mode.
20005
20006 * mail/mspools.el (mspools-mode):
20007 * net/eudc-hotlist.el (eudc-hotlist-mode):
20008 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
20009
20010 2005-06-10 Miles Bader <miles@gnu.org>
20011
20012 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
20013 Remove "-face" suffix from face names.
20014 (flyspell-incorrect-face, flyspell-duplicate-face):
20015 New backward-compatibility aliases for renamed faces.
20016 (flyspell-mode-on, make-flyspell-overlay)
20017 (flyspell-highlight-incorrect-region)
20018 (flyspell-highlight-duplicate-region)
20019 (flyspell-display-next-corrections)
20020 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
20021
20022 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
20023 from face name.
20024 (texinfo-heading-face): New backward-compatibility alias for
20025 renamed face.
20026 (texinfo-heading-face): Use renamed texinfo-heading face.
20027
20028 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
20029 suffix from face names.
20030 (tex-math-face, tex-verbatim-face):
20031 New backward-compatibility aliases for renamed faces.
20032 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
20033 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
20034 literal face name.
20035
20036 * textmodes/table.el (table-cell): Remove "-face" suffix from face
20037 name.
20038 (table-cell-face): New backward-compatibility alias for renamed face.
20039 (table--put-cell-face-property, table--update-cell-face):
20040 Use renamed table-cell face.
20041
20042 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
20043 from face name.
20044 (sgml-namespace-face): New backward-compatibility alias for
20045 renamed face.
20046 (sgml-namespace-face): Use renamed sgml-namespace face.
20047
20048 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
20049 (org-level-4, org-level-5, org-level-6, org-level-7)
20050 (org-level-8, org-warning, org-headline-done)
20051 (org-deadline-announce, org-scheduled-today)
20052 (org-scheduled-previously, org-link, org-done, org-table)
20053 (org-time-grid): Remove "-face" suffix from face names.
20054 (org-level-1-face, org-level-2-face, org-level-3-face)
20055 (org-level-4-face, org-level-5-face, org-level-6-face)
20056 (org-level-7-face, org-level-8-face, org-warning-face)
20057 (org-headline-done-face, org-deadline-announce-face)
20058 (org-scheduled-today-face, org-scheduled-previously-face)
20059 (org-link-face, org-done-face, org-table-face)
20060 (org-time-grid-face):
20061 New backward-compatibility aliases for renamed faces.
20062 (org-level-faces, org-set-font-lock-defaults, org-timeline)
20063 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
20064 (org-agenda-get-timestamps, org-agenda-get-scheduled)
20065 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
20066
20067 * emulation/viper-init.el (viper-search, viper-replace-overlay)
20068 (viper-minibuffer-emacs, viper-minibuffer-insert)
20069 (viper-minibuffer-vi): Remove "-face" suffix from face names.
20070 (viper-search-face, viper-replace-overlay-face)
20071 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
20072 (viper-minibuffer-vi-face):
20073 New backward-compatibility aliases for renamed faces.
20074 (viper-search-face, viper-replace-overlay-face)
20075 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
20076 (viper-minibuffer-vi-face): Use renamed viper faces.
20077
20078 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
20079 Remove "-face" suffix from face names.
20080 (testcover-nohits-face, testcover-1value-face):
20081 New backward-compatibility aliases for renamed faces.
20082 (testcover-mark): Use renamed testcover faces.
20083
20084 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
20085 face name.
20086 (diary-button-face): New backward-compatibility alias for renamed face.
20087 (diary-entry): Use renamed diary-button face.
20088
20089 * calendar/calendar.el (diary, calendar-today, holiday)
20090 (mark-visible-calendar-date): Remove "-face" suffix from face names.
20091 (diary-face, calendar-today-face, holiday-face):
20092 New backward-compatibility aliases for renamed faces.
20093 (eval-after-load "facemenu", diary-entry-marker)
20094 (calendar-today-marker, calendar-holiday-marker, diary-face):
20095 Use renamed calendar faces.
20096
20097 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
20098 (compare-windows-face): New backward-compatibility alias for
20099 renamed face.
20100 (compare-windows-highlight): Use renamed compare-windows face.
20101
20102 * strokes.el (strokes-char): Remove "-face" suffix from face name.
20103 (strokes-char-face): New backward-compatibility alias for renamed face.
20104 (strokes-encode-buffer): Use renamed strokes-char face.
20105
20106 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
20107 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
20108 Remove "-face" suffix from face names.
20109 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
20110 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
20111 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
20112 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
20113 Use renamed pcvs faces.
20114 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
20115 * pcvs-defs.el (cvs-mode-map): Likewise.
20116 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
20117
20118 * info.el (info-title-1, info-title-2, info-title-3)
20119 (info-title-4): Remove "-face" suffix from and downcase face names.
20120 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
20121 (Info-title-4-face):
20122 New backward-compatibility aliases for renamed faces.
20123 (Info-fontify-node): Use renamed info faces.
20124
20125 * hilit-chg.el (highlight-changes, highlight-changes-delete):
20126 Remove "-face" suffix from face names.
20127 (highlight-changes-face, highlight-changes-delete-face):
20128 New backward-compatibility aliases for renamed faces.
20129 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
20130 (hilit-chg-make-list): Use renamed highlight-changes faces.
20131
20132 * generic-x.el (show-tabs-tab, show-tabs-space):
20133 Remove "-face" suffix from face names.
20134 (show-tabs-tab-face, show-tabs-space-face):
20135 New backward-compatibility aliases for renamed faces.
20136 (show-tabs-generic-mode-font-lock-defaults-1)
20137 (show-tabs-generic-mode-font-lock-defaults-2):
20138 Use renamed show-tabs faces.
20139
20140 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
20141 (smerge-markers): Remove "-face" suffix from face names.
20142 (smerge-mine-face, smerge-other-face, smerge-base-face)
20143 (smerge-markers-face):
20144 New backward-compatibility aliases for renamed faces.
20145 (smerge-mine-face, smerge-other-face, smerge-base-face)
20146 (smerge-markers-face): Use renamed smerge faces.
20147
20148 * log-view.el (log-view-file, log-view-message): Remove "-face"
20149 suffix from face names.
20150 (log-view-file-face, log-view-message-face):
20151 New backward-compatibility aliases for renamed faces.
20152 (log-view-file-face, log-view-message-face): Use renamed log-view
20153 faces.
20154
20155 * paren.el (show-paren-match, show-paren-mismatch):
20156 Remove "-face" suffix from face names.
20157 (show-paren-match-face, show-paren-mismatch-face):
20158 New backward-compatibility aliases for renamed faces.
20159 (show-paren-function): Use renamed show-paren faces.
20160
20161 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
20162 (ruler-mode-margins, ruler-mode-fringes)
20163 (ruler-mode-column-number, ruler-mode-fill-column)
20164 (ruler-mode-comment-column, ruler-mode-goal-column)
20165 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
20166 suffix from face names.
20167 (ruler-mode-default-face, ruler-mode-pad-face)
20168 (ruler-mode-margins-face, ruler-mode-fringes-face)
20169 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
20170 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
20171 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
20172 New backward-compatibility aliases for renamed faces.
20173 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
20174 (ruler-mode-column-number, ruler-mode-fill-column)
20175 (ruler-mode-comment-column, ruler-mode-goal-column)
20176 (ruler-mode-tab-stop, ruler-mode-current-column)
20177 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
20178 faces.
20179
20180 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
20181 face name.
20182 (whitespace-highlight-the-space): Use renamed face.
20183 (whitespace-highlight-face): New backward-compatibility alias for
20184 renamed face.
20185
20186 * woman.el (woman-italic, woman-bold, woman-unknown)
20187 (woman-addition, woman-symbol-face):
20188 Remove "-face" suffix from face names.
20189 (woman-italic-face, woman-bold-face, woman-unknown-face)
20190 (woman-addition-face):
20191 New backward-compatibility aliases for renamed faces.
20192 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
20193 (woman-decode-region, woman-replace-match)
20194 (woman-display-extended-fonts, woman-special-characters)
20195 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
20196 Use renamed woman faces.
20197
20198 * longlines.el (longlines-visible-face): Face removed.
20199
20200 * diff-mode.el (diff-header, diff-file-header, diff-index)
20201 (diff-hunk-header, diff-removed, diff-added, diff-changed)
20202 (diff-function, diff-context, diff-nonexistent): Remove "-face"
20203 suffix from face names.
20204 (diff-header-face, diff-file-header-face, diff-index-face)
20205 (diff-hunk-header-face, diff-removed-face, diff-added-face)
20206 (diff-changed-face, diff-function-face, diff-context-face)
20207 (diff-nonexistent-face): New backward-compatibility aliases for
20208 renamed faces.
20209 (diff-header-face, diff-file-header-face)
20210 (diff-index, diff-index-face, diff-hunk-header)
20211 (diff-hunk-header-face, diff-removed, diff-removed-face)
20212 (diff-added, diff-added-face, diff-changed-face, diff-function)
20213 (diff-function-face, diff-context-face, diff-nonexistent)
20214 (diff-nonexistent-face): Use renamed diff-mode faces.
20215
20216 * progmodes/compile.el (compilation-warning-face)
20217 (compilation-info-face): Remove "-face" suffix from face names.
20218 (compilation-warning-face, compilation-info-face):
20219 New backward-compatibility aliases for renamed faces.
20220 (compilation-warning-face, compilation-info-face):
20221 Use renamed compilation faces.
20222
20223 * add-log.el (change-log-date, change-log-name)
20224 (change-log-email, change-log-file, change-log-list)
20225 (change-log-conditionals, change-log-function)
20226 (change-log-acknowledgement): Remove "-face" suffix from face names.
20227 (change-log-date-face, change-log-name-face)
20228 (change-log-email-face, change-log-file-face)
20229 (change-log-list-face, change-log-conditionals-face)
20230 (change-log-function-face, change-log-acknowledgement-face):
20231 New backward-compatibility aliases for renamed faces.
20232 (change-log-font-lock-keywords): Use renamed change-log faces.
20233
20234 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
20235 (custom-set, custom-changed, custom-saved, custom-button)
20236 (custom-button-pressed, custom-documentation, custom-state)
20237 (custom-comment, custom-comment-tag, custom-variable-tag)
20238 (custom-variable-button, custom-face-tag, custom-group-tag-1)
20239 (custom-group-tag): Remove "-face" suffix from face names.
20240 (custom-magic-alist, custom-magic-value-create)
20241 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
20242 (custom-invalid-face, custom-rogue-face, custom-modified-face)
20243 (custom-set-face, custom-changed-face, custom-saved-face)
20244 (custom-button-face, custom-button-pressed-face)
20245 (custom-documentation-face, custom-state-face)
20246 (custom-comment-face, custom-comment-tag-face)
20247 (custom-variable-tag-face, custom-variable-button-face)
20248 (custom-face-tag-face, custom-group-tag-face-1)
20249 (custom-group-tag-face):
20250 New backward-compatibility aliases for renamed faces.
20251
20252 * wid-edit.el (widget-documentation, widget-button)
20253 (widget-field, widget-single-line-field, widget-inactive)
20254 (widget-button-pressed): "-face" suffix removed from face names.
20255 (widget-documentation-face, widget-button-face)
20256 (widget-field-face, widget-single-line-field-face)
20257 (widget-inactive-face, widget-button-pressed-face):
20258 New backward-compatibility aliases for renamed faces.
20259 (widget-documentation-face, widget-button-face)
20260 (widget-button-pressed-face, widget-specify-field)
20261 (widget-specify-inactive): Use renamed widget faces.
20262
20263 2005-06-10 Kenichi Handa <handa@m17n.org>
20264
20265 * term/x-win.el (x-clipboard-yank): Remove condition-case
20266 wrapping.
20267
20268 2005-06-11 Kenichi Handa <handa@m17n.org>
20269
20270 * add-log.el (change-log-font-lock-keywords): Make the regexp for
20271 date lines stricter.
20272
20273 2005-06-10 Zhang Wei <id.brep@gmail.com>
20274
20275 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
20276 of x-get-selection.
20277
20278 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
20279
20280 * comint.el (comint-mode, comint-snapshot-last-prompt):
20281 * frame.el (frame-current-scroll-bars):
20282 * term.el (term-mode, term-check-proc, term-input-sender)
20283 (term-simple-send, term-extract-string, term-word)
20284 (term-match-partial-filename):
20285 * window.el (window-current-scroll-bars):
20286 * emulation/cua-base.el (cua-normal-cursor-color)
20287 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
20288 (cua-global-mark-cursor-color):
20289 * mail/undigest.el (rmail-forward-separator-regex):
20290 Fix typos in docstrings.
20291
20292 * comint.el (comint-check-proc, make-comint-in-buffer)
20293 (comint-source-default): Doc fixes.
20294
20295 * term.el (term-send-string): Improve argument/docstring consistency.
20296
20297 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
20298
20299 * comint.el (comint-send-input): Bind `inhibit-read-only' around
20300 call to `delete-region'.
20301 (comint-mode-hook): Do not enable Font Lock by default.
20302
20303 2005-06-09 Lute Kamstra <lute@gnu.org>
20304
20305 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
20306 could be void.
20307
20308 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
20309
20310 * emacs-lisp/debug.el (debugger-will-be-back): New var.
20311 (debug): Use it.
20312 (debugger-step-through, debugger-continue, debugger-jump)
20313 (debugger-return-value): Set it when needed.
20314 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
20315 Use inhibit-read-only.
20316
20317 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
20318
20319 * window.el (shrink-window-if-larger-than-buffer)
20320 (window-size-fixed): Fix typo in docstring.
20321
20322 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
20323 thumbnails directory on loading.
20324 (thumbs-conversion-program): Use `eq' to check the system type,
20325 not `equal'.
20326 (thumbs-temp-dir): Initialize to `temporary-file-directory',
20327 not "/tmp". Fix docstring.
20328 (thumbs-thumbsdir): New function to return the thumbnails
20329 directory, creating it if needed.
20330 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
20331 (thumbs-temp-file): Delete variable and make it into a function.
20332 (thumbs-resize-image, thumbs-modify-image): Use it.
20333 (thumbs-kill-buffer): Simplify.
20334 (thumbs-gensym): Defalias or duplicate CL `gensym'.
20335 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
20336 docstrings.
20337
20338 2005-06-09 Kim F. Storm <storm@cua.dk>
20339
20340 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
20341 set-match-data to free markers in match-data.
20342
20343 * replace.el (replace-match-data): Pass RESEAT arg `t' to
20344 match-data to unchain markers in match-data.
20345
20346 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
20347
20348 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
20349 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
20350 unnecessary now.
20351
20352 2005-06-08 Richard M. Stallman <rms@gnu.org>
20353
20354 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
20355 give the variable a doc string that doesn't say don't set it directly.
20356
20357 * textmodes/ispell.el (ispell-check-version):
20358 Use match-string-no-properties.
20359 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
20360 (ispell-buffer-local-words): Likewise.
20361
20362 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
20363 except on terminals with enough colors to really display it.
20364 (makefile-dependency-regex): Delete spurious `bb'.
20365
20366 * faces.el (escape-glyph): Use blue once again in last case.
20367 (no-break-space): Redefine so that it isn't invisible on a tty.
20368
20369 2005-06-08 Kim F. Storm <storm@cua.dk>
20370
20371 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
20372 also when reading directory name.
20373
20374 2005-06-08 Lute Kamstra <lute@gnu.org>
20375
20376 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
20377 (flyspell-mode-line-string): Remove autoload cookie.
20378 (flyspell-mode): Remove defvar.
20379
20380 2005-06-07 Lute Kamstra <lute@gnu.org>
20381
20382 * textmodes/org.el (org-run-mode-hooks): New function.
20383 (org-agenda-mode): Use it.
20384
20385 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
20386
20387 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
20388
20389 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
20390
20391 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
20392
20393 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
20394
20395 * font-lock.el (font-lock-add-keywords): Doc fix.
20396
20397 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
20398
20399 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
20400 (tex-compile-default): In the absence of any history, use the order in
20401 tex-compile-alist to choose the preferred command.
20402 (tex-compile-commands): Reorder a bit.
20403
20404 * textmodes/flyspell.el (flyspell-auto-correct-binding)
20405 (flyspell-incorrect-face, flyspell-duplicate-face):
20406 Use (X)Emacs-agnostic code.
20407 (flyspell-mode-map): Don't overwrite at each load. Remove code
20408 redundant with the subsequent add-minor-mode. Merge Emacs and
20409 XEmacs code.
20410 (flyspell-word): Minor simplification.
20411 (flyspell-math-tex-command-p): Quieten the byte-compiler.
20412 (flyspell-external-point-words): Remove unused vars `size' and `start'.
20413 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
20414 Merge the corresponding Emacs code.
20415 (flyspell-correct-word, flyspell-xemacs-popup):
20416 Use flyspell-do-correct.
20417
20418 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
20419 a dedicated window.
20420
20421 * international/latexenc.el (latexenc-find-file-coding-system):
20422 Undo part of last patch, to turn off a compiler warning.
20423
20424 2005-06-06 Juri Linkov <juri@jurta.org>
20425
20426 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
20427 Rename `tmm-inactive-face' to `tmm-inactive'.
20428
20429 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
20430
20431 * iswitchb.el: Rename faces.
20432
20433 2005-06-06 Kim F. Storm <storm@cua.dk>
20434
20435 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
20436 (cua-global-mark): Remove -face suffix from face names.
20437
20438 * emulation/cua-gmrk.el (cua--init-global-mark):
20439 Remove cua-global-mark face setup.
20440
20441 2005-06-06 Richard M. Stallman <rms@gnu.org>
20442
20443 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
20444 just like other allowed characters.
20445 (makefile-match-dependency): Exclude leading and training whitespace
20446 from the range of regexp subexp 1.
20447 (makefile-macroassign-regex): Don't try to match the body,
20448 just the name of the macro being defined.
20449
20450 * info.el (Info-read-node-name-2): New function.
20451 (Info-read-node-name-1): Use that.
20452 Add a completion-base-size-function property.
20453
20454 * simple.el (completion-setup-function): Look for
20455 completion-base-size-function property of minibuffer-completion-table.
20456
20457 * files.el (locate-file-completion): Doc fix.
20458
20459 * printing.el: Don't call pr-update-menus; user must do that.
20460
20461 * emacs-lisp/debug.el (debugger-window): New variable.
20462 (debug): Use debugger-window if it is set and still alive.
20463 Record debugger-window for next entry.
20464
20465 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
20466
20467 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
20468
20469 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
20470 (hack-one-local-variable, hack-local-variables)
20471 (hack-local-variables-prop-line): Pass that arg.
20472
20473 2005-06-06 Kim F. Storm <storm@cua.dk>
20474
20475 * ido.el (ido-first-match, ido-only-match, ido-subdir)
20476 (ido-indicator): Remove -face suffix from face names.
20477
20478 2005-06-06 Juri Linkov <juri@jurta.org>
20479
20480 * font-lock.el (font-lock-regexp-backslash)
20481 (font-lock-regexp-backslash-construct): New faces.
20482 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
20483 after `('. Add `while-no-input' to control structures.
20484
20485 * faces.el (no-break-space, shadow): New faces.
20486 (escape-glyph): Use less loud colors pink2 and red4.
20487
20488 * diff-mode.el (diff-context-face)
20489 * dired.el (dired-ignored)
20490 * rfn-eshadow.el (file-name-shadow)
20491 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
20492
20493 * info.el (Info-title-1-face): Use green instead of yellow because
20494 bold yellow is not readable on light backgrounds.
20495
20496 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
20497 before selecting the desired mode to not spend time fontifying
20498 old contents.
20499
20500 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
20501
20502 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
20503 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
20504
20505 * ps-print.el (ps-default-fg, ps-default-bg):
20506 Fix typos in docstrings.
20507
20508 * isearchb.el (isearchb): Don't pass a spurious second argument to
20509 `iswitchb-completions'.
20510
20511 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
20512
20513 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
20514 to preserve point.
20515 (gdb-find-file-hook): Add doc string.
20516
20517 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
20518 C dereferenced pointer expression.
20519 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
20520
20521 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
20522
20523 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
20524 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
20525 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
20526 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
20527 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
20528 Make background transparent.
20529
20530 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
20531
20532 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
20533 (font-lock-remove-keywords): Doc fix.
20534 (font-lock-mode-major-mode): Compiler defvar.
20535 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
20536
20537 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
20538 (font-lock-mode): Update `font-lock-mode-major-mode'.
20539 (font-lock-set-defaults): Compiler defvar.
20540 (font-lock-default-function): Take `font-lock-mode-major-mode'
20541 into account.
20542
20543 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
20544 keep track of which major mode it enabled the minor mode for.
20545 Use find-file-hook again. Update docstring.
20546
20547 * simple.el (eval-expression-print-level)
20548 (eval-expression-print-length, eval-expression-debug-on-error):
20549 Doc fixes.
20550
20551 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
20552
20553 * iswitchb.el (iswitchb-single-match-face)
20554 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
20555 (iswitchb-invalid-regexp-face): New faces.
20556 (iswitchb-completions): Use them.
20557 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
20558 now marked as an obsolete alias.
20559 (iswitchb-read-buffer): Remove check for bound font variables.
20560 (iswitchb-invalid-regexp): New free variable.
20561 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
20562 set iswitchb-invalid-regexp.
20563 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
20564 invalid regexps.
20565 (iswitchb-completions): Add check for complete match when entering
20566 a regexp.
20567 (iswitchb-completions): Remove require-match argument.
20568 (iswitchb-exhibit): Fix caller.
20569 (iswitchb-common-match-inserted): New variable.
20570 (iswitchb-complete, iswitchb-completion-help): Use it.
20571
20572 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
20573
20574 * url-http.el (url-http-chunked-encoding-after-change-function):
20575 Use `url-http-debug' instead of `message'.
20576
20577 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
20578
20579 * url-http.el (url-http-parse-headers): Pass redirected URL as a
20580 callback argument.
20581
20582 2005-06-04 Kim F. Storm <storm@cua.dk>
20583
20584 * simple.el (line-move): Only call sit-for when moving backwards.
20585
20586 * ido.el (ido-make-merged-file-list-1): New defun split from
20587 ido-make-merged-file-list.
20588 (ido-make-merged-file-list): Bind throw-on-input around call to
20589 ido-make-merged-file-list-1. Return input-pending-p if
20590 interrupted by more input available.
20591 (ido-read-internal): Handle input-pending-p return value from
20592 ido-make-merged-file-list.
20593
20594 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
20595
20596 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
20597 compatibility code.
20598
20599 * international/latexenc.el (latexenc-find-file-coding-system):
20600 Don't inherit the EOL part of the coding-system from the
20601 tex-main buffer. Fit within 80 columns.
20602
20603 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
20604
20605 * tmm.el (tmm-inactive-face): New face.
20606 (tmm-remove-inactive-mouse-face): New function.
20607 (tmm-prompt, tmm-add-one-shortcut)
20608 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
20609 but not selectable.
20610
20611 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
20612
20613 * faces.el (face-equal): Improve argument/docstring consistency.
20614
20615 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
20616
20617 * progmodes/make-mode.el (makefile-targets-face)
20618 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
20619 (makefile-bsdmake-dependency-regex)
20620 (makefile-makepp-rule-action-regex)
20621 (makefile-bsdmake-rule-action-regex): New constants.
20622 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
20623
20624 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20625 Allow (...) within `...' for makepp messages.
20626
20627 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
20628
20629 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
20630
20631 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
20632 "." files are deleted from all file lists before comparison.
20633
20634 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
20635 (viper-ESC-key): Made them customizable.
20636
20637 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
20638
20639 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
20640
20641 * autorevert.el (auto-revert-buffers): Use save-match-data.
20642
20643 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
20644
20645 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
20646 menu items with a nil command binding.
20647
20648 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
20649
20650 * emacs-lisp/cl-macs.el (defsetf):
20651 Improve argument/docstring consistency.
20652
20653 * faces.el (list-faces-display): Improve the formatting by
20654 computing the maximum length required for any face-name (reworked
20655 patch of 1999-01-11, accidentally deleted on 1999-07-21).
20656 (internal-find-face): Remove redundant info in docstring.
20657
20658 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
20659
20660 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
20661 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
20662 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
20663 (gdb-assembler-custom): Improve regexps.
20664 (def-gdb-auto-update-handler): Use window point to preserve point.
20665
20666 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
20667
20668 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
20669
20670 2005-05-31 Jay Belanger <belanger@truman.edu>
20671
20672 * calc/calc-embed.el (calc-embedded-word): Change argument passed
20673 to calc-embedded.
20674 (calc-embedded-make-info): Have plain prefix argument select
20675 entire line.
20676
20677 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
20678
20679 * faces.el (list-faces-display): Signal error if passed a regexp
20680 that matches no face name.
20681
20682 * simple.el (filter-buffer-substring): Fix typo in docstring.
20683
20684 2005-05-31 Richard M. Stallman <rms@gnu.org>
20685
20686 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
20687 (vhdl-emacs-21): Doc fix.
20688 (vhdl-mode): Unconditionally set comment-padding.
20689 (vhdl-fixup-whitespace-region): Insert spaces only where
20690 there are none.
20691 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
20692
20693 2005-05-30 John Wiegley <johnw@newartisans.com>
20694
20695 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
20696 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
20697 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
20698 `directory-sep-char' to ?/, and all uses of `string-to-int' to
20699 `string-to-number'.
20700
20701 2005-05-30 Jay Belanger <belanger@truman.edu>
20702
20703 * calc/calc.el (calc-bug-address): Fix docstring.
20704 (calc-window-hook, calc-trail-window-hook): New variables.
20705 (calc-trail-display): Restore use of calc-trail-window-hook.
20706 (calc): Restore use of calc-window-hook.
20707
20708 2005-05-31 Masatake YAMATO <jet@gyve.org>
20709
20710 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
20711
20712 * help-fns.el (help-C-file-name): Add autoload mark for
20713 `find-function-noselect'.
20714
20715 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
20716
20717 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
20718 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
20719
20720 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
20721
20722 * calendar/diary-lib.el (mark-included-diary-files): Only kill
20723 included diary buffer if it was not already being visited.
20724 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
20725
20726 * calendar/icalendar.el (top-level): Do not require appt.
20727
20728 * mail/supercite.el (sc-select-attribution): Only use a list
20729 element from sc-attrib-selection-list if it returns a string.
20730 Reported by Davide G. M. Salvetti <salve@debian.org>.
20731
20732 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
20733
20734 * thumbs.el (thumbs-thumbname): The resulting thumbname now
20735 includes a hash value to improve its uniqueness, and has a ".jpg"
20736 extension. Also, it is now a valid filename on all systems.
20737 (thumbs-make-thumb): Use `let', not `let*'.
20738 (thumbs-show-thumbs-list): Check for JPEG availability.
20739
20740 2005-05-30 Richard M. Stallman <rms@gnu.org>
20741
20742 * filesets.el (filesets-menu-ensure-use-cached):
20743 Prevent warning when emacs-version>= is undefined.
20744
20745 * printing.el (pr-interactive-n-up): Use string-to-number.
20746
20747 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
20748
20749 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
20750 Warn only when name to be defined is quoted.
20751
20752 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
20753
20754 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
20755 Make regexp more robust.
20756 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
20757 Force regeneration of disassembly.
20758
20759 2005-05-29 Jay Belanger <belanger@truman.edu>
20760
20761 * calc/calc.el (calc-user-invocation): Check if
20762 calc-invocation-macro is non-nil.
20763
20764 2005-05-29 Juri Linkov <juri@jurta.org>
20765
20766 * add-log.el (change-log-font-lock-keywords):
20767 Add `+' to e-mail regexp to accept mail address with keywords.
20768
20769 * man.el (Man-name-regexp): Add `:' to accept qualified names.
20770
20771 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
20772
20773 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
20774
20775 * ielm.el (inferior-emacs-lisp-mode): Ditto.
20776
20777 2005-05-29 Richard M. Stallman <rms@gnu.org>
20778
20779 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
20780 Undo the change that moves to end of the current word.
20781
20782 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
20783
20784 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
20785 Throw error when count <= 0 to ensure input is a number.
20786 (gdb-read-memory-custom): Pick up address from buffer.
20787 (gdb-memory-mode): Allow user to increment and decrement
20788 memory address from header line.
20789
20790 2005-05-29 Richard M. Stallman <rms@gnu.org>
20791
20792 * flyspell.el (flyspell-version): Function deleted.
20793 (flyspell-auto-correct-previous-hook): Doc fix.
20794
20795 * jit-lock.el (jit-lock-function, jit-lock-after-change):
20796 Do nothing if memory is full.
20797
20798 * font-lock.el (font-lock-fontify-syntactically-region):
20799 Pass t for GREEDY to looking-back.
20800
20801 * saveplace.el (save-place-alist-to-file): Write the file
20802 using write-region.
20803
20804 * subr.el (looking-back): New argument GREEDY.
20805
20806 * progmodes/compile.el (compilation-start): Set the mode
20807 before inserting the initial text.
20808
20809 * progmodes/which-func.el (which-func-update-1): Turn the mode
20810 off in case of error by setting which-func-mode.
20811
20812 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
20813
20814 * flyspell.el (flyspell-auto-correct-previous-word):
20815 Narrow down to what's on the screen, and recenter overlays
20816 at the end of the next word.
20817
20818 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
20819
20820 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
20821 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
20822 (flyspell-abbrev-p): Default to nil.
20823 (flyspell-use-global-abbrev-table-p): Doc fix.
20824 (flyspell-large-region): Allow nil as value.
20825 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
20826
20827 (mail-mode-flyspell-verify): More robust handling
20828 of `mail-header-separator'. More efficient signature detection.
20829 Allow for regexp metacharacters in message-header-separator.
20830 Adding `To' not to be checked in mail-mode-flyspell-verify.
20831
20832 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
20833 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
20834 Bind flyspell-auto-correct-binding.
20835 Bind C-. and C-, .
20836 (flyspell-mode-map): Likewise.
20837 (flyspell-mode): Doc fix.
20838 (flyspell-accept-buffer-local-defs): Preserve current buffer.
20839 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
20840 (flyspell-word-cache-result): New var, always local.
20841 (flyspell-check-pre-word-p): Doc fix.
20842 (flyspell-check-changed-word-p): Handle spc like newline.
20843 (flyspell-post-command-hook): Set flyspell-word-cache-result.
20844 (flyspell-word-search-backward, flyspell-word-search-forward):
20845 New functions.
20846 (flyspell-word): Return t if nothing to check.
20847 When parsing TeX code, check for after } or \.
20848 Use flyspell-word-search-backward to find previous word.
20849 Return nil if duplicated word.
20850 For word already checked, return same value as last time.
20851 Set flyspell-word-cache-result after checking.
20852 Don't clobber the return value.
20853 (flyspell-get-word): Major rewrite.
20854 (flyspell-external-point-words): New locals pword, pcount.
20855 Fix size used in progress message.
20856 Find the proper corresponding word in flyspell-large-region-buffer.
20857 (flyspell-region): Check for flyspell-large-region = nil.
20858 (flyspell-highlight-incorrect-region): Clean up overlays in region.
20859 (flyspell-auto-correct-word): Check that WORD is a cons.
20860 (flyspell-correct-word): Likewise.
20861
20862 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
20863
20864 * progmodes/make-mode.el (makefile-rule-action-regex)
20865 (makefile-macroassign-regex, makefile-makepp-mode)
20866 (makefile-bsdmake-mode): Continuation lines may be empty.
20867 Reported by Joshua Varner.
20868 (makefile-makepp-font-lock-keywords): Add $(stem).
20869
20870 2005-05-28 Karl Berry <karl@gnu.org>
20871
20872 * textmodes/tex-mode.el: Now that tex-send-command calls
20873 shell-quote-argument (2005-03-31 change), remove all calls to
20874 shell-quote-argument; they all end up invoking tex-send-command.
20875 The double quoting loses on filenames with non-safe characters,
20876 such as "@". Reported by Frederik Fouvry.
20877
20878 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
20879
20880 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
20881 about preserving point.
20882
20883 2005-05-27 Jay Belanger <belanger@truman.edu>
20884
20885 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
20886 Info-goto-node.
20887
20888 * calc/calc-embed.el (calc-embed-arg): New variable.
20889 (calc-do-embedded-activate, calc-embedded-activate-formula)
20890 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
20891 variable by new variable.
20892 (calc-embedded-make-info): Replace undeclared variable by new
20893 variable. When selecting region with positive prefix
20894 argument, use end of previous line instead of beginning of line.
20895
20896 * calc/calc-aent.el (calc-arg-values): Declare it.
20897
20898 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
20899 Declare them.
20900
20901 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
20902
20903 * calc/calc.el (calc-alg-map): Declare it.
20904
20905 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
20906
20907 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
20908
20909 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
20910 (gdb-registers-buffer, toggle-gdb-all-registers):
20911 Toggle display of floating point registers.
20912 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
20913
20914 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
20915 (toggle-gud-tooltip-dereference):
20916 Rename from gud-toggle-tooltip-dereference.
20917
20918 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20919
20920 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
20921
20922 2005-05-27 Jay Belanger <belanger@truman.edu>
20923
20924 * calc/calc-prog.el (calc-kbd-report): Remove.
20925 (calc-kbd-query): Rewrite.
20926
20927 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
20928
20929 * image.el (image-library-alist): Move to image.c.
20930 (image-type-available-p): Doc fix.
20931
20932 2005-05-27 Lute Kamstra <lute@gnu.org>
20933
20934 * calc/calc.el (calc):
20935 * outline.el (outline-1, outline-2, outline-3, outline-4)
20936 (outline-5, outline-6, outline-7, outline-8):
20937 * textmodes/dns-mode.el (dns-mode):
20938 * textmodes/sgml-mode.el (sgml-namespace-face):
20939 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
20940 (tex-verbatim-face, tex-use-reftex):
20941 * textmodes/texinfo.el (texinfo-heading-face):
20942 Specify customization group.
20943
20944 * longlines.el: Don't require easy-mmode.
20945 (longlines-visible-face): Specify customization group.
20946
20947 2005-05-27 Kenichi Handa <handa@m17n.org>
20948
20949 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
20950 encoding table of windows-1251.
20951
20952 * international/ucs-tables.el (ucs-set-table-for-input):
20953 If translation-table-for-input of a coding system is a symbol, get
20954 its translation-table property.
20955
20956 * international/code-pages.el: Don't register a coding system into
20957 non-iso-charset-alist more than once.
20958 (cp-make-coding-system): Likewise.
20959
20960 2005-05-26 John Wiegley <johnw@newartisans.com>
20961
20962 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
20963 `eshell-resume-eval' is wrapped in a list, it indicates that the
20964 command was run asynchronously. In that case, unwrap the value
20965 before checking the delimiter value.
20966
20967 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
20968 character before a space at the end of a line is \, assume the space
20969 is part of the last argument rather than a final argument separator.
20970
20971 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
20972 is in use, and the target is `t' or `nil' (which are the most common
20973 values), don't assume that the symbol target is a buffer.
20974
20975 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
20976
20977 * calendar/calendar.el (calendar-mode-line-format):
20978 Use mode-line-highlight as mouse-face.
20979
20980 * time.el (display-time-string-forms, display-time-update):
20981 Use mode-line-highlight as mouse-face.
20982
20983 2005-05-26 Jay Belanger <belanger@truman.edu>
20984
20985 * calc/calc.el (calc-language-alist): Remove extra defvar.
20986
20987 2005-05-26 Lute Kamstra <lute@gnu.org>
20988
20989 * arc-mode.el (archive-mode):
20990 * bookmark.el (bookmark-read-annotation-mode)
20991 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
20992 * bs.el (bs-mode):
20993 * calc/calc-yank.el (calc-edit-mode):
20994 * calc/calc.el (calc-mode, calc-trail-mode):
20995 * calculator.el (calculator-mode):
20996 * chistory.el (command-history-mode):
20997 * comint.el:
20998 * cus-edit.el (custom-mode):
20999 * descr-text.el (describe-text-mode):
21000 * ebuff-menu.el (Electric-buffer-menu-mode):
21001 * ediff-util.el (ediff-mode):
21002 * emacs-lisp/re-builder.el (reb-mode):
21003 * emulation/vi.el (vi-mode-setup):
21004 * emulation/ws-mode.el (wordstar-mode):
21005 * eshell/esh-mode.el (eshell-mode):
21006 * forms.el (forms-mode):
21007 * help-mode.el (help-mode):
21008 * hexl.el (hexl-mode):
21009 * ibuffer.el (ibuffer-mode):
21010 * ielm.el (inferior-emacs-lisp-mode):
21011 * info.el (Info-mode, Info-edit-mode):
21012 * international/swedish.el:
21013 * ledit.el (ledit-from-lisp-mode):
21014 * locate.el (locate-mode):
21015 * mail/rmail.el (rmail-mode):
21016 * mail/rmailedit.el (rmail-edit-mode):
21017 * mail/rmailsum.el (rmail-summary-mode):
21018 * mail/supercite.el (sc-electric-mode):
21019 * net/eudc.el (eudc-mode):
21020 * net/quickurl.el (quickurl-list-mode):
21021 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
21022 * obsolete/ooutline.el (outline-mode):
21023 * obsolete/options.el (Edit-options-mode):
21024 * obsolete/rnews.el (news-mode):
21025 * obsolete/rnewspost.el (news-reply-mode):
21026 * play/5x5.el (5x5-mode):
21027 * play/decipher.el (decipher-mode, decipher-stats-mode):
21028 * play/gomoku.el (gomoku-mode):
21029 * play/snake.el (snake-mode):
21030 * play/solitaire.el (solitaire-mode):
21031 * play/tetris.el (tetris-mode):
21032 * progmodes/ada-mode.el (ada-mode):
21033 * progmodes/antlr-mode.el (antlr-mode):
21034 * progmodes/autoconf.el (autoconf-mode):
21035 * progmodes/dcl-mode.el (dcl-mode):
21036 * progmodes/delphi.el (delphi-mode):
21037 * progmodes/ebrowse.el (ebrowse-tree-mode)
21038 (ebrowse-electric-list-mode, ebrowse-member-mode)
21039 (ebrowse-electric-position-mode):
21040 * progmodes/f90.el (f90-mode):
21041 * progmodes/fortran.el (fortran-mode):
21042 * progmodes/icon.el (icon-mode):
21043 * progmodes/idlw-help.el (idlwave-help-mode):
21044 * progmodes/idlw-shell.el (idlwave-shell-mode):
21045 * progmodes/idlwave.el (idlwave-mode):
21046 * progmodes/inf-lisp.el (inferior-lisp-mode):
21047 * progmodes/m4-mode.el (m4-mode):
21048 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
21049 * progmodes/modula2.el (modula-2-mode):
21050 * progmodes/octave-inf.el (inferior-octave-mode):
21051 * progmodes/octave-mod.el (octave-mode):
21052 * progmodes/pascal.el (pascal-mode):
21053 * progmodes/sh-script.el (sh-mode):
21054 * progmodes/sql.el (sql-mode, sql-interactive-mode):
21055 * progmodes/vhdl-mode.el (vhdl-mode):
21056 * progmodes/xscheme.el (scheme-interaction-mode):
21057 * replace.el (occur-mode):
21058 * ses.el (ses-mode):
21059 * simple.el (completion-list-mode):
21060 * skeleton.el:
21061 * speedbar.el (speedbar-mode):
21062 * term.el (term-mode):
21063 * terminal.el (terminal-edit-mode):
21064 * textmodes/reftex-index.el (reftex-index-mode)
21065 (reftex-index-phrases-mode):
21066 * textmodes/reftex-sel.el (reftex-select-label-mode)
21067 (reftex-select-bib-mode):
21068 * textmodes/reftex-toc.el (reftex-toc-mode):
21069 * wdired.el (wdired-change-to-wdired-mode):
21070 * wid-browse.el (widget-browse-mode):
21071 Use run-mode-hooks.
21072
21073 * array.el (array-mode):
21074 * calendar/todo-mode.el (todo-mode):
21075 * man.el (Man-mode):
21076 * play/landmark.el (lm-mode):
21077 * play/mpuz.el (mpuz-mode):
21078 Use kill-all-local-variables and run-mode-hooks.
21079
21080 * subr.el (delay-mode-hooks): Specify indentation.
21081
21082 2005-05-26 Mark A. Hershberger <mah@everybody.org>
21083
21084 * xml.el (xml-substitute-special): Don't die for undefined xml
21085 entities.
21086
21087 2005-05-26 Jay Belanger <belanger@truman.edu>
21088
21089 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
21090 of nil.
21091
21092 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
21093
21094 * progmodes/gdb-ui.el (gdb-frame-address):
21095 Rename from gdb-current-address.
21096 (gdb-previous-frame-address): Rename from gdb-previous-address.
21097 (gdb-selected-frame): Rename from gdb-current-frame.
21098 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
21099 (gdb-frame-number): Rename from gdb-current-stack-level.
21100 (gdb-ann3): Match new mode-name for disassembly buffer.
21101 Extend initialization of variables.
21102 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
21103 (gdb-memory-mode): Use mouse-face in header line.
21104 (gdb-assembler-buffer-name): Call it disassembly and give frame
21105 in mode line.
21106 (gdb-source-spec-regexp, gdb-assembler-custom)
21107 (gdb-invalidate-assembler, gdb-frame-handler):
21108 Make robust to leading zeroes in address format.
21109
21110 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
21111
21112 * textmodes/org.el (org-mode): Use `define-derived-mode' to
21113 define `org-mode'.
21114 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
21115
21116 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
21117
21118 * log-edit.el (log-edit-changelog-entries): Distinguish between
21119 filenames like xfns.c and fns.c.
21120
21121 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
21122
21123 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
21124 point after reverting.
21125 (Buffer-menu-make-sort-button): Handle the case where
21126 `Buffer-menu-use-header-line' is nil.
21127
21128 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
21129
21130 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
21131 New funcs. In minibuffer-local-completion-map bind `]', `/'
21132 and `:' to them.
21133
21134 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
21135
21136 * startup.el (normal-top-level): Allow modification of load-path while
21137 we're iterating over it.
21138
21139 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
21140
21141 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
21142 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
21143 (thumbs-resize-interactive, thumbs-insert-image)
21144 (thumbs-insert-thumb, thumbs-dired-show-marked)
21145 (thumbs-find-image-at-point, thumbs-delete-images)
21146 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
21147 (thumbs-increment-image-size, thumbs-decrement-image-size):
21148 Fix typos in docstrings.
21149
21150 2005-05-24 Andre Spiegel <spiegel@gnu.org>
21151
21152 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
21153 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
21154 (cperl-mode): Use them.
21155
21156 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
21157
21158 * window.el (quit-window, shrink-window-if-larger-than-buffer):
21159 Doc fixes.
21160
21161 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
21162
21163 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
21164 Bind C-d to gdb-inferior-io-eof.
21165
21166 * dired.el (dired-dnd-popup-notice): Use message-box.
21167
21168 2005-05-23 Masatake YAMATO <jet@gyve.org>
21169
21170 * bindings.el (mode-line-major-mode-keymap):
21171 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
21172
21173 * faces.el (mode-line-highlight): New face.
21174
21175 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
21176 as mouse-face.
21177
21178 * bindings.el (top-level, help-echo, mode-line-modified)
21179 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
21180 as mouse-face.
21181
21182 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
21183
21184 * progmodes/cc-engine.el (c-guess-basic-syntax):
21185 Remove spurious call to `zerop'.
21186
21187 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
21188
21189 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
21190
21191 CC Mode update to 5.30.10:
21192
21193 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
21194 could go past the limit in decoration level 2, thereby causing
21195 errors during interactive fontification.
21196
21197 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
21198 the file is evaluated interactively.
21199
21200 * cc-engine.el (c-guess-basic-syntax): Handle operator
21201 declarations somewhat better in C++.
21202
21203 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
21204 make use of `run-mode-hooks' which has been added in Emacs 21.1.
21205 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
21206 (awk-mode): Use it.
21207 (make-local-hook): Suppress warning about obsoleteness.
21208
21209 * cc-engine.el, cc-align.el, cc-cmds.el
21210 (c-append-backslashes-forward, c-delete-backslashes-forward)
21211 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
21212 Compensate for return value from `forward-line' when it has moved
21213 but not to a different line due to eob.
21214
21215 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
21216 `objc-method-intro' and `objc-method-args-cont'.
21217
21218 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
21219
21220 CC Mode update to 5.30.10:
21221
21222 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
21223 in the copyright statement. Incidentally, change "along with GNU
21224 Emacs" to "along with this program" where it occurs.
21225
21226 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
21227 so that it is interactive, hence can be found by M-x awk-mode
21228 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
21229 <gmorris+emacs@ast.cam.ac.uk>.
21230
21231 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
21232 Mode's regexps.
21233
21234 2005-05-23 Kevin Ryde <user42@zip.com.au>
21235
21236 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
21237 c-parse-state, to avoid a lisp error (on bad code).
21238
21239 2005-05-23 Lute Kamstra <lute@gnu.org>
21240
21241 * subr.el (font-lock-defaults): Remove defvar as it's already
21242 defined in font-core.el.
21243
21244 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
21245
21246 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
21247
21248 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
21249 more general and work when GDB variable "print pretty" is on,
21250 as with Emacs, for example.
21251
21252 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
21253
21254 * font-core.el: Update comment.
21255
21256 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
21257 Use `after-change-major-mode-hook' instead of `find-file-hook'.
21258
21259 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
21260
21261 2005-05-22 Eli Zaretskii <eliz@gnu.org>
21262
21263 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
21264 and `yank-handler' in the doc strings.
21265
21266 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
21267
21268 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
21269
21270 2005-05-22 Richard M. Stallman <rms@gnu.org>
21271
21272 * help.el (describe-key): Move print-help-return-message call
21273 out of conditional.
21274
21275 * progmodes/etags.el (list-tags): Use with-no-warnings.
21276
21277 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
21278 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
21279 (starttls-extra-args, starttls-extra-arguments): Add defvars.
21280
21281 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
21282
21283 * language/viet-util.el (viet-viscii-nonascii-translation-table):
21284 Add defvar.
21285
21286 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
21287 Use defvar, not defconst.
21288
21289 * hexl.el (hexl-follow-line): Use with-no-warnings.
21290
21291 * emulation/tpu-extras.el: Use write-file-functions instead of
21292 write-file-hooks.
21293
21294 * dired.el (dired-font-lock-keywords): Fontify files with junk
21295 extensions even if marked by -F.
21296
21297 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
21298
21299 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
21300 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
21301 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
21302 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
21303 (concatenate, list-length, get*, getf, cl-remprop):
21304 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
21305 (etypecase, progv, lexical-let, lexical-let*)
21306 (multiple-value-bind, multiple-value-setq, shiftf):
21307 Improve argument/docstring consistency.
21308
21309 * subr.el (focus-frame, unfocus-frame): Revert deletion on 2005-05-01.
21310
21311 2005-05-22 Andre Spiegel <spiegel@gnu.org>
21312
21313 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
21314 doesn't exist.
21315
21316 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
21317 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
21318
21319 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
21320
21321 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
21322 already deleted variables: auto-fill-hook, blink-paren-hook,
21323 lisp-indent-hook, inhibit-local-variables, unread-command-event,
21324 suspend-hooks, comment-indent-hook, meta-flag,
21325 before-change-function, after-change-function,
21326 font-lock-doc-string-face.
21327
21328 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
21329
21330 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
21331
21332 2005-05-21 Eli Zaretskii <eliz@gnu.org>
21333
21334 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
21335 rmail-dont-reply-to.
21336
21337 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
21338
21339 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
21340 literal blank when splitting new-header-values.
21341
21342 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
21343
21344 * calendar/cal-menu.el (cal-menu-update): Add separator as a
21345 string so that tmm doesn't create a completion entry for it.
21346
21347 * textmodes/table.el (table-disable-menu): Ditto.
21348
21349 2005-05-21 Richard M. Stallman <rms@gnu.org>
21350
21351 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
21352
21353 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
21354
21355 * net/rcompile.el (remote-compile): Use compilation-start.
21356
21357 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
21358
21359 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
21360
21361 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
21362 Default to makefile-bsdmake-mode on BSD systems.
21363
21364 * imenu.el (imenu-generic-expression, imenu--generic-function'):
21365 REGEXP may also be a search function now. The part of doc-string
21366 for describing the structure was 95% identical to that of
21367 `imenu--generic-function'. Unify it there.
21368
21369 * progmodes/make-mode.el (makefile-imenu-generic-expression):
21370 Use function to find dependencies, because regexp alone is so complex,
21371 it easily goes into an endless loop.
21372 (makefile-makepp-mode): Also add submenu for Perl functions
21373 defined in the makefile.
21374 (makefile-bsdmake-mode): Special imenu-generic-expression no
21375 longer needed, due to function call.
21376 (makefile-match-dependency): Take BOUND into account when checking
21377 if we're through.
21378
21379 2005-05-20 Jay Belanger <belanger@truman.edu>
21380
21381 * calc/calc-units.el (calc-invalidate-units-table):
21382 Use inhibit-read-only.
21383 (math-build-units-table-buffer): Use view-mode.
21384
21385 2005-05-20 David Kastrup <dak@gnu.org>
21386
21387 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
21388 easy-menu-add is not a nop on Emacs; and clarify when to call it.
21389
21390 2005-05-20 Lute Kamstra <lute@gnu.org>
21391
21392 * diff-mode.el (diff-header-face, diff-file-header-face)
21393 (diff-index-face, diff-hunk-header-face, diff-removed-face)
21394 (diff-added-face, diff-changed-face, diff-function-face)
21395 (diff-context-face, diff-nonexistent-face): Put them in the
21396 diff-mode customization group.
21397
21398 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
21399
21400 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
21401
21402 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
21403
21404 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
21405 Minor regexp-optimization.
21406
21407 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
21408
21409 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
21410 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
21411 (org-agenda-add-time-grid-maybe): New function.
21412 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
21413 (org-table-create): `dotimes' instead of `mapcar'.
21414 (org-xor): Simplify implementation.
21415 (org-agenda): `inhibit-redisplay' turned on.
21416 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
21417 a consistent line after a state change.
21418 (org-agenda-remove-times-when-in-prefix): New option.
21419 (org-prefix-has-time): New variable.
21420 (org-parse-time-string): Optional argument NODEFAULT.
21421 (org-format-agenda-item): Parse items for time-of-day
21422 specifications and move these into the prefix if possible.
21423 (org-agenda-priority): Get current heading, not previous heading
21424 during agenda remote editing.
21425
21426 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
21427
21428 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
21429 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
21430 (remove-duplicates, delete-duplicates, substitute)
21431 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
21432 (nsubstitute-if-not, find, find-if, find-if-not, position)
21433 (position-if, position-if-not, count, count-if, count-if-not)
21434 (mismatch, search, sort*, stable-sort, merge, member*)
21435 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
21436 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
21437 (intersection, nintersection, set-difference, nset-difference)
21438 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
21439 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
21440 (nsublis, tree-equal): Improve argument/docstring consistency.
21441
21442 * subr.el (send-string, send-region): Remove obsolescence declaration.
21443 (window-dot, set-window-dot, read-input, show-buffer)
21444 (eval-current-buffer, string-to-int):
21445 Add release number to obsolescence declarations.
21446
21447 2005-05-19 Kim F. Storm <storm@cua.dk>
21448
21449 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
21450 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
21451
21452 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
21453
21454 * faces.el (list-faces-display): Make back button respect optional
21455 regexp arg.
21456
21457 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
21458
21459 * calculator.el (calculator-radix-grouping-mode)
21460 (calculator-radix-grouping-digits, calculator-displayer)
21461 (calculator-radix-grouping-separator, calculator-copy-displayer):
21462 * dabbrev.el (dabbrev-search-these-buffers-only):
21463 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
21464 (diff-advance-after-apply-hunk, diff-mode-hook)
21465 (diff-minor-mode-prefix):
21466 * imenu.el (imenu-use-popup-menu):
21467 * jit-lock.el (jit-lock-context-time):
21468 * newcomment.el (comment-fill-column, comment-column)
21469 (comment-style, comment-padding, comment-multi-line)
21470 (comment-empty-lines, comment-auto-fill-only-comments):
21471 * reveal.el (reveal-around-mark):
21472 * uniquify.el (uniquify-buffer-name-style)
21473 (uniquify-after-kill-buffer-p)
21474 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
21475 (uniquify-min-dir-content, uniquify-separator)
21476 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
21477 * w32-vars.el (w32-fixed-font-alist):
21478 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
21479 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
21480 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
21481 * progmodes/perl-mode.el (perl-indent-level)
21482 (perl-continued-statement-offset, perl-continued-brace-offset)
21483 (perl-brace-offset, perl-brace-imaginary-offset)
21484 (perl-label-offset, perl-indent-continued-arguments)
21485 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
21486 * progmodes/tcl.el (tcl-indent-level)
21487 (tcl-continued-indent-level, tcl-auto-newline)
21488 (tcl-tab-always-indent, tcl-electric-hash-style)
21489 (tcl-help-directory-list, tcl-use-smart-word-finder)
21490 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
21491 (inferior-tcl-source-command):
21492 * textmodes/fill.el (enable-kinsoku):
21493 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
21494 * textmodes/table.el (table-yank-handler):
21495 Specify missing group (and type, if simple) in defcustom.
21496
21497 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
21498
21499 * progmodes/compile.el (compilation-finish-function): Fix defvar.
21500
21501 2005-05-19 Richard M. Stallman <rms@gnu.org>
21502
21503 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
21504
21505 * subr.el (event-basic-type): Don't get an error.
21506 (left-fringe-p): Function deleted.
21507
21508 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
21509 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
21510
21511 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
21512 in recursive copy.
21513
21514 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
21515
21516 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
21517
21518 * emacs-lisp/bytecomp.el
21519 (byte-compile-file-form-custom-declare-variable):
21520 Call byte-compile-nogroup-warn if appropriate.
21521
21522 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
21523 (compilation-set-window): Don't call left-fringe-p; do it directly.
21524
21525 2005-05-19 Jay Belanger <belanger@truman.edu>
21526
21527 * calc/calc-graph.el (calc-graph-format-data): Make sure
21528 var-PlotRejects is bound before trying to check its value.
21529
21530 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
21531
21532 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
21533 definition of this variable from reftex-global.el to reftex.el,
21534 because it is needed in the menu.
21535
21536 2005-05-19 Lute Kamstra <lute@gnu.org>
21537
21538 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
21539 years are fixed. Don't insert a space after a dash.
21540
21541 2005-05-19 Kim F. Storm <storm@cua.dk>
21542
21543 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
21544
21545 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
21546
21547 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
21548 strings, because (eq ... ?\\) is fairly frequent.
21549
21550 * progmodes/make-mode.el (makefile-add-this-line-targets):
21551 Simplify and integrate into `makefile-pickup-targets'.
21552 (makefile-add-this-line-macro): Simplify and integrate into
21553 `makefile-pickup-macros.
21554 (makefile-pickup-filenames-as-targets): Simplify.
21555 (makefile-previous-dependency, makefile-match-dependency):
21556 Don't stumble over `::'.
21557
21558 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
21559
21560 * subr.el (post-command-idle-hook, post-command-idle-delay):
21561 Remove obsoletion of post-command-idle-hook and
21562 post-command-idle-delay.
21563
21564 * faces.el (list-faces-display): Provide button when describe-face
21565 is called to take user back to the list of faces.
21566
21567 * help-fns.el (describe-variable): Remove hyperlinks in a
21568 variable's value as these are quite frequently inappropriate.
21569
21570 * follow.el (follow-submit-feedback, follow-mode):
21571 Remove references to post-command-idle-hook.
21572
21573 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
21574
21575 * progmodes/make-mode.el (makefile-previous-dependency)
21576 (makefile-match-dependency): Check for := (and in bsd mode also
21577 !=) to give a better result, even when font-lock is not on.
21578
21579 2005-05-18 Jay Belanger <belanger@truman.edu>
21580
21581 * calc/calc-help.el (calc-s-prefix-help):
21582 Add `calc-copy-special-constant' to help string.
21583
21584 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
21585
21586 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
21587
21588 2005-05-18 Jay Belanger <belanger@truman.edu>
21589
21590 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
21591 in linear factors are in proper order.
21592
21593 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
21594
21595 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
21596 Support for jurabib.
21597
21598 * textmodes/reftex.el (featurep): Define aliases for overlay
21599 commands, for XEmacs compatibility, and use these aliases in
21600 overlay initializations.
21601 (reftex-highlight): Use `reftex-move-overlay'.
21602 (reftex-unhighlight): Use `reftex-delete-overlay'.
21603 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
21604 (reftex-access-search-path): Use `reftex-uniquify' instead of
21605 `reftex-uniq'
21606
21607 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
21608 `before-string' property modification enables for Emacs as well.
21609 (reftex-select-item): Use `reftex-delete-overlay'.
21610 (reftex-select-mark): Use `reftex-make-overlay' and
21611 `reftex-overlay-put'.
21612 (reftex-select-unmark): Use `reftex-delete-overlay' and
21613 `reftex-overlay-put'.
21614
21615 2005-05-18 Lute Kamstra <lute@gnu.org>
21616
21617 * emacs-lisp/lisp.el (check-parens): Fix docstring.
21618
21619 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
21620
21621 * add-log.el (add-change-log-entry):
21622 * array.el (array-make-template, array-reconfigure-rows)
21623 (array-init-max-row, array-init-max-column)
21624 (array-init-columns-per-line, array-init-field-width):
21625 * replace.el (replace-match-maybe-edit, perform-replace):
21626 * textmodes/spell.el (spell-region):
21627 Replace `read-input' by `read-string'.
21628
21629 * forms.el (forms-mode):
21630 * finder.el (finder-compile-keywords):
21631 * shadowfile.el (shadow-read-files):
21632 Replace `eval-current-buffer' by `eval-buffer'.
21633
21634 * terminal.el (te-pass-through):
21635 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
21636 (ange-ftp-raw-send-cmd):
21637 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
21638 (send-process-next-char, telnet-initial-filter, telnet):
21639 Replace `send-string' by `process-send-string'.
21640
21641 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
21642 (prolog-consult-region): Replace `send-string' by
21643 `process-send-string'; replace `send-region' by `process-send-region'.
21644
21645 * progmodes/delphi.el (delphi-log-msg):
21646 Replace `set-window-dot' by `set-window-point'.
21647
21648 * subr.el (window-dot, set-window-dot, read-input, send-string)
21649 (send-region, show-buffer, eval-current-buffer):
21650 Make really obsolete, as the comment says.
21651
21652 2005-05-17 Kim F. Storm <storm@cua.dk>
21653
21654 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
21655 (cua--init-keymaps): Bind C-return instead of S-return to set
21656 rectangle mark.
21657
21658 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
21659 instead of S-return to toggle/clear rectangle mark.
21660
21661 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
21662
21663 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
21664 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
21665 Also fontify plain strings assigned to variables, mostly so that a
21666 colon has a face and is thus not taken as a dependency separator.
21667 (makefile-previous-dependency): Inline the new matcher, because it
21668 is too complex to work in both directions.
21669 (makefile-match-dependency): Eliminate `backward' arg (see above).
21670 Completely reimplemented so as to not sometimes go into an endless
21671 loop. It should also be more efficient, because first it only
21672 searches for `:', instead of applying the very complex regexp.
21673 (makefile-mode): Cancel `font-lock-support-mode', because blocks
21674 to be fontified in one piece can be too long for JIT.
21675 Makefiles are never *that* big.
21676
21677 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
21678
21679 * dired.el (dired-mode): Simplify.
21680
21681 2005-05-17 Lute Kamstra <lute@gnu.org>
21682
21683 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
21684 defcustom for the mode hook variable.
21685
21686 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
21687 Emacs Lisp Reference Manual.
21688
21689 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
21690
21691 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
21692 (evenp, list*):
21693 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
21694 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
21695
21696 * net/tramp-smb.el (tramp-smb-open-connection):
21697 Pass `tramp-chunksize' as fifth (required) argument.
21698
21699 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
21700
21701 * font-lock.el (lisp-font-lock-keywords-1):
21702 Set `font-lock-negation-char-face' for [^...] char group.
21703 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
21704
21705 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
21706 a var, and refine it to mask one more level of nested vars.
21707 (makefile-rule-action-regex): Turn it into a var, and refine it so
21708 it recognizes backslashed continuation lines as belonging to the
21709 same command.
21710 (makefile-macroassign-regex): Refine it so it recognizes
21711 backslashed continuation lines as belonging to the same command.
21712 (makefile-var-use-regex): Don't look at the next char, because it
21713 might be the same one to be skipped by the initial [^$], leading
21714 to an overlooked variable use.
21715 (makefile-make-font-lock-keywords): Remove two parameters, which
21716 are now variables that some of the modes set locally.
21717 Handle dependency and rule action matching through functions, because
21718 regexps alone match too often. Dependency matching now comes
21719 last, so it can check, whether a colon already matched something else.
21720 (makefile-mode): Inform that font-lock improves makefile parsing
21721 capabilities.
21722 (makefile-match-dependency, makefile-match-action): New functions.
21723
21724 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
21725
21726 * emacs-lisp/cl-extra.el (equalp): Doc fix.
21727
21728 * align.el (align-regexp):
21729 * ansi-color.el (ansi-color-get-face):
21730 * array.el (array-reconfigure-rows, array-init-max-row)
21731 (array-init-max-column, array-init-columns-per-line)
21732 (array-init-field-width):
21733 * dired-aux.el (dired-trample-file-versions):
21734 * dired-x.el (dired-mark-sexp):
21735 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
21736 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
21737 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
21738 * faces.el (face-read-integer):
21739 * files.el (backup-extract-version, insert-directory):
21740 * hexl.el (hexl-insert-decimal-char):
21741 * server.el (server-process-filter):
21742 * shell.el (shell-extract-num):
21743 * startup.el (command-line-1):
21744 * term.el (term-command-hook):
21745 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
21746 (time-stamp-do-number):
21747 * time.el (display-time-update):
21748 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
21749 (timezone-fix-time):
21750 * vms-patch.el (vms-suspend-resume-hook):
21751 * calendar/appt.el (appt-convert-time):
21752 * calendar/cal-bahai.el (mark-bahai-diary-entries):
21753 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
21754 * calendar/cal-islam.el (mark-islamic-diary-entries):
21755 * calendar/calendar.el (calendar-cursor-to-date)
21756 (calendar-star-date):
21757 * calendar/diary-lib.el (diary-attrtype-convert)
21758 (mark-diary-entries, diary-entry-time):
21759 * calendar/solar.el (solar-get-number):
21760 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
21761 * emacs-lisp/re-builder.el (reb-display-subexp):
21762 * emulation/edt.el (edt-set-scroll-margins):
21763 * emulation/tpu-extras.el (tpu-set-scroll-margins):
21764 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
21765 (vip-get-ex-count):
21766 * emulation/viper-ex.el (viper-get-ex-token)
21767 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
21768 * international/fontset.el (fontset-plain-name):
21769 * mail/feedmail.el (feedmail-look-at-queue-directory):
21770 * mail/mailalias.el (mail-get-names):
21771 * mail/rmail.el (rmail-convert-to-babyl-format):
21772 * mail/rmailsum.el (rmail-make-basic-summary-line)
21773 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
21774 (rmail-summary-goto-msg):
21775 * mail/smtpmail.el (smtpmail-read-response):
21776 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
21777 (ange-ftp-vms-add-file-entry):
21778 * play/gametree.el (gametree-looking-at-ply)
21779 (gametree-current-branch-score):
21780 * progmodes/ada-xref.el (ada-prj-find-prj-file)
21781 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
21782 * progmodes/cperl-mode.el (condition-case):
21783 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
21784 (ebrowse-set-member-buffer-column-width)
21785 (ebrowse-select-1st-to-9nth):
21786 * progmodes/etags.el (etags-snarf-tag):
21787 * progmodes/flymake.el (flymake-parse-line):
21788 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
21789 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
21790 (idlwave-shell-menu-def):
21791 * progmodes/ps-mode.el (ps-run-goto-error):
21792 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
21793 (vhdl-speedbar-contract-level):
21794 * term/mac-win.el (x-handle-numeric-switch):
21795 * term/sun-mouse.el (sun-get-frame-data):
21796 * term/w32-win.el (x-handle-numeric-switch):
21797 * term/x-win.el (x-handle-numeric-switch):
21798 * textmodes/ispell.el (ispell-parse-output):
21799 * textmodes/nroff-mode.el (nroff-outline-level):
21800 * textmodes/reftex-cite.el (reftex-bib-sort-year)
21801 (reftex-bib-sort-year-reverse, reftex-format-citation):
21802 * textmodes/reftex-parse.el (reftex-init-section-numbers)
21803 (reftex-section-number):
21804 * textmodes/texinfmt.el (texinfo-paragraphindent):
21805 Replace `string-to-int' by `string-to-number'.
21806
21807 * international/latexenc.el: Add page marker to force the "Local
21808 Variables:" string out of the last page.
21809
21810 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
21811
21812 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
21813 tooltip-change-major-mode.
21814 (gud-tooltip-print-command): Remove case where gud-minor-mode
21815 is gdb ("--fullname").
21816 (gud-tooltip-tips): Turn GUD tooltips off for this case and
21817 explain to user.
21818
21819 2005-05-16 Jay Belanger <belanger@truman.edu>
21820
21821 * calc/calc-store.el (calc-copy-special-constant): New function.
21822
21823 * calc/calc-ext.el (calc-init-extensions): Add binding for
21824 `calc-copy-special-constant'.
21825
21826 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
21827 for the `calc-copy-special-constant' command.
21828
21829 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
21830
21831 * subr.el (left-fringe-p): New function.
21832
21833 * progmodes/compile.el (compilation-setup): Set local value of
21834 overlay-arrow-string to "" always.
21835 (compilation-set-window): Left fringe then don't scroll.
21836 No left fringe then no arrow and scroll message to top.
21837 (compilation-context-lines): Adjust doc string accordingly.
21838
21839 2005-05-16 Kim F. Storm <storm@cua.dk>
21840
21841 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
21842 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
21843 (ido-wide-find-dir-or-delete-dir): New command for M-d.
21844 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
21845 (ido-read-file-name): Handle commands with ido property value
21846 equal to find-file as reading a file name, to allow C-d to enter dired.
21847 (ibuffer-find-file): Add ido property with value find-file.
21848
21849 2005-05-15 Kim F. Storm <storm@cua.dk>
21850
21851 * subr.el (open-network-stream-nowait): Remove.
21852 (open-network-stream-server): Remove.
21853
21854 2005-05-15 Richard M. Stallman <rms@gnu.org>
21855
21856 * faces.el (describe-face): Output a definition link button.
21857
21858 * help-mode.el (help-face-def): New button type.
21859
21860 * emacs-lisp/copyright.el (copyright-fix-years):
21861 Match properly if the first year is 2-digit.
21862 Don't mess up the whitespace after the years by filling.
21863
21864 * dired-aux.el (dired-mark-confirm):
21865 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
21866
21867 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
21868 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
21869 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
21870
21871 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
21872 Set font-lock-comment-start-skip.
21873
21874 * font-lock.el (font-lock-comment-start-skip): New variable.
21875 (font-lock-comment-end-skip): New variable.
21876 (font-lock-fontify-syntactically-region): Use them if non-nil.
21877
21878 2005-05-15 Jay Belanger <belanger@truman.edu>
21879
21880 * calc/calc-store.el (calc-store-value): Return a string rather
21881 than display it as a message.
21882 Use calc-var-name for variable name.
21883 (calc-store-into): Add the result of calc-store-value to message.
21884 (calc-copy-variable): Add a message.
21885 (calc-store-exchange): Improve error messages.
21886 (calc-store-binary, calc-store-map): Don't reset the values of
21887 special constants.
21888
21889 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
21890
21891 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
21892 manual to docstring.
21893
21894 * files.el (hack-local-variables-confirm): Add STRING argument.
21895 Make the function handle non file visiting buffers correctly.
21896 (hack-local-variables-prop-line, hack-local-variables)
21897 (hack-one-local-variable): Use STRING arg of
21898 `hack-local-variables-confirm'.
21899
21900 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
21901
21902 Sync with Tramp 2.0.49.
21903
21904 * net/tramp.el (tramp-handle-dired-call-process)
21905 (tramp-handle-insert-directory):`insert-buffer' cannot be used
21906 because the contents of the Tramp buffer is changed before
21907 insertion (`expand-file' and alike).
21908 (tramp-handle-insert-directory): If `localname' has an empty
21909 nondirectory name, it must not be quoted.
21910 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
21911 variable `tramp-chunksize'. Change callees.
21912 (tramp-open-connection-setup-interactive-shell): Check remote host
21913 for buggy `send-process-string' implementation.
21914 Set `tramp-chunksize' if found. Reported by Michael Kifer
21915 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
21916 (tramp-handle-shell-command): `insert-buffer' cannot be used
21917 because the contents of the Tramp buffer is changed before
21918 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
21919 <frederic.bothamy@free.fr>.
21920 (tramp-set-auto-save): Actions should be done for Tramp file name
21921 handler only. Ange-FTP has its own auto-save mechanism.
21922 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
21923 (tramp-set-auto-save-file-modes): Set file modes of
21924 `buffer-auto-save-file-name' to ?\600 as fallback solution.
21925 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
21926 (tramp-bug): Remove obsolete variable.
21927 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
21928 for presence of `mml-mode'. Make it running for older Emacsen as well.
21929
21930 2005-05-14 John Paul Wallington <jpw@pobox.com>
21931
21932 * ibuf-ext.el (define-ibuffer-filter filename):
21933 If `dired-directory' is a list, use its car.
21934
21935 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
21936
21937 * ibuffer.el (define-ibuffer-column filename):
21938 If `dired-directory' is a list, use its car.
21939
21940 2005-05-14 Richard M. Stallman <rms@gnu.org>
21941
21942 * subr.el (symbol-file): Doc fix.
21943
21944 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
21945 (byte-compile-form): Call byte-compile-nogroup-warn.
21946 (byte-compile-warning-types): Doc fix.
21947
21948 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
21949
21950 * progmodes/cc-engine.el (c-literal-faces):
21951 Add font-lock-comment-delimiter-face.
21952
21953 * net/net-utils.el (dig): Use with-no-warnings.
21954
21955 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
21956 (sc-recite-frame-alist, sc-default-cite-frame)
21957 (sc-default-uncite-frame, sc-default-recite-frame)
21958 (sc-attrib-selection-list, sc-rewrite-header-list):
21959 Mark as risky-local-variable.
21960
21961 * international/ogonek.el (ogonek-jak, ogonek-how):
21962 Don't use beginning-of-buffer.
21963
21964 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
21965
21966 * calendar/solar.el (solar-data-list): Move definition up.
21967
21968 * dnd.el (dnd-protocol-alist): Add autoload.
21969
21970 * progmodes/sh-script.el: Many doc usage fixes.
21971 (sh-indent-after-do): Change default to match common styles.
21972
21973 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
21974
21975 * files.el (interpreter-mode-alist)
21976 (auto-mode-interpreter-regexp): Doc fixes.
21977
21978 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
21979
21980 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
21981
21982 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
21983
21984 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21985
21986 * dired.el (dired-mode): make-variable-buffer-local =>
21987 make-local-variable.
21988
21989 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21990
21991 * term/mac-win.el (mac-select-convert-to-string): Try coding
21992 systems in mac-script-code-coding-systems if specified one cannot
21993 encode string for `com.apple.traditional-mac-plain-text'.
21994
21995 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
21996
21997 * progmodes/make-mode.el (makefile-targets-face)
21998 (makefile-shell-face, makefile-makepp-perl-face): New faces.
21999 (makefile-dependency-regex): Fix it to not make the colon in
22000 $(var:a=b) special.
22001 (makefile-rule-action-regex): New regexp for highlighting embedded
22002 Shell strings.
22003 (makefile-macroassign-regex): Handle != for highlighting as
22004 embedded Shell strings.
22005 (makefile-var-use-regex): New const.
22006 (makefile-statements, makefile-automake-statements)
22007 (makefile-gmake-statements, makefile-makepp-statements)
22008 (makefile-bsdmake-statements): New consts.
22009 (makefile-make-font-lock-keywords): New function.
22010 (makefile-automake-font-lock-keywords)
22011 (makefile-gmake-font-lock-keywords)
22012 (makefile-makepp-font-lock-keywords)
22013 (makefile-bsdmake-font-lock-keywords): New consts.
22014 (makefile-mode-map): Add switchers between the various submodes.
22015 (makefile-mode): Document the availability of the variants.
22016 (makefile-automake-mode, makefile-gmake-mode)
22017 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
22018
22019 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
22020 new variants of makefile-mode.
22021
22022 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22023
22024 * font-lock.el (font-lock-comment-delimiter-face): Fix up
22025 the inheritance.
22026
22027 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
22028
22029 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
22030 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
22031
22032 * files.el (normal-mode): Extend the scope of the
22033 `enable-local-variables' binding to include the `set-auto-mode' call.
22034 (magic-mode-alist): Doc fix.
22035
22036 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22037
22038 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
22039 font-lock-comment-face rather than copying its setting.
22040
22041 2005-05-12 Andreas Schwab <schwab@suse.de>
22042
22043 * eshell/esh-mode.el (eshell-send-input): Doc fix.
22044
22045 2005-05-12 Lute Kamstra <lute@gnu.org>
22046
22047 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
22048 defcustom for the mode hook variable. Delete the last argument.
22049 * generic-x.el: Fix callers of define-generic-mode.
22050 (generic-x-modes): Delete group.
22051 (show-tabs-tab-face, show-tabs-space-face): Put them in the
22052 generic-x customization group.
22053
22054 2005-05-12 Kim F. Storm <storm@cua.dk>
22055
22056 * font-lock.el (font-lock-negation-char-face): Default to "off".
22057
22058 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
22059 font-lock-negation-char-face to ! in !=.
22060
22061 2005-05-12 Masatake YAMATO <jet@gyve.org>
22062
22063 * add-log.el (find-change-log): Fix typos in the docstring
22064 of function.
22065
22066 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
22067
22068 * international/latexenc.el (latexenc-find-file-coding-system):
22069 Avoid `re-search-forward' when looking for input encoding because
22070 of speed and safety. Better regular expressions for recognizing
22071 input encoding. Limit a search for TeX-master/tex-main-file to
22072 the local variable section.
22073
22074 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
22075
22076 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
22077 syntax of $ to "'" (quote).
22078
22079 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
22080
22081 * dnd.el (dnd-protocol-alist): Improve custom type.
22082
22083 * dired.el (dired-dnd-protocol-alist): New variable.
22084 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
22085 `dired-mode-hook' to the end.
22086
22087 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
22088
22089 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
22090 comment-end if comment-start-skip is not set.
22091 Obey the font-lock-comment-delimiter-face variables.
22092
22093 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
22094
22095 * files.el (executable-find): Move from executable.el. Use
22096 locate-file.
22097 * progmodes/executable.el (executable-find): Move to files.el.
22098
22099 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
22100 when trying to ensure forward progress.
22101
22102 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
22103
22104 * mouse-sel.el (mouse-sel-follow-link-p): New function.
22105 (mouse-select, mouse-select-internal, mouse-extend-internal):
22106 Use it to implement mouse-1-click-follows-link functionality.
22107
22108 2005-05-11 Richard M. Stallman <rms@gnu.org>
22109
22110 * font-lock.el (font-lock-fontify-syntactically-region):
22111 Use font-lock-comment-delimiter-face for comment delimiters.
22112
22113 2005-05-10 Jay Belanger <belanger@truman.edu>
22114
22115 * calc/calc-help.el (calc-m-prefix-help): Add mention of
22116 preserving embedded modes.
22117
22118 2005-05-10 Richard M. Stallman <rms@gnu.org>
22119
22120 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
22121
22122 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
22123 Move from ada-stmt.el.
22124 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
22125
22126 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
22127 Move to ada-mode.el.
22128 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
22129
22130 * cus-edit.el (custom-file): Call file-chase-links.
22131
22132 * files.el (read-directory-name): Fix previous change.
22133 (hack-local-variables-confirm): New function.
22134 (hack-local-variables-prop-line, hack-local-variables)
22135 (hack-one-local-variable): Use it.
22136
22137 2005-05-10 Lute Kamstra <lute@gnu.org>
22138
22139 * font-lock.el (font-lock-keywords-alist)
22140 (font-lock-removed-keywords-alist): Clarify docstrings.
22141
22142 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
22143
22144 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
22145 (gdb-source-info): Check for preprocessor info.
22146 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
22147 a macro for a function.
22148 (gdb-info-breakpoints-custom): Try to find file again if not already
22149 found (user might have used GDB dir command).
22150 (gdb-get-location): Update gdb-location-alist correctly for change
22151 to gdb-info-breakpoints-custom.
22152
22153 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
22154 (gud-tooltip-print-command): Add gdbmi case.
22155 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
22156 preprocessor info.
22157
22158 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
22159
22160 * startup.el (fancy-splash-insert): Fix typo in doc string.
22161
22162 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
22163
22164 * obsolete/float.el (string-to-float):
22165 * obsolete/hilit19.el (hilit-add-pattern):
22166 * obsolete/rnews.el (news-parse-range, news-select-message)
22167 (news-get-pruned-list-of-files): Replace `string-to-int' by
22168 `string-to-number'.
22169
22170 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
22171 `find-file-not-found-hooks'; use `add-hook'.
22172 (uncompress-while-visiting): Set `write-file-functions', not
22173 `write-file-hooks'; use `add-hook'.
22174
22175 2005-05-09 Kim F. Storm <storm@cua.dk>
22176
22177 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
22178 (cua-paste): Handle clipboard action.
22179 (cua--init-keymaps): Remap clipboard-kill-region and
22180 clipboard-kill-ring-save.
22181
22182 2005-05-08 Eli Zaretskii <eliz@gnu.org>
22183
22184 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
22185 Improve commentary.
22186
22187 * simple.el (next-error-overlay-arrow-position): Revert the change
22188 made on 2005-04-30.
22189
22190 2005-05-07 Jay Belanger <belanger@truman.edu>
22191
22192 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
22193 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
22194 `calc-sel-reselect'.
22195
22196 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
22197 Calc is in embedded mode.
22198
22199 2005-05-07 Eli Zaretskii <eliz@gnu.org>
22200
22201 * progmodes/compile.el (compilation-setup):
22202 Set overlay-arrow-string to an empty string on text terminals.
22203
22204 * textmodes/ispell.el (ispell-program-name): Try looking for
22205 "aspell" along exec-path, and if found, use it as the default
22206 speller program.
22207
22208 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
22209
22210 * international/mule.el (sgml-xml-auto-coding-function):
22211 Recognize encoding='FOO' in single quotes as well as in double quotes.
22212
22213 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
22214
22215 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
22216 as well as `interactive', so that defmacro* would recognize
22217 `declare' forms.
22218
22219 2005-05-07 Eli Zaretskii <eliz@gnu.org>
22220
22221 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
22222 Explain more about the LIGHTER arg's usage in the doc string.
22223 Add commentary to clarify what the code does. Fix the regexp that
22224 strips whitespace from LIGHTER. Quote LIGHTER before using it,
22225 since it could have characters special to regular expressions.
22226
22227 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
22228
22229 * replace.el (occur-1): Bind inhibit-read-only so that
22230 erase-buffer doesn't barf on read-only text properties (likewise
22231 for add-text-properties in occur-engine). Mark buffer as unmodified.
22232 (occur-engine): Don't set buffer-read-only here.
22233
22234 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22235
22236 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
22237 list-buffers-directory. This caused the *cvs-commit* buffer to be
22238 sometimes mistakenly reused as a *cvs* buffer.
22239
22240 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
22241
22242 * tooltip.el: Move code for GUD tooltips into gud.el.
22243 (require): CL no longer needed to compile case.
22244 (tooltip-mode): Do not toggle functions for GUD tooltips.
22245 (tooltip-gud-tips-p): Remove. Replace with minor mode
22246 gud-tooltip-mode in gud.el.
22247 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
22248 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
22249 tooltip-gud prefix with gud-tooltip and obsolete.
22250 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
22251 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
22252 (tooltip-mouse-motion): Mouse movement functions/variable.
22253 Rename in gud.el by adding gud prefix.
22254 (tooltip-gud-original-filter, tooltip-gud-dereference)
22255 (tooltip-gud-event, tooltip-toggle-gud-tips)
22256 (tooltip-gud-process-output, tooltip-gud-print-command)
22257 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
22258 gud.el by replacing tooltip-gud prefix with gud-tooltip.
22259 (gdb-tooltip-print): Move to gdb-ui.el.
22260
22261 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
22262 (require): CL needed to compile case.
22263 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
22264 tooltip-gud-tips-p. Make it a minor-mode.
22265 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
22266 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
22267 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
22268 (gud-tooltip-change-major-mode)
22269 (gud-tooltip-activate-mouse-motions-if-enabled)
22270 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
22271 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
22272 (gud-tooltip-original-filter, gud-tooltip-dereference)
22273 (gud-tooltip-event, tooltip-toggle-gud-tips)
22274 (gud-tooltip-process-output, gud-tooltip-print-command)
22275 (gud-tooltip-tips): Move from tooltip.el.
22276
22277 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
22278 (gdb-cpp-define-alist-flags): Doc fix.
22279 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
22280 gud-tooltip-mode is t.
22281
22282 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22283
22284 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
22285 evaporate if their text is deleted.
22286 (goto-address-at-point): Make it work as a mouse binding as well.
22287 (goto-address-at-mouse): Obsolete it. Update users.
22288
22289 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
22290
22291 * calendar/appt.el (top-level): No longer activate on load.
22292
22293 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
22294
22295 * calendar/cal-bahai.el (mark-bahai-diary-entries):
22296 * net/webjump.el (webjump):
22297 * progmodes/idlw-help.el (idlwave-do-context-help1)
22298 (idlwave-highlight-linked-completions):
22299 * textmodes/po.el (po-find-file-coding-system-guts):
22300 Replace `assoc-ignore-case' by `assoc-string'.
22301
22302 2005-05-06 Eli Zaretskii <eliz@gnu.org>
22303
22304 * files.el (locate-file): Doc fix.
22305
22306 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
22307 Remove the redundant test for ms-dos.
22308
22309 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
22310 look for the preprocessor with exec-suffixes. If not found in
22311 standard places, look in exec-path. Remove most of the tests that
22312 used system-type.
22313
22314 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
22315
22316 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
22317
22318 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
22319 file-name clash with jka-compr.el on 8+3 filesystems.
22320
22321 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22322
22323 * term/mac-win.el: Don't define or bind scroll bar functions if
22324 x-toolkit-scroll-bars is t.
22325 (x-select-text, x-get-selection-value): Clear
22326 x-last-selected-text-clipboard if x-select-enable-clipboard is
22327 nil.
22328 (PRIMARY): Put mac-scrap-name property.
22329 (mac-select-convert-to-file-url): New function.
22330 (public.file-url): New selection target type. Add to
22331 selection-converter-alist.
22332 (x-get-selection, x-selection-value): Handle it.
22333 (x-cut-buffer-or-selection-value): New alias.
22334
22335 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
22336
22337 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
22338 entry to avoid calling bibtex-find-entry with arg global
22339 being t. Remove arg key.
22340 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
22341 (bibtex-copy-summary-as-kill): Change accordingly.
22342
22343 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
22344
22345 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
22346 (org-agenda-date-later): Use with-current-buffer.
22347
22348 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
22349
22350 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
22351 (define-obsolete-variable-alias): Doc Fixes.
22352
22353 2005-05-06 Kim F. Storm <storm@cua.dk>
22354
22355 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
22356 vertical-motion when selective-display is active.
22357
22358 * ido.el (ido-setup-hook): New hook.
22359 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
22360 (ido-input-stack): New var.
22361 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
22362 ido-next-work-file binding to M-O.
22363 Bind M-f to ido-wide-find-file-or-pop-dir.
22364 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
22365 (ido-read-internal): Run ido-setup-hook.
22366 Catch quit in read-file-name and read-string to cancel edit.
22367 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
22368 Automatically pop-all when completing a directory name (RET).
22369 (ido-file-internal): Add with-no-warnings around ffap and dired code.
22370 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
22371 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
22372 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
22373 New functions for M-b/M-f to move among the directory components.
22374 (ido-make-merged-file-list): Catch quit to cancel merge.
22375 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
22376 (ido-completion-help): No warnings for ido-completion-buffer-full.
22377
22378 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
22379
22380 * font-lock.el (font-lock-negation-char-face): New face and variable.
22381 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
22382 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
22383 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
22384 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
22385
22386 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
22387
22388 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
22389 Fix typo in docstring.
22390
22391 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
22392 (ebrowse-print-statistics-line)
22393 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
22394
22395 * term/w32-win.el (image-library-alist): Add additional name for
22396 Xpm library.
22397
22398 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
22399
22400 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
22401 use gcc instead of cpp.
22402
22403 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
22404 (gdb-create-define-alist): Use it.
22405 (gdb-cpp-define-alist-program): Update for MS-DOS.
22406
22407 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
22408
22409 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
22410
22411 2005-05-04 Richard M. Stallman <rms@gnu.org>
22412
22413 * help.el (describe-key): No error when UNTRANSLATED is nil.
22414
22415 * simple.el (line-move-1): Fix previous change to signal errors
22416 appropriately.
22417
22418 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
22419
22420 * calendar/icalendar.el (icalendar-version): Now at 0.12.
22421 (icalendar-duration-correction): Remove.
22422 (icalendar--get-event-properties): Split result at commas.
22423 (icalendar--decode-isoduration): New optional argument
22424 DURATION-CORRECTION.
22425 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
22426 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
22427 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
22428 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
22429 (icalendar--convert-anniversary-to-ical): New functions, extracted
22430 from icalendar-export-region, with bug fixes.
22431 (icalendar-export-region): Use the above functions.
22432 (icalendar-import-buffer): Check before saving diary file.
22433 (icalendar--convert-recurring-to-diary)
22434 (icalendar--convert-non-recurring-all-day-to-diary)
22435 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
22436 extracted from icalendar--convert-ical-to-diary, with bug fixes.
22437 (icalendar--convert-ical-to-diary): Use the above functions.
22438
22439 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
22440
22441 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
22442 Remove these recent additions.
22443 (c-mode): Restore to before 2005-04-28.
22444
22445 * progmodes/cc-vars.el (cc-define-list-program): Remove this
22446 recent addition.
22447
22448 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
22449 (gdb-define-alist): New variables.
22450 (gdb-create-define-alist): New function.
22451 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
22452 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
22453 with string-to-number.
22454 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
22455
22456 * progmodes/gud.el: Replace string-to-int with string-to-number.
22457 (gud-find-file): Handle gdb-define-alist.
22458
22459 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
22460
22461 2005-05-02 Jay Belanger <belanger@truman.edu>
22462
22463 * calc/calc-aent.el (math-read-token):
22464 * calc/calc-bin.el (calc-word-size):
22465 * calc/calc-ext.el (calc-read-number-fancy):
22466 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
22467 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
22468 * calc/calc-frac.el (calc-over-notation):
22469 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
22470 (calc-graph-num-points, calc-graph-init):
22471 * calc/calc-prog.el (calc-read-parse-table-part)
22472 (calc-edit-macro-repeats):
22473 * calc/calc-yank.el (calc-do-grab-rectangle):
22474 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
22475 Replace `string-to-int' by `string-to-number'.
22476
22477 2005-05-02 Kim F. Storm <storm@cua.dk>
22478
22479 * kmacro.el: Use executing-kbd-macro-index variable.
22480
22481 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
22482
22483 * net/rlogin.el (rlogin-parse-words): Delete func.
22484 (rlogin): Use split-string, not rlogin-parse-words.
22485 Also, if there are option-like elements in the parsed args,
22486 take the host to be the first arg immediately following them.
22487 Suggested by Michael Mauger.
22488
22489 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
22490
22491 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
22492
22493 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
22494
22495 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
22496 (cc-mode-cpp-program): Rename to cc-define-list-program and
22497 move to cc-vars.el.
22498
22499 * progmodes/cc-vars.el (cc-define-list-program):
22500 Change to "gcc -E -dM -". Make customizable.
22501
22502 2005-05-02 Kim F. Storm <storm@cua.dk>
22503
22504 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
22505
22506 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
22507
22508 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
22509
22510 * international/mule-util.el (truncate-string): Remove alias and
22511 obsolete declaration.
22512
22513 * international/mule-cmds.el (update-iso-coding-systems):
22514 Remove alias and obsolete declaration.
22515
22516 * international/mule.el (coding-system-parent): Remove alias and
22517 obsolete declaration.
22518
22519 * subr.el (define-function, sref): Remove aliases and obsolete
22520 declarations.
22521 (chars-in-region): Remove obsolete declaration.
22522
22523 2005-05-01 Richard M. Stallman <rms@gnu.org>
22524
22525 * info.el (Info-mode): Set widen-automatically to nil, locally.
22526
22527 * simple.el (widen-automatically): New variable.
22528 (pop-global-mark): Obey widen-automatically.
22529
22530 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
22531
22532 * term/xterm.el (function-key-map): Call substitute-key-definition
22533 before the keymap size is increased by a lot of define-key calls.
22534
22535 2005-05-01 Richard M. Stallman <rms@gnu.org>
22536
22537 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
22538 Rename ARG to ELEMENT. Doc fix.
22539
22540 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
22541
22542 * allout.el (allout-exposure): Remove macro and obsolete declaration.
22543 Remove references to allout-exposure/change to allout-new-exposure.
22544
22545 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
22546 bytecode symbols.
22547
22548 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
22549 (compiled-function-p, focus-frame, unfocus-frame):
22550 Remove aliases and obsolete declarations.
22551 Back out inadvertent changes from previous commit.
22552
22553 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
22554
22555 * files.el (require-final-newline): Make Custom tags consistent
22556 with mode-require-final-newline.
22557 (mode-require-final-newline): Doc fix.
22558
22559 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
22560
22561 * international/latexenc.el (latexenc-find-file-coding-system):
22562 Fix regular expressions.
22563
22564 2005-05-01 David Kastrup <dak@gnu.org>
22565
22566 * international/latexenc.el (latexenc-find-file-coding-system):
22567 Fix regular expressions.
22568
22569 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
22570
22571 * subr.el (string-to-int): Make obsolete.
22572
22573 2005-04-30 Richard M. Stallman <rms@gnu.org>
22574
22575 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
22576
22577 * loadup.el: load jka-comp-hook.
22578
22579 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
22580 (jka-compr-handler): Add autoload. `put' calls moved
22581 to jka-comp-hook.el.
22582 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
22583 (jka-compr-inhibit): Autoload.
22584
22585 * jka-comp-hook.el: New file.
22586 Enable the mode by default.
22587
22588 * files.el (backup-buffer-copy): Use copy-file instead
22589 of write-region, and put back the 'excl.
22590
22591 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
22592
22593 * progmodes/flymake.el (flymake-split-string)
22594 (flymake-split-string, flymake-log, flymake-pid-to-names)
22595 (flymake-reg-names, flymake-get-source-buffer-name)
22596 (flymake-unreg-names, flymake-add-line-err-info)
22597 (flymake-add-err-info): Clarify docstrings.
22598 (flymake-popup-menu, flymake-make-emacs-menu)
22599 (flymake-make-xemacs-menu): Add docstrings.
22600 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
22601 Set variables directly throughout.
22602
22603 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
22604
22605 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
22606 exists. Initialize cc-define-alist.
22607 (c-mode): Add cc-create-define-alist locally to after-save-hook.
22608 If there is no file (Macroexpansion) don't create an alist.
22609
22610 2005-04-29 Sam Steingold <sds@gnu.org>
22611
22612 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
22613 (cc-create-define-alist): Use it instead of the hard-coded string.
22614
22615 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
22616
22617 * international/mule-conf.el (file-coding-system-alist): Fix regexp
22618 for latexenc.
22619
22620 2005-04-29 Lute Kamstra <lute@gnu.org>
22621
22622 * emacs-lisp/generic.el: Improve commentary section.
22623 (define-generic-mode): Improve docstring.
22624
22625 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
22626
22627 * textmodes/org.el (many places): Change to quiet the byte compiler.
22628 (org-prefix-format-compiled): New variable.
22629 (org-compile-prefix-format): New function.
22630 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
22631 (org-agenda-prefix-format, org-timeline-prefix-format): New options.
22632 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
22633 (org-get-entries-from-diary): Use `org-get-time-of-day' for
22634 consistency with entries from `org-mode' files.
22635 (org-get-time-of-day): Fix bug with partial matches early in a line.
22636 (org-non-link-chars): New constant.
22637 (org-link-regexp): Respect `org-non-link-chars'.
22638 (org-agenda-day-view): Remove command.
22639 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
22640 (org-follow-bbdb-link, org-store-link): Search also company field.
22641 (org-highlight-overlay): New variable.
22642 (org-highlight, org-unhighlight): New functions.
22643 (org-agenda-mode): Add pre-command-hook to remove highlight.
22644 (org-evaluate-time-range): Behavior depends upon whether time stamp
22645 contains a time or not.
22646 (org-show-subtree, org-show-entry): New functions.
22647 (org-agenda-cleanup-fancy-diary): Remove empty lines.
22648
22649 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
22650
22651 * comint.el (comint-output-filter-functions): Add autoload cookie.
22652
22653 2005-04-28 Kim F. Storm <storm@cua.dk>
22654
22655 * ido.el (ido-everywhere): Fix last change.
22656
22657 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
22658
22659 * international/latexenc.el: New file.
22660 * international/mule-conf.el (file-coding-system-alist): For .tex,
22661 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
22662
22663 2005-04-28 Lute Kamstra <lute@gnu.org>
22664
22665 * font-lock.el (font-lock-add-keywords)
22666 (font-lock-remove-keywords): Clarify docstring.
22667 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
22668 Don't start docstrings with a `*'.
22669 (font-lock-update-removed-keyword-alist): Give it a docstring.
22670
22671 * generic-x.el: Update commentary section.
22672 Only require font-lock when compiling.
22673 Define all modes conditionally.
22674 Place all generic modes in the generic-x-modes customization group.
22675 (generic-x-modes): New customization group.
22676 (generic-default-modes, generic-mswindows-modes)
22677 (generic-unix-modes, generic-other-modes): New constants.
22678 (generic-define-mswindows-modes, generic-define-unix-modes):
22679 Update docstrings. Make them obsolete.
22680 (generic-extras-enable-list): New default value. Update docstring.
22681 Improve :type. Change :set function.
22682 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
22683 Fix docstring.
22684
22685 * emacs-lisp/generic.el (generic-mode-internal):
22686 Simplify font-lock-defaults.
22687 (define-generic-mode): Fix docstring.
22688
22689 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
22690
22691 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
22692 font-lock-face property to highlight matches.
22693
22694 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
22695
22696 * progmodes/cc-mode.el (cc-create-define-alist): New function.
22697 (cc-define-alist): New variable.
22698 (c-mode): Make it local and initialize it.
22699
22700 * progmodes/gdb-ui.el (gdb-active-process): New variable.
22701 (gdb-exited): New function.
22702 (gdb-annotation-rules): Use it.
22703 (gdb-starting): Set gdb-active-process to t.
22704 (gdb-stopping): Amend doc string.
22705 (gdb-reset): Set gdb-active-process to nil.
22706
22707 * tooltip.el (tooltip-gud-tips): Show the associated #define
22708 directives when a C program under GDB is not executing.
22709
22710 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
22711
22712 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
22713 font-lock-fontify-syntactic-keywords.
22714
22715 * font-lock.el (font-lock-default-fontify-region): Don't force
22716 parse-sexp-lookup-properties to nil.
22717
22718 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
22719
22720 * man.el (man-mode-syntax-table): Set up `:' to have
22721 word-constituent syntax.
22722
22723 2005-04-27 Lute Kamstra <lute@gnu.org>
22724
22725 * novice.el (disable-command): Don't add spurious newlines to the
22726 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
22727
22728 2005-04-26 Jay Belanger <belanger@truman.edu>
22729
22730 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
22731 than one window before deleting window.
22732
22733 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
22734
22735 * shell.el (shell-prompt-pattern): Doc fix.
22736 (shell-mode): Set paragraph-separate buffer locally to "\\'".
22737
22738 * comint.el (comint-prompt-regexp, comint-get-old-input)
22739 (comint-use-prompt-regexp)
22740 (comint-use-prompt-regexp-instead-of-fields)
22741 (comint-replace-by-expanded-history, comint-send-input)
22742 (comint-output-filter, comint-get-old-input-default)
22743 (comint-line-beginning-position, comint-bol, comint-show-output)
22744 (comint-backward-matching-input, comint-forward-matching-input)
22745 (comint-next-prompt, comint-previous-prompt):
22746 Rename `comint-use-prompt-regexp-instead-of-fields' to
22747 `comint-use-prompt-regexp'. Keep old name as alias and declare
22748 obsolete.
22749 (comint-use-prompt-regexp): Shorten first line of doc string.
22750
22751 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
22752 Set paragraph-separate buffer locally to "\\'".
22753
22754 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
22755 Adapt to above name change.
22756
22757 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
22758 (smbclient-prompt-regexp): Ditto.
22759
22760 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
22761
22762 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
22763
22764 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
22765 gdb-location-list.
22766 Break lines that are over 80 characters wide.
22767
22768 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
22769
22770 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
22771 New fun and var, to preserve compatibility.
22772
22773 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
22774
22775 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
22776
22777 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
22778 name to file-newer-than-file-p.
22779
22780 2005-04-26 Richard M. Stallman <rms@gnu.org>
22781
22782 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
22783
22784 * progmodes/python.el (python-mode):
22785 Use new name eldoc-documentation-function.
22786
22787 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
22788
22789 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
22790 (eldoc-documentation-function):
22791 Rename from eldoc-print-current-symbol-info-function. Calls changed.
22792
22793 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
22794
22795 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
22796
22797 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
22798
22799 * term/xterm.el (function-key-map): Fix strings for
22800 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
22801 {C,S,A,C-S}-{f1-f12}.
22802
22803 2005-04-26 Kenichi Handa <handa@m17n.org>
22804
22805 * international/mule-cmds.el (select-safe-coding-system):
22806 Fix previous change.
22807
22808 2005-04-26 Lute Kamstra <lute@gnu.org>
22809
22810 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
22811
22812 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
22813 (font-lock-comment-delimiter-face): Ditto.
22814
22815 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
22816
22817 2005-04-25 Jay Belanger <belanger@truman.edu>
22818
22819 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
22820 to t while inserting information; use help-mode.
22821
22822 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
22823
22824 * term.el (ansi-term-color-vector): Use the xterm colors.
22825 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
22826
22827 2005-04-25 Lute Kamstra <lute@gnu.org>
22828
22829 * font-core.el (font-lock-defaults): Fix docstring.
22830
22831 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
22832
22833 2005-04-25 Kenichi Handa <handa@m17n.org>
22834
22835 * international/mule-cmds.el (select-safe-coding-system):
22836 Don't check consistency with coding: spec, etc if raw-text or
22837 no-conversion was found to be safe.
22838
22839 2005-04-24 Richard M. Stallman <rms@gnu.org>
22840
22841 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
22842 citation markers at start of each line.
22843
22844 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
22845 citation markers at start of each line.
22846
22847 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
22848
22849 * files.el (mode-require-final-newline): Fix previous change.
22850 (require-final-newline): Fix type label.
22851
22852 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
22853
22854 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
22855 statement in buffer (broken by 2004-11-24 change).
22856
22857 2005-04-24 Kim F. Storm <storm@cua.dk>
22858
22859 * ido.el (ido-everywhere): Save and restore old read-buffer-function
22860 and read-file-name-function values. Don't overwrite existing
22861 non-nil values if ido-mode is enabled without ido-everywhere.
22862
22863 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
22864
22865 * files.el (mode-require-final-newline): Minor doc fix.
22866
22867 2005-04-24 Eli Zaretskii <eliz@gnu.org>
22868
22869 * subr.el (syntax-after): Doc fix.
22870 (syntax-class): If argument is nil, return nil. Mask off upper 16
22871 bits, not 8 bits.
22872
22873 * files.el (mode-require-final-newline): Doc fix.
22874 (backup-buffer-copy): Fix last change.
22875
22876 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22877
22878 * term/mac-win.el: Require select. Set selection-coding-system to
22879 mac-system-coding-system. Call menu-bar-enable-clipboard.
22880 (x-last-selected-text-clipboard, x-last-selected-text-primary)
22881 (x-select-enable-clipboard): New variables.
22882 (x-select-text, x-get-selection, x-selection-value)
22883 (x-get-selection-value, mac-select-convert-to-string)
22884 (mac-services-open-file, mac-services-open-selection)
22885 (mac-services-insert-text): New functions.
22886 (CLIPBOARD, FIND): Put mac-scrap-name property.
22887 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
22888 (public.tiff): Put mac-ostype property.
22889 (selection-converter-alist): Add entries for them.
22890 (mac-application-menu-map): New keymap.
22891 (interprogram-cut-function, interprogram-paste-function): Set to
22892 x-select-text and x-get-selection-value, respectively.
22893 (split-window-keep-point): Set to t.
22894
22895 2005-04-23 Richard M. Stallman <rms@gnu.org>
22896
22897 * files.el (read-directory-name): Always pass non-nil
22898 DEFAULT-FILENAME arg to read-file-name.
22899 (backup-buffer-copy, basic-save-buffer-2): Take care against
22900 writing thru an unexpected existing symlink.
22901 (revert-buffer): In indirect buffer, revert the base buffer.
22902 (magic-mode-alist): Doc fix.
22903 (buffer-stale-function): Doc fix.
22904 (minibuffer-with-setup-hook): Avoid warning.
22905 (mode-require-final-newline): Doc and custom fix.
22906
22907 * follow.el (follow-end-of-buffer): Use with-no-warnings.
22908
22909 * font-lock.el (font-lock-comment-face): On terminals with few colors,
22910 use the default appearance.
22911 (font-lock-comment-delimiter-face): New face, new variable.
22912
22913 * imenu.el (imenu--generic-function): The official position of a
22914 definition is the start of the line that BEG is in.
22915
22916 * midnight.el (midnight-timer): Move defvar up.
22917
22918 * mouse.el (mouse-drag-region-1): Delete some debugging code.
22919
22920 * saveplace.el (save-place-to-alist): Use with-no-warnings.
22921
22922 * startup.el (command-line): Use with-no-warnings.
22923
22924 * window.el (window-size-fixed): New defvar.
22925
22926 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
22927
22928 * mail/rmail.el (rmail-font-lock-keywords):
22929 Use font-lock-comment-delimiter-face.
22930
22931 * mail/sendmail.el (mail-font-lock-keywords):
22932 Use font-lock-comment-delimiter-face.
22933
22934 * progmodes/compile.el (next-error-highlight-timer): New defvar.
22935
22936 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
22937
22938 * progmodes/compile.el (compilation-mode-font-lock-keywords):
22939 Specify t for LAXMATCH when matching directories.
22940 Save match data around compilation-compat-error-properties form.
22941
22942 2005-04-23 David Kastrup <dak@gnu.org>
22943
22944 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
22945 Mention that the autoloaded aliases should be kept for AUCTeX.
22946
22947 2005-04-23 Andreas Schwab <schwab@suse.de>
22948
22949 * isearch.el (isearch-forward): Doc fix.
22950
22951 2005-04-23 Eli Zaretskii <eliz@gnu.org>
22952
22953 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
22954 (jit-lock-stealth-nice): Change default value to 0.5.
22955
22956 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
22957
22958 * abbrev.el (write-abbrev-file): Write table entries in
22959 alphabetical order by table name.
22960
22961 2005-04-22 Kim F. Storm <storm@cua.dk>
22962
22963 * ido.el (ido-read-internal): Fix `list' completion.
22964
22965 2005-04-22 Kenichi Handa <handa@m17n.org>
22966
22967 * recentf.el (recentf-save-file-coding-system): New variable.
22968 (recentf-save-list): Encode the file by
22969 recentf-save-file-coding-system and add coding: tag.
22970
22971 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
22972
22973 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
22974
22975 2005-04-21 Lute Kamstra <lute@gnu.org>
22976
22977 * loadhist.el (unload-feature): Don't remove a function from hooks
22978 if it is about to be restored to an autoload . Remove functions
22979 that will become unbound from auto-mode-alist. Simplify the code.
22980
22981 * subr.el (assq-delete-all): New implementation that is linear,
22982 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
22983 (rassq-delete-all): New function.
22984
22985 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
22986 Add size-indication-mode.
22987
22988 2005-04-21 Kenichi Handa <handa@m17n.org>
22989
22990 * international/mule-cmds.el: Add autoload for widget-value in
22991 eval-when-compile.
22992
22993 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
22994
22995 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
22996 Add tooltip-mode.
22997
22998 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
22999
23000 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
23001
23002 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
23003 (inferior-lisp-filter-regexp, inferior-lisp-program)
23004 (inferior-lisp-load-command, inferior-lisp-prompt)
23005 (inferior-lisp-mode-hook, lisp-source-modes)
23006 (inferior-lisp-load-hook): defvar->defcustom.
23007 (inferior-lisp-program, inferior-lisp-prompt)
23008 (inferior-lisp-load-hook): Doc fixes.
23009 (inferior-lisp-install-letter-bindings): Small change in
23010 introductory comment.
23011
23012 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
23013
23014 * vc.el (vc-annotate-color-map): Change some colors so that text
23015 using them as foreground is readable on both white and black
23016 backgrounds.
23017
23018 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
23019
23020 * international/mule-conf.el (translation-table-for-input):
23021 Remove redundant declaration.
23022
23023 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
23024
23025 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
23026
23027 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
23028 (tooltip-toggle-gud-tips): New function.
23029
23030 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23031
23032 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
23033 right angle brackets.
23034
23035 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
23036
23037 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
23038
23039 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
23040
23041 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
23042 Remove. Update callers to use expand-file-name instead.
23043
23044 * subr.el (syntax-class): New function.
23045
23046 * simple.el (blink-matching-open): Use it.
23047
23048 * paren.el (show-paren-function): Use it to recognize parens that are
23049 also used in 2-char comment markers.
23050
23051 2005-04-19 Lute Kamstra <lute@gnu.org>
23052
23053 * loadhist.el (unload-feature): Update for new format of
23054 load-history. Simplify the code.
23055
23056 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23057
23058 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
23059 (mac-add-charset-info): New function. Initialize variable
23060 mac-charset-info-alist using it.
23061 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
23062 for translation.
23063 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
23064 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
23065 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
23066 New CCL programs.
23067
23068 2005-04-19 Kim F. Storm <storm@cua.dk>
23069
23070 * simple.el (next-buffer, prev-buffer, next-error)
23071 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
23072 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
23073
23074 * bindings.el (next-buffer, prev-buffer, next-error)
23075 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
23076 (clone-indirect-buffer-other-window): Move bindings from simple.el.
23077 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
23078 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
23079
23080 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
23081
23082 * isearch.el (isearch-edit-string): Make the search-ring available for
23083 minibuffer history commands.
23084 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
23085 the default history commands now work just as well.
23086 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
23087
23088 2005-04-18 Kim F. Storm <storm@cua.dk>
23089
23090 * emulation/cua-base.el (cua--pre-command-handler): Add more
23091 elaborate check for shift modifier on non-window systems.
23092
23093 2005-04-18 Lars Hansen <larsh@math.ku.dk>
23094
23095 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
23096
23097 2005-04-18 Kim F. Storm <storm@cua.dk>
23098
23099 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
23100 and make it optional. Don't test tooltip-gud-echo-area here.
23101 (tooltip-gud-process-output, gdb-tooltip-print):
23102 Pass tooltip-gud-echo-area to tooltip-show.
23103 (tooltip-help-tips): Remove second optional arg to tooltip-show.
23104
23105 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23106
23107 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
23108 `display-graphic-p' may not be bound yet.
23109
23110 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
23111
23112 * startup.el (command-line): No longer enable Xterm Mouse mode by
23113 default in terminals compatible with xterm.
23114
23115 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
23116
23117 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
23118
23119 * tooltip.el (tooltip-gud-echo-area): Rename from
23120 tooltip-use-echo-area.
23121 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
23122 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
23123 area independently of where help tooltips are displayed.
23124
23125 2005-04-17 David Kastrup <dak@gnu.org>
23126
23127 * cus-theme.el (custom-theme-write-variables): Quote variables
23128 where necessary.
23129
23130 2005-04-17 Richard M. Stallman <rms@gnu.org>
23131
23132 * simple.el (yank-excluded-properties): Add follow-link to value.
23133
23134 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
23135
23136 * startup.el (fancy-splash-max-time): Just 30 seconds.
23137 (fancy-splash-delay): Just 7.
23138 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
23139
23140 * loadhist.el (unload-feature): Update for new format of load-history.
23141 Simplify the code.
23142
23143 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
23144 (rmail-font-lock-keywords): Don't fontify the text of a citation.
23145
23146 * mail/sendmail.el (mail-font-lock-keywords):
23147 Don't fontify subject text.
23148 Don't fontify the text of a citation.
23149
23150 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
23151
23152 * comint.el (comint-output-filter): Run comint-output-filter-functions
23153 with point where the user had it.
23154
23155 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
23156
23157 * international/ucs-tables.el (ucs-set-table-for-input):
23158 Disable when using unify-on-decoding.
23159
23160 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
23161
23162 * emulation/cua-base.el (cua-global-mark-face): Add special case
23163 for displays supporting a high number of colors.
23164
23165 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
23166
23167 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
23168
23169 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
23170
23171 * filesets.el (filesets-add-buffer): If user supplies a name of a
23172 non-existing fileset, create a new fileset.
23173
23174 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
23175
23176 * textmodes/org.el (org-up-heading-all): Fix bug with
23177 `outline-up-heading-all'.
23178
23179 2005-04-16 Andreas Schwab <schwab@suse.de>
23180
23181 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
23182 /etc/permissions.d/* and /etc/aliases.d/*.
23183
23184 2005-04-16 Kenichi Handa <handa@m17n.org>
23185
23186 * international/code-pages.el (cp-make-coding-system):
23187 Set `translation-table-for-input' property value to the symbol
23188 ucs-mule-to-mule-unicode, not to that value.
23189 (pt154): Escape guillemet by `\'.
23190
23191 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
23192
23193 * loadup.el: Load tooltip if x-show-tip is fboundp.
23194
23195 * startup.el (command-line): Add comment.
23196
23197 * tooltip.el (tooltip-mode): Specify correct standard value for
23198 Custom in init-value.
23199
23200 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
23201
23202 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
23203 possible.
23204
23205 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
23206
23207 * textmodes/org.el (org-agenda-date-prompt): Rename from
23208 `org-agenda-date-today'.
23209 (org-evaluate-time-range): Insert at point instead of directly
23210 after time range.
23211 (org-first-headline-recenter, org-subtree-end-visible-p)
23212 (org-optimize-window-after-visibility-change): New functions
23213 (org-agenda-post-command-hook): Don't allow point at end of line,
23214 to make sure it always hits the text properties.
23215 (org-agenda-next-date-line, org-agenda-previous-date-line):
23216 New commands.
23217 (org-set-regexps-and-options): Category may contain white space.
23218 (org-agenda-get-deadlines, org-agenda-get-scheduled):
23219 Improve marker positions.
23220 (org-agenda-new-marker): Argument POS made optional.
23221 (org-agenda-get-timestamps): Deadlines which are done are listed
23222 in org-done-face now.
23223 (org-agenda-get-todos, org-agenda-get-timestamps)
23224 (org-agenda-get-deadlines, org-agenda-get-scheduled):
23225 Set `undone-face' and `done-face' properties.
23226 (org-last-todo-state-is-todo): New variable.
23227 (org-todo): Set `org-last-todo-state-is-todo'.
23228 (org-agenda-todo): Change face according to
23229 `org-last-todo-state-is-todo'. And change other lines referring to
23230 the same entry.
23231 (org-calendar-goto-agenda): New command.
23232 (org-calendar-to-agenda-key): New option.
23233 (org-startup-folded): New allowed value `content'.
23234 (org-set-regexps-and-options): Accept new value `content' for
23235 `org-startup-folded'.
23236 (org-get-current-options): Handle new value `content' for
23237 `org-startup-folded'.
23238 (org-insert-todo-heading): New command.
23239 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
23240 interactively in empty file and option
23241 `org-insert-mode-line-in-empty-file' has been set.
23242 (org-agenda-todo, org-agenda-priority): Modify to use
23243 `org-agenda-change-all-lines'.
23244 (org-warning-face): Change color on dark background
23245
23246 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23247
23248 * international/mule-cmds.el (set-locale-environment): On Mac OS,
23249 use preferences AppleLocale and AppleLanguages, and variable
23250 mac-system-locale for default locale. On Mac OS Classic, use
23251 mac-system-coding-system for default coding systems.
23252
23253 * term/mac-win.el: Don't set file-name-coding-system.
23254 Decode variables system-name, emacs-build-system, user-login-name, and
23255 user-full-name by mac-system-coding-system on Mac OS Classic.
23256 (mac-system-coding-system): New variable.
23257
23258 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
23259
23260 * startup.el (command-line): Handle `xterm-mouse-mode' before
23261 reading init file.
23262
23263 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
23264
23265 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
23266
23267 * progmodes/sh-script.el (sh-here-document-word): Make it a
23268 defcustom. Doc fix.
23269 (sh-add): Bash uses $(( )) for arithmetic.
23270 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
23271 (sh-maybe-here-document): Remove quotes and leading whitespace
23272 from heredoc word when closing. Indent heredoc with tabs if word
23273 starts with "-".
23274
23275 2005-04-13 Richard M. Stallman <rms@gnu.org>
23276
23277 * simple.el (undo): Fix previous change.
23278
23279 * custom.el (defface): Doc fix.
23280
23281 2005-04-13 Lute Kamstra <lute@gnu.org>
23282
23283 * Makefile.in (DONTCOMPILE): Remove list.
23284 (compile, compile-always): Don't use DONTCOMPILE.
23285 (update-authors): Load the library in which batch-update-authors
23286 is defined.
23287 * makefile.w32-in (DONTCOMPILE): Remove list.
23288 (compile, compile-always): Fix comments.
23289 (update-authors): Load the library in which batch-update-authors
23290 is defined.
23291
23292 * generic-x.el (generic-mode-ini-file-find-file-hook):
23293 Rename to ini-generic-mode-find-file-hook.
23294 Keep generic-mode-ini-file-find-file-hook as an alias.
23295 (ini-generic-mode-find-file-hook): Rename from
23296 generic-mode-ini-file-find-file-hook. Fix docstring.
23297 (ini-generic-mode): Docstring change.
23298 (bat-generic-mode-run-as-comint): Silence the byte compiler.
23299
23300 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
23301 called from lisp.
23302
23303 * generic.el: Move to the emacs-lisp subdir.
23304
23305 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
23306
23307 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
23308 and C-S- function and cursor motion keys.
23309
23310 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
23311
23312 * startup.el (command-line): Enable Xterm Mouse mode by default.
23313 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
23314 for Custom. No longer show "Mouse" in mode line when enabled.
23315 Doc fix.
23316
23317 2005-04-12 Kim F. Storm <storm@cua.dk>
23318
23319 * emulation/cua-base.el (cua-rectangle-face)
23320 (cua-rectangle-noselect-face): Define face attributes here.
23321
23322 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
23323
23324 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
23325
23326 * startup.el (command-line): Turn off blinking cursor if
23327 cursorBlink in resources is off or false.
23328
23329 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23330
23331 * term/mac-win.el (dnd): Require dnd.
23332 (mac-drag-n-drop): Call dnd-handle-one-url.
23333 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
23334 (kTextEncodingISOLatin2): Remove constants.
23335 (mac-script-code-coding-systems): New constant.
23336 (mac-handle-language-change): New function.
23337 (special-event-map): Bind it to `language-change' event.
23338 (mac-centraleurroman, mac-cyrillic): New coding systems.
23339 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
23340 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
23341 and mac-cyrillic-encoder to encode-mac-centraleurroman and
23342 encode-mac-cyrillic, respectively.
23343
23344 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
23345
23346 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
23347 Don't set overlay-arrow-string to "=>" as this is done
23348 globally in C now.
23349
23350 2005-04-12 Lute Kamstra <lute@gnu.org>
23351
23352 * generic-x.el (rc-generic-mode, rul-generic-mode):
23353 Fix auto-mode-alist entries.
23354 (etc-fstab-generic-mode): Tweak fontification.
23355
23356 * generic.el (generic-make-keywords-list): Fix docstring.
23357 (generic-mode-internal): Simplify generic-font-lock-keywords.
23358
23359 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
23360
23361 * whitespace.el (whitespace-buffer-leading)
23362 (whitespace-buffer-trailing): Revert the incorrect test inversion.
23363 However, fix the highlight area for the leading and
23364 trailing whitespaces to show space.
23365
23366 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
23367
23368 * whitespace.el (whitespace-version): Bump to 3.5
23369
23370 (whitespace-buffer-leading, whitespace-buffer-trailing):
23371 Invert sense of the test to highlight the whitespace.
23372
23373 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
23374
23375 * progmodes/gud.el (gud-display-line): GUD uses its own
23376 overlay arrow now so don't set overlay-arrow-string.
23377 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
23378
23379 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
23380
23381 * term.el (term-ansi-current-bold, term-ansi-current-underline)
23382 (term-ansi-current-reverse, term-ansi-current-invisible)
23383 (term-ansi-face-already-done): Change to boolean.
23384 (term-reset-terminal, term-handle-colors-array): Handle the above
23385 vars accordingly.
23386 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
23387 (term-emulate-terminal): Use the new name.
23388
23389 * faces.el (secondary-selection): Use yellow1, not yellow.
23390 (trailing-whitespace): Use red1, not red.
23391
23392 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
23393
23394 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
23395 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
23396 (dired-dnd-handle-file): Call dnd-get-local-file-uri
23397
23398 * cus-edit.el (dnd): New group.
23399
23400 * term/w32-win.el (dnd): Require dnd
23401 (w32-drag-n-drop): Call dnd-handle-one-url.
23402
23403 * x-dnd.el: Require dnd.
23404 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
23405 Call dnd-handle-one-url.
23406 (x-dnd-types-alist, x-dnd-insert-utf8-text)
23407 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
23408 to dnd-insert-text.
23409 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
23410 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
23411 (x-dnd-get-local-file-name, x-dnd-open-local-file)
23412 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
23413
23414 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
23415
23416 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
23417
23418 * wdired.el: Doc fixes.
23419 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
23420 (wdired-use-dired-vertical-movement): Rename from
23421 wdired-always-move-to-filename-beginning.
23422 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
23423 (wdired-change-to-wdired-mode): Change mode name.
23424 (wdired-newline): Delete.
23425
23426 2005-04-11 Richard M. Stallman <rms@gnu.org>
23427
23428 * whitespace.el (whitespace-highlight-the-space):
23429 Don't call whitespace-unhighlight-the-space here.
23430
23431 * simple.el (undo): Record t in undo-equiv-table
23432 for the redo record made by an undo-in-region.
23433
23434 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
23435
23436 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
23437 (gdb-frame-inferior-io-buffer): New Functions to control
23438 display of separate IO buffer.
23439 (menu): Add them to menu-bar.
23440 (gdb-display-buffer): Check for buffer another frame.
23441 Protect GUD buffer.
23442 (gdb-setup-windows): Create IO buffer if not already there.
23443 (gdb-memory-mode): Remove purecopy noops.
23444
23445 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
23446
23447 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
23448 and pass to self-insert-command.
23449
23450 2005-04-11 Lute Kamstra <lute@gnu.org>
23451
23452 * generic.el: Commentary section cleanup.
23453 (generic): Delete.
23454 (generic-use-find-file-hook, generic-lines-to-scan)
23455 (generic-find-file-regexp, generic-ignore-files-regexp)
23456 (default-generic-mode, generic-mode-find-file-hook)
23457 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
23458 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
23459 (generic-use-find-file-hook, generic-lines-to-scan)
23460 (generic-find-file-regexp, generic-ignore-files-regexp)
23461 (default-generic-mode, generic-mode-find-file-hook)
23462 (generic-mode-ini-file-find-file-hook): Move from generic.el.
23463
23464 2005-04-10 Karl Fogel <kfogel@red-bean.com>
23465
23466 * bookmark.el (bookmark-write-file): Catch errors writing file.
23467 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
23468
23469 2005-04-10 Richard M. Stallman <rms@gnu.org>
23470
23471 * startup.el (fancy-splash-tail): Update copyright year.
23472 (command-line): Split part of -Q into -D.
23473 (emacs-basic-display): New defvar.
23474 (fancy-splash-text): Correct name of menu item.
23475
23476 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
23477
23478 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
23479 lines in one node.
23480
23481 * comint.el (comint-send-input): New arg ARTIFICIAL.
23482 Callers in this file changed.
23483
23484 * abbrev.el (define-abbrevs): Read system abbrevs properly.
23485
23486 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
23487
23488 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
23489
23490 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
23491 `ldap-search-internal'.
23492
23493 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
23494
23495 * files.el (set-auto-mode-1): Use line-end-position.
23496
23497 * international/latin-1.el:
23498 * international/latin-2.el:
23499 * international/latin-3.el:
23500 * international/latin-4.el:
23501 * international/latin-5.el:
23502 * international/latin-8.el:
23503 * international/latin-9.el: Give punctuation syntax to NBSP.
23504
23505 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
23506 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
23507 Use char-classes to accept non-ascii letters, accepted in some recent
23508 bibtex implementations.
23509
23510 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
23511
23512 * custom.el (custom-set-minor-mode): Any non-nil value for the
23513 variable should enable the mode when set through Custom.
23514
23515 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
23516
23517 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
23518 TAB binding so tab-always-indent is obeyed.
23519 (vhdl-minibuffer-local-map): Move initialization into declaration.
23520 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
23521 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
23522 (vhdl-hooked-abbrev): Avoid test for XEmacs.
23523 (vhdl-current-line): Use line-beginning-position.
23524 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
23525 with-output-to-temp-buffer, so the current position can be recorded.
23526
23527 2005-04-10 Masatake YAMATO <jet@gyve.org>
23528
23529 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23530 Add regexp for gcov.
23531
23532 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
23533
23534 * calendar/time-date.el (time-to-seconds, seconds-to-time)
23535 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
23536 syntax which Emacs 20 doesn't support.
23537
23538 2005-04-09 Richard M. Stallman <rms@gnu.org>
23539
23540 * help.el (describe-key-briefly, describe-key):
23541 Replace strings as event types with "(any string)".
23542
23543 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
23544
23545 * arc-mode.el (archive-mode-map): Move initialization into
23546 the declaration. Override *all* bindings of `undo'.
23547 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
23548
23549 2005-04-09 Jay Belanger <belanger@truman.edu>
23550
23551 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
23552
23553 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
23554
23555 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
23556 (xterm-register-default-colors): Update color values computation
23557 to match xterm-200.
23558
23559 2005-04-09 Kenichi Handa <handa@m17n.org>
23560
23561 * international/code-pages.el (iso-latin-7): Fix the map.
23562
23563 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
23564
23565 * emacs-lisp/lisp.el (defun-prompt-regexp)
23566 (parens-require-spaces, buffer-end, end-of-defun)
23567 (insert-parentheses): Doc fixes.
23568
23569 2005-04-08 Kim F. Storm <storm@cua.dk>
23570
23571 * comint.el (comint-highlight-prompt): Fix face spec.
23572 * hi-lock.el (hi-green): Likewise.
23573
23574 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
23575
23576 * cus-edit.el (custom-modified-face):
23577 * comint.el (comint-highlight-input): Fix previous changes.
23578 * term.el (term-handle-ansi-escape): Add a comment.
23579
23580 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
23581
23582 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
23583 in the buffer and in whitespace-highlighted-space.
23584 (whitespace-unhighlight-the-space): Simplify.
23585 (whitespace-buffer): Simplify.
23586
23587 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
23588
23589 * textmodes/table.el (table-cell-face): Add special case for
23590 displays supporting a high number of colors.
23591 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
23592 (vhdl-font-lock-reserved-words-face)
23593 (vhdl-speedbar-architecture-face)
23594 (vhdl-speedbar-instantiation-face)
23595 (vhdl-speedbar-architecture-selected-face)
23596 (vhdl-speedbar-instantiation-selected-face): Likewise.
23597 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
23598 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
23599 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
23600 (ebrowse-root-class-face, ebrowse-member-attribute-face)
23601 (ebrowse-progress-face): Likewise.
23602 * progmodes/compile.el (compilation-info-face): Likewise.
23603 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
23604 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
23605 * calendar/calendar.el (diary-face): Likewise.
23606 * woman.el (woman-italic-face, woman-bold-face)
23607 (woman-unknown-face): Likewise.
23608 * wid-edit.el (widget-button-pressed-face): Likewise.
23609 * whitespace.el (whitespace-highlight-face): Likewise.
23610 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
23611 * pcvs-info.el (cvs-marked-face): Likewise.
23612 * info.el (info-xref): Likewise.
23613 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
23614 * hilit-chg.el (highlight-changes-face)
23615 (highlight-changes-delete-face): Likewise.
23616 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
23617 (hi-red-b): Likewise.
23618 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
23619 * font-lock.el (font-lock-keyword-face)
23620 (font-lock-function-name-face, font-lock-warning-face): Likewise.
23621 * cus-edit.el (custom-invalid-face, custom-modified-face)
23622 (custom-set-face, custom-changed-face, custom-variable-tag-face)
23623 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
23624 * comint.el (comint-highlight-prompt): Likewise.
23625
23626 2005-04-08 Lute Kamstra <lute@gnu.org>
23627
23628 * font-lock.el (font-lock-keywords): Docstring fixes.
23629
23630 2005-04-08 Kenichi Handa <handa@m17n.org>
23631
23632 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
23633 chars are more than a limit, print " and more..." at the tail.
23634
23635 2005-04-08 Kim F. Storm <storm@cua.dk>
23636
23637 * emacs-lisp/authors.el (authors-aliases): Update list.
23638 (authors-ignored-files): New list.
23639 (authors-fixed-entries): Fix typo.
23640 (authors-renamed-files-alist): Update list.
23641 (authors-add): Check authors-ignored-files.
23642
23643 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
23644
23645 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
23646 optional, to ensure backward compatibility.
23647
23648 2005-04-08 Stephen Eglen <stephen@gnu.org>
23649
23650 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
23651
23652 2005-04-08 Kim F. Storm <storm@cua.dk>
23653
23654 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
23655
23656 * mouse.el (mouse-on-link-p): Doc fix.
23657
23658 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
23659
23660 * ielm.el (ielm-prompt-read-only): Doc fix.
23661
23662 * comint.el (comint-prompt-read-only): Doc fix.
23663
23664 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
23665
23666 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
23667 ensure dired always handles wildcards passed to ffap.
23668 (find-file-at-point): Use it.
23669 (ffap-dired-wildcards): Doc fix.
23670
23671 2005-04-07 Juri Linkov <juri@jurta.org>
23672
23673 * simple.el (next-error-overlay-arrow-position): New defvar.
23674 Put "=>" on its property `overlay-arrow-string'. Add it to
23675 `overlay-arrow-variable-list'.
23676
23677 * progmodes/compile.el (compilation-setup):
23678 Set `next-error-overlay-arrow-position' to nil. Also set it to
23679 nil in the local hook `kill-buffer-hook'. Make local variable
23680 `overlay-arrow-string' and set it to "=>".
23681 (compilation-goto-locus): Set BOL position to
23682 `next-error-overlay-arrow-position' instead of
23683 `overlay-arrow-position'.
23684
23685 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
23686 locally instead of adding it to the global hook.
23687 (Info-kill-buffer): Move up.
23688
23689 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
23690
23691 * term/xterm.el (xterm-standard-colors): Update color values from
23692 xterm-200.
23693
23694 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
23695
23696 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
23697
23698 * fast-lock.el:
23699 * lazy-lock.el: Move them to the obsolete subdir.
23700
23701 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
23702
23703 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
23704 (wdired-add-replace-advice): Remove.
23705 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
23706
23707 2005-04-06 Kim F. Storm <storm@cua.dk>
23708
23709 * startup.el (command-line): Add --bare-bones alias for -Q.
23710
23711 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23712
23713 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
23714 create the startup fontset if a font specification ends with
23715 `mac-roman'.
23716
23717 2005-04-06 Lute Kamstra <lute@gnu.org>
23718
23719 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
23720 change.
23721
23722 * emacs-lisp/copyright.el (copyright-update-year): Replace the
23723 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
23724
23725 2005-04-05 Lute Kamstra <lute@gnu.org>
23726
23727 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
23728 (define-generic-mode): Ditto. Fix debug declaration.
23729
23730 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
23731 Put them in the generic-x group.
23732
23733 * calendar/timeclock.el (timeclock): Doc fix.
23734
23735 * generic.el (define-generic-mode): Don't use custom-current-group.
23736 Document default :group value.
23737 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
23738 (define-global-minor-mode): Don't use custom-current-group.
23739
23740 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
23741
23742 * startup.el (command-line-1): Display startup-echo-area-message
23743 when fancy splash screen is in use.
23744
23745 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
23746 (sh-escaped-newline): New face.
23747 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
23748 newline, and use sh-escaped-newline face.
23749
23750 * progmodes/tcl.el (tcl-escaped-newline): New face.
23751 (tcl-builtin-list): New variable.
23752 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
23753 newlines. Fix keywords subexpression number.
23754
23755 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
23756
23757 * textmodes/org.el (org-diary-default-entry): Fix call to
23758 `add-to-diary-entry'.
23759
23760 2005-04-05 Kim F. Storm <storm@cua.dk>
23761
23762 * ediff-init.el: Use (featurep 'xemacs).
23763
23764 2005-04-05 David Ponce <david@dponce.com>
23765
23766 * cus-edit.el (face): Derive from symbol widget. Display sample
23767 of the current face on the fly.
23768 (widget-face-sample-face-get, widget-face-notify): New functions.
23769 (widget-face-value-create): Remove.
23770
23771 * wid-edit.el (widget-field-end): Temporarily remove field
23772 narrowing before to call `get-char-property'.
23773
23774 2005-04-04 Jay Belanger <belanger@truman.edu>
23775
23776 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
23777 (math-read-subscripts): New variable.
23778 (math-read-preprocess-string): Process subscripts.
23779
23780 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
23781
23782 * comint.el (comint-prompt-read-only): Doc fix.
23783
23784 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
23785 `-1'. Doc fix.
23786
23787 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
23788
23789 * textmodes/org.el (org-insert-mode-line-in-empty-file):
23790 Change default value to nil.
23791
23792 2005-04-04 Lute Kamstra <lute@gnu.org>
23793
23794 * autorevert.el (auto-revert-mode): Specify :group.
23795 * battery.el (display-battery-mode): Specify :group.
23796 * diff-mode.el (diff-minor-mode): Specify :group.
23797 * font-core.el (font-lock-mode): Specify :group.
23798 * hl-line.el (hl-line-mode): Specify :group.
23799 * iimage.el (iimage): New customization group.
23800 (iimage-mode): Specify :group.
23801 * longlines.el (longlines-mode): Specify :group.
23802 * master.el: Don't require easy-mmode.
23803 (master): New customization group.
23804 (master-mode): Specify :group.
23805 * msb.el (msb-mode): Specify :group.
23806 * reveal.el (reveal-mode): Specify :group.
23807 * simple.el (next-error-follow-minor-mode): Specify :group.
23808 * smerge-mode.el (smerge-mode): Specify :group.
23809 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
23810 * emulation/cua-base.el (cua-mode): Specify :group.
23811 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
23812 * language/thai-util.el (thai-auto-composition-mode)
23813 (thai-word-mode): Specify :group.
23814 * mail/supercite.el (sc-minor-mode): Specify :group.
23815 * progmodes/cwarn.el (cwarn-mode): Specify :group.
23816 * progmodes/flymake.el (flymake-mode): Specify :group.
23817 * progmodes/glasses.el (glasses-mode): Specify :group.
23818 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
23819 * textmodes/enriched.el (enriched-mode): Specify :group.
23820 * textmodes/refill.el (refill-mode): Specify :group.
23821
23822 * add-log.el (change-log-font-lock-keywords): Names in
23823 parenthesized lists can contain spaces.
23824
23825 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
23826
23827 * startup.el (fancy-splash-text): Shorten default text of
23828 "Emacs Tutorial" line. Also, if the current language env
23829 indicates an available tutorial file other than TUTORIAL,
23830 extract its title and append it to the line in parentheses.
23831 (fancy-splash-insert): If arg is a thunk, funcall it.
23832
23833 2005-04-04 Jay Belanger <belanger@truman.edu>
23834
23835 * calc.el (calc-language-alist): Add tags to customization type.
23836
23837 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
23838
23839 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
23840 Doc fix.
23841
23842 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
23843
23844 * add-log.el (change-log-font-lock-keywords): The manual
23845 describing a Change Log entry, says: (...) "Aside from these
23846 header lines, every line in the change log starts with a space or
23847 a tab.". The font-lock was not highlighting lines started with
23848 spaces, added support for it.
23849
23850 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
23851
23852 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
23853 (bibtex-generate-url-list): Update docstring accordingly. Put the
23854 complex example in the docstring.
23855 (bibtex-font-lock-url): Use pop.
23856
23857 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
23858
23859 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
23860
23861 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
23862
23863 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
23864
23865 * filesets.el (filesets-set-default): Doc fix.
23866
23867 2005-04-03 Lute Kamstra <lute@gnu.org>
23868
23869 * generic.el (define-generic-mode): Add argument to specify
23870 keywords for defcustom.
23871 (default-generic-mode): Specify :group.
23872
23873 * generic-x.el: Specify :group for all generic modes.
23874
23875 * desktop.el (desktop-no-desktop-file-hook)
23876 (desktop-after-read-hook): Doc fix.
23877
23878 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
23879
23880 * simple.el (visible-mode): Use explicit :group keyword.
23881 This changes the group of `visible-mode-hook' from paren-blinking
23882 to editing-basics.
23883
23884 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
23885
23886 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
23887 mailbox specifications as well as URLs.
23888 (rmail-insert-inbox-text): Remove unused conditional branches.
23889
23890 2005-04-01 Jay Belanger <belanger@truman.edu>
23891
23892 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
23893 (calc-gnuplot-print-command): Move definitions to calc.el.
23894
23895 * calc/calc-embed.el (calc-embedded-announce-formula)
23896 (calc-embedded-open-formula, calc-embedded-close-formula)
23897 (calc-embedded-open-word, calc-embedded-close-word)
23898 (calc-embedded-open-plain, calc-embedded-close-plain)
23899 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
23900 (calc-embedded-open-mode, calc-embedded-close-mode):
23901 Move definitions to calc.el.
23902
23903 * calc/calc.el (calc-settings-file, calc-language-alist):
23904 Make customizable.
23905 (calc-embedded-announce-formula, calc-embedded-open-formula)
23906 (calc-embedded-close-formula, calc-embedded-open-word)
23907 (calc-embedded-close-word, calc-embedded-open-plain)
23908 (calc-embedded-close-plain, calc-embedded-open-new-formula)
23909 (calc-embedded-close-new-formula, calc-embedded-open-mode)
23910 (calc-embedded-close-mode, calc-gnuplot-name)
23911 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
23912 from other files and make customizable.
23913
23914 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
23915
23916 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
23917 Use buffer-live-p.
23918 (cvs-mode-run): Don't call cvs-update-header here.
23919 (cvs-run-process): Call cvs-update-header.
23920 Use process properties for cvs-postprocess and cvs-buffer so that
23921 the sentinel can behave better if the temp buffer is killed.
23922 Use a pipe rather than a tty, to better handle unexpected prompts.
23923 (cvs-sentinel): Rewrite. Call cvs-update-header.
23924
23925 2005-04-01 Andre Spiegel <spiegel@gnu.org>
23926
23927 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
23928 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
23929
23930 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
23931
23932 * generic.el (define-generic-mode): Add indentation rule.
23933
23934 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
23935
23936 * files.el (mode-require-final-newline): Make Custom correctly
23937 report a nil value and allow to set it to nil via Custom.
23938 Doc fix.
23939
23940 2005-04-01 Kenichi Handa <handa@m17n.org>
23941
23942 * international/characters.el: Enable the correct case setting for
23943 dotless-i and dotted-I.
23944
23945 2005-04-01 Kim F. Storm <storm@cua.dk>
23946
23947 * ido.el (ido-file-internal): Fall back to non-ido command if
23948 initial directory is on slow ftp (or tramp) host.
23949
23950 2005-03-31 Richard M. Stallman <rms@gnu.org>
23951
23952 * emacs-lisp/autoload.el (make-autoload):
23953 Handle define-global-minor-mode.
23954
23955 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
23956 Rename from easy-mmode-define-global-mode.
23957 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
23958
23959 * progmodes/scheme.el (scheme-mode-syntax-table):
23960 Update syntax of | and # for two-character comment syntax.
23961
23962 2005-03-31 Lute Kamstra <lute@gnu.org>
23963
23964 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
23965 (define-minor-mode): Call custom-current-group at load-time.
23966
23967 * generic.el (define-generic-mode): Add debug declaration.
23968 Add defcustom for the mode hook.
23969 (generic-mode-internal): Use run-mode-hooks.
23970
23971 2005-03-31 Kim F. Storm <storm@cua.dk>
23972
23973 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
23974 (mouse-fixup-help-message): New defun called by show_help_echo
23975 to fixup mouse-2 prefix in help messages when applicable.
23976
23977 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
23978
23979 2005-03-31 Kenichi Handa <handa@m17n.org>
23980
23981 * language/thai-word.el (thai-find-word-ends): Pay attention to
23982 the case that we reach the end of buffer.
23983
23984 * textmodes/fill.el (fill-text-properties-at): New function.
23985 (fill-newline): Use fill-text-properties-at instead of
23986 text-properties-at.
23987
23988 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
23989
23990 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
23991 not comint-quote-filename.
23992
23993 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
23994
23995 * help-fns.el (help-with-tutorial): Revert last change.
23996
23997 2005-03-31 Kim F. Storm <storm@cua.dk>
23998
23999 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
24000
24001 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
24002
24003 * calendar/cal-china.el: Update reference to "Calendrical
24004 Calculations" book; there's a new edition.
24005 * calendar/cal-coptic.el: Likewise.
24006 * calendar/cal-french.el: Likewise.
24007 * calendar/cal-hebrew.el: Likewise.
24008 * calendar/cal-islam.el: Likewise.
24009 * calendar/cal-iso.el: Likewise.
24010 * calendar/cal-julian.el: Likewise.
24011 * calendar/cal-mayan.el: Likewise.
24012 * calendar/cal-persia.el: Likewise.
24013 * calendar/calendar.el: Likewise.
24014 * calendar/holidays.el: Likewise.
24015 * calendar/lunar.el: Likewise.
24016 * calendar/solar.el: Likewise.
24017
24018 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
24019 white space from doc string.
24020
24021 2005-03-30 Jay Belanger <belanger@truman.edu>
24022
24023 * calc/calc-help.el (calc-full-help): Remove email address.
24024
24025 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
24026
24027 * help-fns.el (help-with-tutorial): Delete title line.
24028
24029 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
24030
24031 * calendar/cal-x.el (calendar-one-frame-setup)
24032 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
24033 rather than `symbol' for set-window-dedicated-p.
24034
24035 * calendar/appt.el (appt-buffer-name): Make it a constant.
24036 (appt-add): Doc fix.
24037
24038 * filesets.el (filesets-menu-path, filesets-menu-before)
24039 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
24040 (filesets-menu-cache-file): Use directory ~/.emacs.d.
24041 (filesets-add-submenu): Delete and use add-submenu instead.
24042
24043 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
24044
24045 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
24046 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
24047 (org-diary-default-entry): New function.
24048 (org-get-entries-from-diary): Better parsing of diary entries.
24049 (org-agenda-check-no-diary): New function.
24050 ("diary-lib"): Advice to function `add-to-diary-list', to allow
24051 linking to diary entries.
24052 (org-agenda-execute-calendar-command): New function.
24053 (org-agenda): Improve visible section in window.
24054 Use `org-fit-agenda-window'.
24055 (org-fit-agenda-window): New option.
24056 (org-move-subtree-down): Better handling of empty lines
24057 at end of subtree.
24058 (org-cycle): Numeric prefix is interpreted now as show-subtree N
24059 levels up.
24060 (org-fontify-done-headline): New option.
24061 (org-headline-done-face): New face.
24062 (org-set-font-lock-defaults): Use `org-headline-done-face'.
24063 (org-table-copy-down): Rename from `org-table-copy-from-above'.
24064 When current field is non-empty, it is copied to next row.
24065 (org-table-copy-from-above): Fix bug which made it
24066 impossible to copy fields containing only a single non-white character.
24067
24068 2005-03-30 Kim F. Storm <storm@cua.dk>
24069
24070 * kmacro.el (kmacro-end-macro): Isearch may store this command
24071 into the macro -- so ignore it when executing keyboard macro.
24072
24073 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
24074
24075 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
24076
24077 2005-03-29 Kenichi Handa <handa@m17n.org>
24078
24079 * language/thai.el ("Thai"): Set setup-function and exit-function
24080 for Thai language environment.
24081
24082 * language/thai-util.el: Require thai-word.
24083 (thai-word-mode-map): New variable.
24084 (thai-word-mode): New minor mode.
24085 (setup-thai-language-environment-internal): New function.
24086 (exit-thai-language-environment-internal): New function.
24087
24088 * language/thai-word.el (thai-word-table): Declare it by defvar,
24089 use dolist to initialize it.
24090 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
24091 (thai-fill-find-break-point): New functions.
24092
24093 2005-03-29 Richard M. Stallman <rms@gnu.org>
24094
24095 * simple.el (idle-update-delay): Move definition up.
24096 (set-mark): Doc fix.
24097
24098 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
24099
24100 * longlines.el: New file.
24101
24102 * simple.el (buffer-substring-filters): New variable.
24103 (filter-buffer-substring): New function.
24104 (kill-region, copy-region-as-kill): Use it.
24105
24106 * register.el (copy-to-register, append-to-register)
24107 (prepend-to-register): Use filter-buffer-substring.
24108
24109 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
24110
24111 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
24112 (gud-filter-pending-text): Move in front of gdb.
24113 (gud-overlay-arrow-position): New variable.
24114 (gud-sentinel, gud-display-line): Use it in place of
24115 overlay-arrow-position.
24116
24117 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
24118
24119 * progmodes/fortran.el (fortran-if-indent): Doc fix.
24120 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
24121 (fortran-font-lock-keywords-4): New variable.
24122 (fortran-blocks-re, fortran-end-block-re)
24123 (fortran-start-block-re): New constants, for hideshow.
24124 (hs-special-modes-alist): Add a Fortran entry.
24125 (fortran-mode-map): Bind fortran-end-of-block,
24126 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
24127 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
24128 (fortran-looking-at-if-then, fortran-end-of-block)
24129 (fortran-beginning-of-block): New functions, for hideshow.
24130
24131 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
24132 Doc fix. Tweak regexp.
24133 (f90-beginning-of-block): Push mark first.
24134
24135 2005-03-29 Jay Belanger <belanger@truman.edu>
24136
24137 * calc/calc.el: Update copyright date.
24138 (calc-version): Increase to 2.1.
24139 (calc-version-date): Remove.
24140
24141 * calc/calc-help.el: Update copyright date.
24142 (calc-full-help): Remove reference to calc-version-date.
24143 Update copyright date.
24144
24145 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
24146
24147 * vc.el (vc-do-command): Use a pipe for async processes, so password
24148 prompts don't show up at places where the user can't reply.
24149
24150 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
24151
24152 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
24153 on the file name we pass to the inferior shell.
24154
24155 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
24156
24157 * progmodes/which-func.el (which-function): Be robust in the face of an
24158 imenu--make-index-alist failure.
24159
24160 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
24161
24162 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
24163
24164 * progmodes/python.el (python-preoutput-filter): Fix last change.
24165
24166 2005-03-29 Lute Kamstra <lute@gnu.org>
24167
24168 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
24169 functions and compiled macros.
24170 (debug-convert-byte-code): Handle macros too.
24171 (debug-on-entry-1): Don't signal an error when trying to clear a
24172 function that is not set to debug on entry.
24173
24174 2005-03-29 Jay Belanger <belanger@truman.edu>
24175
24176 * calc/calc-lang.el: Add functions to math-function-table
24177 properties of tex and math.
24178
24179 2005-03-29 Kenichi Handa <handa@m17n.org>
24180
24181 * ps-mule.el (ps-mule-plot-string): Translate characters by
24182 ps-print-translation-table.
24183 (ps-mule-begin-job): Call find-charset-region/string with
24184 ps-print-translation-table.
24185 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
24186
24187 * ps-print.el (ps-print-translation-table): New variable.
24188 (ps-plot-region): Translate characters by ps-print-translation-table.
24189
24190 2005-03-29 Juri Linkov <juri@jurta.org>
24191
24192 * simple.el (next-error-highlight-timer): New variable.
24193
24194 * progmodes/compile.el (compilation-goto-locus):
24195 Use `next-error-highlight-timer' instead of `sit-for'.
24196
24197 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
24198
24199 * mail/supercite.el (sc-mail-field): Use assoc-string.
24200 (sc-get-address): Simplify regexps.
24201
24202 * files.el (minibuffer-with-setup-hook): New macro.
24203 (find-file-read-args): Use it to avoid let-binding
24204 minibuffer-with-setup-hook (which breaks turning on/off
24205 file-name-shadow-mode while in the prompt).
24206
24207 * complete.el (PC-read-include-file-name-internal):
24208 Use test-completion.
24209
24210 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
24211
24212 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
24213
24214 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
24215
24216 * window.el (window-buffer-height): Use count-screen-lines.
24217
24218 * progmodes/python.el (python-preoutput-leftover): New var.
24219 (python-preoutput-filter): Use it.
24220 (python-send-receive): Loop until all the result has been received.
24221
24222 2005-03-28 Juri Linkov <juri@jurta.org>
24223
24224 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
24225
24226 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
24227 "Recover Crashed Session".
24228 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
24229 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
24230 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
24231 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
24232 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
24233 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
24234 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
24235 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
24236
24237 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
24238 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
24239 Ediff Sessions", "Toggle use of separate control buffer frame",
24240 "Use separate frame for Ediff control buffer".
24241
24242 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
24243 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
24244 "Rename Bookmark", "Delete Bookmark".
24245
24246 * info.el (Info-mode-menu): Remove ellipsis from "Index".
24247 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
24248 Add `:active Info-index-alternatives' to "Next Matching Item".
24249
24250 * wdired.el (wdired-change-to-wdired-mode):
24251 Mention `wdired-abort-changes' key in the initial message.
24252
24253 * international/mule.el (auto-coding-alist): Associate non-ascii
24254 image filename extensions with `no-conversion'.
24255
24256 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
24257
24258 * international/iso-acc.el:
24259 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
24260
24261 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
24262
24263 * textmodes/sgml-mode.el (html-mode): Doc update.
24264
24265 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
24266
24267 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
24268
24269 * term.el (term-move-columns): Fix face after extending a line.
24270 (term-insert-spaces): Likewise.
24271 (term-reset-terminal): Fix off by one error.
24272
24273 2005-03-26 Eli Zaretskii <eliz@gnu.org>
24274
24275 * international/mule.el (auto-coding-alist): Add .xpi files.
24276
24277 * files.el (auto-mode-alist): Add .xpi files.
24278
24279 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
24280
24281 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
24282
24283 2005-03-26 Eli Zaretskii <eliz@gnu.org>
24284
24285 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
24286
24287 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
24288
24289 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
24290 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
24291
24292 * calendar/cal-move.el (calendar-beginning-of-year): Move the
24293 cursor to Jan 1 when needed.
24294 (calendar-end-of-year): Fix -/+ typo.
24295 Reported by Chong Yidong <cyd@stupidchicken.com>.
24296
24297 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
24298
24299 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
24300
24301 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
24302 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
24303
24304 2005-03-25 Richard M. Stallman <rms@gnu.org>
24305
24306 * filesets.el (filesets-init): Add autoload.
24307
24308 * mail/mailalias.el (mail-directory): Doc fix.
24309
24310 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
24311
24312 * mail/mailalias.el (mail-directory-process): Do nothing if
24313 mail-directory-process is an atom.
24314 (mail-get-names): Ignore mail-directory-names if it is an atom.
24315 (mail-directory-process defvar): Doc fix.
24316 (mail-names): Doc fix.
24317
24318 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
24319
24320 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
24321
24322 2005-03-26 Kenichi Handa <handa@m17n.org>
24323
24324 * international/mule-util.el (detect-coding-with-priority):
24325 Call update-coding-systems-internal before detect-coding-region.
24326
24327 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
24328
24329 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
24330 (gdb-frames-mode-map): Add follow-link property.
24331
24332 2005-03-25 Jay Belanger <belanger@truman.edu>
24333
24334 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
24335 for variables.
24336
24337 2005-03-25 Juri Linkov <juri@jurta.org>
24338
24339 * image-mode.el: Optimize image filename extension regexps in
24340 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
24341 in `auto-mode-alist'.
24342 (image-mode): Add `image-toggle-display-text' to local hook
24343 `change-major-mode-hook'. Display the image as an image by
24344 default. Set `cursor-type' and `truncate-lines' if the image
24345 is already displayed. Take into account the current mode (image
24346 or text) in message.
24347 (image-minor-mode): New minor mode.
24348 (image-mode-maybe, image-toggle-display-text): New functions.
24349 (image-toggle-display): Use called-interactively-p.
24350 Let-bind `inhibit-read-only' to t.
24351
24352 * image-mode.el (image-minor-mode): Set `cursor-type' and
24353 `truncate-lines' if the image is already displayed. Add turning
24354 image-minor-mode off to `change-major-mode-hook'. Add message.
24355 Call `image-toggle-display-text' after turning image-minor-mode off.
24356
24357 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
24358
24359 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
24360 Terminal.app, use utf-8.
24361 (set-display-table-and-terminal-coding-system): Add coding-system arg.
24362 (set-locale-environment): Use it.
24363
24364 * term/xterm.el: Undo last change, better done in mule-cmds.el.
24365
24366 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
24367
24368 * progmodes/python.el (python-close-block-statement-p)
24369 (python-outdent-p, python-current-defun): Use symbol-end.
24370
24371 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
24372
24373 * files.el (save-some-buffers): Doc fix.
24374
24375 2005-03-25 Werner Lemberg <wl@gnu.org>
24376
24377 * complete.el, thumbs.el: Replace `legal' with `valid'.
24378 * calendar/calendar.el: Replace `legal' with `valid'.
24379 * emacs-lisp/advice.el: Replace `legal' with `valid'.
24380 * mail/supercite.el: Replace `legal' with `valid'.
24381 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
24382 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
24383 Replace `legal' with `valid'.
24384 * textmodes/reftex-vars.el, textmodes/reftex.el:
24385 Replace `legal' with `valid'.
24386
24387 2005-03-25 Werner Lemberg <wl@gnu.org>
24388
24389 * calc/calc-forms.el, calc/calc-sel.el
24390 * midnight.el, vc-cvs.el
24391 * emacs-lisp/cl-macs.el
24392 * emulation/vip.el
24393 * eshell/esh-io.el, eshell/esh-var.el
24394 * mail/supercite.el
24395 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
24396 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
24397 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
24398 * progmodes/sh-script.el, progmodes/xscheme.el
24399 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
24400 * textmodes/reftex-index.el, textmodes/reftex-parse.el
24401 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
24402 * textmodes/reftex.el, textmodes/org.el:
24403 Replace `illegal' with `invalid'.
24404
24405 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24406
24407 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
24408 (flymake-find-buildfile, flymake-find-possible-master-files)
24409 (flymake-check-include, flymake-parse-line): Replace loops over the
24410 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
24411
24412 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
24413 Substitute file-name-as-directory in the rest of the file.
24414 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
24415 (flymake-replace-region): Remove unused arg `buffer'.
24416 (flymake-check-patch-master-file-buffer): Update calls to it.
24417 (flymake-add-err-info): Remove unused var `count'.
24418 (flymake-mode): Use define-minor-mode.
24419
24420 * progmodes/flymake.el: Use with-current-buffer.
24421 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
24422 flymake-replace-regexp-in-string, flymake-line-beginning-position)
24423 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
24424 Avoid testing for `xemacs'.
24425 (flymake-nop): Move.
24426 (flymake-region-has-flymake-overlays): Return the computed value.
24427 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
24428 Remove unused var `endline'.
24429 (flymake-get-line-count): Remove unused function.
24430 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
24431
24432 * emulation/vi.el:
24433 * generic.el:
24434 * hilit-chg.el (global-highlight-changes):
24435 * hi-lock.el (hi-lock-mode):
24436 * follow.el: find-file-hooks -> find-file-hook.
24437
24438 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
24439
24440 2005-03-24 Juri Linkov <juri@jurta.org>
24441
24442 * dired.el (dired-mode-map): Add menu item "Compare directories"
24443 for dired-compare-directories.
24444
24445 * dired-aux.el (dired-compare-directories): Add autoload cookie.
24446 Doc fix. Replace `read-file-name' with `read-directory-name'.
24447
24448 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24449
24450 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
24451
24452 2005-03-24 Jay Belanger <belanger@truman.edu>
24453
24454 * calc/calc-embed.el (calc-embedded-mode-change): Save all
24455 relevant mode settings in calc-embedded-original-modes when modes
24456 are permanently changed.
24457
24458 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24459
24460 * autoinsert.el: find-file-hooks -> find-file-hook.
24461
24462 2005-03-24 Lute Kamstra <lute@gnu.org>
24463
24464 * generic.el (generic-font-lock-defaults): Make it obsolete.
24465 (generic-font-lock-keywords): New variable to replace
24466 generic-font-lock-defaults.
24467 (generic-mode-set-font-lock): Delete it.
24468 (generic-mode-internal): Don't call generic-mode-set-font-lock.
24469 (generic-bracket-support): Add docstring.
24470
24471 * generic-x.el: Rename generic-font-lock-defaults to
24472 generic-font-lock-keywords throughout.
24473 (mailagent-rules-setup-function): Delete it.
24474 (mailagent-rules-generic-mode): Use anonymous function instead.
24475 (show-tabs-generic-mode-font-lock-defaults-1)
24476 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
24477 Quote faces.
24478 (show-tabs-tab-face, show-tabs-space-face): Specify background,
24479 not foreground.
24480
24481 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
24482 Recognize define-generic-mode.
24483
24484 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
24485
24486 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
24487 if there's no completion table.
24488
24489 2005-03-23 Miles Bader <miles@gnu.org>
24490
24491 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
24492 Remove tty-specific variants, as they're no longer needed.
24493
24494 2005-03-23 Lute Kamstra <lute@gnu.org>
24495
24496 * generic-x.el: Code cleanup: make args constant whenever possible.
24497 (installshield-statement-keyword-list)
24498 (installshield-system-functions-list)
24499 (installshield-system-variables-list, installshield-types-list)
24500 (installshield-funarg-constants-list): Make them constants.
24501
24502 * generic.el (generic-make-keywords-list): Add autoload cookie.
24503
24504 * calendar/time-date.el: Add comment on time value formats.
24505 Don't require parse-time.
24506 (with-decoded-time-value): New macro.
24507 (encode-time-value): New function.
24508 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
24509 (days-to-time): Return a valid time value when arg is huge.
24510 (time-since): Use time-subtract.
24511 (time-to-number-of-days): Use time-to-seconds.
24512
24513 2005-03-23 David Ponce <david@dponce.com>
24514
24515 * recentf.el (recentf-keep): New option.
24516 (recentf-menu-action): Default to `find-file'.
24517 (recentf-keep-non-readable-files-flag)
24518 (recentf-keep-non-readable-files-p)
24519 (recentf-file-readable-p, recentf-find-file)
24520 (recentf-cleanup-remote): Remove.
24521 (recentf-include-p): More robust.
24522 (recentf-keep-p): New function.
24523 (recentf-remove-if-non-kept): Rename from
24524 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
24525 All callers updated.
24526 (recentf-menu-items-for-commands): Fix help string.
24527 (recentf-track-closed-file): Update. Doc fix.
24528 (recentf-cleanup): Update. Count removed files. Doc fix.
24529
24530 2005-03-23 Kim F. Storm <storm@cua.dk>
24531
24532 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
24533 Don't inherit from fringe face (now happens automatically).
24534
24535 2005-03-22 Kim F. Storm <storm@cua.dk>
24536
24537 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
24538 position values.
24539
24540 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
24541
24542 * menu-bar.el (showhide-date-time): Remove.
24543 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
24544 (menu-bar-make-mm-toggle): Simplify.
24545
24546 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
24547
24548 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
24549 Accept qualified variable and function names.
24550
24551 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
24552
24553 * bindings.el (completion-ignored-extensions):
24554 Remove ".lis" for `vax-vms'.
24555
24556 2005-03-22 Andreas Schwab <schwab@suse.de>
24557
24558 * generic-x.el: Revert last change.
24559 * ldefs-boot.el: Update.
24560
24561 2005-03-22 Jay Belanger <belanger@truman.edu>
24562
24563 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
24564 (calc-embedded-save-original-modes)
24565 (calc-embedded-restore-original-modes): New functions.
24566 (calc-do-embedded): Save original modes when entering embedded mode
24567 and restore when leaving embedded mode.
24568 (calc-embedded-modes-change): Change the value of
24569 calc-embedded-original-modes to reflect permanent changes.
24570
24571 2005-03-22 Lute Kamstra <lute@gnu.org>
24572
24573 * generic-x.el: Require generic again.
24574
24575 2005-03-22 Miles Bader <miles@gnu.org>
24576
24577 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
24578 Tweak details to look good on both ttys and bitmap displays, light
24579 or dark background, etc.
24580
24581 2005-03-21 Kim F. Storm <storm@cua.dk>
24582
24583 * tooltip.el (tooltip-show-help-function): Check car and cdr of
24584 mouse position.
24585
24586 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
24587
24588 * icomplete.el: Don't forcibly turn on the mode upon load.
24589 (icomplete-mode): Use define-minor-mode.
24590 (icomplete-eoinput): Default to nil.
24591 (icomplete-minibuffer-setup): Remove autoload.
24592 (icomplete-tidy): Simplify.
24593 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
24594 in the initial state or if the user has modified the field.
24595 Fix handling of icomplete-max-delay-chars.
24596 Remove code that handles the oddball case where
24597 minibuffer-completion-table is an integer.
24598 Wrap icomplete-completions in while-no-input in case building
24599 completions takes more time than expected.
24600 (icomplete-completions): Simplify.
24601
24602 2005-03-21 Richard M. Stallman <rms@gnu.org>
24603
24604 * jka-compr.el (jka-compr-really-do-compress):
24605 Make variable buffer-local.
24606
24607 * image-mode.el: Handle .xpm files too.
24608 (image-toggle-display): Preserve modification flag.
24609
24610 * help.el (where-is): Don't mention aliases with no key bindings.
24611
24612 2005-03-21 Lute Kamstra <lute@gnu.org>
24613
24614 * generic.el: Fix commentary section. Don't require cl for
24615 compilation.
24616 (generic-mode-list): Add autoload cookie.
24617 (generic-use-find-file-hook, generic-lines-to-scan)
24618 (generic-find-file-regexp, generic-ignore-files-regexp)
24619 (generic-mode, generic-mode-find-file-hook)
24620 (generic-mode-ini-file-find-file-hook): Fix docstrings.
24621 (define-generic-mode): Make it a defmacro. Fix docstring.
24622 (generic-mode-internal): Code cleanup. Add autoload cookie.
24623 (generic-mode-set-comments): Code cleanup.
24624 * generic-x.el: Don't prevent compilation. Don't require generic.
24625 Follow coding conventions. Minor code cleanup.
24626 (etc-fstab-generic-mode): Add some keywords.
24627 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
24628 define-generic-mode like a function declaration.
24629
24630 2005-03-21 Jay Belanger <belanger@truman.edu>
24631
24632 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
24633 changing modes.
24634
24635 2005-03-21 Sam Steingold <sds@gnu.org>
24636
24637 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
24638
24639 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
24640
24641 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
24642 Add underscore to "f$ lexicals" regexp.
24643
24644 2005-03-20 Juri Linkov <juri@jurta.org>
24645
24646 * subr.el (progress-reporter-do-update): When `min-value' is equal
24647 to `max-value', set `percentage' to 0 and prevent division by zero.
24648
24649 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
24650
24651 Sync with Tramp 2.0.48.
24652
24653 * net/tramp.el (all): Change all addresses to .gnu.org.
24654 (tramp-append-tramp-buffers): New defun.
24655 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
24656 Catch `dont-send' signal.
24657 (tramp-set-auto-save-file-modes): Set always permissions, because
24658 there might be an old auto-saved file belonging to another
24659 original file. This could be a security threat. Reported by
24660 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
24661 Check for Emacs 21.3.50 removed.
24662
24663 * net/tramp-smb.el (all): Remove debug construct for
24664 `with-parsed-tramp-file-name'.
24665 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
24666 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
24667 No error message if DIRECTORY or FILENAME doesn't exist.
24668 (tramp-smb-open-connection): Check existence of
24669 `tramp-smb-program'.
24670
24671 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
24672
24673 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
24674 Properly handle the case where the `m' or `s' command's argument is not
24675 yet terminated.
24676 (perl-indent-new-calculate): New function.
24677 (perl-indent-line): Use it.
24678
24679 2005-03-20 Miles Bader <miles@gnu.org>
24680
24681 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
24682 in text-mode too. Change to new face names.
24683 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
24684 Add `:weight bold' attribute.
24685 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
24686
24687 2005-03-19 Juri Linkov <juri@jurta.org>
24688
24689 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
24690
24691 * international/mule.el (auto-coding-alist): Sync with
24692 `auto-mode-alist' by adding upper case archive file extensions
24693 and adding ear/war to jar extension.
24694
24695 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
24696
24697 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
24698 running, restart it.
24699
24700 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
24701
24702 * finder.el (finder-current-item): Throw an error on an empty line.
24703
24704 * man.el (Man-follow-manual-reference): If current-word returns
24705 nil, use "".
24706
24707 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
24708
24709 * simple.el (goto-line): Doc fix.
24710
24711 2005-03-19 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
24712
24713 * files.el (save-buffer): Doc fix.
24714
24715 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
24716
24717 * recentf.el (recentf-cleanup-remote): New variable.
24718 (recentf-cleanup): Use it to conditionally check availability of
24719 remote files.
24720
24721 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
24722
24723 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
24724 function names.
24725
24726 2005-03-19 Eli Zaretskii <eliz@gnu.org>
24727
24728 * language/thai-word.el: New file.
24729
24730 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
24731
24732 * files.el (backup-buffer): If the file's directory is not
24733 writable, use copy instead of move to backup the file.
24734
24735 2005-03-19 Eli Zaretskii <eliz@gnu.org>
24736
24737 * obsolete/keyswap.el: Moved to obsolete/ from term/.
24738
24739 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
24740
24741 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
24742 Use functionp instead of symbolp and fboundp. Reported by Drkm
24743 <darkman_spam@yahoo.fr>.
24744 (ps-print-version): New version 6.6.6.
24745
24746 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
24747
24748 * textmodes/table.el (table--line-column-position): New idiom.
24749 (table--row-column-insertion-point-p): New function to test
24750 validity of row and column insertion operation at a location.
24751 (table-global-menu, table-cell-menu): Use above functions for
24752 deterministic test operation.
24753 (table--editable-cell-p): Behave in deterministic fashion.
24754
24755 2005-03-18 Juri Linkov <juri@jurta.org>
24756
24757 * isearch.el (isearch-lazy-highlight-new-loop):
24758 Make arguments beg and end optional.
24759 (isearch-update): Remove optional arguments nil from
24760 isearch-lazy-highlight-new-loop.
24761 (isearch-lazy-highlight-search): Let-bind case-fold-search to
24762 isearch-lazy-highlight-case-fold-search instead of
24763 isearch-case-fold-search, and let-bind isearch-regexp to
24764 isearch-lazy-highlight-regexp.
24765 Use isearch-lazy-highlight-last-string instead of isearch-string.
24766
24767 * replace.el (perform-replace): Remove bindings of global
24768 variables isearch-string, isearch-regexp, isearch-case-fold-search.
24769 Add three new arguments to `replace-highlight'.
24770 (replace-highlight): Add arguments string, regexp, case-fold.
24771 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
24772 to allow isearch-lazy-highlight-new-loop to use these values
24773 to set corresponding isearch-lazy-highlight-* internal
24774 variables whose values lazy highlighting will use regardless of
24775 changes to global variables isearch-string, isearch-regexp,
24776 isearch-case-fold-search during lazy highlighting loop.
24777 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
24778 to `lazy-highlight-cleanup'.
24779
24780 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
24781 (ispell-highlight-face): Set default face to `isearch' when
24782 lazy highlighting is enabled.
24783 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
24784 priority to 1. Add lazy highlighting.
24785 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
24786 from `isearch-dehighlight'.
24787
24788 2005-03-18 David Ponce <david@dponce.com>
24789
24790 * files.el (hack-local-variables): Do a case-insensitive search
24791 for End.
24792
24793 2005-03-18 Juri Linkov <juri@jurta.org>
24794
24795 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
24796 `isearch-lazy-highlight-cleanup', add alias to old name and
24797 declare obsolete. Add release numbers to other obsolete vars.
24798 (isearch-done, isearch-lazy-highlight-new-loop):
24799 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
24800 (lazy-highlight-cleanup) <variable>: Doc fix.
24801 (isearch-lazy-highlight-update): Rename obsolete
24802 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
24803
24804 2005-03-18 Kenichi Handa <handa@m17n.org>
24805
24806 * language/thai-util.el: Fix categorization of Thai characters in
24807 thai-category-table.
24808 (thai-composition-pattern): Adjust it for the above change.
24809 (thai-self-insert-command, thai-compose-syllable): New functions.
24810 (thai-compose-region): Use thai-compose-syllable.
24811 (thai-compose-string): Likewise.
24812 (thai-composition-function): Likewise.
24813 (thai-auto-composition): New function.
24814 (thai-auto-composition-mode): New minor mode.
24815
24816 * language/thai.el: Fix patterns to be registered in
24817 composition-function-table.
24818
24819 * international/quail.el (quail-input-method): Locally bind
24820 inhibit-modification-hooks to t.
24821
24822 2005-03-17 Richard M. Stallman <rms@gnu.org>
24823
24824 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
24825 (perl-mode): Use run-mode-hooks.
24826
24827 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
24828 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
24829 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
24830
24831 * mail/sendmail.el (sendmail-send-it): Reenable the code
24832 to compute resend-to-address and use it.
24833
24834 * tar-mode.el (tar-mode): Turn off undo unconditionally.
24835
24836 * image-mode.el: New file.
24837
24838 * image.el (insert-sliced-image): Add autoload cookie.
24839
24840 * font-lock.el (font-lock-lines-before): New user option.
24841 (font-lock-after-change-function): Obey it.
24842
24843 * bindings.el (esc-map): Make M-g a prefix.
24844 Bind M-g g and M-g M-g to goto-line.
24845
24846 * faces.el (face-id): Doc fix.
24847
24848 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
24849
24850 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
24851 (rmail-show-message): Use rmail-unknown-mail-followup-to.
24852 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
24853
24854 * mail/sendmail.el (mail-yank-ignored-headers)
24855 (mail-font-lock-keywords, mail-mode-fill-paragraph):
24856 Add Mail-Followup-To and Mail-Reply-To headers.
24857 (mail-citation-hook): Add autoload cookie.
24858 (mail-mode): Doc fix.
24859 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
24860 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
24861 (mail-mode-fill-paragraph): Handle those headers.
24862 (mail-mailing-lists): New variable.
24863 (mail-mail-reply-to, mail-mail-followup-to): New functions.
24864
24865 2005-03-17 Juri Linkov <juri@jurta.org>
24866
24867 * isearch.el (isearch-fallback): Check for `(car previous)'
24868 before calling `isearch-other-end-state'.
24869
24870 2005-03-17 Kim F. Storm <storm@cua.dk>
24871
24872 * simple.el (move-beginning-of-line): Move to beginning of buffer
24873 line, as well as beginning of screen line.
24874
24875 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
24876
24877 * calendar/diary-lib.el (mark-diary-entries): Use new optional
24878 argument REDRAW rather than calendar-redrawing variable.
24879 * calendar/calendar.el (calendar-redrawing): Delete.
24880 (redraw-calendar): Do not bind calendar-redrawing.
24881
24882 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
24883
24884 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
24885 diary-file buffer.
24886
24887 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
24888
24889 * help.el (describe-mode): Allow a :minor-mode-function property to
24890 specify a different minor mode toggle function than the variable.
24891 * simple.el (auto-fill-function):
24892 * subr.el (add-minor-mode): Use it.
24893
24894 2005-03-16 Kenichi Handa <handa@m17n.org>
24895
24896 * language/ethio-util.el (sera-being-called-by-w3): New variable.
24897 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
24898 (ethio-fidel-to-sera-buffer): Likewise.
24899
24900 2005-03-16 Juri Linkov <juri@jurta.org>
24901
24902 * emacs-lisp/find-func.el (find-function-regexp):
24903 Add defun-emitting macro `menu-bar-make-toggle'.
24904
24905 * isearch.el: Put `isearch-scroll' property to
24906 `split-window-horizontally'.
24907
24908 * info.el: Update error messages for `debug-ignored-errors'.
24909 (Info-isearch-search): Doc fix.
24910 (Info-find-node): Move up code to go into info buffer before
24911 recording the node to the history.
24912 (Info-fontify-node): Fontify titles only if the next line
24913 has two or more `*', `=', `-', `.'.
24914 Display "go to this node" for empty (match-string 3).
24915
24916 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24917
24918 * term/mac-win.el: Add mouse pointer shape constants.
24919
24920 2005-03-15 Kim F. Storm <storm@cua.dk>
24921
24922 * simple.el (move-beginning-of-line): Use vertical-motion.
24923
24924 2005-03-15 Juri Linkov <juri@jurta.org>
24925
24926 * isearch.el (isearch-error): New variable.
24927 (isearch-invalid-regexp, isearch-within-brackets): Remove.
24928 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
24929 (isearch-within-brackets-state): Remove.
24930 (isearch-case-fold-search-state, isearch-pop-fun-state):
24931 Decrease frame index.
24932 (isearch-mode, isearch-top-state, isearch-push-state)
24933 (isearch-edit-string, isearch-abort, isearch-search-and-update)
24934 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
24935 (isearch-search, isearch-lazy-highlight-new-loop):
24936 Replace `isearch-invalid-regexp' with `isearch-error'.
24937 Remove `isearch-within-brackets'.
24938 (isearch-search): Add `search-failed' handler to `condition-case'.
24939 (isearch-lazy-highlight-search): Add `condition-case' to catch
24940 errors and allow `isearch-lazy-highlight-update' to try
24941 highlighting from the beginning of the window.
24942 (isearch-repeat): Move up code to set isearch-wrapped to t
24943 before calling isearch-wrap-function.
24944
24945 * info.el (Info-isearch-initial-node): New internal variable.
24946 (Info-search): Signal an error in isearch mode when search leaves
24947 the initial node. Signal an error when `bound' is non-nil and
24948 nothing was found in the current subfile.
24949 (Info-isearch-search): Remove `condition-case'.
24950 (Info-isearch-wrap): Don't wrap when search failed during leaving
24951 the initial node. If `Info-isearch-search' is nil, wrap around
24952 the current node.
24953 (Info-isearch-start): New fun.
24954 (Info-mode): Add buffer-local hook `Info-isearch-start' to
24955 `isearch-mode-hook'.
24956
24957 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24958
24959 * simple.el (normal-erase-is-backspace): Set default to t if
24960 running on Mac.
24961
24962 * term/mac-win.el (function-key-map): Sync with x-win.el.
24963
24964 2005-03-15 Kenichi Handa <handa@m17n.org>
24965
24966 * international/mule-cmds.el (locale-language-names): Modify the
24967 format of elements and add more entries.
24968 (locale-preferred-coding-systems): Add more entries.
24969 (set-locale-environment): Adjust for the change of
24970 locale-language-names.
24971
24972 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
24973
24974 * pcvs.el (smerge-ediff): Remove bogus autoload.
24975
24976 2005-03-14 Lute Kamstra <lute@gnu.org>
24977
24978 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
24979 Ignore a `*' at the beginning of a line.
24980
24981 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
24982 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
24983 subr.el.
24984 (dont-compile, eval-when-compile, eval-and-compile): Use declare
24985 to specify indentation.
24986
24987 * generic.el (define-generic-mode): Let generic-mode-list be a
24988 list of strings; test membership with equal.
24989
24990 2005-03-14 Kim F. Storm <storm@cua.dk>
24991
24992 * simple.el (next-line, previous-line): Add optional try-vscroll
24993 arg to recognize interactive use. Pass it on to line-move.
24994 (line-move): Don't perform auto-window-vscroll when defining or
24995 executing keyboard macro to ensure consistent behavior.
24996
24997 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
24998
24999 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
25000
25001 2005-03-13 Lute Kamstra <lute@gnu.org>
25002
25003 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
25004 debugger-setup-buffer so that backtrace marks the frames set to
25005 debug-on-exit and we don't have to do it manually. Set an extra
25006 debug-on-exit for macro's.
25007 (debugger-setup-buffer): Don't mark the top frame manually.
25008
25009 2005-03-12 Lute Kamstra <lute@gnu.org>
25010
25011 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
25012 lisp-indent-function throughout.
25013 (with-no-warnings): Set lisp-indent-function property.
25014
25015 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
25016
25017 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
25018 Add entry for backslash.
25019
25020 2005-03-12 Juri Linkov <juri@jurta.org>
25021
25022 * info.el (Info-search): Four fixes for backward search.
25023
25024 2005-03-11 Jay Belanger <belanger@truman.edu>
25025
25026 * calc/calc.el (calc-language-alist): New variable.
25027 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
25028 (calc-embedded-find-modes): Use calc-language-alist instead of
25029 calc-embedded-language-alist.
25030
25031 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
25032
25033 * calendar/calendar.el (calendar-redrawing): New internal
25034 variable.
25035 (redraw-calendar): Remove bogus save-excursion from previous
25036 change. Bind calendar-redrawing to t for mark-diary-entries.
25037 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
25038 calendar if that is why we were called.
25039
25040 2005-03-11 Kenichi Handa <handa@m17n.org>
25041
25042 * international/mule.el (make-coding-system): Set property
25043 coding-system-define-form to nil.
25044 (define-coding-system-alias): Likewise.
25045
25046 2005-03-11 Kenichi Handa <handa@m17n.org>
25047
25048 These changes are suggested by Dave Love <fx@gnu.org>.
25049
25050 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
25051 coding: tag.
25052 (adaptive-fill-regexp): Add more bullets.
25053 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
25054 regexps.
25055
25056 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
25057
25058 * help.el (describe-mode): Properly handle non-trivial lighters.
25059 Don't ignore minor modes that are not listed in minor-mode-list.
25060
25061 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
25062 feature ON when the user requests to turn it OFF.
25063
25064 2005-03-10 Lute Kamstra <lute@gnu.org>
25065
25066 * emacs-lisp/debug.el (debug-entry-code): Delete it.
25067 (implement-debug-on-entry): New function to replace debug-entry-code.
25068 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
25069 second argument as the 2005-03-07 change makes it obsolete.
25070 (debug-on-entry, cancel-debug-on-entry): Update call to
25071 debug-on-entry-1.
25072 (debug, debugger-setup-buffer): Comment update.
25073 (debugger-frame-number): Update to work with implement-debug-on-entry.
25074
25075 2005-03-10 Jay Belanger <belanger@truman.edu>
25076
25077 * calc/calc-embed.el (math-ms-args): Declare it.
25078 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
25079 math-ms-args.
25080 (calc-embedded-subst): Use math-multi-subst-rec to substitute
25081 variables.
25082
25083 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
25084
25085 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
25086 Use message-box.
25087
25088 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
25089 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
25090 (tooltip-gud-tips): Simplify.
25091 (tooltip-gud-tips-p): Remove superfluous :set.
25092 (tooltip-gud-modes): Add fortran-mode.
25093 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
25094
25095 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
25096
25097 2005-03-09 Kim F. Storm <storm@cua.dk>
25098
25099 * play/animate.el (animate-place-char): Use forward-line instead
25100 of next-line to improve performance.
25101
25102 2005-03-09 Simon Josefsson <jas@extundo.com>
25103
25104 * net/browse-url.el (browse-url-default-browser): Doc fix.
25105
25106 2005-03-09 Miles Bader <miles@gnu.org>
25107
25108 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
25109 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
25110
25111 2005-03-09 Kenichi Handa <handa@m17n.org>
25112
25113 * international/latin-1.el: Set case and syntax for 255 only if
25114 set-case-syntax-set-multibyte is nil.
25115
25116 * textmodes/ispell.el (ispell-insert-word): New function.
25117 (ispell-word): Use ispell-insert-word to insert a new word.
25118 (ispell-process-line): Likewise.
25119 (ispell-complete-word): Likewise.
25120
25121 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
25122
25123 * calendar/calendar.el (redraw-calendar): Preserve point.
25124 Reported by Matt Hodges <MPHodges@member.fsf.org>.
25125 (calendar-week-start-day): Move after definition of
25126 redraw-calendar. Delete buffer test, since redraw-calendar has
25127 that now.
25128
25129 * calendar/diary-lib.el (mark-diary-entries): Only call
25130 redraw-calendar in the first of any recursive calls.
25131 Reported by Alan Shutko <ats@acm.org>.
25132
25133 2005-03-08 Juri Linkov <juri@jurta.org>
25134
25135 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
25136 (html-horizontal-rule, html-line, html-image, html-checkboxes)
25137 (html-radio-buttons): Add a space before the trailing `/>' where
25138 sgml-xml-mode is non-nil.
25139 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
25140 the subsequent tag of the empty XML tag.
25141 (html-href-anchor): Don't set initial input to "http:".
25142 (html-image): Ask for the image URL and set point inside alt="".
25143 (html-name-anchor): Duplicate the name in the `id' attribute when
25144 sgml-xml-mode is non-nil.
25145 (html-paragraph): Remove \n before <p>.
25146 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
25147 instead of `checked' when sgml-xml-mode is non-nil.
25148
25149 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
25150 Remove 1 space before #RRGGBB to not truncate it on terminal
25151 windows w/o fringes. Remove 1 space between bg and fg examples
25152 to get more space.
25153 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
25154 avoid byte-compile warnings.
25155
25156 * image-file.el (image-file-handler): Put `safe-magic' property to
25157 `image-file-handler'.
25158
25159 * info.el (Info-isearch-search): Emulate word search in
25160 isearching through multiple Info nodes with Info-search.
25161 (Info-isearch-wrap): Allow isearch-word.
25162
25163 2005-03-08 Lute Kamstra <lute@gnu.org>
25164
25165 * emacs-lisp/debug.el (debugger-step-through): Make sure that
25166 stepping into the debugger's code is not possible.
25167 (debugger-jumping-flag): Docstring update.
25168
25169 2005-03-08 Jay Belanger <belanger@truman.edu>
25170
25171 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
25172 embedded mode begins.
25173 (calc-embedded-language-alist): New variable.
25174 (calc-embedded-find-modes): Use calc-embedded-language-alist to
25175 set default language mode.
25176
25177 2005-03-08 Kenichi Handa <handa@m17n.org>
25178
25179 * international/ccl.el (define-ccl-program): Fix docstring about
25180 extra 256 bytes assured for the output buffer.
25181
25182 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
25183 Fix BUFFER_MAGNIFICATION to 2.
25184 (ccl-encode-mule-utf-16be-with-signature): Likewise.
25185
25186 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
25187
25188 * align.el (align-rules-list): Added an alignment rule for CSS
25189 declarations (applies to css-mode and html-mode buffers).
25190
25191 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
25192
25193 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
25194
25195 2005-03-07 Kim F. Storm <storm@cua.dk>
25196
25197 * simple.el (move-beginning-of-line): New command.
25198
25199 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
25200
25201 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
25202
25203 * emulation/cua-base.el: Put CUA move property on move-end-of-line
25204 and move-beginning-of-line.
25205
25206 * apropos.el (apropos-print): Omit command from M-x ... RET.
25207
25208 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
25209
25210 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
25211 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
25212
25213 2005-03-06 Richard M. Stallman <rms@gnu.org>
25214
25215 * bindings.el (esc-map): Bind M-g to goto-line.
25216
25217 * facemenu.el (global-map): Bind M-o, not M-g.
25218
25219 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
25220
25221 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
25222 "Open Directory" as for "Open File".
25223
25224 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
25225
25226 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
25227 (push-mark-command): Run activate-mark-hook.
25228
25229 2005-03-06 Richard M. Stallman <rms@gnu.org>
25230
25231 * help-mode.el (help-mode-finish): Don't alter the element
25232 in view-return-to-alist if there already is one.
25233
25234 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
25235 make sure the current buffer is the expected one.
25236
25237 * novice.el (disabled-command-function): Output in *Disabled Command*.
25238 Explicitly ignore non-keyboard events, and explicitly handle C-g.
25239
25240 * textmodes/flyspell.el (flyspell-large-region):
25241 Pass args differently for aspell.
25242
25243 * files.el (mode-require-final-newline): Doc fix.
25244
25245 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
25246
25247 * progmodes/which-func.el (which-function):
25248 Specify NOERROR when calling imenu--make-index-alist.
25249
25250 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
25251
25252 * simple.el (normal-erase-is-backspace): Define default value.
25253
25254 * custom.el (custom-theme-set-variables): Remove unused var
25255 `immediate'.
25256 (custom-reevaluate-setting): Simple function to handle variables
25257 that are defined before their default value can really be
25258 computed.
25259
25260 * startup.el (command-line): Use it for temporary-file-directory,
25261 small-emporary-file-directory, auto-save-file-name-transforms,
25262 blink-cursor-mode, and normal-erase-is-backspace.
25263
25264 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
25265 progress, even with buggy anchored keywords.
25266
25267 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
25268
25269 * simple.el (goto-line): Remove unbalanced final parenthesis.
25270
25271 2005-03-05 Richard M. Stallman <rms@gnu.org>
25272
25273 * simple.el (goto-line): Use a number at point as the default.
25274 With C-u as arg, switch buffers.
25275
25276 2005-03-05 Juri Linkov <juri@jurta.org>
25277
25278 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
25279 with `no-blinking-cursor'.
25280
25281 * startup.el (no-blinking-cursor): New defvar.
25282 (command-line): Add `--no-blinking-cursor' to longopts.
25283 Set `no-blinking-cursor' to t for command line arguments
25284 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
25285 with `no-blinking-cursor' in the condition for calling
25286 `blink-cursor-mode'.
25287
25288 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
25289
25290 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
25291 (menu-bar-options-save): Add blink-cursor-mode.
25292 (menu-bar-options-menu): Add blink-cursor-mode.
25293
25294 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
25295
25296 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
25297 (icalendar-export-file, icalendar-export-region)
25298 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
25299 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
25300
25301 2005-03-04 Lute Kamstra <lute@gnu.org>
25302
25303 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
25304 (debug-function-list): Ditto.
25305
25306 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
25307
25308 * textmodes/texinfmt.el (texinfo-append-refill):
25309 Redefine the types of line to which @refill
25310 is not appended by replacing a search for `@refill\\|@bye' with
25311 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
25312 itemize@refill' bug and the unfilled long lines bug.
25313 (texinfmt-version): Update number and date.
25314
25315 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
25316
25317 * international/code-pages.el (windows-1250, windows-125[2-8])
25318 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
25319
25320 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
25321
25322 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
25323 bound yet.
25324
25325 2005-03-02 Romain Francoise <romain@orebokech.com>
25326
25327 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
25328 buffer after removing limits.
25329 (ibuffer-pop-filter): Ditto.
25330 Update copyright.
25331
25332 2005-03-02 Miles Bader <miles@gnu.org>
25333
25334 * button.el (make-text-button): If the user doesn't specify a
25335 type, use the default. Rewrite to use `add-text-properties' and
25336 plist functions.
25337
25338 2005-03-01 Lute Kamstra <lute@gnu.org>
25339
25340 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
25341 (debugger-jumping-flag): New var.
25342 (debug-entry-code): Use it.
25343 (debugger-jump): Use debugger-jumping-flag and add
25344 debugger-reenable to post-command-hook.
25345 (debugger-reenable): Use debugger-jumping-flag and remove itself
25346 from post-command-hook.
25347 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
25348 debugger-reenable.
25349
25350 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
25351
25352 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
25353 inclusion of "itemize\\|", which may be unnecessary, is certainly
25354 inelegant, and stops refilling in itemize lists when formatting
25355 Japanese Texinfo files to Info.
25356 Update copyright to 2005.
25357
25358 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
25359
25360 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
25361 of an error if GDB can't find the source file.
25362
25363 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
25364
25365 * calendar/calendar.el (redraw-calendar): Work from any buffer,
25366 not just the calendar.
25367
25368 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
25369 first.
25370 (diary-redraw-calendar): New function.
25371 (make-diary-entry): Add diary-redraw-calendar to local
25372 write-contents-functions. Turn off selective display before
25373 inserting in diary.
25374
25375 2005-03-01 Kim F. Storm <storm@cua.dk>
25376
25377 * emacs-lisp/copyright.el (copyright-fix-years): New command.
25378
25379 2005-03-01 Lute Kamstra <lute@gnu.org>
25380
25381 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
25382 that debug-entry-code can be safely removed from a function while
25383 this code is being evaluated. Revert the 2005-02-27 change as the
25384 new implementation no longer requires it. Make sure that a
25385 function body containing just a string is not mistaken for a docstring.
25386 (debug): Skip one more frame in case of debug on entry.
25387 (debugger-setup-buffer): Delete one more frame line in case of
25388 debug on entry.
25389 (debugger-frame-number): Update to use the new text introduced by
25390 the 1999-11-03 change. Skip one more frame in case of debug on entry.
25391
25392 2005-02-28 Kim F. Storm <storm@cua.dk>
25393
25394 * double.el (double-translate-key): Call force-window-update after
25395 read-event to avoid crash in redisplay.
25396
25397 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
25398
25399 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
25400 (debug): Use it. Move the inhibit-trace earlier.
25401 (debug-entry-code): New const.
25402 (debug-on-entry-1): Use it.
25403
25404 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
25405
25406 * international/utf-16.el (ccl-encode-mule-utf-16le):
25407 Fix BUFFER_MAGNIFICATION to 2.
25408 (ccl-encode-mule-utf-16be): Likewise.
25409
25410 2005-02-28 Kenichi Handa <handa@m17n.org>
25411
25412 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
25413 Fix BUFFER_MAGNIFICATION to 4.
25414 (ccl-encode-mule-utf-16be-with-signature): Likewise.
25415
25416 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
25417
25418 * speedbar.el (speedbar-update-flag): Doc fix.
25419 (speedbar-show-info-under-mouse): Give set-mouse-position the right
25420 argument.
25421
25422 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
25423
25424 * reveal.el (reveal-post-command): Don't try to reveal overlays which
25425 have a non-nil `invisible' property but are actually visible.
25426
25427 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
25428 for perldoc sections.
25429 (perl-outline-regexp, perl-outline-level): New var and function.
25430 (perl-mode): Use them.
25431
25432 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
25433
25434 * calendar/diary-lib.el (diary-remind): Discard any mark portion
25435 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
25436
25437 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
25438
25439 * cus-edit.el: Comment change.
25440 (custom-buffer-create-internal): Slightly reword text at top of
25441 Custom buffers. Mention there that saving an option edits the
25442 init file. Add link to Emacs manual node on `custom-file'.
25443 (custom-magic-alist): Rewrite individual State messages to use
25444 capitalized keywords. Doc fix.
25445
25446 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
25447
25448 * calendar/calendar.el (calendar-buffer): Move above
25449 calendar-week-start-day.
25450 (calendar-week-start-day): Doc fix. Add :set function.
25451 (calendar-minimum-window-height): New variable.
25452 (generate-calendar-window): Only resize window if selected-window
25453 is displaying the calendar buffer. Use new variable
25454 calendar-minimum-window-height.
25455 (generate-calendar): Reword error message.
25456 (calendar-mode-map): Bind DEL to scroll-other-window-down.
25457
25458 2005-02-27 Andreas Schwab <schwab@suse.de>
25459
25460 * vc.el (vc-do-command): Don't run command asynchronously when
25461 operating in a remote directory.
25462
25463 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
25464 change from sync with Tramp 2.0.47.
25465
25466 2005-02-27 Richard M. Stallman <rms@gnu.org>
25467
25468 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
25469
25470 * textmodes/flyspell.el (flyspell-mode-on):
25471 Call ispell-change-dictionary only if necessary.
25472
25473 * emacs-lisp/re-builder.el (regexp-builder): New function.
25474
25475 * register.el (describe-register-1): Explicitly handle
25476 yank-excluded-properties = t.
25477
25478 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
25479 (custom-magic-alist): Change the status descriptions again.
25480 (face widget-type): Total rewrite based on `restricted-sexp'
25481 to eliminate the confusing double hiding levels.
25482
25483 * emacs-lisp/debug.el (debug-on-entry-1):
25484 If function body is empty, add nil as body form.
25485
25486 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
25487
25488 * emacs-lisp/trace.el (inhibit-trace): New var.
25489 (trace-make-advice): Use it.
25490
25491 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
25492
25493 2005-02-26 Kim F. Storm <storm@cua.dk>
25494
25495 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
25496 (mouse-on-link-p, mouse-drag-region-1): Use it.
25497
25498 2005-02-25 Lute Kamstra <lute@gnu.org>
25499
25500 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
25501
25502 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
25503
25504 * frame.el (blink-cursor-mode): Add :group keyword.
25505
25506 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
25507
25508 * calendar/icalendar.el (icalendar--decode-isodatetime):
25509 New optional argument DAY-SHIFT.
25510 (icalendar-export-region): Fix coding-system-for-write.
25511 (icalendar--convert-ical-to-diary): Shift end-day of all-day
25512 events by one.
25513
25514 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
25515
25516 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
25517
25518 2005-02-24 Kim F. Storm <storm@cua.dk>
25519
25520 * international/iso-acc.el (iso-accents-compose): Fix crash
25521 during redisplay. Call force-window-update after read-event
25522 and delete-region to signal that window is not accurate.
25523
25524 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
25525
25526 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
25527 Remove unused and inexistent var `inhibit-trace'.
25528 (debugger-mode): Use run-mode-hooks.
25529 (debugger-list-functions): Add buttons; setup xref stack.
25530
25531 2005-02-23 Richard M. Stallman <rms@gnu.org>
25532
25533 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
25534 appointment says it was explicitly made.
25535 (appt-add): Set the 3rd element.
25536 (appt-make-list): Preserve explicit appointments.
25537
25538 * subr.el (find-tag-default): Catch errors in forward-sexp.
25539
25540 2005-02-23 Juri Linkov <juri@jurta.org>
25541
25542 * info.el (Info-isearch-search): New defcustom.
25543 (Info-isearch-search): Call the default isearch function
25544 when Info-isearch-search is nil.
25545 (Info-isearch-wrap): Use variable Info-isearch-search.
25546
25547 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
25548
25549 * cus-edit.el: Comment change.
25550
25551 2005-02-22 Kim F. Storm <storm@cua.dk>
25552
25553 * progmodes/hideif.el (hide-ifdef-use-define-alist):
25554 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
25555
25556 2005-02-22 Simon Josefsson <jas@extundo.com>
25557
25558 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
25559 New variable.
25560 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
25561 Oskarsson" <myrkraverk@users.sourceforget.net>.
25562
25563 2005-02-22 Kim F. Storm <storm@cua.dk>
25564
25565 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
25566 check that window of that event is the selected window.
25567 (mouse-drag-region-1): Compare mouse event window to selected
25568 window before setting point.
25569
25570 * tooltip.el (tooltip-show-help-function): Pass event to
25571 mouse-on-link-p so it can check selected window.
25572
25573 2005-02-22 Kenichi Handa <handa@m17n.org>
25574
25575 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
25576 (ps-mule-show-warning): New function.
25577 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
25578 characters are found.
25579
25580 * ps-print.el (ps-header-footer-string): Return a list of header
25581 and footer strings.
25582
25583 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
25584
25585 * pcvs.el (cvs-retrieve-revision): Fix thinko.
25586
25587 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
25588
25589 * frame.el (blink-cursor-mode): Use define-minor-mode.
25590
25591 * term/mac-win.el (function-key-map): Use char-names more consistently.
25592 (file-name-coding-system): Only set it for MacOS-9. The other case is
25593 already handled in mule-cmds.el (where it also works when mac-win.el
25594 is not used).
25595
25596 2005-02-21 Kenichi Handa <handa@m17n.org>
25597
25598 * international/mule.el (ctext-pre-write-conversion): Always use
25599 " *code-converting-work*" buffer for work.
25600
25601 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
25602
25603 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
25604
25605 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
25606
25607 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
25608
25609 * ses.el (undo-more): Restore defadvice, but only the part that
25610 allows changes outside the restricted area of the buffer.
25611
25612 2005-02-20 Kim F. Storm <storm@cua.dk>
25613
25614 * simple.el (line-move): Add fourth optional arg try-vscroll which
25615 must be set to perform auto-window-vscroll.
25616 When moving backwards and doing auto-window-vscroll, automatically
25617 vscroll to the last part of lines which are taller than the window.
25618 (next-line, previous-line): Set try-vscroll arg on line-move.
25619
25620 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
25621
25622 * replace.el (query-replace, query-replace-regexp)
25623 (replace-string, replace-regexp): When operating on region, make
25624 the minibuffer prompt say so.
25625
25626 * isearch.el (isearch-forward): Document isearch-query-replace and
25627 isearch-query-replace-regexp keybindings.
25628
25629 2005-02-19 Jay Belanger <belanger@truman.edu>
25630
25631 * calc/calc-aent.el (math-read-token): Add local variable.
25632
25633 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
25634 (calc-edit-top): Move declaration to earlier in file.
25635 (calc-edit-macro-repeats): Add local variables.
25636
25637 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
25638 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
25639 calcFunc-tanh.
25640 Adjust integration rule for calcFunc-tan.
25641
25642 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
25643
25644 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
25645 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
25646 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
25647 (viper-skip-separators): Bug fix.
25648 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
25649 particular major mode.
25650 (viper-del-backward-char-in-replace): Don't put deleted char on the
25651 kill ring.
25652
25653 * viper-ex.el (viper-color-display-p): New function.
25654 (viper-has-face-support-p): Use viper-color-display-p.
25655
25656 * viper-keym.el (viper-gnus-modifier-map): New keymap.
25657
25658 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
25659
25660 * viper-util.el (viper-glob-unix-files): Fix shell status check.
25661 (viper-file-remote-p): Make equivalent to file-remote-p.
25662
25663 * viper.el (viper-major-mode-modifier-list):
25664 Use viper-gnus-modifier-map.
25665
25666 2005-02-19 David Kastrup <dak@gnu.org>
25667
25668 * subr.el (subregexp-context-p): Fix garbled doc string by adding
25669 quoting.
25670
25671 2005-02-19 Jay Belanger <belanger@truman.edu>
25672
25673 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
25674 Remove extra definitions.
25675 (calc-coth): New function.
25676 (calcFunc-cot): Fix `let'.
25677
25678 2005-02-19 Eli Zaretskii <eliz@gnu.org>
25679
25680 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
25681 the reasons we use "type pc" in these faces.
25682
25683 * button.el (button): Ditto.
25684
25685 2005-02-19 Michael Mauger <mmaug@yahoo.com>
25686
25687 * replace.el (query-replace-read-from): Set the value of
25688 query-replace-from-history-variable to handle the case of an empty
25689 string entered to accept the suggested default.
25690
25691 * net/tramp.el (tramp-file-name-for-operation):
25692 Use dired-call-process instead of dired-call-process-command.
25693
25694 2005-02-19 Jay Belanger <belanger@truman.edu>
25695
25696 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
25697 (math-div-non-trig): New variables.
25698 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
25699 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
25700 (math-combine-prod, math-div-symb-fancy): Add simplifications for
25701 trig expressions.
25702
25703 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
25704
25705 * progmodes/gdb-ui.el (gdb-var-update-handler)
25706 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
25707 for watch expressions,
25708 (gdb-var-create-handler): Don't set speedbar-update-flag.
25709 (gdb-post-prompt): Simplify test for speedbar.
25710
25711 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
25712
25713 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
25714 (ediff-set-fine-overlays-in-one-buffer, ediff-goto-word): Make sure
25715 we use the syntax table of the correct buffer.
25716 (ediff-same-file-contents, ediff-same-contents): Enhancements thanks to
25717 Felix Gatzemeier.
25718
25719 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
25720 (ediff-file-remote-p): Make synonymous with file-remote-p.
25721 In all deffaces ediff-*-face-*, use min-colors.
25722
25723 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
25724 ediff-recurse-to-subdirectories.
25725 (ediff-mark-if-equal): Check that the arguments are strings, use
25726 ediff-same-contents (after to Felix Gatzemeier).
25727
25728 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
25729 nil.
25730
25731 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
25732
25733 * log-view.el (log-view-message-re): Fix up Subversion regexp.
25734
25735 2005-02-18 David Kastrup <dak@gnu.org>
25736
25737 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
25738 use `mark-active' when defined.
25739
25740 2005-02-18 Kenichi Handa <handa@m17n.org>
25741
25742 * ps-print.el (ps-font-info-database): New entry
25743 ZapfChancery-MediumItalic with correct font name. Fix font name
25744 of the entry Zapf-Chancery-MediumItalic.
25745
25746 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
25747
25748 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
25749
25750 2005-02-16 Kim F. Storm <storm@cua.dk>
25751
25752 * ido.el (ido-fallback-command): Pass user input to fallback command.
25753
25754 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
25755
25756 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
25757 (gdb-find-file-hook): Add server prefix.
25758
25759 2005-02-16 Richard M. Stallman <rms@gnu.org>
25760
25761 * replace.el (perform-replace): Pass new args to replace-highlight.
25762 (replace-highlight): Take region args,
25763 and pass them to isearch-lazy-highlight-new-loop.
25764
25765 * novice.el (disabled-command-hook): Autoload the defalias
25766 and the make-obsolete-variable call.
25767
25768 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
25769
25770 * isearch.el (isearch-lazy-highlight-start-limit)
25771 (isearch-lazy-highlight-end-limit): New variables limit
25772 the region for highlighting.
25773 (isearch-lazy-highlight-new-loop): New args BEG and END.
25774 (isearch-lazy-highlight-search): Use the new vars.
25775 (isearch-lazy-highlight-update): Likewise.
25776
25777 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
25778
25779 * cus-start.el (all): Use default-boundp.
25780
25781 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
25782
25783 * menu-bar.el (menu-bar-select-frame): Handle current frame.
25784
25785 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
25786
25787 * autorevert.el (auto-revert-stop-on-user-input)
25788 (auto-revert-verbose): Doc fixes.
25789
25790 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
25791
25792 * international/mule-cmds.el (set-locale-environment): Remove call
25793 to set-selection-coding-system on Windows.
25794
25795 2005-02-15 Jay Belanger <belanger@truman.edu>
25796
25797 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
25798 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
25799 calcFunc-coth.
25800 (math-simplify-sqrt): Add simplifications.
25801
25802 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
25803 to list.
25804
25805 * calc/calc-ext.el: Add functions to autoloads.
25806
25807 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
25808 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
25809 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
25810 (math-csc-raw, math-cot-raw): New functions.
25811
25812 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
25813
25814 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
25815 the variable name in a message.
25816
25817 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
25818 calcFunc-csc, calcFunc-cot.
25819
25820 * calc/calcalg2.el: Add derivative and integration rules for
25821 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
25822 calcFunc-csch, calcFunc-coth.
25823 (math-do-integral-methods): Add to checks for when to use
25824 substitutions.
25825
25826 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
25827
25828 2005-02-15 Lute Kamstra <lute@gnu.org>
25829
25830 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
25831 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
25832 <monnier@iro.umontreal.ca>
25833 (lisp-outline-level): Improve efficiency. Suggested by David
25834 Kastrup <dak@gnu.org>.
25835
25836 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
25837
25838 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
25839 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
25840 (gdb-set-gud-minor-mode-existing-buffers): New functions.
25841 (gdb-find-file-hook): New hook. Add it to find-file-hook.
25842 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
25843
25844 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
25845
25846 * cus-start.el (all): Comment change.
25847
25848 2005-02-14 Lute Kamstra <lute@gnu.org>
25849
25850 * cus-start.el (all): Check if symbol is void.
25851
25852 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
25853
25854 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
25855 optional argument to \cite.
25856
25857 2005-02-14 Richard M. Stallman <rms@gnu.org>
25858
25859 * cus-edit.el (custom-buffer-create-internal): Update help message.
25860 (custom-magic-alist): Update help messages.
25861
25862 * cus-start.el (all): Allow a var to specify a standard value.
25863
25864 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
25865
25866 * custom.el (custom-theme-set-variables): Handle variable aliases.
25867
25868 * frame.el (blink-cursor-timer): Doc fix.
25869 (blink-cursor): Make it an alias for `blink-cursor-mode' and
25870 declare obsolete.
25871 (blink-cursor-mode): Define with defcustom and use correct
25872 standard expression in that defcustom.
25873 * startup.el (command-line): Adapt to above changes in frame.el.
25874
25875 2005-02-11 Lute Kamstra <lute@gnu.org>
25876
25877 * apropos.el (apropos-score-doc): Prevent division by zero.
25878
25879 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
25880
25881 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
25882 (icalendar--get-event-property-attributes)
25883 (icalendar--get-event-properties)
25884 (icalendar--datetime-to-diary-date): New functions.
25885 (icalendar--split-value): Doc fix.
25886 (icalendar--datetime-to-noneuropean-date)
25887 (icalendar--datetime-to-european-date): New optional argument
25888 SEPARATOR. Return result as a string instead of a list.
25889 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
25890 (icalendar--convert-string-for-export): Rename arg S to STRING.
25891 (icalendar-export-region): Doc fix. Change name of error buffer.
25892 Save output buffer.
25893 (icalendar-import-file): Add blank at end of prompt.
25894 (icalendar-import-buffer): Doc fix. Do not switch to error
25895 buffer. Indicate status in return value.
25896 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
25897 buffer. Save output buffer. Handle exception from recurrence
25898 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
25899 events. Fix problems with weekly all-day events.
25900
25901 2005-02-10 Richard M. Stallman <rms@gnu.org>
25902
25903 * simple.el (eval-expression-print-format):
25904 Avoid warning about edebug-active.
25905
25906 * help.el (help-for-help-internal): Rename from help-for-help.
25907 (help-for-help): Define with defalias.
25908
25909 * font-core.el (font-lock-default-function): Use with-no-warnings.
25910
25911 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
25912
25913 * custom.el (defface): Doc fix.
25914
25915 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
25916
25917 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
25918 width 0" to prevent word wrapping problems.
25919
25920 2005-02-09 Kim F. Storm <storm@cua.dk>
25921
25922 * ido.el (ido-file-extensions-order): New defcustom.
25923 (ido-file-extension-lessp, ido-file-extension-aux)
25924 (ido-file-extension-order): New advanced file ordering.
25925 (ido-file-lessp): New simple file ordering.
25926 (ido-sort-list): Remove.
25927 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
25928 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
25929
25930 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
25931
25932 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
25933 that some versions of grep produce.
25934 (grep-mode-font-lock-keywords): Likewise.
25935
25936 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
25937
25938 * progmodes/gdb-ui.el (gdb-location-list): New variable.
25939 (gdb-cdir): Delete.
25940 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
25941 (gdb-source-info): Treat case when source file is in another
25942 directory properly.
25943 (gdb-get-location): New function.
25944
25945 2005-02-07 Jay Belanger <belanger@truman.edu>
25946
25947 * calc/calc-prog.el (calc-write-parse-table-part)
25948 (calc-fix-token-name): Fix a check for language type.
25949
25950 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
25951
25952 2005-02-07 Andre Spiegel <spiegel@gnu.org>
25953
25954 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
25955 as directory not writable.
25956
25957 2005-02-07 Kim F. Storm <storm@cua.dk>
25958
25959 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
25960 (cua--standard-movement-commands): Remove list.
25961 Instead, set CUA property value to move for movement commands.
25962 (cua-movement-commands): Remove. Users must set CUA prop instead.
25963 (cua--pre-command-handler): Check CUA property.
25964 (cua--init-keymaps): Don't remap undo commands.
25965 (cua-mode): Don't call cua--rectangle-on-off.
25966
25967 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
25968 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
25969 (cua--rect-undo-set-point): New var.
25970 (cua--rectangle-undo-boundary): Setup undo apply entry.
25971 (cua--rect-undo-handler): New function for rectangle undo.
25972 (cua--rect-start-position, cua--rect-end-position): Add.
25973 (cua--rectangle-post-command): Call cua--rectangle-set-corners
25974 for restored rectangle. Set point if cua--rect-undo-set-point.
25975
25976 2005-02-06 Jay Belanger <belanger@truman.edu>
25977
25978 * calc/calc-lang.el (calc-tex-language): Display more information
25979 in messages.
25980
25981 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
25982 in TeX mode.
25983
25984 2005-02-06 Richard M. Stallman <rms@gnu.org>
25985
25986 * emacs-lisp/lisp.el (buffer-end): Doc fix.
25987
25988 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
25989
25990 * net/ldap.el (ldap-search-internal): Support attributes with
25991 optional descriptions separated by a semi-colon, as in
25992 "userCertificate;binary".
25993
25994 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
25995
25996 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
25997 isn't a cons (i.e. the version is 0).
25998
25999 2005-02-05 Eli Zaretskii <eliz@gnu.org>
26000
26001 * help.el (help-for-help): Doc fix.
26002
26003 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
26004
26005 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
26006 GDB-Windows on the menu-bar as this works better.
26007
26008 2005-02-04 Jay Belanger <belanger@truman.edu>
26009
26010 * calc/calc-embed.el (calc-embedded-update): Don't put in
26011 unnecessary newlines. Adjust the end of formula marker.
26012
26013 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
26014 (math-latex-parse-two-args): New function.
26015
26016 2005-02-03 Lute Kamstra <lute@gnu.org>
26017
26018 * help-fns.el (help-with-tutorial): Make sure that users cannot
26019 remove the entire text of the tutorial by means of `undo'.
26020
26021 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
26022
26023 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
26024 in recent changes, where the ispell process was repeatedly
26025 killed & restarted.
26026
26027 * international/mule-cmds.el (set-locale-environment): Set file-name
26028 coding system to utf-8 on Darwin systems.
26029 (set-default-coding-systems): Don't set default-file-name-coding-system
26030 on Darwin systems.
26031
26032 2005-02-03 Richard M. Stallman <rms@gnu.org>
26033
26034 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
26035
26036 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
26037
26038 * faces.el (list-faces-display): Add optional argument.
26039
26040 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
26041
26042 * font-core.el (font-lock-default-function): Handle the rare case where
26043 only font-lock-keywords is set.
26044
26045 2005-02-02 Kenichi Handa <handa@m17n.org>
26046
26047 * international/characters.el: Cancel previous change for
26048 I-WITH-DOT-ABOVE and DOTLESS-i.
26049
26050 * international/latin-5.el: Cancel previous change.
26051
26052 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
26053
26054 * progmodes/gud.el: Correction to syntax in gud-menu-map.
26055
26056 2005-02-02 Kenichi Handa <handa@m17n.org>
26057
26058 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
26059 DOTLESS-i.
26060
26061 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
26062 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
26063
26064 * case-table.el (get-upcase-table): New function.
26065 (copy-case-table): Copy upcaes table too if non-nil.
26066 (set-case-syntax-delims): Maintain upcase table too.
26067 (set-case-syntax-pair): Likewise.
26068 (set-upcase-syntax, set-downcase-syntax): New functions.
26069 (set-case-syntax): Maintain upcase table too.
26070
26071 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
26072
26073 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
26074
26075 * progmodes/gud.el (gud-goto-info): New function.
26076 (gud-tool-bar-map): Use correct icon.
26077
26078 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
26079
26080 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
26081 When delegating, order args in the funcall correctly.
26082
26083 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
26084
26085 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
26086
26087 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
26088
26089 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
26090 buffer not visiting a file.
26091
26092 2005-01-31 Jay Belanger <belanger@truman.edu>
26093
26094 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
26095 bound on the line with the formula.
26096
26097 2005-01-31 Kim F. Storm <storm@cua.dk>
26098
26099 * ses.el (ses-create-cell-variable-range)
26100 (ses-destroy-cell-variable-range, ses-reset-header-string)
26101 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
26102 (ses-insert-row): Fix format of apply undo entries.
26103
26104 2005-01-31 Jay Belanger <belanger@truman.edu>
26105
26106 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
26107 parts.
26108
26109 * calc/calc-embed.el (calc-embedded-open-formula)
26110 (calc-embedded-close-formula): Ignore matrix environments.
26111
26112 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
26113 TeX mode.
26114
26115 * calc/calc-lang.el (math-function-table, math-oper-table)
26116 (math-variable-table): Adjust the LaTeX portions.
26117
26118 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
26119 (math-latex-ignore-words): New constant.
26120
26121 2005-01-31 Richard M. Stallman <rms@gnu.org>
26122
26123 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
26124 (ispell-local-dictionary): Doc fix.
26125 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
26126 Don't reinitialize at run time. Don't defcustom.
26127 All uses changed to append ispell-local-dictionary-alist,
26128 or check it first.
26129 (ispell-current-dictionary): New variable for dictionary in use.
26130 (ispell-dictionary): Now used only for global default.
26131 (ispell-start-process): Set ispell-current-dictionary,
26132 not ispell-dictionary.
26133 (ispell-change-dictionary): Use this only for setting
26134 user preferences.
26135 (ispell-internal-change-dictionary): New function
26136 to change the current dictionary in use.
26137 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
26138 Use ispell-current-dictionary.
26139 Handle ispell-local-dictionary-overridden.
26140 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
26141
26142 2005-01-31 Jay Belanger <belanger@truman.edu>
26143
26144 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
26145
26146 * calc/calc-ext.el: Add calc-latex-language to autoloads.
26147 (calc-mode-map): Add calc-latex-language.
26148
26149 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
26150 (math-latex-print-frac): New functions.
26151 (math-oper-table, math-function-table, math-variable-table)
26152 (math-complex-format, math-input-filter): Add latex properties.
26153 (calc-set-language): Set math-expr-special-function-mapping.
26154
26155 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
26156 (calc-write-parse-table-part): Add LaTeX support.
26157
26158 * calc/calc.el (calc-language): Adjust docstring.
26159 (calc-set-mode-line): Add LaTeX support.
26160 (math-expr-special-function-mapping): New variable.
26161 (math-tex-ignore-words): Add to list.
26162
26163 * calc/calccomp.el (math-compose-expr, math-compose-rows):
26164 Add LaTeX support.
26165 (math-compose-expr): Add support for special functions.
26166
26167 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
26168
26169 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
26170
26171 * progmodes/gdb-ui.el (gdb-memory-address)
26172 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
26173 (gdb-memory-mode-map, gdb-memory-format-keymap)
26174 (gdb-memory-format-menu, gdb-memory-unit-keymap)
26175 (gdb-memory-unit-menu): New variables for a buffer
26176 that lets the user examine program memory.
26177 (gdb-memory-set-address, gdb-memory-set-repeat-count)
26178 (gdb-memory-format-binary, gdb-memory-format-octal)
26179 (gdb-memory-format-unsigned, gdb-memory-format-signed)
26180 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
26181 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
26182 (gdb-memory-unit-word, gdb-memory-unit-halfword)
26183 (gdb-memory-unit-byte, gdb-memory-unit-menu)
26184 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
26185 (gdb-memory-mode, gdb-memory-buffer-name)
26186 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
26187 New functions for above buffer.
26188
26189 2005-01-30 Richard M. Stallman <rms@gnu.org>
26190
26191 * cus-edit.el (custom-bury-buffer): Function deleted.
26192 (custom-buffer-done-function): Option deleted.
26193 (custom-buffer-done-kill): New replacement option.
26194 (Custom-buffer-done): Call quit-window.
26195 (custom-buffer-create-internal): Update for above changes.
26196
26197 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
26198
26199 * simple.el (undo-ask-before-discard): New var.
26200 (undo-outer-limit-truncate): Implement it.
26201 (undo-extra-outer-limit): Doc update.
26202
26203 2005-01-29 Richard M. Stallman <rms@gnu.org>
26204
26205 * ses.el (undo-more): Delete defadvice.
26206 (ses-begin-change): Doc fix.
26207
26208 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
26209 instead of rebinding C-x u and C-_.
26210
26211 * files.el (normal-backup-enable-predicate): Return nil for files
26212 in /tmp, regardless of temporary-file-directory.
26213
26214 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
26215
26216 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
26217 (open-rectangle, delete-whitespace-rectangle-line)
26218 (clear-rectangle-line): If FILL, pass t instead of FILL
26219 for move-to-column's 2nd arg.
26220
26221 * simple.el (undo): Fix the test for continuing a series of undos.
26222 (undo-more): Set pending-undo-list to t when we reach end.
26223 (pending-undo-list): Move up defvar.
26224
26225 * wid-edit.el (widget-button-click):
26226 Shorten the range of the track-mouse binding.
26227
26228 * comint.el (comint-insert-input): Undo previous changes;
26229 use last-input-event in interactive spec.
26230
26231 2005-01-29 Eli Zaretskii <eliz@gnu.org>
26232
26233 * progmodes/compile.el (compilation-start): Bind buffer-read-only
26234 to nil before invoking call-process. Reset buffer's modified flag
26235 after fontifying it in the no-async branch.
26236
26237 * wid-edit.el (widget-specify-button): If mouse pointer shape
26238 cannot be changed, use mouse face instead.
26239
26240 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
26241
26242 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
26243 (gdb-goto-breakpoint): Make breakpoint handling work on template
26244 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
26245 (gdb-assembler-custom): Update to recognize breakpoint information
26246 added on 2005-01-19.
26247
26248 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
26249
26250 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
26251 (dsssl-mode): Use define-derived-mode.
26252 (scheme-mode-initialize): Remove.
26253 (scheme-mode): Use run-mode-hooks.
26254
26255 * cus-edit.el (customize-group-other-window)
26256 (custom-buffer-create-other-window): Don't override special-display-*.
26257 (custom-mode-map): Make it dense.
26258
26259 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
26260 sets the default value.
26261
26262 2005-01-28 Eli Zaretskii <eliz@gnu.org>
26263
26264 * descr-text.el: Add more keywords.
26265
26266 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
26267
26268 * speedbar.el: Avoid unnecessary use of locate-library.
26269
26270 * international/mule-cmds.el (standard-display-european-internal):
26271 Don't fiddle with latin-1 non-break space any more since it's now
26272 special cased in the C code.
26273 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
26274
26275 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
26276
26277 * cus-start.el (all): Add `undo-outer-limit'.
26278
26279 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
26280
26281 * textmodes/bibtex.el (bibtex-format-entry):
26282 Use `bibtex-empty-field-re' only on the text of fields, not on entire
26283 field lines.
26284 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
26285 not on part of a buffer.
26286
26287 2005-01-25 Lute Kamstra <lute@gnu.org>
26288
26289 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
26290 nonempty field text strings like "{letters\\macro{}more letters}".
26291 Clarify docstring.
26292 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
26293 (bibtex-entry-offset, bibtex-parse-association)
26294 (bibtex-parse-field-name): Fix typos in docstrings.
26295 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
26296
26297 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
26298
26299 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
26300 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
26301 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
26302 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
26303
26304 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
26305 isearch minor mode.
26306
26307 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
26308
26309 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
26310
26311 2005-01-24 Lute Kamstra <lute@gnu.org>
26312
26313 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
26314 CASECHARS and NOT-CASECHARS regular expressions of the
26315 "nederlands" and "nederlands8" dictionaries to prevent a "Range
26316 striding over charsets" error.
26317
26318 2005-01-24 Jay Belanger <belanger@truman.edu>
26319
26320 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
26321 display variable name.
26322
26323 2005-01-24 Kenichi Handa <handa@m17n.org>
26324
26325 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
26326 Fix setting of the element of encoded-kbd-iso2022-invocations.
26327
26328 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
26329
26330 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
26331 (gdb-threads-select): Change to also accept mouse events.
26332 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
26333 (gdb-threads-mouse-select): Delete.
26334
26335 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
26336
26337 * files.el (insert-directory): Take care of empty directory,
26338 listed without -a switch.
26339
26340 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
26341
26342 * textmodes/refill.el (refill-post-command-function):
26343 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
26344 to the list of functions that we should be careful not to undo.
26345 (refill-late-fill-paragraph-function): Remove.
26346 (refill-saved-state): New var.
26347 (refill-mode): Use it to save fill-paragraph-function.
26348 Save also the value of auto-fill-function.
26349
26350 * term/w32-win.el: Simplify code.
26351
26352 2005-01-23 Kim F. Storm <storm@cua.dk>
26353
26354 * simple.el (line-move): Adapt to new return value from
26355 pos-visible-in-window-p.
26356
26357 * simple.el (line-move): Fix last change. Check partial
26358 visibility at point rather than at window-start.
26359
26360 2005-01-22 Jason Rumney <jasonr@gnu.org>
26361
26362 * term/w32-win.el (xw-defined-colors): Remove debug-message.
26363
26364 2005-01-22 David Kastrup <dak@gnu.org>
26365
26366 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
26367
26368 2005-01-22 Eli Zaretskii <eliz@gnu.org>
26369
26370 * type-break.el (type-break-mode): Add a test for
26371 type-break-file-name being non-nil.
26372
26373 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
26374
26375 * net/eudc.el (top level): Call (message "") via progn, so that
26376 eudc-options-file is loaded.
26377
26378 2005-01-22 Kim F. Storm <storm@cua.dk>
26379
26380 * simple.el (line-move-1): Rename from line-move.
26381 (line-move): New function that adjusts vscroll for partially
26382 visible rows, and calls line-move-1 otherwise.
26383
26384 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
26385
26386 * pcomplete.el: Define pcomplete-read-event instead of read-event,
26387 since it's not a complete read-event implementation
26388
26389 2005-01-20 Jay Belanger <belanger@truman.edu>
26390
26391 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
26392 for called function.
26393
26394 2005-01-20 Steven Tamm <steventamm@mac.com>
26395
26396 * term/mac-win.el (process-connection-type): Remove.
26397 Controlled now by s/darwin.h:PTY_ITERATION.
26398
26399 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
26400
26401 * window.el (handle-select-window): Don't switch window when we're
26402 in the minibuffer.
26403
26404 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
26405
26406 * subr.el (dotimes-with-progress-reporter): New macro.
26407
26408 * ses.el (ses-dotimes-msg): Remove macro.
26409 Use `dotimes-with-progress-reporter' instead.
26410
26411 2005-01-19 Steven Tamm <steventamm@mac.com>
26412
26413 * term/mac-win.el (process-connection-type): Use new
26414 operating-system-release variable to use ptys on Darwin 7 (OS X
26415 10.3) when using carbon build.
26416
26417 2005-01-19 Jay Belanger <belanger@truman.edu>
26418
26419 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
26420 flags if the last command was a tab or M-tab.
26421
26422 * calc/calc-prog.el (calc-user-define-edit): Put original formula
26423 in formula editing buffer.
26424
26425 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
26426
26427 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
26428 breakpoint image symbol in margin.
26429
26430 2005-01-19 Jay Belanger <belanger@truman.edu>
26431
26432 * calc/calc-prog.el (calc-execute-kbd-macro):
26433 Ignore calc-keep-arg-flag.
26434
26435 2005-01-19 Kenichi Handa <handa@m17n.org>
26436
26437 * textmodes/ispell.el (ispell-looking-at): New function.
26438 (ispell-process-line): Use ispell-looking-at to compare the ispell
26439 output and the buffer contents.
26440
26441 2005-01-18 Jay Belanger <belanger@truman.edu>
26442
26443 * calc/calc.el (calc-display-raw): Fix docstring.
26444
26445 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
26446
26447 * simple.el (blink-matching-open): Strip extra info from syntax.
26448
26449 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
26450 funny chars in the end-of-here-doc marker.
26451
26452 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
26453
26454 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
26455 that enable/disabled state of breakpoints is shown correctly in
26456 fringe and on ttys.
26457 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
26458 Add breakpoint information as text properties.
26459 (gdb-mouse-toggle-breakpoint):
26460 Rename to gdb-mouse-set-clear-breakpoint.
26461 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
26462 breakpoints in the margin.
26463 (gdb-remove-strings): Simplify.
26464
26465 2005-01-17 Jay Belanger <belanger@truman.edu>
26466
26467 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
26468 erasing buffer.
26469
26470 2005-01-17 Richard M. Stallman <rms@gnu.org>
26471
26472 * progmodes/grep.el (grep-find): Copy from `grep' the condition
26473 for calling grep-compute-defaults.
26474
26475 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
26476 if buffer is empty.
26477
26478 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
26479
26480 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
26481
26482 * hilit-chg.el (highlight-changes-mode): Don't autoload.
26483
26484 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
26485 non-preloaded variables.
26486
26487 2005-01-17 Steven Tamm <steventamm@mac.com>
26488
26489 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
26490 tex-shell cause to force interactivity when using pipes.
26491
26492 2005-01-17 Kim F. Storm <storm@cua.dk>
26493
26494 * simple.el (just-one-space): Make arg optional.
26495
26496 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
26497
26498 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
26499 posn-at-x-y to t to access left-margin.
26500
26501 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
26502
26503 Sync with Tramp 2.0.47.
26504
26505 * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
26506 catching keep-date problems in cp/scp operations.
26507 (tramp-handle-copy-file): Don't call `set-file-modes'
26508 unconditionally. Specialized functions should know better what is
26509 necessary. This improves performance a little bit, and the
26510 functions could catch errors with `cp -p' and `scp -p'.
26511 (tramp-do-copy-or-rename-file-via-buffer)
26512 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
26513 when appropriate.
26514 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
26515 Call `set-file-modes' when appropriate.
26516 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
26517 Johnsson <isak@hypergene.com>
26518 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
26519 of both Tramp buffer and debug buffer. Reported by Joakim Verona
26520 <joakim@verona.se>
26521 (tramp-file-name-for-operation): Mark `shell-command' as magic for
26522 Emacs only.
26523
26524 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
26525 `find-file-hooks' and `dired-mode-hook'.
26526 (tramp-minor-mode-map): Respective map. Add remapping for
26527 `compile' and `recompile'.
26528 (tramp-remap-command, tramp-recompile): New defuns.
26529 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
26530 in buffer "*Compilation*". Call the commands asynchronously.
26531
26532 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
26533 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
26534 `shell-command', because it isn't magic in XEmacs. Reported by
26535 Adrian Aichner <adrian@xemacs.org>.
26536
26537 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
26538 `substitute-in-file-name.
26539 (tramp-smb-handle-substitute-in-file-name): New defun.
26540 (tramp-smb-advice-PC-do-completion): Delete advice.
26541
26542 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
26543
26544 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
26545 Fix error in deleting region.
26546
26547 2005-01-15 Richard M. Stallman <rms@gnu.org>
26548
26549 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
26550 In non-temp buffer, switch syntax table temporarily.
26551
26552 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
26553
26554 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
26555
26556 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
26557
26558 * imenu.el (imenu--split-menu): Copy menulist before sorting.
26559 (imenu--generic-function): Use START, not BEG, as pos of definition.
26560
26561 * simple.el (just-one-space): Argument specifies number of spaces.
26562
26563 * simple.el (eval-expression-print-format): Avoid warning
26564 about edebug-active.
26565
26566 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (Tiny change)
26567
26568 * progmodes/sh-script.el: Code copied from make-mode.el
26569 with small changes,
26570 (sh-mode-map): Bind C-c C-\.
26571 (sh-backslash-column, sh-backslash-align): New variables.
26572 (sh-backslash-region, sh-append-backslash): New functions.
26573
26574 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
26575
26576 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
26577 (rmail-pop-password, rmail-pop-password-required): Move to
26578 rmail-obsolete group.
26579 (rmail-set-pop-password): Rename to rmail-set-remote-password.
26580 All callers updated.
26581 (rmail-get-pop-password): Rename to rmail-get-remote-password.
26582 Take an argument specifying whether it is POP or IMAP mailbox we
26583 are using. All callers updated.
26584 (rmail-pop-password-error): Rename to
26585 rmail-remote-password-error. Added mailutils-specific error message.
26586 (rmail-movemail-search-path)
26587 (rmail-movemail-variant-in-use): New variables.
26588 (rmail-remote-password, rmail-remote-password-required):
26589 New customization variables.
26590 (rmail-probe, rmail-autodetect, rmail-movemail-variant-p): New funs.
26591 (rmail-parse-url): New function.
26592 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
26593 with GNU mailutils movemail.
26594
26595 2005-01-15 Kevin Ryde <user42@zip.com.au>
26596
26597 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
26598 suffix to space, $ or '$, to correctly position point when going
26599 to @table style constants like DBL_MAX.
26600
26601 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
26602
26603 * type-break.el (type-break-mode, type-break-file-time)
26604 (type-break-file-keystroke-count, type-break-choose-file):
26605 Don't store data in or load data from the file if type-break-file-name
26606 is nil.
26607 (type-break-file-name): Doc update as per the above.
26608
26609 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
26610
26611 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
26612 lookup-key might return nil; handle that.
26613
26614 2005-01-15 Alan Mackenzie <acm@muc.de>
26615
26616 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
26617 rather than the element found, thus enabling the tree to be setcar'd.
26618
26619 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
26620
26621 * textmodes/org.el (org-show-following-heading): New option.
26622 (org-show-hierarchy-above): Use `org-show-following-heading'.
26623 (org-cycle): Documentation fix.
26624
26625 * textmodes/org.el (orgtbl-optimized): New option
26626 (orgtbl-mode): New command, a minor mode.
26627 (orgtbl-mode-map): New variable.
26628 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
26629 (orgtbl-error, orgtbl-self-insert-command)
26630 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
26631
26632 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
26633 a local variable in each org-mode buffer.
26634
26635 * textmodes/org.el (org-set-regexps-and-options): Rename from
26636 `org-set-regexps'. Added checking for STARTUP keyword.
26637 (org-get-current-options): Add STARTUP options.
26638 (org-table-insert-row): Make mode intelligent about when
26639 realignment is needed.
26640 (org-self-insert-command, org-delete-backward-char, org-delete-char):
26641 New commands.
26642 (org-enable-table-editor): New default value `optimized'.
26643 (org-table-blank-field): Support blanking regions if active.
26644
26645 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
26646
26647 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
26648 if the year is not given.
26649
26650 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
26651 Add new escapes %m and %M, fixed bug with %F by adding
26652 save-match-data.
26653 (reftex-reference): Remove ?. from list of spaces.
26654 (reftex-label-info): Add automatic label prefix recognition.
26655
26656 * textmodes/reftex-index.el (reftex-index-next-phrase):
26657 Add slave parameter to call of `reftex-index-this-phrase'.
26658 (reftex-index-this-phrase): New optional argument.
26659 (reftex-index-region-phrases): Add slave parameter to call of
26660 `reftex-index-this-phrase'.
26661 (reftex-display-index): New argument redo.
26662 (reftex-index-rescan): Add `redo' to arguments of
26663 `reftex-display-index'.
26664 (reftex-index-Rescan, reftex-index-revert)
26665 (reftex-index-switch-index-tag): Add `redo' to arguments of
26666 `reftex-display-index'.
26667 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
26668 indexing. Fix bug with matching is there is a quote before or
26669 after the word.
26670
26671 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
26672 Fix bug when collecting citation keys in lines with comments.
26673 (reftex-citation): Prefix argument no longer rescans the document,
26674 but forces prompting for optional arguments of cite macros.
26675 (reftex-do-citation): Prompting for optional arguments implemented.
26676
26677 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
26678 Add optional arguments to most cite commands.
26679 (reftex-cite-cleanup-optional-args): New option
26680 (reftex-cite-prompt-optional-args): New option.
26681 (reftex-trust-label-prefix): New option.
26682
26683 * textmodes/reftex-toc.el (reftex-toc-find-section):
26684 Add push-mark before changing the position in the buffer.
26685
26686 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
26687 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
26688
26689 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
26690
26691 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
26692 more carefully.
26693
26694 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
26695
26696 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
26697 (sgml-mode): Use it.
26698 (sgml-get-context): Better keep track of implicitly closed tags.
26699
26700 2005-01-13 Kenichi Handa <handa@m17n.org>
26701
26702 * textmodes/ispell.el: These changes are to fix misalignment error
26703 caused by equivalent characters of different Emacs charsets.
26704 (ispell-unified-chars-table): New variable.
26705 (ispell-get-decoded-string): New function.
26706 (ispell-get-casechars, ispell-get-not-casechars)
26707 (ispell-get-otherchars): Call ispell-get-decoded-string.
26708
26709 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
26710
26711 * custom.el (custom-declare-variable): Just put symbol instead
26712 of (defvar . symbol) in `current-load-list'.
26713
26714 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
26715
26716 * emacs-lisp/elint.el: Fixed typo in Commentary section.
26717
26718 2005-01-12 Jay Belanger <belanger@truman.edu>
26719
26720 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
26721 to create a Calc summary.
26722
26723 2005-01-12 Kim F. Storm <storm@cua.dk>
26724
26725 * mouse.el (mouse-on-link-p): Change functionality and doc
26726 string to comply with latest description in lisp ref.
26727
26728 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
26729
26730 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
26731 Enable mouse clicks on mode-line, header-line and margin.
26732 (event-type): Give mouse event symbols an `event-kind' property
26733 with value `mouse-click'.
26734
26735 2005-01-12 Juri Linkov <juri@jurta.org>
26736
26737 * facemenu.el (list-colors-display): Add new arg buffer-name.
26738 Use it. Fix docstring. Replace code for identifying duplicate
26739 colors by the name with call to `list-colors-duplicates' which
26740 identifies duplicate colors by the value unless the color
26741 is one of special Windows colors. Set truncate-lines to t.
26742 Print sorted duplicate color names on each line. Indent to 22
26743 \(the longest color name in rgb.txt) instead of 20. Optimize.
26744 (list-colors-duplicates): New function.
26745 (facemenu-color-name-equal): Delete function.
26746
26747 * facemenu.el (list-colors-print): New function created from code
26748 in list-colors-display. Print #RRGGBB at the window right edge.
26749 (list-colors-display): When temp-buffer-show-function is not
26750 defined, call list-colors-print from temp-buffer-show-hook
26751 to get the right value of window-width in list-colors-print
26752 after the buffer is displayed.
26753
26754 * simple.el (pop-mark): Move deactivate-mark out of conditional
26755 part to deactivate the active mark regardless of the state of the
26756 mark ring.
26757
26758 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
26759 variables line in desktop files.
26760
26761 2005-01-12 Juri Linkov <juri@jurta.org>
26762
26763 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
26764 Bring together isearch highlight related options.
26765 (lazy-highlight): Replace group `replace' by `matching'.
26766 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
26767 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
26768 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
26769 and declare them obsolete.
26770 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
26771 (isearch-faces): Remove defgroup.
26772 (isearch-overlay, isearch-highlight, isearch-dehighlight):
26773 Move isearch highlighting code closer to lazy highlighting code.
26774
26775 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
26776 (query-replace-highlight, query-replace-lazy-highlight)
26777 (query-replace): Move definitions to the beginning of the file.
26778
26779 2005-01-11 Juri Linkov <juri@jurta.org>
26780
26781 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
26782 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
26783 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
26784
26785 * info.el (Info-history-forward): New variable.
26786 (Info-select-node): Reset Info-history-forward to nil.
26787 (Info-last): Turn into defalias.
26788 (Info-history-back): Rename from Info-last.
26789 Add current node to Info-history-forward.
26790 (Info-history-forward): New fun.
26791 (Info-mode-map): Replace Info-last by Info-history-back.
26792 Bind Info-history-forward to "r".
26793 (Info-mode-menu): Replace Info-last by Info-history-back.
26794 Fix menu item text. Add menu item for Info-history-forward.
26795 (info-tool-bar-map): Replace Info-last by Info-history-back.
26796 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
26797 for Info-history-forward.
26798 (Info-mode): Replace Info-last by Info-history-back in docstring.
26799 Add local variable Info-history-forward.
26800 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
26801
26802 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
26803
26804 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
26805 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
26806 Ignore select-window events rather than fiddle with
26807 mouse-autoselect-window.
26808
26809 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
26810
26811 * type-break.el (type-break-mode): Fix previous change.
26812
26813 2005-01-10 Jay Belanger <belanger@truman.edu>
26814
26815 * calc/calc-ext.el (calc-reset): Reset when inside embedded
26816 calculator; only reset when point is inside a calculator.
26817 Don't adjust the window height if the window takes up the whole height
26818 of the frame.
26819
26820 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
26821
26822 * ebuff-menu.el (Electric-buffer-menu-mode):
26823 Preserve value of buffer-local var header-line-format.
26824
26825 2005-01-09 Jay Belanger <belanger@truman.edu>
26826
26827 * calc/calc.el (calc-mode-var-list-restore-saved-values):
26828 Make sure settings file exists before accessing it.
26829
26830 * calc/calc-embed.el (calc-embedded-subst):
26831 Replace math-multi-subst-rec, which is only supposed to be called
26832 by math-multi-subst, by math-multi-subst.
26833
26834 2005-01-09 Andre Spiegel <spiegel@gnu.org>
26835
26836 * vc.el (vc-allow-async-revert): New user option.
26837 (vc-disable-async-diff): New internal variable.
26838 (vc-revert-buffer): Use them to disable asynchronous diff.
26839
26840 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
26841 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
26842 asynchronously if vc-disable-async-diff is t.
26843
26844 2005-01-09 Jay Belanger <belanger@truman.edu>
26845
26846 * calc/calc.el (defcalcmodevar): New macro.
26847 (calc-mode-var-list-restore-default-values)
26848 (calc-mode-var-list-restore-saved-values): New functions.
26849 (calc-mode-var-list): Use defcalcmodevar to define it.
26850 (calc-always-load-extensions, calc-line-numbering)
26851 (calc-line-breaking, calc-display-just, calc-display-origin)
26852 (calc-number-radix, calc-leading-zeros, calc-group-digits)
26853 (calc-group-char, calc-point-char, calc-frac-format)
26854 (calc-prefer-frac, calc-hms-format, calc-date-format)
26855 (calc-float-format, calc-full-float-format, calc-complex-format)
26856 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
26857 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
26858 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
26859 (calc-matrix-brackets, calc-language, calc-language-option)
26860 (calc-left-label, calc-right-label, calc-word-size)
26861 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
26862 (calc-display-raw, calc-internal-prec, calc-angle-mode)
26863 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
26864 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
26865 (calc-window-height, calc-display-trail, calc-show-selections)
26866 (calc-use-selections, calc-assoc-selections)
26867 (calc-display-working-message, calc-auto-why, calc-timing)
26868 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
26869 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
26870 (calc-gnuplot-default-device, calc-gnuplot-default-output)
26871 (calc-gnuplot-print-device, calc-gnuplot-print-output)
26872 (calc-gnuplot-geometry, calc-graph-default-resolution)
26873 (calc-graph-default-resolution-3d, calc-invocation-macro)
26874 (calc-show-banner): Use defcalcmodevar to declare them and set
26875 their default values.
26876
26877 * calc/calc-ext.el (calc-reset): Restore saved values of variables
26878 instead of default values (but restore default values if there is
26879 an argument of 0).
26880
26881 2005-01-09 David Kastrup <dak@gnu.org>
26882
26883 * desktop.el (desktop-restore-eager): Fix typo in type.
26884
26885 2005-01-08 Richard M. Stallman <rms@gnu.org>
26886
26887 * cus-edit.el (customize): Delete :link.
26888
26889 2005-01-08 Jay Belanger <belanger@truman.edu>
26890
26891 * calc/calc.el (calc-mode): Remove the extension from the
26892 `calc-settings-file' file name when loading it.
26893
26894 2005-01-08 Kim F. Storm <storm@cua.dk>
26895
26896 * info.el (Info-mode-map, Info-next-link-keymap)
26897 (Info-prev-link-keymap, Info-up-link-keymap):
26898 Map follow-link to mouse-face.
26899 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
26900
26901 2005-01-08 Jay Belanger <belanger@truman.edu>
26902
26903 * calc/calc.el (calc-settings-file): Change default value.
26904 Suggested by cgw in a comment in calc-mode.el.
26905
26906 * calc/calc-mode.el (calc-settings-file-name):
26907 Compare calc-settings-file to user-init-file instead of ~/.emacs.
26908 Replace ~/.emacs in a prompt by calc-settings-file.
26909
26910 2005-01-07 Lars Hansen <larsh@math.ku.dk>
26911
26912 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
26913 (desktop-lazy-idle-delay): New customizable variables.
26914 (desktop-buffer-args-list): New variable.
26915 (desktop-append-buffer-args): New function.
26916 (desktop-save): Call desktop-append-buffer-args for some buffers.
26917 (desktop-lazy-create-buffer): New function.
26918 (desktop-idle-create-buffers): New function.
26919 (desktop-read): Add message about buffers to restore lazily.
26920 (desktop-lazy-abort): New command.
26921 (desktop-clear): Call desktop-lazy-abort.
26922 (desktop-lazy-complete): New command.
26923
26924 2005-01-06 Richard M. Stallman <rms@gnu.org>
26925
26926 * emacs-lisp/find-func.el (find-face-definition):
26927 Rename from find-face.
26928
26929 2005-01-06 Kim F. Storm <storm@cua.dk>
26930
26931 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
26932
26933 * man.el (Man-xref-man-page, Man-xref-header-file)
26934 (Man-xref-normal-file): Add follow-link property.
26935
26936 2005-01-06 Jay Belanger <belanger@truman.edu>
26937
26938 * calc/calc-units.el: Make sure the proper macro definitions are
26939 available when compiling.
26940
26941 2005-01-06 Juri Linkov <juri@jurta.org>
26942
26943 * isearch.el (isearch-lazy-highlight-update):
26944 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
26945
26946 2005-01-06 Miles Bader <miles@gnu.org>
26947
26948 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
26949 (isearch-lazy-highlight-face): Use new name.
26950
26951 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
26952
26953 * uniquify.el (uniquify-rationalize-file-buffer-names):
26954 Re-add an interactive spec.
26955 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
26956 to the same name.
26957
26958 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
26959 (isearch-update, isearch-done): Adjust calls accordingly.
26960
26961 2005-01-05 Richard M. Stallman <rms@gnu.org>
26962
26963 * custom.el (custom-set-variables, custom-theme-set-variables):
26964 Clarify documentation.
26965
26966 * emacs-lisp/find-func.el (find-variable)
26967 (find-variable-other-window, find-variable-other-frame):
26968 Fix the TYPE args to find-function-read and find-function-do-it.
26969 (find-function): Doc fix.
26970 (find-function-at-point): Replace function-at-point alias.
26971
26972 2005-01-04 Richard M. Stallman <rms@gnu.org>
26973
26974 * cus-face.el (custom-declare-face):
26975 Record defface in current-load-list.
26976
26977 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
26978
26979 * emacs-lisp/find-func.el: Doc fixes.
26980 (find-face-regexp): New variable.
26981 (find-function-regexp-alist): New variable.
26982 (find-function-C-source): Third arg is now TYPE.
26983 (find-function-search-for-symbol): Handle general TYPE.
26984 (find-function-read, find-function-do-it): Handle general TYPE.
26985 (find-definition-noselect, find-face): New functions.
26986 (function-at-point): Alias deleted.
26987
26988 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
26989
26990 * battery.el (display-battery-mode): Rename from display-battery.
26991 Handle the case where it gets turned off.
26992
26993 2005-01-04 Richard M. Stallman <rms@gnu.org>
26994
26995 * cus-edit.el (customize): Make :link point to user doc.
26996
26997 * man.el (Man-fontify-manpage): Turn off undo generation.
26998
26999 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
27000
27001 2005-01-04 Andreas Schwab <schwab@suse.de>
27002
27003 * files.el (insert-directory): Only look for error lines in
27004 inserted text. Don't move too far after processing --dired markers.
27005
27006 2005-01-04 Richard M. Stallman <rms@gnu.org>
27007
27008 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
27009 Don't expand if the character is @, period, dash, etc.
27010 (define-mail-abbrev): Quote names that contain problem characters.
27011
27012 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
27013
27014 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
27015
27016 2005-01-03 Richard M. Stallman <rms@gnu.org>
27017
27018 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
27019 (query-replace-highlight, query-replace-lazy-highlight)
27020 (query-replace): Definitions moved up. Doc fix.
27021
27022 2005-01-03 Richard M. Stallman <rms@gnu.org>
27023
27024 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
27025 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
27026 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
27027 (lazy-highlight-face): Rename from isearch-lazy-...
27028 Change all references to them.
27029
27030 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
27031
27032 * cus-edit.el (custom-file): Doc fix for defcustom.
27033 (custom-file): The function no longer sets the variable
27034 `custom-file' to its return value.
27035
27036 * startup.el (command-line): No longer load `custom-file'.
27037
27038 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
27039
27040 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
27041
27042 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
27043 Don't confuse module-prefixed identifiers for labels.
27044 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
27045
27046 2005-01-02 Richard M. Stallman <rms@gnu.org>
27047
27048 * files.el (basic-save-buffer-1): Fix previous change.
27049
27050 * loadhist.el (file-loadhist-lookup): New function.
27051 (file-provides, file-requires): Use it.
27052
27053 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
27054 instead of calculating the right size.
27055
27056 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
27057
27058 * vc-svn.el (vc-svn-diff): Stay local if possible.
27059
27060 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
27061
27062 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
27063
27064 * files.el (hack-local-variables): Fix last change.
27065
27066 2005-01-02 Jay Belanger <belanger@truman.edu>
27067
27068 * calc/calc-yank.el (calc-edit-top): New variable.
27069 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
27070 object. Change header properties.
27071 (calc-edit-finish, calc-edit-finish-stack-object)
27072 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
27073 edited object.
27074 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
27075 for the beginning of the edited object.
27076 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
27077 for the beginning of the edited object.
27078 * calc/calc-prog.el (calc-edit-macro-finish-edit)
27079 (calc-finish-formula-edit, calc-macro-repeats)
27080 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
27081 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
27082 beginning of the edited object.
27083 (calc-user-define-edit): Change the header for editing macros.
27084 Remove unnecessary variable.
27085
27086 2005-01-01 Jay Belanger <belanger@truman.edu>
27087
27088 * calc/calc-yank.el (calc-edit-mode): Change default header.
27089 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
27090 * calc/calc-store.el (calc-edit-variable): Change title to match new
27091 header.
27092 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
27093 mode to match new header.
27094 (calc-user-define-edit): Change titles to include names of commands.
27095 (calc-finish-formula-edit): Adjust to handle new header.
27096 (calc-finish-macro-edit): Remove.
27097 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
27098 (calc-edit-macro-command, calc-edit-macro-command-type)
27099 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
27100 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
27101 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
27102 (calc-edit-macro-finish-edit): New functions.
27103 (calc-user-define-edit): Use new functions to edit named calc macros.
27104
27105 2005-01-01 Stefan <monnier@iro.umontreal.ca>
27106
27107 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
27108
27109 * ses.el (copy-region-as-kill): Deactivate mark.
27110
27111 2005-01-01 Richard M. Stallman <rms@gnu.org>
27112
27113 * replace.el (occur-1): If the output buffer is also an input,
27114 don't kill it, rename it.
27115
27116 * faces.el (set-face-background, set-face-foreground): Doc fix.
27117
27118 * cus-face.el (custom-face-attributes): Fix :help-echo strings
27119 for :foreground and :background.
27120
27121 * dired.el (dired-view-command-alist): Variable deleted.
27122 (dired-view-file, dired-mouse-find-file-other-window):
27123 Delete the code to use it.
27124
27125 2005-01-01 Kim F. Storm <storm@cua.dk>
27126
27127 * image.el (insert-sliced-image): Use t for line-height property.
27128
27129 See ChangeLog.11 for earlier changes.
27130
27131 ;; Local Variables:
27132 ;; coding: iso-2022-7bit
27133 ;; End:
27134
27135 Copyright (C) 2005, 2006 Free Software Foundation, Inc.
27136 Copying and distribution of this file, with or without modification,
27137 are permitted provided the copyright notice and this notice are preserved.
27138
27139 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1