]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
* textmodes/flyspell.el (flyspell-check-region-doublons): New
[gnu-emacs] / lisp / ChangeLog
1 2006-09-16 Agustin Martin <agustin.martin@hispalinux.es>
2
3 * textmodes/flyspell.el (flyspell-check-region-doublons): New
4 function to detect duplicated words.
5 (flyspell-large-region): Use it.
6
7 2006-09-16 Chong Yidong <cyd@stupidchicken.com>
8
9 * simple.el (line-move-to-column): Revert 2006-08-03 change.
10
11 2006-09-16 Eli Zaretskii <eliz@gnu.org>
12
13 * help.el (describe-prefix-bindings): Use let, not let*.
14
15 2006-09-16 Ken Manheimer <ken.manheimer@gmail.com>
16
17 * allout.el (allout-regexp, allout-line-boundary-regexp)
18 (allout-bob-regexp): Correct grouping and boundaries to fix
19 backwards traversal.
20 (allout-depth-specific-regexp, allout-depth-one-regexp): New
21 versions that exploit \\{M\\} regexp syntax, to avoid geometric or
22 worse time in allout-ascend.
23 (allout-doublecheck-at-and-shallower): Identify depth threshold
24 below which topics are checked for and disqualified by containment
25 discontinuities.
26 (allout-hotspot-key-handler): Correctly handle multiple-key
27 strokes. Remove some unused variables.
28 (allout-mode-leaders): Clarify that mode-specific comment-start
29 will be used.
30 (set-allout-regexp): Correctly regexp-quote allout regexps to
31 properly accept alternative header-leads and primary bullets with
32 regexp-specific characters (eg, C "/*", mathematica "(*").
33 Include new regular expressions among those configured.
34 (allout-infer-header-lead-and-primary-bullet): Rename
35 allout-infer-header-lead.
36 (allout-recent-depth): Manifest as a variable as well as a
37 function.
38 (allout-prefix-data): Simplify into an inline instead of a macro,
39 assuming current match data rather than being explicitly passed
40 it. Establish allout-recent-depth value as well as
41 allout-recent-prefix-beginning and allout-recent-prefix-end.
42 (allout-aberrant-container-p): True when an item's immediate
43 offspring discontinuously contained. Useful for disqualifying
44 unintended topic prefixes, likely at low depths.
45 (allout-goto-prefix-doublechecked): Elaborated version of
46 allout-goto-prefix which disqualifies aberrant pseudo-items.
47 (allout-pre-next-prefix): Layer on top of lower-level routines, to
48 get disqualification of aberrant containers.
49 (allout-end-of-prefix, allout-end-of-subtree): Disqualify aberrant
50 containers.
51 (allout-beginning-of-current-entry): Position at start of buffer
52 when in container (depth 0) entry.
53 (nullify-allout-prefix-data): Invalidate allout-recent-* prefix data.
54 (allout-current-bullet): Strip text properties.
55 (allout-get-prefix-bullet): Use right match groups.
56 (allout-beginning-of-line, allout-next-heading): Disqualify
57 aberrant containers.
58 (allout-previous-heading): Disqualify aberrant containers, and
59 change to regular (rather than inline) function, to allow
60 self-recursion.
61 (allout-get-invisibility-overlay): Increment so progress is made
62 when the first overlay is not the sought one.
63 (allout-end-of-prefix): Disqualify aberrant containers.
64 (allout-end-of-line): Cycle something like allout-beginning-of-line.
65 (allout-mode): Make allout-old-style-prefixes (ie, enabling use with
66 outline.el outlines) functional again. Change the primary bullet
67 along with the header-lead - level 1 new-style bullets now work.
68 Engage allout-before-change-handler in mainline emacs, not just
69 xemacs, to do undo handling.
70 (allout-before-change-handler): Expose undo changes occurring in
71 hidden regions. Use allout-get-invisibility-overlay instead of
72 reimplementing it inline.
73 (allout-chart-subtree): Use start rather than end of prefix in
74 charts. Use allout-recent-depth variable.
75 (allout-chart-siblings): Disqualify aberrant topics.
76 (allout-beginning-of-current-entry): Position correctly.
77 (allout-ascend): Use new allout-depth-specific-regexp and
78 allout-depth-one-regexp for linear instead of O(N^2) or worse
79 behavior.
80 (allout-ascend-to-depth): Depend on allout-ascend, rather than
81 reimplementing an algorithm.
82 (allout-up-current-level): Depend on allout-ascend, rather than
83 reimplementing an algorithm. Return to start-point if we fail.
84 (allout-descend-to-depth): Use allout-recent-depth variable
85 instead of function.
86 (allout-next-sibling): On traversal of numerous intervening
87 topics, resort to economical allout-next-sibling-leap.
88 (allout-next-sibling-leap): Specialized version of
89 allout-next-sibling that uses allout-ascend cleverly, to depend on
90 a regexp search to leap large numbers of contained topics, rather
91 than arbitrarily many one-by-one traversals.
92 (allout-next-visible-heading): Disqualify aberrant topics.
93 (allout-previous-visible-heading): Position consistently when
94 interactive.
95 (allout-forward-current-level): Base on allout-previous-sibling
96 rather than (differently) reimplmenting the algorithm. Remove some
97 unused variables.
98 (allout-solicit-alternate-bullet): Present default choice stripped
99 of text properties.
100 (allout-rebullet-heading): Use bullet stripped of text properties.
101 Register changes using allout-exposure-change-hook. Disregard
102 aberrant topics.
103 (allout-shift-in): With universal-argument, make topic a peer of
104 it's former offspring. Simplify the code by separating out
105 allout-shift-out functionality.
106 (allout-shift-out): With universal-argument, make offspring peers
107 of their former container, and its siblings. Implement the
108 functionality here, rather than inappropriately muddling the
109 implementation of allout-shift-in.
110 (allout-rebullet-topic): Respect additional argument for new
111 parent-child separation function.
112 (allout-yank-processing): Use allout-ascend directly.
113 (allout-show-entry): Disqualify aberrant topics.
114 (allout-show-children): Handle discontinuous children gracefully,
115 extending the depth being revealed to expose them and posting a
116 message indicating the situation.
117 (allout-show-to-offshoot): Remove obsolete and incorrect comment.
118 Leave cursor in correct position.
119 (allout-hide-current-subtree): Use allout-ascend directly.
120 Disqualify aberrant topics.
121 (allout-kill-line, allout-kill-topic): Preserve exposure layout in
122 a way that the yanks can restore it, as used to happen.
123 (allout-yank-processing): Restore exposure layout as recorded by
124 allout-kill-*, as used to happen.
125 (allout-annotate-hidden, allout-hide-by-annotation): New routines
126 for preseving and restoring exposure layout across kills.
127 (allout-toggle-subtree-encryption): Run allout-exposure-change-hook.
128 (allout-encrypt-string): Strip text properties.
129 Rearranged order and outline-headings for some of the
130 miscellaneous functions.
131 (allout-resolve-xref): No need to quote the error name in the
132 condition-case handler section.
133 (allout-flatten): Classic recursive (and recursively intensive,
134 without tail-recursion) list-flattener, needed by allout-shift-out
135 when confronted with discontinuous children.
136
137 2006-09-16 Jason Rumney <jasonr@gnu.org>
138
139 * dnd.el (dnd-open-remote-file-function): Use dnd-open-local-file
140 on ms-windows.
141 (dnd-open-unc-file): Remove.
142 (dnd-open-local-file): Mention in doc string that it also handles
143 remote files if the system natively supports unc file-names.
144
145 2006-09-15 Kim F. Storm <storm@cua.dk>
146
147 * help.el (describe-key): Handle C-h k in *Help* buffer; collect
148 all necessary information about the event before erasing *Help*.
149
150 * simple.el (line-move-partial): Use window-line-visiblity to
151 quickly check whether last line is partially visible, and only do
152 the hard (and slow) part in that case.
153
154 2006-09-15 Jay Belanger <belanger@truman.edu>
155
156 * COPYING: Replace "Library Public License" by "Lesser Public
157 License" throughout.
158
159 2006-09-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
160
161 * term/x-win.el (x-menu-bar-open): New function for F10.
162
163 2006-09-15 Chong Yidong <cyd@stupidchicken.com>
164
165 * progmodes/compile.el (compilation-error-regexp-alist-alist):
166 Disallow filenames containing " -" to avoid confusion with libtool
167 compilation messages. Suggested by Stefan Monnier.
168
169 2006-09-15 David Kastrup <dak@gnu.org>
170
171 * mouse-sel.el (mouse-sel-follow-link-p): Use event position
172 instead of buffer position for `mouse-on-link-p'.
173
174 * mouse.el (mouse-posn-property): New function looking up the
175 properties at a click position in overlays and text properties in
176 either buffer or strings.
177 (mouse-on-link-p): Use `mouse-posn-property' to streamline lookup
178 of both `follow-link' as well as `mouse-face' properties.
179 (mouse-drag-track): Check `mouse-on-link-p' on event position, not
180 buffer position.
181
182 * help.el (describe-key-briefly): When reading a down-event on
183 mode lines or scroll bar, swallow the following up event, too.
184 Use the new mouse sensitity of `key-binding' for lookup.
185 (describe-key): The same here.
186
187 2006-09-15 Juanma Barranquero <lekktu@gmail.com>
188
189 * play/life.el (life-patterns): Add a few more interesting patterns.
190 (life-setup): Force `show-trailing-whitespace' to nil.
191
192 2006-09-14 Richard Stallman <rms@gnu.org>
193
194 * startup.el (fancy-splash-text): Change text to improve alignment.
195 (fancy-splash-screens): Don't set non-standard tab width.
196 Bind cursor-type temporarily, and make it easy to patch to
197 preserve the splash buffer.
198 (normal-splash-screen, fancy-splash-tail): Spell out "Meta-x".
199 (fancy-splash-screens): Display echo-area message explicitly.
200 Don't set fancy-splash-help-echo.
201
202 * simple.el (line-number-mode): Group mode-line instead of
203 editing-basics.
204 (column-number-mode, size-indication-mode): Likewise.
205
206 * faces.el (mode-line-faces): Group mode-line instead of modeline.
207
208 * time.el (display-time): Group mode-line instead of modeline.
209
210 * cus-edit.el (mode-line): Renamed from modeline. All uses changed.
211
212 2006-09-14 Chong Yidong <cyd@stupidchicken.com>
213
214 * startup.el (fancy-splash-text): Move editing instructions to
215 fancy-splash-head.
216 (fancy-splash-head): Issue editing instructions.
217 (fancy-splash-screens): Fixup whitespace.
218
219 2006-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
220
221 * bindings.el (mode-line-buffer-identification-keymap):
222 Remove duplicate line.
223
224 2006-09-14 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
225
226 * ido.el (ido-ignore-item-p): Allow any kind of functions in
227 ignore lists.
228
229 2006-09-14 Kim F. Storm <storm@cua.dk>
230
231 * jit-lock.el (jit-lock-fontify-again): New function.
232 (jit-lock-fontify-now): Use it instead of lambda form.
233
234 2006-09-13 Agustin Martin <agustin.martin@hispalinux.es>
235
236 * textmodes/flyspell.el (flyspell-word, flyspell-correct-word)
237 (flyspell-auto-correct-word): Make ispell-filter local to these
238 functions. Check that ispell-filter has new stuff before calling
239 ispell-parse-output.
240
241 2006-09-13 Kim F. Storm <storm@cua.dk>
242
243 * simple.el (line-move-partial): Optimize.
244
245 2006-09-13 Richard Stallman <rms@gnu.org>
246
247 * thingatpt.el (thing-at-point-bounds-of-url-at-point):
248 Delete spurious backquote.
249
250 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
251
252 * net/rcirc.el (rcirc-print): Fix last change.
253
254 2006-09-12 Jay Belanger <belanger@truman.edu>
255
256 * calc/calc.el (calc-dispatch): Remove unnecessary `sit-for'.
257
258 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
259
260 * net/rcirc.el (rcirc-scroll-show-maximum-output): Rename from
261 rcirc-show-maximum-output.
262 (rcirc-mode): Remove window-scroll-function hook.
263 (rcirc-scroll-to-bottom): Remove function.
264 (rcirc-print): Recenter so point stays at the bottom of the window
265 if point was already there.
266
267 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
268
269 * comint.el (comint-exec-1): Set EMACS to the full name of Emacs,
270 not to "t".
271 * progmodes/compile.el (compilation-start): Likewise.
272 * progmodes/idlwave.el (idlwave-rescan-asynchronously):
273 Don't use expand-file-name on invocation-directory, since this
274 might mishandle special characters in invocation-directory.
275
276 2006-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
277
278 * pcvs-defs.el: Remove * in defcustom's docstrings.
279
280 2006-09-12 Nick Roberts <nickrob@snap.net.nz>
281
282 * progmodes/compile.el (compilation-directory-properties):
283 Doc fix for help-echo.
284
285 2006-09-12 Lars Hansen <larsh@soem.dk>
286
287 * desktop.el (desktop-read): Add comment.
288
289 2006-09-12 Kim F. Storm <storm@cua.dk>
290
291 * simple.el (next-error-highlight, next-error-highlight-no-select):
292 Fix spelling error.
293
294 * subr.el (sit-for): Rework to use input-pending-p and cond.
295 Return nil input is pending on entry also for SECONDS <= 0.
296 (while-no-input): Use input-pending-p instead of sit-for.
297
298 2006-09-11 Richard Stallman <rms@gnu.org>
299
300 * simple.el (next-error-highlight, next-error-highlight-no-select):
301 Fix custom type and doc strings.
302
303 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
304
305 * diff-mode.el (diff-apply-hunk-to-backup-file): New var.
306 (diff-apply-hunk): Use it to ask for confirmation.
307
308 2006-09-11 Reiner Steib <Reiner.Steib@gmx.de>
309
310 * emacs-lisp/cl.el (pushnew): Add missing `,'.
311
312 2006-09-11 David Kastrup <dak@gnu.org>
313
314 * help.el (string-key-binding, describe-key-briefly)
315 (describe-key): Remove `string-key-binding' and its callers since
316 `key-binding' already caters for the proper lookup now.
317
318 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
319
320 * progmodes/cfengine.el (cfengine-font-lock-syntactic-keywords): Newvar.
321 (cfengine-mode): Use it. Fix \ syntax to be like /.
322
323 * bindings.el (mode-line-buffer-identification-keymap):
324 Move initialization into declaration.
325
326 2006-09-10 Kim F. Storm <storm@cua.dk>
327
328 * ido.el (ido-edit-input, ido-complete, ido-take-first-match)
329 (ido-push-dir-first, ido-kill-buffer-at-head, ido-exhibit)
330 (ido-delete-file-at-head): Pass head of ido-matches through ido-name
331 in case of merged directories. Reported by Micha\e,Ak\e(Bl Cadilhac.
332
333 2006-09-10 Richard Stallman <rms@gnu.org>
334
335 * dired-aux.el: Handle errors in recursive copy usefully.
336 (dired-create-files-failures): New variable.
337 (dired-copy-file): Remove condition-case.
338 (dired-copy-file-recursive): Check for errors on all file
339 operations, and add them to dired-create-files-failures.
340 Check file file-date-erorr here too.
341 (dired-create-files): Check dired-create-files-failures
342 and report those errors too.
343
344 * emacs-lisp/cl.el (pushnew): Use add-to-list when convenient.
345
346 * subr.el (add-to-list): New argument COMPARE-FN.
347
348 2006-09-10 Reiner Steib <Reiner.Steib@gmx.de>
349
350 * filecache.el (file-cache-add-directory)
351 (file-cache-add-directory-list, file-cache-add-file)
352 (file-cache-add-directory-using-find)
353 (file-cache-add-directory-using-locate)
354 (file-cache-add-directory-recursively): Add autoloads.
355
356 2006-09-09 Richard Stallman <rms@gnu.org>
357
358 * textmodes/conf-mode.el (conf-space-mode):
359 Use hack-local-variables-hook instead of calling hack-local-variables.
360 (conf-space-keywords-override): New variable.
361 (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
362 (conf-space-mode): Always make conf-space-keywords and
363 conf-space-keywords-override local.
364 Call conf-space-mode-internal directly as well as via hook.
365
366 2006-09-09 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
367
368 * progmodes/python.el (python-font-lock-keywords): Add `self' and other
369 quasi-keywords.
370
371 2006-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
372
373 * progmodes/python.el: Quieten the compiler about hippie-expand vars.
374 (python-send-string): Be slightly more careful about adding \n.
375
376 * startup.el (normal-splash-screen): Don't display the buffer if we'll
377 kill it right away anyway.
378
379 2006-09-09 Eli Zaretskii <eliz@gnu.org>
380
381 * international/codepage.el (cp850-decode-table): Fix a few codes.
382 (cp858-decode-table): New variable.
383
384 2006-09-09 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
385
386 * net/ldap.el (ldap-search-internal): Doc fix.
387
388 2006-09-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
389
390 * play/life.el (life-display-generation): Test for input manually if
391 `sleeptime' is negative or null.
392
393 * lpr.el (lpr-page-header-switches): Page title switch is one of them.
394 (print-region-1): Substitute `%s' with the page title.
395
396 2006-09-09 Matt Hodges <MPHodges@member.fsf.org>
397
398 * locate.el (locate-current-search): New variable.
399 (locate): Set buffer local value. Use current buffer if it is
400 in Locate mode.
401 (locate-mode): Disable undo here.
402 (locate-do-setup): Use locate-current-filter from buffer to be killed.
403 (locate-update): Use locate-current-search and locate-current-filter.
404
405 2006-09-08 David Kastrup <dak@gnu.org>
406
407 * desktop.el (desktop-read): When loading a desktop, disable
408 saving it while the load progresses, and switch off a pending lazy
409 load by calling `desktop-lazy-abort'.
410
411 2006-08-27 Martin Rudalics <rudalics@gmx.at>
412
413 * window.el (mouse-autoselect-window-timer)
414 (mouse-autoselect-window-position)
415 (mouse-autoselect-window-window)
416 (mouse-autoselect-window-now): New vars.
417 (mouse-autoselect-window-cancel)
418 (mouse-autoselect-window-select)
419 (mouse-autoselect-window-start): New functions.
420 (handle-select-window): Call `mouse-autoselect-window-start' when
421 delayed window autoselection is enabled.
422
423 * cus-start.el (mouse-autoselect-window): Handle delayed window
424 autoselection.
425
426 * emacs-lisp/eldoc.el: Add `handle-select-window' to the set of
427 commands after which it is allowed to print in the echo area.
428
429 2006-09-08 Richard Stallman <rms@gnu.org>
430
431 * textmodes/fill.el (adaptive-fill-regexp): Don't match `(1)' or `1.'
432
433 * mail/rmail.el (rmail-get-new-mail): Say whether all msgs are spam.
434 (rmail-convert-to-babyl-format): Don't record undo, leave list empty.
435
436 * emacs-lisp/timer.el (timer-create, timer-activate): Doc fixes.
437 (cancel-timer-internal): Add doc string.
438 (cancel-function-timers): Doc fix.
439 (with-timeout-handler, timer-event-last*): Add doc strings.
440
441 * emacs-lisp/bindat.el (bindat-unpack): Doc fix.
442
443 * files.el (risky-local-variable-p): Match ...-bindat-spec.
444
445 * dired.el (dired-log-summary): Add doc string.
446
447 * cus-edit.el (custom-menu-create): Bind deactivate-mark here
448 (custom-group-menu-create): Not here.
449
450 2006-09-08 Carsten Dominik <dominik@science.uva.nl>
451
452 * textmodes/org.el (org-dblock-write:clocktable): Avoid infinite loop.
453
454 2006-09-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
455
456 * term/mac-win.el: (show-hide-font-panel): New HI command ID symbol.
457 (mac-apple-event-map): Define its handler.
458
459 2006-09-07 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
460
461 * net/ldap.el (ldap-search-internal): Handle `auth' key.
462
463 2006-09-07 Magnus Henoch <mange@freemail.hu>
464
465 * net/rcirc.el (rcirc-activity-string): Don't quote value in case
466 clause.
467
468 2006-09-07 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
469
470 * info.el (Info-index): Bind completion-ignore-case.
471
472 2006-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
473
474 * progmodes/prolog.el (inferior-prolog-flavor): New var left out of
475 previous commit.
476 (inferior-prolog-guess-flavor): New fun left out of previous commit.
477 (prolog-consult-region-and-go): Don't hard code "*prolog*" and don't
478 burp in dedicated windows.
479 (inferior-prolog-self-insert-command): New command.
480 (inferior-prolog-mode-map): Use it.
481
482 2006-09-07 Reiner Steib <Reiner.Steib@gmx.de>
483
484 * international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
485
486 * international/code-pages.el: Add cp858.
487
488 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
489
490 * dnd.el: Fix bootstrapping.
491
492 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
493
494 * dnd.el (dnd-protocol-alist): Add what url-handler-mode can handle.
495 (dnd-open-remote-url): New function.
496 (dnd-open-remote-file-function): Set to dnd-open-remote-url if
497 not windows-nt.
498
499 2006-09-07 Jason Rumney <jasonr@gnu.org>
500
501 * dnd.el (dnd-open-remote-file-function): New variable.
502 (dnd-open-unc-file): New function.
503 (dnd-open-file): Call dnd-open-remote-file-function if set.
504
505 2006-09-06 Daiki Ueno <ueno@unixuser.org>
506
507 * pgg-gpg.el (pgg-gpg-process-region): Encode passphrase with
508 pgg-passphrase-coding-system rather than locale-coding-system.
509 * pgg-def.el (pgg-passphrase-coding-system): New user option.
510
511 2006-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
512
513 * progmodes/prolog.el: Remove * in docstrings.
514 (prolog-program-name): Add SWI prolog.
515 (prolog-mode-menu): New menu.
516 (prolog-mode): Set comment-add.
517 (prolog-indent-line): Simplify. Use indent-line-to.
518 (inferior-prolog-buffer): New var.
519 (inferior-prolog-run, inferior-prolog-process): New funs.
520 (run-prolog, switch-to-prolog): Rewrite, using them.
521 (prolog-consult-region): Use inferior-prolog-buffer.
522 (inferior-prolog-load-file): New function.
523 (prolog-mode-map): Add bindings for load-file and switch-to-prolog.
524
525 * textmodes/fill.el (fill-single-word-nobreak-p): Allow breaking before
526 last word, if it's not the end of the paragraph.
527
528 * files.el (abbreviate-file-name): Don't mistakenly match newlines in
529 file name.
530
531 2006-09-06 Ralf Angeli <angeli@caeruleus.net>
532
533 * frame.el (display-mm-dimensions-alist): New defcustom.
534 (display-mm-height, display-mm-width): Use it.
535
536 2006-09-06 Simon Josefsson <jas@extundo.com>
537
538 * mail/smtpmail.el (smtpmail-starttls-credentials): Doc fix.
539
540 2006-09-06 Nick Roberts <nickrob@snap.net.nz>
541
542 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
543 (gdb-var-list-children-regexp-1): Tweak regexps to catch full
544 string values.
545
546 2006-09-06 Kim F. Storm <storm@cua.dk>
547
548 * simple.el (line-move-partial): New function to do vscrolling for
549 partially visible images / tall lines. Rewrite based on code
550 previously in line-move. Simplify backwards vscrolling.
551 (line-move): Use it. Simplify.
552
553 2006-09-05 Kim F. Storm <storm@cua.dk>
554
555 * emulation/cua-base.el (cua--pre-command-handler-1): Rewrite.
556
557 2006-09-05 Chong Yidong <cyd@stupidchicken.com>
558
559 * progmodes/compile.el (compilation-error-regexp-alist-alist):
560 Process the `gcc-include' after the `gnu' rule.
561
562 2006-09-05 Kim F. Storm <storm@cua.dk>
563
564 * ido.el (ido-visit-buffer): Use buffer name if buffer arg is a buffer.
565
566 2006-09-05 Daiki Ueno <ueno@unixuser.org>
567
568 * pgg.el (pgg-clear-string): Alias to clear-string for backward
569 compatibility.
570
571 * pgg-gpg.el (pgg-gpg-process-region): Avoid display blinking with
572 inhibit-redisplay; encode passphrase with locale-coding-system.
573
574 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
575
576 * term/xterm.el (terminal-init-xterm): Add more C-M- bindings.
577
578 2006-09-05 Nick Roberts <nickrob@snap.net.nz>
579
580 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
581 (gdb-var-list-children-regexp): Make type field optional.
582
583 * progmodes/gud.el (gud-speedbar-buttons): Allow for no type
584 e.g public, protected in C++.
585
586 2006-09-04 John Paul Wallington <jpw@pobox.com>
587
588 * simple.el (completion-show-help): New defcustom.
589 (completion-setup-function): Heed it.
590
591 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
592
593 * term/xterm.el (terminal-init-xterm): Add C-M- bindings.
594
595 2006-09-04 Richard Stallman <rms@gnu.org>
596
597 * mail/rmail-spam-filter.el (rsf-scanning-messages-now): Doc fix.
598 (rsf-min-region-to-spam-list): Doc fix.
599 (rsf-add-content-type-field): Doc fix.
600
601 * simple.el (kill-region): Explicitly test there is a region.
602
603 2006-09-04 Chong Yidong <cyd@stupidchicken.com>
604
605 * mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
606 sendmail in several common directories.
607
608 * mail/sendmail.el (sendmail-program): Moved here from paths.el.
609
610 * paths.el (sendmail-program): Removed.
611
612 2006-09-04 Daiki Ueno <ueno@unixuser.org>
613
614 * pgg-gpg.el (pgg-gpg-process-region): Revert two patches from Satyaki
615 Das. http://article.gmane.org/gmane.emacs.gnus.general/49947
616 http://article.gmane.org/gmane.emacs.gnus.general/50457
617
618 2006-09-03 Chong Yidong <cyd@stupidchicken.com>
619
620 * cus-edit.el (custom-group-menu-create): Avoid deactivating the
621 mark after running the menu filter.
622
623 2006-09-03 Juri Linkov <juri@jurta.org>
624
625 * international/quail.el (quail-defrule-internal): Add a check
626 if a key is a vector.
627
628 2006-09-02 Juri Linkov <juri@jurta.org>
629
630 * man.el (Man-topic-history): New variable.
631 (man): Use it.
632
633 * woman.el (woman-topic-history): Change defvar to defvaralias
634 for symbol `Man-topic-history'.
635
636 * shell.el (shell-filter-ctrl-a-ctrl-b): Check if
637 `comint-last-output-start' is a marker by using `markerp' and
638 check if it has a position by using `marker-position', and use
639 this position for `goto-char'.
640
641 * international/quail.el (quail-defrule-internal): Add missing
642 `error' call for null key.
643
644 2006-09-02 Ryan Yeske <rcyeske@gmail.com>
645
646 * rcirc.el (rcirc-keywords): New variable.
647 (rcirc-bright-nicks, rcirc-dim-nicks): New variables.
648 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Remove
649 variables.
650 (rcirc-responses-no-activity): New function.
651 (rcirc-handler-generic): Check for responses in above.
652 (rcirc-process-command): Add ?: character to arguments of raw
653 server commands.
654 (rcirc-format-response-string): Use `rcirc-bright-nicks' and
655 `rcirc-dim-nicks'.
656 (rcirc-gray-toggle): Remove unused variable.
657 (rcirc-print): Remove some tracking logic, which is moved into
658 markup functions.
659 (rcirc-activity-types): Was `rcirc-activity-type', now a list of
660 types.
661 (rcirc-activity-string): Look for 'keyword in activity-types.
662 (rcirc-window-configuration-change): Don't erase overlay-arrow
663 unnecessarily.
664 (rcirc-add-or-remove): New function.
665 (rcirc-cmd-ignore): Use it.
666 (rcirc-message-leader): Remove unused function.
667 (rcicr-cmd-bright, rcirc-cmd-dim, rcirc-cmd-keyword): New commands.
668 (rcirc-add-face): New function.
669 (rcirc-facify): Use rcirc-add-face.
670 (rcirc-url-regexp): Add parens.
671 (rcirc-map-regexp): Remove function.
672 (rcirc-mangle-regexp): Remove function.
673 (rcirc-markup-text-functions): New variable.
674 (rcirc-markup-text): New function (replaces `rcirc-mangle-text').
675 (rcirc-markup-body-text, rcirc-markup-attributes)
676 (rcirc-markup-my-nick, rcirc-markup-urls, rcirc-markup-keywords)
677 (rcirc-markup-bright-nicks): New markup handler functions.
678 (rcirc-nick-in-message-full-line): New face.
679 (rcirc-track-nick): Rename from `rcirc-mode-line-nick'.
680 (rcirc-track-keyword, rcirc-url, rcirc-keyword): New faces.
681
682 2006-09-02 Martin Rudalics <rudalics@gmx.at>
683
684 * cus-start.el (hscroll-margin, hscroll-step)
685 (mode-line-in-non-selected-windows, mouse-autoselect-window)
686 (x-use-underline-position-properties): Change version to "22.1"
687 since they will appear there for the first time.
688
689 2006-09-01 Chong Yidong <cyd@stupidchicken.com>
690
691 * imenu.el (imenu-update-menubar): Use buffer-chars-modified-tick.
692
693 2006-08-31 Richard Stallman <rms@gnu.org>
694
695 * cus-edit.el (custom-save-variables): Slight cleanup.
696 (Custom-no-edit): Renamed from custom-no-edit.
697 (Custom-newline): Renamed from custom-newline.
698 (custom-mode-map): Use new names.
699
700 * emacs-lisp/easy-mmode.el (define-minor-mode): Reference manual
701 about customization, rather than M-x customize, in the doc string
702 made for the defcustom.
703
704 * emacs-lisp/trace.el (trace-function-background): Doc fix.
705
706 2006-08-31 Romain Francoise <romain@orebokech.com>
707
708 * dired-x.el (dired-guess-shell-alist-default): Update.
709
710 2006-08-31 Michael Mauger <mmaug@yahoo.com>
711
712 * custom.el (custom-theme-set-variables): Autoload packages before
713 sorting the variables.
714
715 2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu>
716
717 * viper-cmd.el (viper-special-read-and-insert-char): Convert events to
718 chars if XEmacs.
719 (viper-after-change-undo-hook): Check if undo-in-progress is bound.
720
721 2006-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
722
723 * progmodes/python.el (python-eldoc-function): Re-enable quit while
724 waiting for process.
725
726 2006-08-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
727
728 * term/mac-win.el (mac-string-to-utxt): If adjustment for MacJapanese
729 results in ASCII-only string, encode original one directly.
730
731 2006-08-29 Romain Francoise <romain@orebokech.com>
732
733 * startup.el (normal-splash-screen, fancy-splash-screens):
734 Make buffer read-only and arrange to enter view mode if necessary.
735
736 2006-08-29 Chong Yidong <cyd@stupidchicken.com>
737
738 * hl-line.el (hl-line): New face.
739 (hl-line-face): Use it.
740
741 * image-mode.el (image-mode): Fix last fix.
742 Suggested by Kim F. Storm.
743
744 2006-08-29 Michael Albinus <michael.albinus@gmx.de>
745
746 Sync with Tramp 2.0.54.
747
748 * net/tramp.el (tramp-convert-file-attributes): Call `eql' instead
749 of `=', because `tramp-get-remote-gid' might not always return an
750 integer when expected.
751 (tramp-register-file-name-handlers): `partial-completion-mode' is
752 unknown to XEmacs.
753 (tramp-time-diff): Don't use `floor', it might fail for large
754 differences.
755 (tramp-handle-make-auto-save-file-name): For Emacs 21, set
756 `tramp-auto-save-directory' if unset in order to guarantee unique
757 auto-save file names.
758
759 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
760
761 * image-mode.el (image-mode): Display image as text on a terminal.
762
763 2006-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
764
765 * progmodes/python.el (python-send-command): Simplify.
766 (run-python): Don't generate a new buffer unless `new' was specified.
767 Make sure we send `import emacs' to the proper process.
768
769 * progmodes/python.el (python-send-command): Don't wait for the command
770 to terminate. Don't fiddle with compilation-parsing-end.
771
772 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
773
774 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
775 Insert commentary after first line summary.
776
777 * woman.el (woman-follow): New function, based on `man-follow'.
778 (woman-mode-map): Use it.
779
780 * ibuffer.el (ibuffer-do-sort-by-recency): Perform full update
781 since ibuffer-do-sort-by-recency does not define a sorter.
782
783 2006-08-28 Kim F. Storm <storm@cua.dk>
784
785 * find-dired.el (find-dired): Use shell-quote-argument to properly
786 escape ( and ) args. Also use it on {} and ; args in default
787 value of find-ls-option string.
788 (find-grep-dired): Use shell-quote-argument on {} and ; args.
789
790 2006-08-27 Michael Olson <mwolson@gnu.org>
791
792 * emacs-lisp/tq.el: Small grammar fix in comments.
793 (tq-enqueue): Check for existence of queue rather than the
794 head queue item's question, which was a no-op.
795 (tq-filter, tq-process-buffer): Make sure the process buffer
796 exists before making it the current buffer.
797
798 2006-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
799
800 * term/mac-win.el (mac-apple-event-map): Rename hicommand to hi-command.
801 (mac-dnd-drop-data): Apply 2006-08-22 change for x-dnd-drop-data.
802 (special-event-map): Apply 2006-08-16 change for x-win.el.
803
804 2006-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
805
806 * progmodes/python.el (python-send-receive): Wait in the
807 process's buffer so as to check the right buffer-local variables.
808
809 2006-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
810
811 * emacs-lisp/checkdoc.el: Remove * in defcustoms.
812 (defgroup checkdoc): Move to beginning.
813
814 * progmodes/python.el (python-preoutput-skip-next-prompt): New var.
815 (python-preoutput-continuation): Remove.
816 (python-preoutput-filter): Simplify correspondingly.
817 Remove handling of _emacs_ok. Make sure we skip _emacs_out's prompts.
818 Loop around to catch embedded _emacs_out output.
819 (run-python): Send the import&print command on a single line.
820 (python-send-command): Send command&print on a single line.
821 (python-send-string): Only add double \n if needed.
822 (python-send-receive): Loop until the result comes.
823 (python-mode-running): Defvar it.
824 (python-setup-brm): Remove unused var `menu'.
825 Only bind py-mode-map and `features' around brm-init.
826 (python-calculate-indentation): Remove unused var `point'.
827 (python-beginning-of-defun): Remove unused var `def-line'.
828
829 2006-08-25 Richard Stallman <rms@gnu.org>
830
831 * kmacro.el (kmacro-repeat-on-last-key): Doc fix.
832
833 2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
834
835 * viper.el (viper-set-hooks): Use frame bindings for
836 viper-vi-state-cursor-color.
837 (viper-non-hook-settings): Don't set default
838 mode-line-buffer-identification.
839
840 * viper-util.el (viper-set-cursor-color-according-to-state): New fun.
841 (viper-set-cursor-color-according-to-state)
842 (viper-get-saved-cursor-color-in-replace-mode)
843 (viper-get-saved-cursor-color-in-insert-mode): Make conditional on
844 viper-emacs-state-cursor-color.
845
846 * viper-cmd.el (viper-envelop-ESC-key): Bug fix.
847 (viper-undo): Use point if undo-beg-posn is nil.
848 (viper-insert-state-post-command-sentinel, viper-change-state-to-emacs)
849 (viper-after-change-undo-hook): Don't use
850 viper-emacs-state-cursor-color by default.
851 (viper-undo): More sensible positioning after undo.
852
853 * viper-ex.el (ex-splice-args-in-1-letr-cmd): Get rid of caddr.
854 (viper-emacs-state-cursor-color): Default to nil, since this feature
855 doesn't work well yet.
856
857 * ediff-mult.el (ediff-intersect-directories)
858 (ediff-get-directory-files-under-revision, ediff-dir-diff-copy-file):
859 always expand filenames.
860
861 2006-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
862
863 * tumme.el: Remove * in defcustoms's docstrings.
864
865 2006-08-24 Chong Yidong <cyd@stupidchicken.com>
866
867 * emacs-lisp/timer.el (timer-set-idle-time, run-with-idle-timer):
868 Accept internal time format for SECS arg.
869 (timer-relative-time): Doc fix.
870
871 * jit-lock.el: "Stealth fontification by requeuing timers" patch,
872 adapted from Martin Rudalics.
873 (jit-lock-stealth-repeat-timer, jit-lock-stealth-buffers): New vars.
874 (jit-lock-mode): Create jit-lock-stealth-repeat-timer.
875 (jit-lock-stealth-fontify): Reschedule as a idle timer instead of
876 using sit-for.
877
878 2006-08-24 Francesc Rocher <francesc.rocher@gmail.com>
879
880 * cus-start.el (all): Add `overline-margin' and
881 `x-underline-at-descent-line'.
882
883 2006-08-24 Kim F. Storm <storm@cua.dk>
884
885 * progmodes/grep.el (grep-find-use-xargs): Use explicit value `exec'
886 to mean "use find -exec"; nil now unambiguously means auto-detect.
887 (grep-compute-defaults): Set grep-find-use-xargs to `exec' if not `gnu'.
888 Use shell-quote-argument to build grep-find-command and
889 grep-find-template.
890 (rgrep): Use shell-quote-argument to properly quote arguments to find.
891 Reported by Tom Seddon.
892
893 2006-08-23 Chong Yidong <cyd@stupidchicken.com>
894
895 * startup.el (fancy-splash-head): Give instructions for dismissing
896 the splash screen for default startup too.
897 (display-startup-echo-area-message, fancy-splash-screens)
898 (use-fancy-splash-screens-p): New arg hide-on-input. If nil, show
899 all splash text at once and keep the splash buffer around.
900 (command-line-1): Give display-startup-echo-area-message a t arg.
901
902 2006-08-23 Carsten Dominik <dominik@science.uva.nl>
903
904 * textmodes/org.el (org-follow-gnus-link): Make sure the dedicated
905 gnus frame is selected.
906
907 2006-08-23 Nick Roberts <nickrob@snap.net.nz>
908
909 * progmodes/gdb-ui.el (gdb-starting): Reset gdb-signalled to nil.
910
911 2006-08-22 Kim F. Storm <storm@cua.dk>
912
913 * ido.el (ido-set-matches-1): Fix full matching for subdirs.
914 Add suffix matching for subdirs.
915
916 2006-08-22 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
917
918 * x-dnd.el (x-dnd-drop-data): Don't call goto-char if
919 mouse-yank-at-point is non-nil.
920
921 2006-08-22 Nick Roberts <nickrob@snap.net.nz>
922
923 * progmodes/gdb-ui.el (gdb-frame-memory-buffer): Make frame
924 a bit wider and remove fringes to fit initial output on line.
925
926 2006-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
927
928 * frame.el (blink-cursor-end): Only ignore the error we care about.
929 (blink-cursor-mode): Use blink-cursor-end to simplify the code.
930
931 2006-08-21 Richard Stallman <rms@gnu.org>
932
933 * whitespace.el (whitespace-cleanup): Doc fix.
934
935 2006-08-20 Ryan Yeske <rcyeske@gmail.com>
936
937 * net/rcirc.el (rcirc-show-maximum-output): New var.
938 (rcirc-buffer-process): If no buffer argument is supplied, use
939 current-buffer.
940 (rcirc-complete-nick): Complete to the last completed nick first.
941 (rcirc-mode): Preserve the value of `rcirc-urls' across
942 connections. Setup scroll function.
943 (rcirc-scroll-to-bottom): New function.
944 (rcirc-print): Use nick syntax around regexp work.
945 Notice dim-nicks speaking only if they say our nick.
946 (rcirc-update-activity-string): Do not show the modeline indicator
947 if there are no live rcirc processes.
948 (rcirc-cmd-ignore): Ignore case.
949 (rcirc-browse-url-at-point): Fix off-by-one error.
950
951 2006-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
952
953 * progmodes/python.el: Remove * in defcustom docstrings.
954 (run-python, python-proc, python-try-complete): Use derived-mode-p.
955 (python-mode): Set tab-width and indent-tabs-mode.
956
957 2006-08-20 Dave Love <fx@gnu.org>
958
959 * progmodes/python.el: Update to Dave Love's latest version.
960 (python-font-lock-keywords, python-mode): Don't use
961 font-lock-syntax-table, but match symbol elements explicitly instead.
962 (python-mode-map): Add help, and a few more key bindings.
963 (python-skip-comments/blanks): Move out of comments as well.
964 (python-continuation-line-p): Behave better with unbalanced parens.
965 (python-blank-line-p): New fun.
966 (python-open-block-statement-p): Don't use a heuristic.
967 (python-outdent-p): Better handle blocks-in-the-same-line.
968 (python-calculate-indentation): Misc improvements.
969 (python-comment-indent): Remove.
970 (python-block-pairs): New var.
971 (python-first-word): New fun.
972 (python-indentation-levels): Handle more common cases.
973 (python-indent-line-1): Add `leave' argument.
974 (python-indent-region): New fun.
975 (python-skip-out): New fun.
976 (python-beginning-of-statement, python-end-of-statement): Use it.
977 (python-next-statement): Return correct count even at eob.
978 (python-end-of-block): Fix paren-typo.
979 (python-imenu-create-index): Add module variables.
980 (run-python): Add `new' arg.
981 Check we're at a prompt before returning.
982 (python-send-command): Move to end of buffer.
983 Wait for prompt to return.
984 (python-set-proc): New fun.
985 (python-imports): New var.
986 (python-describe-symbol): Use it. Adjust to new interface of `ehelp'.
987 (python-eldoc-function): Try to move out of arg list.
988 (python-outline-level): Offset by 1.
989 (python-find-imports): New fun.
990 (python-symbol-completions): Use python-imports.
991 (python-module-path, ffap-alist): Add support for ffap.
992 (python-skeletons, python-mode-abbrev-table, def-python-skeleton)
993 (pythin-insert-*, python-default-template, python-expand-template):
994 Add templates/skeletons.
995 (python-setup-brm): Support for Bicycle Repair Man.
996 (python-abbrev-syntax-table): New var.
997 (python-abbrev-pc-hook, python-pea-hook): New funs.
998
999 2006-08-20 Chong Yidong <cyd@stupidchicken.com>
1000
1001 * frame.el (blink-cursor-start): Set timer first.
1002 (blink-cursor-end): Ignore timer cancelling errors.
1003 Suggested by Ken Manheimer.
1004
1005 2006-08-20 Juanma Barranquero <lekktu@gmail.com>
1006
1007 * newcomment.el (comment-box): Call `comment-normalize-vars'.
1008 Add autoload cookie.
1009
1010 2006-08-20 Richard Stallman <rms@gnu.org>
1011
1012 * simple.el (line-number-at-pos): Doc fix.
1013
1014 * emacs-lisp/timer.el (run-with-idle-timer): Pass t to
1015 timer-activate-when-idle, so timer can run before Emacs becomes
1016 non-idle again.
1017
1018 2006-08-18 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change)
1019
1020 * whitespace.el (whitespace-cleanup-internal): New optional arg
1021 REGION-ONLY. If it's non-nil, modify the message to the user
1022 accordingly.
1023 (whitespace-cleanup-region): Call whitespace-cleanup-internal with
1024 a non-nil argument.
1025
1026 2006-08-18 Gustav H\e,Ae\e(Bllberg <gustav@gmail.com> (tiny change)
1027
1028 * rect.el (spaces-string): Simplify and add doc string.
1029
1030 2006-08-17 Romain Francoise <romain@orebokech.com>
1031
1032 * progmodes/gdb-ui.el (gdb-edit-locals-value): Balance parens.
1033
1034 2006-08-17 Richard Stallman <rms@gnu.org>
1035
1036 * compare-w.el (compare-windows): lambda's take an arg and pass
1037 it to compare-windows-skip-whitespace.
1038
1039 2006-08-17 Martin Rudalics <rudalics@gmx.at>
1040
1041 * jit-lock.el (jit-lock-fontify-now): Protect the modified status of
1042 the right buffer.
1043
1044 2006-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
1045
1046 * pcvs-parse.el (cvs-parse-table): Accept the new `...' format for
1047 removed files.
1048
1049 2006-08-17 Nick Roberts <nickrob@snap.net.nz>
1050
1051 * progmodes/gdb-ui.el (gdb-locals-watch-map)
1052 (gdb-locals-watch-map-1): Suppress keymap first.
1053 (gdb-edit-locals-map-1): New variable.
1054 (gdb-edit-locals-value): New function.
1055 (gdb-stack-list-locals-handler): Use them.
1056
1057 2006-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
1058
1059 * mouse.el (global-map): Allow yanking with mouse-2 at a spot whose
1060 cursor would normally be drawn in the fringe.
1061
1062 * font-lock.el (font-lock-extend-region-wholelines): Fix up typo.
1063 Reported by Martin Rudalics <rudalics@gmx.at>.
1064
1065 2006-08-16 Richard Stallman <rms@gnu.org>
1066
1067 * term/x-win.el (x-clipboard-yank): Specify * in interactive spec.
1068 (special-event-map): Process drag-n-drop events this way.
1069
1070 * simple.el (move-beginning-of-line): Test whether fields
1071 would prevent motion back to line's first visible character.
1072 If so, stop where the fields would stop the motion.
1073
1074 * newcomment.el (comment-indent): Fully update INDENT
1075 before checking to see if it will change the text.
1076
1077 * cus-edit.el (custom-newline): New function.
1078 (custom-mode-map): Bind newline to custom-newline.
1079
1080 * compare-w.el (compare-windows): Factor compare-ignore-whitespace
1081 into ignore-whitespace.
1082 Check each buffer for its skip-function.
1083 Handle compare-windows-skip-whitespace special-case test
1084 by returning t from default skip function.
1085
1086 2006-08-15 Carsten Dominik <dominik@science.uva.nl>
1087
1088 * textmodes/org.el (org-clock-special-range)
1089 (org-clock-update-time-maybe): New functions.
1090 (org-stamp-time-of-day-regexp): Allow weekday to be of word chars,
1091 not only a-z.
1092 (org-agenda-get-blocks): Allow multiple blocks per headline.
1093 (org-timestamp-change): Call `org-clock-update-time-maybe'.
1094 (org-export-html-title-format)
1095 (org-export-html-toplevel-hlevel): New options.
1096 (org-export-language-setup): Add support for Czech.
1097 (org-mode, org-insert-todo-heading, org-find-visible)
1098 (org-find-invisible, org-invisible-p, org-invisible-p2)
1099 (org-back-to-heading, org-on-heading-p, org-up-heading-all)
1100 (org-show-subtree, org-show-entry, org-make-options-regexp):
1101 Remove compatibility support for old outline-mode.
1102 (org-check-occur-regexp): Funtion removed.
1103 (org-on-heading-p, org-back-to-heading): Made defalias.
1104 (org-set-local): New defsubst.
1105 (org-set-regexps-and-options, org-mode)
1106 (org-set-font-lock-defaults, org-edit-agenda-file-list)
1107 (org-timeline, org-agenda-list, org-todo-list, org-tags-view)
1108 (org-remember-apply-template, org-table-edit-field)
1109 (org-table-edit-formulas, orgtbl-mode, org-export-as-ascii)
1110 (org-set-autofill-regexps): Use `org-set-local'.
1111 (org-table-eval-formula): Fix bug with parsing of display flags.
1112
1113 2006-08-15 Nick Roberts <nickrob@snap.net.nz>
1114
1115 * progmodes/gdb-ui.el (gdb-info-stack-custom): Indicate selected
1116 frame with fringe arrow. Suggested by Simon Marshall
1117 <simon.marshall@misys.com>.
1118 (gdb-stack-position): New variable.
1119 (gdb-starting, gdb-exited): Reset gdb-stack-position to nil.
1120 (gdb-frames-mode): Set gdb-stack-position to nil.
1121 Add to overlay-arrow-variable-list
1122 (gdb-reset): Delete gdb-stack-position from above list.
1123
1124 2006-08-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1125
1126 * term/x-win.el (menu-bar-edit-menu): Disable paste if buffer is
1127 read only.
1128
1129 2006-08-13 Romain Francoise <romain@orebokech.com>
1130
1131 * cus-theme.el (customize-create-theme)
1132 (custom-theme-visit-theme): End `y-or-n-p' prompt with a space.
1133
1134 * filesets.el (filesets-add-buffer): Ditto.
1135
1136 * pcvs.el (cvs-change-cvsroot): Ditto.
1137
1138 2006-08-13 Nick Roberts <nickrob@snap.net.nz>
1139
1140 * progmodes/gdb-ui.el (gdb-frame-separate-io-buffer)
1141 (gdb-use-separate-io-buffer, menu): Avoid using `inferior' in text.
1142 (gdb-memory-mode, gdb-locals-watch-map): Don't quote lambda
1143 expressions.
1144 (gdb-info-breakpoints-custom): Use gdb-breakpoint-regexp.
1145 Only search till end of line.
1146 Add face to function names in case of no filename.
1147 Add face to variable names of watchpoints.
1148
1149 2006-08-12 Robert Thorpe <rthorpe@realworldtech.com> (tiny change)
1150
1151 * cus-start.el <indent-tabs-mode>: Move to the `indent'
1152 customization group.
1153
1154 2006-08-12 Ken Manheimer <ken.manheimer@gmail.com>
1155
1156 * allout.el (allout-prior-bindings, allout-added-bindings):
1157 Remove, after long deprecation.
1158 (allout-beginning-of-line-cycles, allout-end-of-line-cycles):
1159 Add customization vars controlling allout-beginning-of-line and
1160 allout-end-of-line conveniences.
1161 (allout-header-prefix, allout-use-mode-specific-leader)
1162 (allout-use-mode-specific-leader, allout-mode-leaders):
1163 Revise docstrings.
1164 (allout-infer-header-lead): Change to be an alias for
1165 allout-infer-header-lead-and-primary-bullet.
1166 (allout-infer-header-lead-and-primary-bullet): New version of
1167 allout-infer-header-lead which assigns the primary bullet to the
1168 same as the header lead, when its being changed.
1169 (allout-infer-body-reindent): Apply regexp-quote instead of
1170 unconditionally prepending "\\", so that all literal
1171 allout-header-prefix and allout-primary-bullet strings are
1172 properly handled.
1173 (allout-add-resumptions): Add optional qualifier for extending or
1174 appending to existing values, rather than replacing them.
1175 (allout-view-change-hook): Clarify docstring.
1176 (allout-exposure-change-hook): Take explicit arguments, via
1177 run-hook-with-args.
1178 (allout-structure-added-hook)
1179 (allout-structure-deleted-hook)
1180 (allout-structure-shifted-hook): New hooks analogous to
1181 allout-exposure-change-hook for other kinds of structural outline
1182 edits.
1183 (allout-encryption-plaintext-sanitization-regexps): New encryption
1184 customization variable, by which cooperating modes can provde
1185 massage of the plaintext without actually being passed it.
1186 (allout-encryption-ciphertext-rejection-regexps)
1187 (allout-encryption-ciphertext-rejection-ceiling): New encryption
1188 customization variables, by which cooperating modes can prohibit
1189 rare but possible ciphertext patterns from fouling their
1190 operation, with actually being passed the ciphertext.
1191 (allout-mode): Run activation and deactivation hooks after the
1192 minor-mode variable has been toggled, to clarify the mode
1193 disposition. The new encryption ciphertext rejection variable is
1194 used to ensure that the ciphertext does not contain text that
1195 would be recognized as outline structural elements by allout.
1196 Substite allout-beginning-of-line and allout-end-of-line for
1197 conventionall beginning-of-line and end-of-line bindings.
1198 If allout-old-style-prefixes is non-nil, don't nullify it on mode
1199 activation!
1200 (allout-beginning-of-line): Respect `allout-beginning-of-line-cycles'.
1201 (allout-end-of-line): Respect `allout-end-of-line-cycles'.
1202 (allout-chart-subtree): Implement new mode, charting only the
1203 visible items in the subtree, when new 'visible' parameter is non-nil.
1204 (allout-end-of-subtree): Properly handle the last item in the buffer.
1205 (allout-pre-command-business, allout-command-counter):
1206 Increment an advertised counter so that cooperating enhancements can
1207 track revisions of items.
1208 (allout-open-topic): Run allout-structure-added-hook with suitable
1209 arguments.
1210 (allout-shift-in): Run allout-structure-shifted-hook with suitable
1211 arguments.
1212 (allout-shift-out): Fix doubling for negative args and ensure call
1213 of allout-structure-shifted-hook by solely using allout-shift-in.
1214 (allout-kill-line, allout-kill-topic):
1215 Run allout-structure-deleted-hook with suitable arguments.
1216 (allout-yank-processing): Run allout-structure-added-hook with
1217 proper arguments.
1218 (allout-yank): Enclose activity in allout-unprotected.
1219 (allout-flag-region): Run allout-exposure-change-hook with
1220 suitable arguments, instead of making the callee infer the arguments.
1221 (allout-encrypt-string):
1222 Support allout-encryption-plaintext-sanitization-regexps,
1223 allout-encryption-ciphertext-rejection-regexps, and
1224 allout-encryption-ciphertext-rejection-ceiling. Indicate correct
1225 en/de cryption mode in symmetric encryption failure message.
1226 (allout-obtain-passphrase): Use copy-sequence to get a distinct
1227 copy of the passphrase, and don't zero it or we'll corrupt the
1228 stashed copy.
1229 (allout-create-encryption-passphrase-verifier)
1230 (allout-verify-passphrase): Respect the new signature for
1231 allout-encrypt-string.
1232 (allout-get-configvar-values): Convenience for getting a
1233 configuration variable value and handling its absence gracefully.
1234
1235 2006-08-11 Romain Francoise <romain@orebokech.com>
1236
1237 * obsolete/zone-mode.el: Delete.
1238
1239 2006-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
1240
1241 * textmodes/dns-mode.el (dns-mode): Use before-save-hook.
1242
1243 2006-08-11 Thien-Thi Nguyen <ttn@gnu.org>
1244
1245 * emacs-lisp/bindat.el (bindat-ip-to-string):
1246 Use `format-network-address' if possible.
1247
1248 2006-08-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1249
1250 * x-dnd.el (x-dnd-init-frame): Call x-register-dnd-atom.
1251
1252 2006-08-10 Chong Yidong <cyd@stupidchicken.com>
1253
1254 * emacs-lisp/edebug.el (edebug-recursive-edit): Don't save and
1255 restore unread-command-events here.
1256 (edebug-display): Do it here, to detect sit-for interruptions.
1257
1258 2006-08-10 Romain Francoise <romain@orebokech.com>
1259
1260 * textmodes/dns-mode.el: Alias `zone-mode' to `dns-mode'.
1261 (dns-mode-soa-auto-increment-serial): New user option.
1262 (dns-mode-soa-maybe-increment-serial): New function.
1263 (dns-mode): Add the latter to `write-contents-functions'.
1264
1265 * obsolete/zone-mode.el: Move to obsolete/ from net/.
1266 Delete autoload cookies.
1267
1268 2006-08-10 John Wiegley <johnw@newartisans.com>
1269
1270 * eshell/em-glob.el (eshell-glob-chars-list)
1271 (eshell-glob-translate-alist): Add support for [^g] in character globs.
1272
1273 2006-08-10 Richard Stallman <rms@gnu.org>
1274
1275 * facemenu.el (facemenu-add-face): Pass frame to facemenu-active-faces.
1276 (facemenu-set-face): Doc fix.
1277 (facemenu-listed-faces): Doc fix.
1278
1279 2006-08-09 Chong Yidong <cyd@stupidchicken.com>
1280
1281 * avoid.el (mouse-avoidance-animating-pointer): New var.
1282 (mouse-avoidance-nudge-mouse): Use it.
1283 (mouse-avoidance-banish): Rename from mouse-avoidance-banish-hook.
1284 (mouse-avoidance-exile): Rename from mouse-avoidance-exile-hook
1285 (mouse-avoidance-fancy): Rename from mouse-avoidance-fancy-hook.
1286 Don't activate if currently animating. All callers changed.
1287
1288 2006-08-09 John Wiegley <johnw@newartisans.com>
1289
1290 * calendar/timeclock.el (timeclock-use-elapsed): Added a new
1291 variable, which causes timeclock to report elapsed time worked,
1292 instead of just work remaining.
1293
1294 2006-08-09 Kenichi Handa <handa@m17n.org>
1295
1296 * international/latexenc.el (latexenc-find-file-coding-system):
1297 Fix for the case that the 2nd element of arg-list is a cons.
1298
1299 2006-08-08 Chong Yidong <cyd@stupidchicken.com>
1300
1301 * info.el (Info-fontify-node): Handle preceding `in' for note
1302 reference hiding rules.
1303
1304 2006-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
1305
1306 * progmodes/sh-script.el (sh-quoted-subshell): Make sure we don't
1307 mistake a closing " for an opening one.
1308
1309 2006-08-07 Dan Nicolaescu <dann@ics.uci.edu>
1310
1311 * term/xterm.el (terminal-init-xterm): Add more key bindings.
1312
1313 2006-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
1314
1315 * complete.el (PC-do-completion): Filter out completions matching
1316 completion-ignored-extensions before checking whether there are
1317 multiple completions.
1318 Don't use `list' unnecessarily when building completion tables.
1319
1320 2006-08-06 Richard Stallman <rms@gnu.org>
1321
1322 * help.el (describe-mode): Make minor mode list more concise.
1323
1324 2006-08-05 Chong Yidong <cyd@stupidchicken.com>
1325
1326 * bindings.el: Give mode-line-format, mode-line-modes, and
1327 mode-line-position `standard-value' properties.
1328
1329 2006-08-05 Eli Zaretskii <eliz@gnu.org>
1330
1331 * buff-menu.el (list-buffers-noselect): For Info buffers, use
1332 "(file)node" instead of the file name.
1333
1334 2006-08-05 Richard Stallman <rms@gnu.org>
1335
1336 * faces.el (escape-glyph): Doc fix.
1337
1338 2006-08-04 Kenichi Handa <handa@m17n.org>
1339
1340 * international/mule-diag.el (describe-font): Improve docstring
1341 and error message. Use frame-parameter (not frame-parameters).
1342
1343 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
1344
1345 * progmodes/gud.el (gdb-script-font-lock-syntactic-keywords):
1346 Correctly mark the end-of-docstring char.
1347
1348 2006-08-03 Chong Yidong <cyd@stupidchicken.com>
1349
1350 * simple.el (line-move-to-column): Constrain move-to-column to
1351 current field.
1352
1353 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
1354
1355 * font-lock.el (font-lock-beg, font-lock-end)
1356 (font-lock-extend-region-functions): New vars.
1357 (font-lock-extend-region-multiline)
1358 (font-lock-extend-region-wholelines): New functions.
1359 (font-lock-default-fontify-region): Use them.
1360 (font-lock-extend-jit-lock-region-after-change): Only round up
1361 if font-lock-default-fontify-region will do it as well.
1362
1363 * font-lock.el (font-lock-extend-after-change-region-function):
1364 Rename from font-lock-extend-region-function.
1365 (font-lock-extend-region): Remove by inlining at call sites.
1366 (font-lock-after-change-function): Don't needlessly round up to a whole
1367 number of lines.
1368 (font-lock-extend-jit-lock-region-after-change): Be more careful about
1369 the boundary conditions and the interactions between the various ways
1370 to extend the region.
1371
1372 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1373
1374 * jit-lock.el (jit-lock-fontify-now): Preserve the buffer's
1375 modification status when forcing the second redisplay.
1376
1377 2006-08-03 Kim F. Storm <storm@cua.dk>
1378
1379 * edmacro.el (edmacro-fix-menu-commands): Ignore switch-frame.
1380
1381 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1382
1383 * pcvs-util.el (cvs-get-buffer-create): Obey `noreuse' even if `name'
1384 doesn't look like a file name.
1385
1386 * complete.el (PC-expand-many-files): Avoid signalling an error when
1387 the current directory doesn't exist. Reported by Micha\e,Ak\e(Bl Cadilhac.
1388
1389 2006-08-02 Andreas Schwab <schwab@suse.de>
1390
1391 * bindings.el (mode-line-format): Simplify reference to vc-mode.
1392
1393 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
1394
1395 * bindings.el (map): Make mode-line-buffer-identification-keymap
1396 before defining propertized-buffer-identification.
1397
1398 2006-08-01 Richard Stallman <rms@gnu.org>
1399
1400 * bindings.el (mode-line-format): Adjust spacing around vc-mode.
1401
1402 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
1403
1404 * progmodes/gdb-ui.el (gdb-find-source-frame): Make nil the
1405 default value.
1406 (gdb-find-source-frame): New function.
1407 (menu): Add to menu bar.
1408
1409 2006-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
1410
1411 * font-core.el (font-lock-extend-region-function)
1412 (font-lock-extend-region): Move to font-lock.el.
1413
1414 * font-lock.el (font-lock-extend-region-function)
1415 (font-lock-extend-region): Move from font-core.el. Simplify.
1416
1417 * jit-lock.el (jit-lock-fontify-now): Cause a second redisplay
1418 if needed.
1419 (jit-lock-start, jit-lock-end): New dynamic scoped vars.
1420 (jit-lock-after-change-extend-region-functions): New hook.
1421 (jit-lock-after-change): Use it instead of hard-coding font-lock code.
1422
1423 * font-lock.el (font-lock-extend-jit-lock-region-after-change): New fun.
1424 (font-lock-turn-on-thing-lock): Use it.
1425
1426 * longlines.el (longlines-show-region): Make it work on read-only
1427 buffers as well.
1428
1429 2006-08-01 Nick Roberts <nickrob@snap.net.nz>
1430
1431 * progmodes/gdb-ui.el (gdb-set-hollow): Check for gud-last-last-frame.
1432
1433 2006-07-31 Richard Stallman <rms@gnu.org>
1434
1435 * progmodes/vhdl-mode.el (vhdl-speedbar-display-directory)
1436 (vhdl-speedbar-display-projects): Update old obsolete
1437 speedbar variable names.
1438
1439 2006-07-31 Nick Roberts <nickrob@snap.net.nz>
1440
1441 * progmodes/gdb-ui.el (gdb-find-source-frame): New option.
1442 (gdb-stopped): Use it.
1443
1444 * t-mouse.el (t-mouse-mode): Use set-process-query-on-exit-flag.
1445
1446 2006-07-29 Chong Yidong <cyd@stupidchicken.com>
1447
1448 * loadhist.el (unload-feature): Handle new `(t . SYMBOL)' format
1449 for load-history elements.
1450
1451 2006-07-29 Eli Zaretskii <eliz@gnu.org>
1452
1453 * files.el (convert-standard-filename): For Cygwin, replace
1454 characters not allowed in Windows file names.
1455 (make-auto-save-file-name): Add Cygwin to the list of systems
1456 where the auto-save file name needs to be run through
1457 convert-standard-filename.
1458
1459 2006-07-29 Lennart Borgman <lennart.borgman.073@student.lu.se>
1460
1461 * window.el (bw-get-tree): Don't integerp subtree if it's nil.
1462
1463 2006-07-28 Richard Stallman <rms@gnu.org>
1464
1465 * bindings.el (mode-line-frame-identification)
1466 (propertized-buffer-identification): Centralize the code
1467 to initialize the variable.
1468
1469 * progmodes/grep.el (grep-default-command): Catch errors from
1470 wildcard-to-regexp.
1471
1472 2006-07-29 Kim F. Storm <storm@cua.dk>
1473
1474 * progmodes/grep.el (grep-tag-default): New function.
1475 (grep-default-command, grep-read-regexp): Use it.
1476 (grep-read-files): Use car of grep-files-history or grep-files-aliases
1477 as default if nothing else applies.
1478
1479 2006-07-28 Bill Atkins <atkinw@rpi.edu> (tiny change)
1480
1481 * wdired.el (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
1482 Throw error if buffer is not in Dired and Wdired mode, respectively.
1483
1484 2006-07-28 Chong Yidong <cyd@stupidchicken.com>
1485
1486 * cus-edit.el (custom-no-edit): Revert 2006-07-27 change, so that
1487 self-insert-command keys don't activate buttons.
1488 (custom-mode-map): Just don't bind "\C-m" to `custom-no-edit'.
1489
1490 2006-07-29 Nick Roberts <nickrob@snap.net.nz>
1491
1492 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Use different
1493 faces for enable character.
1494
1495 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
1496
1497 * Makefile.in (recompile): Update comment to reflect change
1498 on 2004-04-21.
1499
1500 2006-07-27 Richard Stallman <rms@gnu.org>
1501
1502 * cus-edit.el (customize-package-emacs-version-alist): Doc fix.
1503 (customize-package-emacs-version): Change msg when pkg has no entry.
1504 (custom-no-edit): On a button, do like widget-button-press.
1505
1506 2006-07-27 Dan Nicolaescu <dann@ics.uci.edu>
1507
1508 * term/xterm.el (terminal-init-xterm): Fix bindings for C-tab,
1509 S-tab and C-S-tab.
1510
1511 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
1512
1513 * progmodes/which-func.el (which-function): Fix documentation/
1514 comment typo.
1515
1516 2006-07-26 Richard Stallman <rms@gnu.org>
1517
1518 * textmodes/ispell.el (ispell-word): If we replace the word,
1519 move point to the end. Insert before deleting.
1520
1521 2006-07-26 Chong Yidong <cyd@stupidchicken.com>
1522
1523 * subr.el (sit-for): Use new SECONDS arg of read-event instead of
1524 a timer.
1525
1526 2006-07-26 Mathias Dahl <mathias.dahl@gmail.com>
1527
1528 * tumme.el (tumme-backward-image): Add prefix argument. Add error
1529 when at first image.
1530 (tumme-forward-image): Add prefix argument. Add error when at last
1531 image.
1532
1533 2006-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
1534
1535 * tabify.el (tabify-regexp): Use more specific regexps.
1536 (tabify): Avoid modifying the buffer unnecessarily.
1537
1538 2006-07-25 Mathias Dahl <mathias.dahl@gmail.com>
1539
1540 * tumme.el (tumme-track-original-file): Add `buffer-live-p' check.
1541 (tumme-format-properties-string): Handle empty `buf'.
1542 (tumme-get-comment): Change variable names inside `let'.
1543 Add missing `let' variable that cause font-lock problems.
1544 (tumme-write-comments): Change variable names inside `let'.
1545 Add missing `let' variable that cause font-lock problems.
1546 (tumme-forward-image): Rename from `tumme-forward-char'.
1547 (tumme-backward-image): Rename from `tumme-backward-char'.
1548
1549 2006-07-25 Masatake YAMATO <jet@gyve.org>
1550
1551 * progmodes/ld-script.el (ld-script-keywords)
1552 (ld-script-font-lock-keywords, ld-script-builtins): Update keywords
1553 and add comments.
1554
1555 2006-07-25 Nick Roberts <nickrob@snap.net.nz>
1556
1557 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
1558 (gdb-resync, gdb-prompt, gdb-starting, gdb-exited, gdb-stopped)
1559 (gdb-set-gud-minor-mode-existing-buffers-1): Use different faces
1560 for status indicator.
1561
1562 2006-07-24 Richard Stallman <rms@gnu.org>
1563
1564 * xml.el (xml-parse-file): Clean up, and use with-temp-buffer.
1565
1566 * subr.el (dolist, dotimes): Use interned symbols for locals.
1567 (--dotimes-limit--, --dolist-tail--): New defvars.
1568 (looking-back): Doc fix.
1569
1570 * replace.el (replace-match-string-symbols): Handle dotted lists.
1571
1572 2006-07-24 mathias <mathias@mattis>
1573
1574 * tumme.el (tumme-write-tags): Add.
1575 (tumme-write-comments): Add.
1576 (tumme-tag-files): Change to use `tumme-write-tags'.
1577 (tumme-tag-thumbnail): Change to use `tumme-write-tags'.
1578 (tumme-dired-comment-files): Change to use `tumme-write-comments'.
1579 (tumme-save-information-from-widgets): Change to use
1580 `tumme-write-comments' and `tumme-write-tags'.
1581 (tumme-comment-thumbnail): Change to use `tumme-write-comments'.
1582 (tumme-write-tag): Remove.
1583 (tumme-write-comment): Remove.
1584 (tumme-display-previous-thumbnail-original): Remove empty line.
1585 (tumme-widget-list): Add punctuation.
1586
1587 2006-07-24 mathias <mathias.dahl@gmail.com>
1588
1589 * tumme.el (tumme-line-up): Add an extra check for end of buffer.
1590
1591 2006-07-24 Daiki Ueno <ueno@unixuser.org>
1592
1593 * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
1594 letters from the end. Thanks to "David Smith" <davidsmith@acm.org>
1595 and andreas@altroot.de (Andreas V\e,Av\e(Bgele).
1596
1597 2006-07-23 Thien-Thi Nguyen <ttn@gnu.org>
1598
1599 * mouse.el (mouse-on-link-p): Doc fix.
1600
1601 2006-07-23 Nick Roberts <nickrob@snap.net.nz>
1602
1603 * emacs-lisp/find-func.el (find-function-search-for-symbol):
1604 Handle "C-h f `".
1605
1606 2006-07-22 Dan Nicolaescu <dann@ics.uci.edu>
1607
1608 * ibuffer.el (ibuffer-formats): Use left alignment for the mode
1609 column.
1610
1611 2006-07-22 Matt Hodges <MPHodges@member.fsf.org>
1612
1613 * textmodes/table.el: Add move-beginning-of-line and
1614 move-end-of-line to Point Motion Only Group.
1615
1616 2006-07-22 Eric Hanchrow <offby1@blarg.net>
1617
1618 * progmodes/delphi.el (delphi-fill-comment): Use save-restriction.
1619
1620 2006-07-22 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
1621
1622 * startup.el (user-mail-address): Initialize from the `EMAIL'
1623 environment variable first. Document this.
1624 (command-line): Ditto.
1625
1626 2006-07-22 Nick Roberts <nickrob@snap.net.nz>
1627
1628 * help-mode.el (help-function-def, help-variable-def)
1629 (help-face-def): Print a message in the minibuffer.
1630
1631 2006-07-21 Dan Nicolaescu <dann@ics.uci.edu>
1632
1633 * term/xterm.el (terminal-init-xterm): Fix key bindings
1634 syntax. Bind S-return, C-M-., C-TAB, S-TAB and C-S-TAB.
1635
1636 2006-07-21 Eli Zaretskii <eliz@gnu.org>
1637
1638 * dos-w32.el (find-buffer-file-type-coding-system): Support calls
1639 where `(nth 1 command)' is a cons cell. Doc fix.
1640
1641 * textmodes/po.el (po-find-charset): Doc fix.
1642
1643 2006-07-21 Ken Manheimer <ken.manheimer@gmail.com>
1644
1645 * allout.el (allout-unprotected, allout-e-o-prefix-p)
1646 (allout-beginning-of-current-line, allout-end-of-current-line)
1647 (allout-next-visible-heading, allout-open-topic)
1648 (allout-kill-topic, allout-yank-processing, allout-resolve-xref)
1649 (allout-flag-current-subtree, allout-show-to-offshoot)
1650 (allout-hide-current-entry, allout-show-current-branches)
1651 (allout-hide-region-body, allout-old-expose-topic)
1652 (allout-listify-exposed, allout-latex-verbatim-quote-curr-line)
1653 (allout-mark-topic, allout-adjust-file-variable): Enclose scopes
1654 containing `beginning-of-line' and `end-of-line' with
1655 `inhibit-field-text-motion' t.
1656
1657 2006-07-21 Eli Zaretskii <eliz@gnu.org>
1658
1659 * frame.el (focus-follows-mouse): Document that it doesn't have
1660 any effect on MS-Windows.
1661
1662 2006-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
1663
1664 * progmodes/sh-script.el (sh-quoted-subshell): Further fix last change.
1665
1666 2006-07-20 Jay Belanger <belanger@truman.edu>
1667
1668 * calc.el (calc-previous-alg-entry): Remove variable.
1669
1670 * calc-aent.el (calc-alg-entry-history, calc-quick-calc-history):
1671 New variables.
1672 (calc-alg-entry): Use `calc-alg-entry-history'.
1673 (calc-do-quick-calc): Use `calc-quick-calc-history'.
1674 Remove reference to `calc-previous-alg-entry'.
1675 (calcAlg-edit, calcAlg-enter): Remove reference to
1676 `calc-previous-alg-entry'.
1677 (calcAlg-previous): Use `previous-history-element' instead of
1678 `calc-previous-alg-entry'.
1679 (calc-do-alg-entry): Use history when calling `read-from-minibuffer'.
1680 Change keybinding for `calcAlg-plus-minus', add keybindings for
1681 `previous-history-element' and `next-history-element'.
1682
1683 * calc-rewr.el (calc-match): Remove reference to
1684 `calc-previous-alg-entry'.
1685
1686 * calc-sel.el (calc-selection-history): New variable.
1687 (calc-enter-selection, calc-sel-mult-both-sides)
1688 (calc-sel-add-both-sides): Use `calc-selection-history'.
1689
1690 * calc-map.el (calc-get-operator-history): New variable.
1691 (calc-get-operator): Use `calc-get-operator-history'.
1692
1693 * calcalg3.el (calc-curve-fit-history): New variable.
1694 (calc-curve-fit): Use `calc-curve-fit-history'.
1695
1696 2006-07-20 Kenichi Handa <handa@m17n.org>
1697
1698 * international/mule-cmds.el (select-safe-coding-system): Fix the
1699 way of deciding eol-type of the coding system.
1700
1701 2006-07-20 Alan Mackenzie <acm@muc.de>
1702
1703 * progmodes/cc-langs.el (c-emacs-variable-inits): New variable.
1704 (c-lang-setvar): New macro.
1705 (c-make-init-lang-vars-fun): Use the initialization forms in
1706 c-emacs-variable-inits in addition to those in c-lang-variable-inits.
1707 (comment-start, comment-end, comment-start-skip): Change these from
1708 c-lang-defvar's to c-lang-setvar's.
1709
1710 * progmodes/cc-mode.el (c-make-emacs-variables-local): New macro,
1711 which calls make-local-variable on the elements of
1712 c-emacs-variable-inits.
1713 (c-init-language-vars-for): Call this new macro.
1714
1715 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
1716
1717 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
1718 Try to rule out false positives due to time stamps.
1719 (compilation-mode-font-lock-keywords): Remove rules made redundant
1720 because of the above change. Add `segmentation fault' to the known and
1721 highlighted compilation termination messages.
1722
1723 2006-07-19 Kim F. Storm <storm@cua.dk>
1724
1725 * progmodes/grep.el (grep-find-ignored-directories):
1726 Add .svn and _darcs to list.
1727
1728 2006-07-19 Mathias Dahl <mathias.dahl@gmail.com>
1729
1730 * dired.el (dired-mode-map): Add key binding `C-te' for
1731 `tumme-dired-edit-comment-and-tags'.
1732
1733 * tumme.el (tumme-display-thumbnail-original-image): Make sure
1734 image display buffer is displayed before call to
1735 `tumme-display-image.
1736 (tumme-dired-display-image): Make sure image display buffer is
1737 displayed before call to `tumme-display-image.
1738 (tumme-mouse-display-image): Make sure image display buffer is
1739 displayed before call to `tumme-display-image.
1740 (tumme-widget-list): Add.
1741 (tumme-dired-edit-comment-and-tags): Add.
1742 (tumme-save-information-from-widgets): Add.
1743
1744 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
1745
1746 * progmodes/sh-script.el (sh-quoted-subshell): Fix last change.
1747
1748 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
1749
1750 * progmodes/sh-script.el (sh-font-lock-keywords-1):
1751 Revert inadvertently installed patch hunk.
1752
1753 * progmodes/compile.el (compilation-find-file): Handle the
1754 cases where the user selects a non-existent file.
1755
1756 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
1757
1758 * bindings.el (minibuffer-local-map): Rebind TAB so it inserts a \t.
1759
1760 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
1761
1762 * subr.el (sit-for): Just sleep-for if noninteractive.
1763
1764 2006-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
1765
1766 * emacs-lisp/autoload.el (make-autoload): Use new arg.
1767
1768 * custom.el (custom-autoload): Add `noset' argument.
1769 (custom-push-theme): Don't autoload the variable, let callers do it.
1770 (custom-theme-set-variables): Autoload the variable if necessary.
1771
1772 * cus-edit.el (custom-variable-state-set): If the variable was
1773 originally set outside custom, but to the same value as the default,
1774 consider it to be standard.
1775
1776 * Makefile.in (mh-loaddefs.el): Finish setting up the default empty
1777 file *before* telling Emacs to add the autoloads, in case it fails.
1778
1779 * progmodes/sh-script.el (sh-quoted-subshell): Don't match escaped `.
1780 Use `cond', push', and `dolist'.
1781
1782 2006-07-17 Richard Stallman <rms@gnu.org>
1783
1784 * image-mode.el (tar-superior-buffer, archive-superior-buffer):
1785 Add defvars to silence warnings.
1786
1787 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
1788
1789 * progmodes/compile.el (compilation-mode-font-lock-keywords):
1790 Don't highlight "Compiling file" messages as error.
1791
1792 * dired-aux.el (dired-compress-file): Confirm again if gzipped
1793 file already exists.
1794
1795 2006-07-16 Thien-Thi Nguyen <ttn@gnu.org>
1796
1797 * find-file.el (ff-special-constructs): Doc fix. Also, for C/C++
1798 entry, don't assign to free var; simply return the extracted filename.
1799 (ff-treat-as-special): Incorporate common preamble from callers.
1800 (ff-other-file-name, ff-find-the-other-file):
1801 Update call to ff-treat-as-special.
1802
1803 * progmodes/ada-mode.el (ada-mode): Rewrite ff-special-constructs init.
1804
1805 2006-07-16 Mathias Dahl <mathias.dahl@gmail.com>
1806
1807 * tumme.el (tumme-get-comment): Fix bug.
1808
1809 2006-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
1810
1811 * files.el: Remove spurious * in docstrings.
1812
1813 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
1814
1815 * allout.el (allout-run-unit-tests-on-load): Rectify docstring
1816 grammar.
1817 (allout-beginning-of-current-line): Beware beginning of buffer.
1818 Also, a comment is simplified.
1819 (allout-hotspot-key-handler): Only set allout-post-goto-bullet
1820 when appropriate. (This fix enables use for other than
1821 bullet-hotspot operation.)
1822 (allout-hide-current-subtree): While escalating to sibling-close,
1823 make sure to situate on a topic.
1824
1825 2006-07-14 Kim F. Storm <storm@cua.dk>
1826
1827 * emulation/cua-base.el (cua-delete-selection)
1828 (cua-toggle-set-mark): New defcustoms.
1829 (cua-rectangle-modifier-key): Add `alt' modifier.
1830 (cua-replace-region): Don't delete if cua-delete-selection is nil.
1831 (cua-set-mark): Don't clear mark if cua-toggle-set-mark is nil.
1832 Suggested by Klaus Zeitler <kzeitler@lucent.com>.
1833
1834 * emulation/cua-rect.el (cua-help-for-rectangle): Add `alt' modifier.
1835
1836 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
1837
1838 * allout.el: Require 'cl during byte-compilation/interactive load,
1839 for the `assert' macro.
1840 (allout-mode-deactivate-hook): New hook, run when allout mode
1841 deactivates.
1842 (allout-developer): New allout customization subgroup.
1843 (allout-run-unit-tests-on-load): New allout-developer
1844 customization variable, when true allout unit tests are run towards
1845 end of file load/eval.
1846 (allout-inhibit-auto-fill): Disable auto-fill activity even during
1847 auto-fill-mode.
1848 (allout-resumptions): Remove, to be replaced by...
1849 (allout-add-resumptions): Register variable settings to be
1850 reinstated by `allout-do-resumptions'. The settings are made
1851 buffer-local, but the locality/globality of the suspended setting
1852 is restored on resumption.
1853 (allout-do-resumptions): Reinstate all settings suspended using
1854 `allout-add-resumptions'.
1855 (allout-test-resumptions): Unit tests (and intermediate variables)
1856 for resumptions.
1857 (allout-tests-globally-unbound, allout-tests-globally-true)
1858 (allout-tests-locally-true): Intermediate variables for
1859 resumptions unit tests.
1860 (allout-overlay-preparations): Replaces `allout-set-overlay-category'.
1861 (allout-exposure-category): Replaces 'allout-overlay-category variable.
1862 (allout-mode): Use `allout-add-resumptions' and `allout-do-resumptions'
1863 instead of retired `allout-resumptions'. For hook functions, use
1864 `local' parameter so hook settings are created and removed as
1865 buffer-local settings. Revise (resumptions) setting
1866 auto-fill-function so it is set only if already active. (The
1867 related fill-function settings are all made in either case, so
1868 that activating auto-fill-mode activity will have the custom
1869 allout-mode behaviors (hanging indent on topics, if configured for it).
1870 Remove all allout-exposure-category overlays on mode deactivation.
1871 (allout-hotspot-key-handler): New function extracted from
1872 `allout-pre-command-business', so the functionality can be used
1873 for other purposes, eg as a binding in an overlay.
1874 (allout-pre-command-business): Use new `allout-hotspot-key-handler'.
1875 (allout-auto-fill): Respect new `allout-inhibit-auto-fill'
1876 customization variable.
1877 (allout-run-unit-tests): Run the (currently quite small)
1878 repertoire of unit tests. Called just before the provide iff user
1879 has customized `allout-run-unit-tests-on-load' non-nil.
1880
1881 2006-07-14 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
1882
1883 * emacs-lisp/authors.el (authors-aliases): Update.
1884
1885 2006-07-14 Nick Roberts <nickrob@snap.net.nz>
1886
1887 * progmodes/gdb-ui.el (gdb-display-buffer): Check for
1888 gdb-source-window. Add dedicated argument.
1889 (gdb-display-separate-io-buffer, gdb-append-to-inferior-io)
1890 (gdb-display-breakpoints-buffer, gdb-display-stack-buffer)
1891 (gdb-display-threads-buffer, gdb-display-memory-buffer)
1892 (gdb-display-locals-buffer): Use it.
1893
1894 * progmodes/gud.el (gud-display-line): Use gdb-display-buffer.
1895 Set gdb-source-window.
1896
1897 2006-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
1898
1899 * emacs-lisp/autoload.el (make-autoload): Remove special handling of
1900 minor modes, redundant with the custom-autoload line above.
1901
1902 2006-07-12 Chong Yidong <cyd@stupidchicken.com>
1903
1904 * longlines.el (longlines-post-command-function): Handle open-line too.
1905
1906 2006-07-12 Richard Stallman <rms@gnu.org>
1907
1908 * progmodes/grep.el (grep-last-buffer): Doc fix.
1909
1910 * info.el (Info-try-follow-nearest-node): Doc fix.
1911
1912 * emacs-lisp/edebug.el (edebug-instrument-function):
1913 Err if find-function-noselect gives no position.
1914
1915 * emacs-lisp/find-func.el (find-function-search-for-symbol):
1916 If can't find definition, return nil for position.
1917 (find-function-do-it): Handle new return value
1918 of find-definition-noselect.
1919 (find-definition-noselect, find-variable-noselect): Doc fix.
1920 (find-function-noselect): Doc fix.
1921
1922 * help-mode.el (help-variable-def): Handle find-variable-noselect
1923 returning no position.
1924 (help-function-def): Likewise for find-function-search-for-symbol.
1925 (help-face-def): Likewise.
1926
1927 * help-fns.el (describe-variable): Handle find-variable-noselect
1928 returning no position.
1929
1930 * files.el (locate-file-completion): Avoid duplicates in result.
1931
1932 * cus-edit.el (custom-no-edit): New command.
1933 (custom-mode-map): Remap to custom-no-edit instead of
1934 using suppress-keymap.
1935
1936 2006-07-12 Nick Roberts <nickrob@snap.net.nz>
1937
1938 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
1939 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
1940 (tumme-set-exif-data, tumme-get-exif-data): Use shell-command-switch.
1941
1942 * thumbs.el (thumbs-call-convert): Use shell-command-switch.
1943
1944 2006-07-11 Kim F. Storm <storm@cua.dk>
1945
1946 * ido.el (ido-copy-current-file-name): Use buffer-name if
1947 buffer-file-name is nil.
1948
1949 2006-07-11 Chong Yidong <cyd@stupidchicken.com>
1950
1951 * simple.el (undo-ask-before-discard): Set to nil.
1952
1953 * vc.el (vc-exec-after): Don't delete process manually.
1954 (vc-print-log): Run log-view-mode in process sentinel inside
1955 inhibit-read-only. Don't shrink window due to timing issues.
1956
1957 * progmodes/ebrowse.el (ebrowse-display-member-buffer):
1958 Avoid using with-output-to-temp-buffer, which clobbers local vars.
1959
1960 2006-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
1961
1962 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1963 Fix ambiguity introduced by last change.
1964 (compilation-find-file): Move save-excursion to where it may
1965 make sense. Fix a left over `find-file'.
1966
1967 2006-07-11 Robert J. Chassell <bob@rattlesnake.com>
1968
1969 * textmodes/texinfmt.el (texinfo-format-separate-node):
1970 Insert a string before point, which fits documentation, not after.
1971 (texinfo-multitable-item): In a multitable row, insert any
1972 additional needed @tabs and spaces.
1973
1974 2006-07-11 Nick Roberts <nickrob@snap.net.nz>
1975
1976 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
1977 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
1978 (tumme-set-exif-data, tumme-get-exif-data): Use call-process
1979 instead of shell-command.
1980 (tumme-create-thumbnail-buffer, tumme-create-display-image-buffer)
1981 (tumme-display-thumbs, tumme-modify-mark-on-thumb-original-file)
1982 (tumme-display-image, tumme-get-exif-data): Use with-current-buffer.
1983 (tumme-display-properties-format, tumme-dired-insert-marked-thumbs)
1984 (tumme-thumbnail-set-image-description, tumme-gallery-generate)
1985 (tumme-rotate-original, tumme-get-exif-file-name): Fit to 80 columns.
1986
1987 2006-07-11 Kim F. Storm <storm@cua.dk>
1988
1989 * subr.el (sit-for): Doc fix. Specify normal arg list using fn-form.
1990 Remove special case for seconds < 0. Use (redisplay t) instead.
1991
1992 2006-07-10 Chong Yidong <cyd@stupidchicken.com>
1993
1994 * progmodes/cc-awk.el (c-awk-escaped-nls*): Use eval-and-compile to
1995 avoid compilation error.
1996
1997 * subr.el (sit-for): New function.
1998
1999 * play/hanoi.el (hanoi-sit-for): Check sit-for return value.
2000
2001 2006-07-10 Richard Stallman <rms@gnu.org>
2002
2003 * ldefs-boot.el (edebug): Update page.
2004
2005 2006-07-10 Kim F. Storm <storm@cua.dk>
2006
2007 * emacs-lisp/authors.el (authors-ignored-files): Ignore changes
2008 to FOR-RELEASE and TODO.
2009
2010 2006-07-10 Romain Francoise <romain@orebokech.com>
2011
2012 * emacs-lisp/authors.el (authors-aliases): Update.
2013
2014 2006-07-10 Alan Mackenzie <acm@muc.de>
2015
2016 * progmodes/cc-awk.el, cc-defs.el, cc-fonts.el, cc-langs.el:
2017 * cc-mode.el: Changes to eradicate eval-after-load.
2018
2019 2006-07-09 Chong Yidong <cyd@stupidchicken.com>
2020
2021 * emacs-lisp/helper.el (Helper-help-scroller): Don't signal error
2022 on non-char events.
2023
2024 2006-07-09 Romain Francoise <romain@orebokech.com>
2025
2026 * progmodes/compile.el (compilation-mode-font-lock-keywords):
2027 Don't highlight start/end markers as compilation messages.
2028
2029 * isearch.el (isearch-yank-line): Let-bind `inhibit-field-text-motion'
2030 to t.
2031
2032 2006-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
2033
2034 * textmodes/fill.el (fill-region-as-paragraph): Refine last change.
2035
2036 2006-07-08 Richard Stallman <rms@gnu.org>
2037
2038 * term/x-win.el (x-handle-display): Add doc string.
2039
2040 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
2041
2042 * subr.el (def-edebug-spec): Move here.
2043 * emacs-lisp/edebug.el (def-edebug-spec): Move to subr.el.
2044
2045 * imenu.el (imenu-choose-buffer-index): Doc fix.
2046
2047 2006-07-08 Romain Francoise <romain@orebokech.com>
2048
2049 * term/x-win.el (x-display-name): Fix typo.
2050
2051 2006-07-08 Eli Zaretskii <eliz@gnu.org>
2052
2053 * hexl.el (hexl-find-file): Doc fix.
2054
2055 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
2056
2057 2006-07-07 Chong Yidong <cyd@stupidchicken.com>
2058
2059 * term/x-win.el (x-display-name): Doc fix.
2060
2061 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
2062
2063 * textmodes/fill.el (fill-delete-prefix): Don't ignore excessively
2064 long prefixes.
2065 (fill-region-as-paragraph): Don't round up to a whole line.
2066 (fill-comment-paragraph): Don't include the code-before-the-comment
2067 when calling fill-region-as-paragraph.
2068
2069 * international/mule.el (make-char): Remove redundancy.
2070
2071 * emacs-lisp/bytecomp.el (byte-compile-form): The `byte-compile'
2072 property may contain an anonymous function rather than a symbol.
2073
2074 * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness.
2075
2076 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
2077 Use shy regexp. Fix incorrect backref to potentially unmatched group.
2078
2079 * dirtrack.el (dirtrack-default-directory-function): Remove.
2080 (dirtrack-directory-function): Use file-name-as-directory.
2081 (dirtrack-windows-directory-function): Simplify.
2082 (dirtrack-forward-slash, dirtrack-backward-slash)
2083 (dirtrack-replace-slash): Remove.
2084 (dirtrack-toggle): Adjust comint-preoutput-filter-functions as well.
2085 (dirtrack): Fix wrong parenthesizing; use match-string.
2086
2087 * progmodes/octave-inf.el: Remove spurious * in docstrings.
2088 (inferior-octave-mode): Only change the buffer-local value of
2089 comint-dynamic-complete-functions.
2090 (inferior-octave-mode-map, inferior-octave-mode-syntax-table):
2091 Move the initialization to the declaration.
2092 (inferior-octave-complete): Remove unused var `filter'.
2093
2094 * shell.el (shell-mode): Only change the buffer-local value of
2095 comint-dynamic-complete-functions.
2096
2097 2006-07-07 Carsten Dominik <dominik@science.uva.nl>
2098
2099 * textmodes/org.el (org-agenda-get-todos): Skip subtree also if
2100 entry is skipped because it has been scheduled.
2101 (org-prepare-agenda-buffers): Don't mark buffers as modified when
2102 changing `:org-archived' and `:org-comment' properties.
2103
2104 2006-07-06 Chong Yidong <cyd@stupidchicken.com>
2105
2106 * server.el (server-select-display): Don't make the temp frame
2107 minibuffer-only, in case it's not a temp frame.
2108 (server-process-filter): Don't delete the temp frame if it's the
2109 only one we have on that display.
2110
2111 * files.el (find-alternate-file): Doc fix.
2112
2113 2006-07-05 Richard Stallman <rms@gnu.org>
2114
2115 * files.el (abbreviate-file-name): Add save-match-data.
2116
2117 2006-07-03 Richard Stallman <rms@gnu.org>
2118
2119 * faces.el (read-face-name): Doc fix.
2120
2121 2006-07-05 Chong Yidong <cyd@stupidchicken.com>
2122
2123 * net/goto-addr.el (goto-address): Mark as safe for local evals.
2124
2125 2006-07-05 Andre Spiegel <spiegel@gnu.org>
2126
2127 * vc.el (vc-diff-internal): Fix prev change.
2128
2129 2006-07-05 Thien-Thi Nguyen <ttn@gnu.org>
2130
2131 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Use eval-buffer.
2132 * play/dunnet.el (dun-load-d, dun-eval): Likewise.
2133
2134 2006-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
2135
2136 * thingatpt.el (symbol-at-point): Don't use `form-at-point' which
2137 fails if the symbol contains chars like ( or '.
2138 (bounds-of-thing-at-point): Remove unused vars `end' and `beg'.
2139 (thing-at-point-bounds-of-url-at-point): Remove unused vars `url' and
2140 `short'.
2141
2142 2006-07-04 Kenichi Handa <handa@m17n.org>
2143
2144 * international/mule-cmds.el (set-language-info): If LANG-ENV is
2145 the current one, don't call set-language-environment, but call one
2146 of set-language-environment-XXX to make INFO effective now.
2147 (set-language-environment): Call set-language-environment-XXX
2148 functions instead of doing the various setups directly.
2149 (set-language-environment-coding-systems): Delete argument eol-type.
2150 (set-language-environment-input-method)
2151 (set-language-environment-nonascii-translation)
2152 (set-language-environment-charset)
2153 (set-language-environment-fontset)
2154 (set-language-environment-unibyte): New functions.
2155
2156 2006-07-03 Luc Teirlinck <teirllm@auburn.edu>
2157
2158 * locate.el (locate-update-when-revert): New option.
2159 (locate-update-path): New option (suggested by Michael Albinus).
2160 (locate-prompt-for-command): Whitespace change.
2161 (locate-update): No longer offer to update the locate database by
2162 default. Implement the two new options.
2163
2164 2006-07-04 Nick Roberts <nickrob@snap.net.nz>
2165
2166 * tooltip.el: Move comment about track-mouse...
2167
2168 * progmodes/gud.el: ...to here.
2169
2170 2006-07-03 Chong Yidong <cyd@stupidchicken.com>
2171
2172 * facemenu.el (facemenu-listed-faces): New var.
2173 (facemenu-unlisted-faces): Variable deleted.
2174 (facemenu-add-new-face): Use facemenu-listed-faces.
2175
2176 * emulation/viper-init.el, calendar/calendar.el:
2177 * progmodes/make-mode.el: Delete calls to facemenu-unlisted-faces.
2178
2179 2006-07-03 Carsten Dominik <dominik@science.uva.nl>
2180
2181 * textmodes/org.el (org-mode): Remove no invalid settings for
2182 calc embedded mode.
2183 (org-mode-p): New defsubst.
2184 (org-save-all-org-buffers): New function.
2185 (org-first-headline-recenter): Enclose outline-regexp in group
2186 delimiters.
2187 (org-set-tags): Keep single space after stars.
2188
2189 2006-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
2190
2191 * window.el (set-window-text-height): Only set window-min-height to
2192 1 if that's the requested size.
2193
2194 * diff-mode.el (diff-find-file-name): Obey cvs-pcl-cvs-dirchange-re.
2195 (diff-unified->context, diff-context->unified)
2196 (diff-reverse-direction): Make sure the end marker stays at the end.
2197 (diff-mode): Add the keymap table at the end of docstring.
2198 Use lexical-let rather than constructing a closure manually.
2199
2200 * files.el (find-file-noselect-1): Remove unused var assignment.
2201 (hack-local-variables-confirm): Print lists of strings as lists of
2202 strings rather than lists of symbols.
2203 (abbreviate-file-name, hack-local-variables-prop-line):
2204 Use match-string.
2205 (hack-one-local-variable): Move `make-local-variable' nearer its use.
2206 (recover-session-finish): Use line-end-position.
2207
2208 2006-07-02 Michael Albinus <michael.albinus@gmx.de>
2209
2210 * net/tramp.el (tramp-handle-shell-command): Preserve current-buffer.
2211
2212 2006-07-02 Daniel Pfeiffer <occitan@esperanto.org>
2213
2214 * progmodes/make-mode.el (makefile-macroassign-regex):
2215 Accept preceding keyword.
2216 (makefile-gmake-statements): Reorganize, now that makepp has
2217 "override" and also handle forgotten "override define".
2218 (makefile-makepp-statements): Add new "global", "override export"
2219 and "override global".
2220
2221 2006-06-30 Juanma Barranquero <lekktu@gmail.com>
2222
2223 * progmodes/ada-mode.el (ada-which-compiler, ada-mode-menu)
2224 (ada-compile-mouse-goto-error, ada-deactivate-properties)
2225 (ada-no-auto-case): Fix typos in docstrings.
2226
2227 2006-06-30 Nick Roberts <nickrob@snap.net.nz>
2228
2229 * info.el (Info-find-node-2): Search for makeinfo version more
2230 carefully.
2231
2232 2006-06-29 Carsten Dominik <dominik@science.uva.nl>
2233
2234 * textmodes/org.el (org-prepare-agenda-buffers):
2235 Use `invisible-OK' argument for `org-end-of-subtree'.
2236 (org-export-cleanup-toc-line): Rename from `org-html-cleanup-toc-line'.
2237 (org-beginning-of-item): Fix bug in regular expression for white line.
2238 (org-export-as-html): Enforce space after bullet in plain list items.
2239 (org-set-autofill-regexps): Require space after plain list bullet
2240 for paragraph-start.
2241 (org-ts-regexp3): New constant.
2242 (org-at-timestamp-p): New optional argument ALSO-INACTIVE.
2243 (org-timestamp-up-day, org-timestamp-down-day)
2244 (org-timestamp-change): Work with inactive timestamps.
2245 (org-ts-regexp1): Don't allow brackets in time stamps.
2246
2247 2006-06-29 Nick Roberts <nickrob@snap.net.nz>
2248
2249 * help-mode.el (help-xref-symbol-regexp): Add property as a keyword
2250 for ignoring links.
2251
2252 * faces.el (read-face-name): Use it.
2253
2254 2006-06-28 Juri Linkov <juri@jurta.org>
2255
2256 * buff-menu.el (list-buffers-noselect): Compare Info file
2257 with the string "dir" to detect Info directory.
2258
2259 * complete.el (partial-completion-mode): In lambda for
2260 `choose-completion-string-functions' use full function signature
2261 with 4 args, and move point to the end of the minibuffer only if arg
2262 `mini-p' is non-nil.
2263
2264 2006-06-28 John Paul Wallington <jpw@pobox.com>
2265
2266 * ibuffer.el (ibuffer-mode): Doc fix.
2267
2268 2006-06-28 Carsten Dominik <dominik@science.uva.nl>
2269
2270 * textmodes/org.el (org-context): New contexts :item-bullet,
2271 :latex-fragment, :latex-preview.
2272 (org-overlays-at, org-overlay-start, org-overlay-end):
2273 New compatibility functions.
2274 (org-inside-LaTeX-fragment-p): More accurate matching, using the
2275 exact regexp that will be used during export.
2276 (org-latex-regexps): New variable.
2277 (org-cdlatex-mode): Improve advice for `texmathp'.
2278 (turn-on-org-cdlatex): New function.
2279
2280 2006-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2281
2282 * term/mac-win.el (mac-handle-font-selection): Change keys of
2283 mac-atsu-font-table from strings to numbers.
2284 (mac-ts-caret-position): Use also when cursor-type is nil.
2285 (mac-ts-update-active-input-area): Add Mac OS Classic support.
2286 Relax condition for using overlay strings.
2287 Use mac-ts-caret-position face when cursor-type is nil.
2288
2289 2006-06-26 Kim F. Storm <storm@cua.dk>
2290
2291 * help.el (view-emacs-news): Declare `res' in the right let* form.
2292
2293 2006-06-25 Michael Albinus <michael.albinus@gmx.de>
2294
2295 * net/rcompile.el (remote-compile): Replace ange-ftp based
2296 implementation by Tramp functions.
2297 Suggested by Marc Abramowitz <msabramo@gmail.com>.
2298
2299 * net/tramp.el (tramp-unload-tramp): Provide a doc string.
2300
2301 2006-06-24 Yoshinori Koseki <kose@meadowy.org>
2302
2303 * international/fontset.el (setup-default-fontset): Fix a typo in
2304 the "Oriya-Akruti" registry name.
2305
2306 2006-06-23 Lars Hansen <larsh@soem.dk>
2307
2308 * desktop.el (desktop-full-file-name): New function.
2309 (desktop-kill, desktop-save, desktop-remove, desktop-read)
2310 (desktop-revert): Use it.
2311 (desktop-clear, desktop-save, desktop-remove): Add autoload cookie.
2312 (desktop-after-read-hook): Add option list-buffers.
2313 (desktop-locals-to-save): Add tab-width.
2314 (desktop-save-mode, desktop-no-desktop-file-hook, desktop-save-hook):
2315 Fix docstring.
2316
2317 2006-06-23 Carsten Dominik <dominik@science.uva.nl>
2318
2319 * textmodes/org.el (org-cdlatex-mode-map)
2320 (org-cdlatex-texmathp-advice-is-done): New variables.
2321 (org-cdlatex-mode): New minor mode.
2322 (org-inside-LaTeX-fragment-p, org-try-cdlatex-tab): New functions.
2323 (org-cdlatex-underscore-caret, org-cdlatex-math-modify): New commands.
2324 (org-export-with-archived-trees): New option.
2325 (org-open-file): Remove the call to `convert-standard-filename'.
2326 (org-archive-tag, org-agenda-skip-archived-trees)
2327 (org-cycle-open-archived-trees)
2328 (org-sparse-tree-open-archived-trees): New options.
2329 (org-cycle-hide-archived-subtrees, org-hide-archived-subtrees)
2330 (org-toggle-tag, org-prepare-agenda-buffers, org-agenda-skip):
2331 New functions.
2332 (org-agenda-toggle-archive-tag, org-toggle-archive-tag): New commands.
2333 (org-agenda-mode-map): Add binding of `org-agenda-toggle-archive-tag'.
2334 (org-mode-map): Add binding for `org-toggle-archive-tag'.
2335 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
2336 Call `org-prepare-agenda-buffers'.
2337 (org-occur, org-scan-tags): Call `org-hide-archived-subtrees'.
2338 (org-file-apps, org-file-apps-defaults-gnu)
2339 (org-file-apps-defaults-macosx, org-file-apps-defaults-windowsnt):
2340 Handle remote files by forcing them to be opened in Emacs.
2341
2342 2006-06-23 Andre Spiegel <spiegel@gnu.org>
2343
2344 * vc.el (vc-diff-knows-L): New variable.
2345 (vc-diff-internal): Use it to handle "diff" programs that don't
2346 understand -L. This works automatically, no user action is necessary.
2347
2348 2006-06-23 Daniel Brockman <daniel@brockman.se>
2349
2350 * net/rcirc.el (rcirc-default-user-full-name): Default to
2351 `rcirc-default-user-name' instead of `rcirc-user-name' (which no
2352 longer exists).
2353 (rcirc-process-list): Check `buffer-live-p' before attempting to
2354 switch to a buffer.
2355
2356 2006-06-23 Ryan Yeske <rcyeske@gmail.com>
2357
2358 * net/rcirc.el (rcirc-mode): Fix initialization of coding systems
2359 based on rcirc-coding-system-alist.
2360
2361 2006-06-23 Martin Rudalics <rudalics@gmx.at>
2362
2363 * cus-edit.el (customize-apropos): A better error message.
2364 (top level) <debug-ignored-errors>: Extend and update the list of
2365 ignored error messages.
2366
2367 2006-06-23 Michael Ernst <mernst@alum.mit.edu>
2368
2369 * complete.el (PC-do-completion): Retain capitalization of user
2370 input, when possible, even if completion-ignore-case is set.
2371
2372 2006-06-23 Eli Zaretskii <eliz@gnu.org>
2373
2374 * generic-x.el (bat-generic-mode): Support .cmd files.
2375
2376 * dos-w32.el (top level): Use find-file-not-found-functions
2377 instead of the obsolete find-file-not-found-hooks.
2378
2379 2006-06-22 Kim F. Storm <storm@cua.dk>
2380
2381 * progmodes/grep.el (grep-mode-font-lock-keywords): Correct regexps
2382 to recognize mode name containing submodes, such as Grep/lw.
2383
2384 2006-06-21 Kim F. Storm <storm@cua.dk>
2385
2386 * simple.el (line-move-1): Check for move-end-of-line instead of
2387 end-of-line when setting temporary-goal-column.
2388
2389 2006-06-21 Miles Bader <miles@gnu.org>
2390
2391 * play/cookie1.el (cookie): Work properly when there's only one entry.
2392
2393 2006-06-21 Nick Roberts <nickrob@snap.net.nz>
2394
2395 * progmodes/gdb-ui.el (gdb-exited): Ensure overlay arrow gets killed.
2396 (gdb-frame-handler): Generalize frame regexp for templates.
2397
2398 2006-06-20 Glenn Morris <rgm@gnu.org>
2399
2400 * calendar/appt.el (appt-display-format): Default value must be
2401 one of the customize options.
2402
2403 2006-06-20 Dan Nicolaescu <dann@ics.uci.edu>
2404
2405 * term/xterm.el (terminal-init-xterm): Update key availability info.
2406 Bind C-return.
2407
2408 * term.el (term-delete-lines, term-insert-lines): Clarify comments.
2409
2410 2006-06-20 Chong Yidong <cyd@stupidchicken.com>
2411
2412 * files.el (hack-local-variables): Run `hack-local-variables-hook'
2413 whether or not a local variables list is defined.
2414
2415 * msb.el (msb): Move `sit-for' hack here to handle both
2416 "mouse-down and drag" and "mouse-up and select" situations.
2417 (mouse-select-buffer): Move `sit-for' hack to `msb'.
2418
2419 2006-06-20 Kenichi Handa <handa@m17n.org>
2420
2421 * international/characters.el (word-combining-categories):
2422 Add entries for 2-byte Han characters.
2423
2424 2006-06-19 Richard Stallman <rms@gnu.org>
2425
2426 * bindings.el (mode-line-format): Save some mode line space.
2427
2428 * files.el (find-file-noselect): Improve the question wording.
2429 (basic-save-buffer-2): Mask UMASK against 666.
2430
2431 * mouse.el (mouse-drag-vertical-line-rightward-window): New function.
2432 (mouse-drag-vertical-line): Call it.
2433
2434 * cus-edit.el (customize-option, customize-option-other-window):
2435 Error if SYMBOL is nil.
2436
2437 2006-06-19 Carsten Dominik <dominik@science.uva.nl>
2438
2439 * textmodes/org.el: Require noutline, also on XEmacs.
2440 (org-end-of-subtree): Return point.
2441 (org-dblock-start-re, org-dblock-end-re): New constants.
2442 (org-create-dblock, org-prepare-dblock, org-map-dblocks)
2443 (org-dblock-update, org-update-dblock, org-beginning-of-dblock)
2444 (org-update-all-dblocks, org-find-dblock): New functions.
2445 (org-collect-clock-time-entries): New function.
2446 (org-html-handle-time-stamps): Never export CLOCK timeranges.
2447 (org-fixup-indentation): Modify to deal correctly with lines
2448 starting with TAB. Only one argument DIFF now.
2449 (org-demote, org-promote): Call `org-fixup-indentation' with just
2450 one argument, DIFF.
2451 (org-mode): Don't mark buffer as modified when aligning tables.
2452 (org-clock-sum): Don't mark buffer modified when adding time sum
2453 properties.
2454 (org-export-as-html): Add support for a link validation function.
2455 (org-archive-all-done): New function.
2456 (org-archive-subtree): New prefix argument. When set, archive all
2457 done subtrees in this buffer.
2458 (org-remove-clock-overlays)
2459 (org-remove-occur-highlights): Use `org-inhibit-highlight-removal'.
2460 (org-inhibit-highlight-removal): New variable, for dynamic scoping.
2461 (org-put-clock-overlay): Don't swallow last headline character
2462 when displaying overlay.
2463 (org-store-link): Link to `image-mode' with just the file name.
2464
2465 2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
2466
2467 * viper-cmd.el (viper-special-read-and-insert-char):
2468 Use read-key-sequence.
2469 (viper-after-change-undo-hook): Misc enhancements.
2470 (viper-after-change-undo-hook): New hook.
2471 (viper-undo): Use viper-after-change-undo-hook.
2472 (viper-add-newline-at-eob-if-necessary): Widen before making changes.
2473 (viper-next-line-at-bol): If point is on a widget or a button, simulate
2474 clicking on that widget/button.
2475
2476 * viper.el (viper-mode): Allow a separate cursor color in Emacs state.
2477
2478 * ediff-diff (ediff-test-patch-utility): Catch errors.
2479 (ediff-actual-diff-options, ediff-actual-diff3-options): New variables.
2480 (ediff-set-actual-diff-options): New function.
2481 (ediff-reset-diff-options, ediff-toggle-ignore-case):
2482 Use ediff-set-actual-diff-options.
2483 (ediff-extract-diffs): Catch errors.
2484 (ediff-whitespace): Add non-breakable space.
2485 (ediff-same-file-contents): Catch errors.
2486
2487 * ediff-mult.el (ediff-collect-custom-diffs):
2488 Save coding-system-for-read.
2489
2490 * ediff-vers.el (ediff-keep-tmp-versions): New variable.
2491 (ediff-vc-internal, ediff-vc-merge-internal):
2492 Use ediff-delete-version-file.
2493 (ediff-delete-version-file): New function.
2494
2495 * ediff-wind.el (ediff-control-frame-parameters): Set frame fringes.
2496
2497 * ediff.el (ediff-directories, ediff-directory-revisions)
2498 (ediff-merge-directories, ediff-merge-directories-with-ancestor)
2499 (ediff-directories-internal, ediff-merge-directory-revisions)
2500 (ediff-merge-directory-revisions-with-ancestor)
2501 (ediff-directories3): Use read-directory-name.
2502
2503 2006-06-18 Ralf Angeli <angeli@caeruleus.net>
2504
2505 * textmodes/tex-mode.el (tex-font-lock-match-suscript):
2506 Remove superfluous part of regexp for brace matching which is handled
2507 by `scan-lists' call.
2508
2509 2006-06-16 Richard Stallman <rms@gnu.org>
2510
2511 * obsolete/options.el (list-options): Put "obsolete" msg in buffer.
2512
2513 * files.el (basic-save-buffer-2): For a new precious file,
2514 use the default modes in the return value.
2515
2516 * facemenu.el (facemenu-color-alist): Doc fix.
2517
2518 * cus-edit.el (custom-guess-name-alist): Recognize `-flag'.
2519
2520 2006-06-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2521
2522 * cus-start.el (all): Add mac-ts-script-language-on-focus.
2523
2524 * term/mac-win.el (mac-text-encoding-ascii): New constant.
2525 (mac-utxt-to-string): Use it.
2526 (mac-ts-update-active-input-area): Use mac-ae-number.
2527
2528 2006-06-15 Dan Nicolaescu <dann@ics.uci.edu>
2529
2530 * term.el (term-handle-scroll, term-delete-lines)
2531 (term-insert-lines): Fix off by one errors.
2532
2533 2006-06-15 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
2534
2535 * net/tramp.el (tramp-touch): Use UTC to express time.
2536
2537 2006-06-15 Chong Yidong <cyd@stupidchicken.com>
2538
2539 * mail/sendmail.el (mail-send): Search explicitly for
2540 mail-header-separator when checking for corrupted header lines.
2541
2542 2006-06-15 Nick Roberts <nickrob@snap.net.nz>
2543
2544 * progmodes/gdb-ui.el (gdb-same-frame): New option.
2545 (gud-old-arrow, gdb-frame-begin, gdb-printing): New variables.
2546 (gdb-init-1): Initialise them.
2547 (gdb-starting): Reset gdb-printing
2548 (gdb-starting): Save value of gud-overlay-arrow-position.
2549 (gdb-frame-begin): Set gdb-frame-begin, gdb-printing.
2550 (gdb-stopped): Don't look for source if calling procedure e.g "p a ()".
2551 Use gdb-*-gdb-buffer conditionally on gdb-same-frame.
2552 (gdb-frame-gdb-buffer): Keep menu bar, tool bar for GUD buffer.
2553
2554 2006-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
2555
2556 * pcvs.el (cvs-retrieve-revision): Use decode-coding-inserted-region.
2557
2558 2006-06-13 Martin J. Reed <mjreed@essex.ac.uk> (tiny change)
2559
2560 * net/ldap.el (ldap-ldapsearch-args): Default to SASL search.
2561 (ldap-search-internal): Keep error messages, and a regexp fix.
2562
2563 2006-06-12 Thien-Thi Nguyen <ttn@gnu.org>
2564
2565 * files.el (hack-local-variables-confirm):
2566 Display string value using its printed representation.
2567
2568 2006-06-11 Chong Yidong <cyd@stupidchicken.com>
2569
2570 * server.el (server-edit): No-op if no server buffers exist.
2571
2572 2006-06-11 Robert J. Chassell <bob@rattlesnake.com>
2573
2574 * textmodes/page-ext.el (pages-directory-for-addresses):
2575 Including `pages-directory-address-mode' in the function results
2576 in the message "Buffer in which pages were found is deleted".
2577
2578 2006-06-10 Carsten Dominik <dominik@science.uva.nl>
2579
2580 * textmodes/org.el (org-agenda-mode-map): Add bindings for
2581 clocking functions.
2582
2583 (org-agenda-clock-in, org-check-running-clock)
2584 (org-clock-out-if-current, org-remove-clock-overlays)
2585 (org-put-clock-overlay): New functions.
2586 (org-clock-marker, org-clock-file-total-minutes)
2587 (org-clock-overlays): New variables.
2588 (org-clock-display, org-clock-sum, org-clock-cancel)
2589 (org-clock-out, org-clock-in): New commands.
2590 (org-export): New function.
2591 (org-emph-re): New constant.
2592 (org-set-emph-re, org-do-emphasis-faces): New functions.
2593 (org-emphasis-regexp-components, org-emphasis-alist): New options.
2594 (org-set-font-lock-defaults): Call `org-do-emphasis-faces'.
2595 (org-export-html-convert-emphasize): Use the configurable emphasis.
2596 (org-cleaned-string-for-export): Make multiline emphasis visible
2597 to the exporter. New optional argument PARAMETERS.
2598 (org-export-as-html): Specify :emph-multiline parameter to
2599 `org-cleaned-string-for-export'.
2600
2601 2006-06-10 Richard Stallman <rms@gnu.org>
2602
2603 * help.el (help-for-help-internal): Clean up help text.
2604
2605 2006-06-10 Andreas Schwab <schwab@suse.de>
2606
2607 * language/ethio-util.el (ethio-fidel-to-java-buffer): Fix quoting
2608 in doc string.
2609
2610 * progmodes/cperl-mode.el (cperl-short-docs): Likewise.
2611
2612 2006-06-09 Karl Chen <quarl@cs.berkeley.edu>
2613
2614 * progmodes/make-mode.el (makefile-fill-paragraph): Don't remove
2615 spaces after the comment start.
2616
2617 2006-06-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
2618
2619 * play/pong.el (pong-init-buffer):
2620 Fill buffer with spaces instead of ^A.
2621
2622 * textmodes/ispell.el (ispell-kill-ispell): If ispell has been
2623 launched asynchronously, delete its process instead of being cool.
2624 (ispell-async-processp): Check for `delete-process' existence
2625 instead of `kill-process' one for consistency.
2626
2627 2006-06-09 Nick Roberts <nickrob@snap.net.nz>
2628
2629 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers-1)
2630 (gdb-prompt, gdb-set-gud-minor-mode-existing-buffers): Show status
2631 in mode line at startup.
2632
2633 2006-06-08 Kim F. Storm <storm@cua.dk>
2634
2635 * ido.el (ido-take-first-match, ido-push-dir-first): New commands.
2636 (ido-init-completion-maps): Bind them to M-SPC and M-v.
2637 (ido-copy-current-file-name): Repeating C-w inserts whole file name.
2638 (ido-file-internal): Pass full file name to write-file.
2639 (ido-read-internal): Only pop stack elements automatically if they
2640 actually match an existing directory or file name.
2641
2642 2006-06-07 Kenichi Handa <handa@m17n.org>
2643
2644 * international/mule.el (find-auto-coding): Don't handle the short
2645 name `char-trans'.
2646
2647 * files.el (hack-local-variables-prop-line)
2648 (hack-local-variables): Cancel the previous change.
2649
2650 2006-06-06 Jesper Harder <harder@phys.au.dk>
2651
2652 * ediff-diff.el (ediff-test-utility): Protect against file-error.
2653
2654 2006-06-06 Chong Yidong <cyd@stupidchicken.com>
2655
2656 * diff-mode.el (diff-mode): Set buffer-read-only to t when
2657 diff-default-read-only is non-nil.
2658 (diff-hunk-kill, diff-file-kill, diff-split-hunk)
2659 (diff-refine-hunk): Set inhibit-read-only to t.
2660
2661 * diff.el (diff-sentinel, diff): Set inhibit-read-only to t when
2662 modifying the *Diff* buffer.
2663 (diff-process-filter): New filter function for diff process that
2664 sets inhibit-read-only to t when modifying the *Diff* buffer.
2665
2666 2006-06-06 Carsten Dominik <dominik@science.uva.nl>
2667
2668 * textmodes/org.el (org-archive-subtree): Use end-of-subtree as
2669 insertion point and control the number of empty lines.
2670 (org-paste-subtree): Limit the number of empty lines at the end of
2671 the inserted tree.
2672 (org-agenda): Use buffer name of current file for narrowing.
2673 (org-export-as-xml): Command removed.
2674 (org-export-xml-type): Option removed.
2675 (org-mode-map): Call `org-export-as-xoxo' directly.
2676 (org-get-indentation): New optional argument LINE.
2677 (org-fix-indentation, org-remove-tabs): New functions.
2678 (org-export-as-ascii, org-ascii-level-start): Determine and apply
2679 correct indentation for headlines that are converted it items.
2680 (org-skip-comments): Remove table lines that contain narrowing
2681 cookies but no other non-empty fields.
2682 (org-set-tags): Allow groups of mutually exclusive tags.
2683 (org-cmp-time): Sort 24:21 before items without time.
2684 (org-get-time-of-day): Fix the interpretation of 12pm and 12am.
2685 (org-open-at-point): Require double colon also for numbers.
2686
2687 2006-06-06 Kim F. Storm <storm@cua.dk>
2688
2689 * ido.el (ido-default-file-method, ido-default-buffer-method):
2690 Make choice values consistent with corresponding command names.
2691 (ido-visit-buffer): Update accordingly. Default to selected-window.
2692
2693 2006-06-06 Nick Roberts <nickrob@snap.net.nz>
2694
2695 * progmodes/gud.el (gud-running): Fix doc string.
2696 (gud-menu-map): Use :visible instead fo :enable for debugger test.
2697 (gud-tooltip-modes): Add python-mode.
2698 (gud-tooltip-print-command): Add pdb. Remove perldb.
2699
2700 2006-06-05 Eli Zaretskii <eliz@gnu.org>
2701
2702 * makefile.w32-in (bootstrap, $(lisp)/mh-e/mh-loaddefs.el):
2703 Quote $(EMACS).
2704
2705 2006-06-05 Richard Stallman <rms@gnu.org>
2706
2707 * faces.el (defined-colors): Doc fix.
2708
2709 2006-06-05 Thien-Thi Nguyen <ttn@gnu.org>
2710
2711 * vc.el (vc-process-filter): Inhibit undo info collection around
2712 call to insert.
2713 (vc-setup-buffer): Likewise for call to erase-buffer.
2714 (vc-do-command): Likewise for call to process-file.
2715
2716 2006-06-05 Nick Roberts <nickrob@snap.net.nz>
2717
2718 * progmodes/gud.el (gud-menu-map): Use a conditional help echo
2719 for gud-go.
2720 (gud-common-init): Other debuggers may trigger error.
2721
2722 2006-06-05 Kenichi Handa <handa@m17n.org>
2723
2724 * international/mule.el (find-auto-coding):
2725 Handle enable-character-translation in file header.
2726
2727 2006-06-04 Kim F. Storm <storm@cua.dk>
2728
2729 * emacs-lisp/authors.el (authors-aliases): Add mode aliases.
2730 (authors-fixed-entries): Fix spelling.
2731 (authors-canonical-file-name): Don't report error for wildcards.
2732
2733 * help.el (view-emacs-news): Rewrite to support new NEWS,
2734 NEWS.major, and NEWS.1-17 file naming. Add more intelligence,
2735 e.g. version 10 matches 1.10, and don't be confused by version 1.1
2736 being a prefix of 1.12 (etc). A numeric prefix arg also works.
2737
2738 2006-06-03 Vivek Dasmohapatra <vivek@etla.org>
2739
2740 * progmodes/sh-script.el (sh-quoted-exec): New face for quoted
2741 exec constructs like `foo bar`.
2742 (sh-quoted-subshell): New helper function to search for a possibly
2743 nested subshell (like `` or $()) within a "" quoted string.
2744 (sh-font-lock-keywords-var): Add sh-quoted-exec for Bash.
2745 (sh-apply-quoted-subshell): Flag quote characters inside a
2746 subshell, which is itself already in a quoted region, as
2747 punctuation, since this is the closest to what they actually are.
2748 (sh-font-lock-syntactic-keywords): Add sh-quoted-subshell and
2749 sh-apply-quoted-subshell.
2750 (sh-font-lock-syntactic-face-function): Apply the new face for
2751 text inside `` instead of the old font-lock-string-face.
2752
2753 2006-06-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2754
2755 * term/mac-win.el (mac-ts-active-input-overlay): Add defvar.
2756 (mac-ae-number, mac-ae-frame, mac-ae-script-language)
2757 (mac-bytes-to-text-range, mac-ae-text-range-array)
2758 (mac-ts-update-active-input-buf, mac-split-string-by-property-change)
2759 (mac-replace-untranslated-utf-8-chars, mac-ts-update-active-input-area)
2760 (mac-ts-unicode-for-key-event): New functions.
2761 (mac-handle-toolbar-switch-mode): Use mac-ae-frame.
2762 (mac-handle-font-selection): Use mac-ae-number.
2763 (mac-ts-active-input-buf, mac-ts-update-active-input-area-seqno):
2764 New variables.
2765 (mac-ts-caret-position, mac-ts-raw-text, mac-ts-selected-raw-text)
2766 (mac-ts-converted-text, mac-ts-selected-converted-text)
2767 (mac-ts-block-fill-text, mac-ts-outline-text)
2768 (mac-ts-selected-text, mac-ts-no-hilite): New faces.
2769 (mac-ts-hilite-style-faces): New constant.
2770 (mac-apple-event-map): Bind text input events.
2771 (mac-dispatch-apple-event): Use command-execute instead of
2772 call-interactively.
2773 (global-map): Don't bind mac-apple-event.
2774 (special-event-map): Bind mac-apple-event.
2775
2776 2006-06-02 Eli Zaretskii <eliz@gnu.org>
2777
2778 * makefile.w32-in (EMACS): Remove quotes from the Emacs executable
2779 file name.
2780 (emacs): Enclose the value of $(EMACS) in quotes.
2781
2782 2006-06-02 Juri Linkov <juri@jurta.org>
2783
2784 * international/mule.el (sgml-html-meta-auto-coding-function):
2785 Remove the condition `(search-forward "<html" size t)'.
2786 Replace `\"' with `[\"']?' in `re-search-forward'.
2787
2788 2006-06-02 Kenichi Handa <handa@m17n.org>
2789
2790 * files.el (hack-local-variables-prop-line): Ignore `char-trans'
2791 as well as `coding'.
2792 (hack-local-variables): Likewise.
2793
2794 * international/mule.el (enable-character-translation):
2795 Put permanent-local and safe-local-variable properties.
2796 (find-auto-coding): Handle char-trans: tag.
2797
2798 2006-06-02 Juri Linkov <juri@jurta.org>
2799
2800 * international/mule.el (sgml-html-meta-auto-coding-function):
2801 Limit the search by the end of the HTML header (if any).
2802
2803 2006-06-01 Richard Stallman <rms@gnu.org>
2804
2805 * subr.el (with-current-buffer): Doc fix.
2806
2807 2006-06-02 Masatake YAMATO <jet@gyve.org>
2808
2809 * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-*):
2810 Almost rewrite. Underlines over all lines of gcov output are too
2811 uncomfortable to read. Suggested by Dan Nicolaescu.
2812
2813 2006-06-01 Luc Teirlinck <teirllm@auburn.edu>
2814
2815 * progmodes/inf-lisp.el (inferior-lisp-mode): Doc fixes.
2816
2817 * shell.el (shell-mode): Use shell-mode-map in docstring.
2818
2819 * comint.el (comint-send-input): Do not add help-echo and
2820 mouse-face to input if `comint-use-prompt-regexp' is non-nil.
2821
2822 2006-06-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2823
2824 * term/x-win.el: Change x-menu-bar-start to menu-bar-open.
2825
2826 2006-06-01 Nick Roberts <nickrob@snap.net.nz>
2827
2828 * progmodes/gdb-ui.el (gdb-look-up-stack): New variable.
2829 (gdb-stopped, gdb-info-stack-custom): If there is no source info
2830 look up the stack and pop up GUD buffer if necessary.
2831 (gdb-frames-select): Remove redundant call to gud-display-frame.
2832 (gdb-info-threads-custom): Keep point at start of buffer.
2833 (gdb-find-file-hook): Make it work for pre-GDB 6.4.
2834
2835 2006-05-31 Juri Linkov <juri@jurta.org>
2836
2837 * replace.el (query-replace-read-from, query-replace-read-to):
2838 Bind `history-add-new-input' to nil. Call `add-to-history'.
2839
2840 2006-05-31 Takaaki Ota <Takaaki.Ota@am.sony.com>
2841
2842 * textmodes/table.el: Convert all HTML tags to lower case for
2843 XHTML compatibility.
2844
2845 2006-05-31 Masatake YAMATO <jet@gyve.org>
2846
2847 * progmodes/compile.el:
2848 (compilation-error-regexp-alist-alist::gcov-called-line):
2849 Don't put face on `-' lines in gcov file. Suggested by Dan Nicolaescu.
2850
2851 2006-05-31 Nick Roberts <nickrob@snap.net.nz>
2852
2853 * progmodes/gud.el (gud-query-cmdline, gud-common-init):
2854 Revert inadvertent changes made with last commit.
2855
2856 2006-05-30 Reiner Steib <Reiner.Steib@gmx.de>
2857
2858 * textmodes/flyspell.el (turn-on-flyspell, turn-off-flyspell):
2859 New functions.
2860
2861 * textmodes/text-mode.el (text-mode-hook): Use turn-on-flyspell.
2862
2863 2006-05-30 Carsten Dominik <dominik@science.uva.nl>
2864
2865 * textmodes/org.el (org-agenda-highlight-todo): Make sure regexp
2866 only matches in the right place.
2867 (org-upcoming-deadline): New face.
2868 (org-agenda-get-deadlines): Use new face `org-upcoming-deadline'.
2869 (org-export-ascii-underline): Rename constant `org-ascii-underline'
2870 and make it an option.
2871 (org-export-ascii-bullets): New option.
2872 (org-export-as-html): Many changes to emit valid XHTML.
2873 (org-par-open): New variable.
2874 (org-open-par, org-close-par-maybe, org-close-li-maybe): New functions.
2875 (org-html-do-expand, org-section-number): Fix case in `replace-match'.
2876 (org-timeline): Pass `org-timeline-show-empty-dates' to
2877 `org-get-all-dates'. Interpret empty dates returned by
2878 `org-get-all-dates'.
2879 (org-get-all-dates): New argument EMPTY. Add dates without
2880 entries to the list, mark large ranges of empty dates.
2881 (org-point-in-group, org-context): New functions.
2882
2883 2006-05-30 Nick Roberts <nickrob@snap.net.nz>
2884
2885 * progmodes/gud.el (gud-stop-subjob): Make it work in all buffers.
2886
2887 * progmodes/gdb-ui.el: Move gdb-mouse-toggle-breakpoint-* to
2888 C-mouse-1. Move gdb-mouse-until to mouse-3, gdb-mouse-jump
2889 to C-mouse-3 (for 2 button mice).
2890 (gdb-send): Do the right thing for C-d.
2891
2892 * speedbar.el (speedbar-detach): Delete.
2893 (speedbar-easymenu-definition-trailer): Remove speedbar-detach as
2894 it breaks things.
2895 (speedbar-reconfigure-keymaps): Always add extra items to pop up menu.
2896
2897 2006-05-30 Daniel Pfeiffer <occitan@esperanto.org>
2898
2899 * files.el (auto-mode-alist): Add makepp suffix and optional mk on
2900 Makeppfile.
2901
2902 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2903 Add makepp diagnostic.
2904
2905 2006-05-29 Richard Stallman <rms@gnu.org>
2906
2907 * window.el (fit-window-to-buffer): Doc fix.
2908
2909 * help.el (temp-buffer-max-height): Doc fix.
2910
2911 * subr.el (with-current-buffer): Doc fix.
2912
2913 2006-05-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2914
2915 * term/x-win.el: Bind F10 to menu-bar-start if available.
2916
2917 2006-05-28 Dan Nicolaescu <dann@ics.uci.edu>
2918
2919 * term.el (term-if-xemacs, term-ifnot-xemacs): Delete, replace
2920 uses with a simple test.
2921 (term-set-escape-char, term-mode, term-check-kill-echo-list)
2922 (term-send-raw-string, term-send-raw, term-mouse-paste)
2923 (term-char-mode, term-line-mode, term-exec, term-sentinel)
2924 (term-handle-exit, term-read-input-ring)
2925 (term-previous-matching-input-string)
2926 (term-previous-matching-input-string-position)
2927 (term-previous-matching-input-from-input)
2928 (term-replace-by-expanded-history, term-send-input)
2929 (term-skip-prompt, term-bol, term-send-invisible)
2930 (term-kill-input, term-delchar-or-maybe-eof)
2931 (term-backward-matching-input, term-check-source)
2932 (term-proc-query, term-emulate-terminal)
2933 (term-handle-colors-array, term-process-pager, term-pager-line)
2934 (term-pager-bob, term-unwrap-line, term-word)
2935 (term-dynamic-complete-filename)
2936 (term-dynamic-complete-as-filename)
2937 (term-dynamic-simple-complete): Replace one arm ifs with whens or
2938 unlesses.
2939
2940 2006-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
2941
2942 * files.el (hack-one-local-variable-eval-safep): Don't burp if used
2943 during bootstrapping.
2944
2945 * emacs-lisp/ewoc.el (ewoc--current-dll): Remove.
2946 Basically undo the change of 2006-05-26: use extra arguments instead of
2947 dynamic scoping.
2948 (ewoc-locate): Remove unused var `footer'.
2949
2950 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
2951
2952 * emacs-lisp/ewoc.el (ewoc--insert-new-node): Use ewoc--refresh-node.
2953
2954 * emacs-lisp/autoload.el (no-update-autoloads): Declare.
2955 (generate-file-autoloads): Obey it. Return whether autoloads were
2956 added at point or not.
2957 (update-file-autoloads): Use this new return value.
2958 Remove redundant test for the presence of an autoload cookie.
2959
2960 * emacs-lisp/autoload.el (autoload-find-file): New fun.
2961 This one calls hack-local-variables.
2962 (generate-file-autoloads, update-file-autoloads): Use it.
2963
2964 * textmodes/bibtex.el (bibtex-autokey-name-case-convert-function)
2965 (bibtex-sort-entry-class): Add safe-local-variable predicate.
2966 (bibtex-sort-entry-class-alist): Don't set the global value.
2967 (bibtex-init-sort-entry-class-alist): New fun.
2968 (bibtex-sort-buffer, bibtex-prepare-new-entry): Call it to compute
2969 bibtex-init-sort-entry-class-alist from the buffer-local value (if any)
2970 of bibtex-init-sort-entry-class.
2971
2972 2006-05-28 Richard Stallman <rms@gnu.org>
2973
2974 * subr.el (load-history-regexp): If FILE is relative, insist
2975 entire last name component must match it.
2976 (load-history-filename-element, load-history-regexp): Doc fixes.
2977
2978 2006-05-29 Kim F. Storm <storm@cua.dk>
2979
2980 * emacs-lisp/bindat.el (bindat-idx, bindat-raw): Rename dynamic vars
2981 `pos' and `raw-data' for clarity, as eval forms may access these.
2982
2983 2006-05-28 Kim F. Storm <storm@cua.dk>
2984
2985 * emacs-lisp/bindat.el (bindat--unpack-u8): Use aref also for strings.
2986
2987 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
2988
2989 * progmodes/make-mode.el (makefile-browser-map)
2990 (makefile-mode-syntax-table): Move initialization inside declaration.
2991 (makefile-fill-paragraph): Use the default comment-filling code.
2992
2993 2006-05-28 Chong Yidong <cyd@stupidchicken.com>
2994
2995 * replace.el (query-replace-defaults): New variable.
2996 (query-replace-read-from): Use `query-replace-defaults' for
2997 default value, instead of history list.
2998 (query-replace-read-to): Update `query-replace-defaults'.
2999
3000 2006-05-27 Chong Yidong <cyd@stupidchicken.com>
3001
3002 * msb.el (mouse-select-buffer): Minor fix to make popup menu work
3003 with no X toolkit.
3004
3005 2006-05-28 Nick Roberts <nickrob@snap.net.nz>
3006
3007 * tumme.el (tumme-show-all-from-dir-max-files): Fix typo.
3008 (tumme-show-all-from-dir): Add autoload.
3009
3010 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
3011
3012 * tumme.el: Change a lot of `(if .. (progn ..)' to `(when ..)'.
3013 (tumme-remove-tag): Fix bug.
3014
3015 2006-05-27 Thien-Thi Nguyen <ttn@gnu.org>
3016
3017 * emacs-lisp/ewoc.el (ewoc--create): No longer take HEADER and
3018 FOOTER args. Update unique caller.
3019 (ewoc-delete): Compute last node once before looping.
3020 (ewoc--node-branch): Merge into unique caller.
3021 (ewoc--node): Don't define constructor make-ewoc--node for this
3022 structure.
3023 (ewoc): Add member `hf-pp' to this structure.
3024 (ewoc--wrap): New func.
3025 (ewoc-create): Take additional arg NOSEP. If nil, wrap node and
3026 header/footer pretty-printers. Save header/footer pretty-printer.
3027 (ewoc-set-hf): Use ewoc's header/footer pretty-printer. *
3028
3029 * pcvs.el (cvs-make-cvs-buffer): Specify NOSEP to `ewoc-create'.
3030
3031 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
3032
3033 * dired.el (dired-mode-map): Change `tumme-tag-remove' to
3034 `tumme-delete-tag'. Rename `Remove Image Tag' to `Delete Image
3035 Tag'. Change "Compare directories..." to "Change Directories...".
3036 Move tumme commands to Operate, Regexp and Immediate menus.
3037 Change "Add Comment" to "Add Image Comment". Change "Add Image
3038 Tag" to "Add Image Tags".
3039
3040 * tumme.el (tumme-delete-tag): Rename from `tumme-tag-remove'.
3041 (tumme-setup-dired-keybindings): Change `tumme-add-remove' to
3042 `tumme-delete-tag'.
3043
3044 2006-05-26 Luc Teirlinck <teirllm@auburn.edu>
3045
3046 * shell.el (shell-mode): Call shell-dirtrack-mode after
3047 list-buffers-directory is made a local variable, to avoid setting
3048 the default value.
3049
3050 2006-05-26 Kevin Ryde <user42@zip.com.au>
3051
3052 * info.el (Info-index-next): Use where-is-internal to report
3053 actual binding of Info-index-next, rather than hard-coded `,'.
3054
3055 2006-05-26 Eli Zaretskii <eliz@gnu.org>
3056
3057 * menu-bar.el (menu-bar-apropos-menu): Move "Find Key in Manual"
3058 and "Find Command in Manual" to here.
3059
3060 * buff-menu.el (list-buffers-noselect): For Info buffers, use
3061 Info-current-file as the file name.
3062
3063 2006-05-26 Jonathan Yavner <jyavner@member.fsf.org>
3064
3065 * ses.el (defadvice undo-more): Delete this defadvice. The undo
3066 overrides will now be done a different way.
3067 (ses-set-parameter): Reapply this function for undo.
3068 (ses-set-header-row): Reconstruct header row during undo.
3069 (ses-widen): New function.
3070 (ses-goto-data, ses-reconstruct-all): Use new function.
3071 (ses-command-hook): Widen buffer during undo, before unupdating
3072 the cells.
3073 (ses-insert-row, ses-delete-row): Widen buffer during undo.
3074 (ses-load, ses-header-row): Permit empty (zero-row) spreadsheets.
3075 (ses-read-cell): Avoid stupid warning for RET RET on a cell whose
3076 formula hasn't been executed yet.
3077
3078 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
3079
3080 * comint.el (comint-kill-whole-line): Rename arg to count.
3081 Fix doc string.
3082
3083 2006-05-26 Chong Yidong <cyd@stupidchicken.com>
3084
3085 * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument
3086 to copy-file.
3087
3088 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
3089
3090 * simple.el (toggle-truncate-lines): Make arg optional for
3091 backward compatibility.
3092
3093 2006-05-26 Thien-Thi Nguyen <ttn@gnu.org>
3094
3095 * emacs-lisp/ewoc.el (ewoc--current-dll): New var.
3096 (ewoc--node-next, ewoc--node-prev, ewoc--node-nth): Don't take
3097 DLL arg. Instead, use ewoc--current-dll. Update all callers.
3098 (ewoc--set-buffer-bind-dll-let*): Bind ewoc--current-dll, not `dll'.
3099 (ewoc--adjust): Use ewoc--current-dll.
3100 (ewoc-next, ewoc-prev, ewoc-nth): Bind ewoc--current-dll.
3101
3102 2006-05-26 Carsten Dominik <dominik@science.uva.nl>
3103
3104 * textmodes/org.el (org-next-item, org-previous-item): Emit more
3105 compact error message.
3106 (org-tags-view): Refresh category table in each file.
3107 (org-table-justify-field-maybe): Remove superfluous arguments to
3108 `format'.
3109 (org-export-as-html): Insert "<p>" before postamble.
3110 (org-paste-subtree, org-kill-is-subtree-p): Check for empty kill ring.
3111
3112 2006-05-26 Kenichi Handa <handa@m17n.org>
3113
3114 * textmodes/po.el (po-find-charset): Pay attention to the case
3115 FILENAME is a cons (NAME . BUFFER).
3116 (po-find-file-coding-system-guts): Likewise.
3117
3118 * arc-mode.el (archive-set-buffer-as-visiting-file):
3119 Call find-operation-coding-system with (FILENAME . BUFFER).
3120
3121 * tar-mode.el (tar-extract): Call find-operation-coding-system
3122 with (FILENAME . BUFFER).
3123
3124 * international/mule.el (decode-coding-inserted-region):
3125 Call find-operation-coding-system with (FILENAME . BUFFER).
3126
3127 2006-05-25 Chong Yidong <cyd@stupidchicken.com>
3128
3129 * image-mode.el (image-toggle-display): Use buffer contents to
3130 generate image for a remote file.
3131
3132 2006-05-25 Juri Linkov <juri@jurta.org>
3133
3134 * replace.el (query-replace-read-from, query-replace-read-to):
3135 Remove 8th arg KEEP-ALL in read-from-minibuffer.
3136
3137 2006-05-25 Rajesh Vaidheeswarran <rv@gnu.org>
3138
3139 * whitespace.el (whitespace-cleanup): Change to cleanup
3140 region if one is active.
3141 * whitespace.el (whitespace-cleanup-internal): New internal method.
3142
3143 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
3144
3145 * dired.el (dired-mode-map): Add help-echo strings to tumme
3146 commands. Bind `tumme-dired-display-image' to C-t i.
3147
3148 * tumme.el (tumme-display-image): Change documentation string slightly.
3149 (tumme-dired-display-image): Add call to `display-buffer'.
3150
3151 2006-05-25 Thien-Thi Nguyen <ttn@gnu.org>
3152
3153 * emacs-lisp/bindat.el (bindat-unpack, bindat-pack):
3154 Signal error if RAW-DATA is a multibyte string.
3155
3156 2006-05-24 Richard Stallman <rms@gnu.org>
3157
3158 * subr.el (with-local-quit): When handling `quit' signal,
3159 make a chance for quit-flag to cause a quit.
3160
3161 * emacs-lisp/advice.el (ad-enable-advice, ad-activate)
3162 (ad-disable-advice): Add autoloads.
3163
3164 * subr.el (read-passwd): Copy PROMPT before changing its properties.
3165
3166 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
3167
3168 * dired.el (dired-mode-map): Change menu items for tumme as per
3169 suggestions in emacs-devel.
3170
3171 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
3172
3173 * dired.el (dired-mode-map): Fix breakage.
3174
3175 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
3176
3177 * tumme.el (tumme-display-dired-image): Rename to...
3178 (tumme-dired-display-image): ...this.
3179 (tumme-track-movement): Change default value to t.
3180 (tumme-display-thumbs): Add new optional parameter DO-NOT-POP,
3181 used from `tumme-next-line-and-display' and similar commands.
3182
3183 * dired.el (dired-mode-map): Add Thumbnail submenu under the
3184 Immediate menu. Add some tumme commands there.
3185
3186 2006-05-24 Luc Teirlinck <teirllm@auburn.edu>
3187
3188 * loadup.el ("jka-cmpr-hook"): Load it before it is needed.
3189
3190 2006-05-24 Chong Yidong <cyd@mit.edu>
3191
3192 * menu-bar.el, international/mule-cmds.el: Remove tooltips for
3193 menu entries that open submenus.
3194
3195 2006-05-24 Alan Mackenzie <acm@muc.de>
3196
3197 * startup.el (command-line): For names of preloaded files, don't
3198 append ".elc" (now done in Fload), and call file-truename on the
3199 lisp directory.
3200
3201 * subr.el (eval-after-load): Fix the doc-string. Allow FILE to
3202 match ANY loaded file with the right name, not just those in
3203 load-path. Put a regexp matching the file name into
3204 after-load-alist, rather than the name itself.
3205
3206 * subr.el: New functions load-history-regexp,
3207 load-history-filename-element, do-after-load-evaluation.
3208
3209 * international/mule.el (load-with-code-conversion): Do the
3210 eval-after-load stuff by calling do-after-load-evaluation.
3211
3212 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
3213
3214 * progmodes/gud.el (gud-sentinel): Condition on GUD buffer if it
3215 has not been killed.
3216
3217 2006-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3218
3219 * term/mac-win.el: Set idle timer to clean up expired Apple events.
3220 (mac-ae-get-url): Redispatch Apple event on unknown scheme.
3221 (mac-dispatch-apple-event): Resume Apple event if it is suspended.
3222 Optionally set error message in reply.
3223
3224 2006-05-24 Carsten Dominik <dominik@science.uva.nl>
3225
3226 * textmodes/org.el (org-open-at-point): Use renamed variable
3227 `org-confirm-shell-link-function'.
3228 (org-confirm-shell-link-function): Rename from
3229 `org-confirm-shell-links'.
3230 (org-export-directory): New function.
3231 (org-export-as-ascii, org-export-as-html, org-export-as-xoxo)
3232 (org-export-icalendar): Use `org-export-directory'.
3233 (org-indent-item): Keep cursor position.
3234 (org-link-file-path-type): New option.
3235 (org-export-as-html): Fix bug with plain lists starting in
3236 column 0.
3237 (org-export-as-html): Remove deadline formatting, this happens
3238 now already in `org-html-handle-time-stamps'.
3239 (org-export-html-style): Deadline class removed.
3240 (org-insert-labeled-timestamps-at-point): New option.
3241 (org-cycle, org-occur, org-scan-tags): Use `org-overview' instead
3242 of `hide-sublevels 1', in case the first headline is not level 1.
3243 (org-overview, org-content): New fuction.
3244 (org-cycle-global-status, org-cycle-subtree-status): Make these
3245 variables buffer-local.
3246 (org-global-cycle): New command.
3247 (org-shifttab): Use `org-global-cycle'.
3248 (org-insert-heading, org-insert-item): Go to end of new
3249 headline/item after creating it.
3250 (org-export-visible): Rename from `org-export-copy-visible'.
3251 Now creates a temporary org-file and applies an exporting command
3252 to it.
3253 (org-table-eval-formula): Support for lisp forms.
3254 (org-agenda-todo-ignore-scheduled): New option.
3255 (org-agenda-get-todos): Use new option
3256 `org-agenda-todo-ignore-scheduled'.
3257 (org-export-html-inline-images): New value `maybe'.
3258 (org-export-as-html): Inlining of images dependent on link description.
3259 (org-archive-subtree): Check for end-of-buffer before trying
3260 `kill-line'.
3261 (org-agenda-follow-mode): New option.
3262 (org-export-with-tags, org-export-with-timestamps): New options.
3263 (org-html-handle-time-stamps): New function.
3264 (org-keyword-time-regexp): New variable.
3265 (org-agenda-get-todos): Use `org-agenda-todo-list-sublevels'.
3266 (org-agenda-todo-list-sublevels): New option.
3267 (org-html-level-start): When TITLE is nil, just close all levels.
3268 (org-parse-key-lines, org-parse-export-options): Remove functions,
3269 replaced by `org-infile-export-plist'.
3270 (org-combine-plists, org-infile-export-plist)
3271 (org-default-export-plist): New functions.
3272 (org-export-html-preamble, org-export-html-postamble)
3273 (org-export-html-auto-preamble, org-export-html-auto-postamble):
3274 New variables.
3275 (org-export-publishing-directory): New option.
3276 (org-export-as-html, org-export-as-ascii): Use the new property
3277 lists for settings.
3278 (org-export-copy-visible, org-export-as-xoxo):
3279 Respect `org-export-publishing-directory'.
3280 (org-link-search, org-store-link, org-file-apps): Support for
3281 links to BibTeX database entries..
3282 (org-get-current-options, org-set-regexps-and-options):
3283 Implement logging as a startup option.
3284 (org-store-link): Make sure context string is never empty
3285 (org-insert-link): Use relative path when possible.
3286 (org-at-item-checklet-p): New function.
3287 (org-shifttab, org-shiftmetaleft, org-shiftmetaright)
3288 (org-shiftmetaup, org-shiftmetadown, org-metaleft)
3289 (org-metaright, org-metaup, org-metadown, org-shiftup)
3290 (org-shiftdown, org-shiftright, org-shiftleft)
3291 (org-ctrl-c-ctrl-c, org-cycle, org-return, org-meta-return):
3292 Dispatch using `call-interactively'.
3293 (org-call-with-arg): New defsubst.
3294 (org-tag-alist, org-use-fast-tag-selection): New options.
3295 (org-complete): Use `org-tag-alist'.
3296 (org-fast-tag-insert, org-fast-tag-selection): New functions.
3297 (org-next-item, org-previous-item): New commands.
3298 (org-beginning-of-item, org-end-of-item): Add (interactive) to
3299 make command.
3300 (org-shiftup, org-shiftdown): Accommodate the item-navigation commands.
3301
3302 2006-05-23 Thien-Thi Nguyen <ttn@gnu.org>
3303
3304 * emacs-lisp/ewoc.el (ewoc-delete): New function.
3305 (ewoc-filter): Use `ewoc-delete'.
3306
3307 * emacs-lisp/bindat.el (bindat-pack): Doc fix.
3308
3309 2006-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
3310
3311 * textmodes/bibtex.el (bibtex-format-entry, bibtex-clean-entry):
3312 Signal more user-friendly error messages.
3313
3314 * complete.el (PC-do-completion): Undo the addition of implicit
3315 wildcards if they did not lead to finding any match.
3316 (read-file-name-internal): Don't add the final > if the completion is
3317 not finished.
3318
3319 2006-05-22 Reiner Steib <Reiner.Steib@gmx.de>
3320
3321 * textmodes/bibtex.el (bibtex-maintain-sorted-entries):
3322 Quote safe-local-variable predicate.
3323
3324 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
3325
3326 * emacs-lisp/ewoc.el (ewoc-set-data): New function.
3327
3328 2006-05-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3329
3330 * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as safe.
3331
3332 * progmodes/make-mode.el (makefile-special-targets-list)
3333 (makefile-macro-table, makefile-target-table): Mark as risky.
3334 (makefile-query-one-target-method): Make this the alias for the
3335 following variable.
3336 (makefile-query-one-target-method-function): Make this the real name.
3337
3338 * textmodes/artist.el (artist-text-renderer): Make this the alias
3339 for the following variable.
3340 (artist-text-renderer-function): Make this the real name.
3341
3342 * textmodes/flyspell.el (flyspell-generic-check-word-p): Make this
3343 the alias for the following variable.
3344 (flyspell-generic-check-word-predicate): Make this the real name.
3345
3346 * textmodes/ispell.el (ispell-format-word): Make this the alias
3347 for the following variable.
3348 (ispell-format-word-function): Make this the real name.
3349 (ispell-message-text-end): Mark as risky.
3350
3351 * skeleton.el (skeleton-transformation, skeleton-filter)
3352 (skeleton-pair-filter): Make these the aliases for the following
3353 variables.
3354 (skeleton-transformation-function, skeleton-filter-function)
3355 (skeleton-pair-filter-function): Make these the real names.
3356
3357 * progmodes/sh-script.el (sh-mode): Use skeleton-filter-function
3358 and skeleton-pair-filter-function.
3359
3360 * textmodes/sgml-mode.el (sgml-transformation): Make this the
3361 alias for the following variable.
3362 (sgml-transformation-function): Make this the real name.
3363 (sgml-tag-alist): Mark as risky.
3364
3365 2006-05-21 Richard Stallman <rms@gnu.org>
3366
3367 * simple.el (kill-region): Interactively, pass point, then mark.
3368
3369 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
3370
3371 * emacs-lisp/ewoc.el (ewoc-create): Add autoload cookie.
3372
3373 2006-05-21 Romain Francoise <romain@orebokech.com>
3374
3375 * dired-x.el (dired-mode-map): Don't bind M-g.
3376
3377 2006-05-20 Richard Stallman <rms@gnu.org>
3378
3379 * dired.el (dired-mode-map): Put dired-goto-file on j, not M-g.
3380 (dired-goto-file): Doc fix.
3381
3382 2006-05-21 Kim F. Storm <storm@cua.dk>
3383
3384 * emulation/cua-base.el: Mention customizing cua-mode as alternative
3385 way to enable built-in cua-mode if user loads older CUA-mode package.
3386
3387 * ido.el (ido-read-file-name): Bind ido-show-dot-for-dired to nil
3388 if default-filename is specified.
3389
3390 2006-05-20 Eli Zaretskii <eliz@gnu.org>
3391
3392 * menu-bar.el (menu-bar-manuals-menu) <info-apropos>: New menu item.
3393
3394 * info.el (info-apropos): Make sure current-file and current-node
3395 have non-nil values. Speed up by using add-to-list instead of
3396 manual consing.
3397
3398 2006-05-20 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
3399
3400 * progmodes/make-mode.el (makefile-mode): Doc fix.
3401
3402 2006-05-20 Eli Zaretskii <eliz@gnu.org>
3403
3404 * dired-aux.el (dired-do-shell-command): Doc fix.
3405
3406 2006-05-20 Kevin Ryde <user42@zip.com.au>
3407
3408 * info-xref.el (info-xref-check-all-custom): Skip :tag part of
3409 ``(custom-manual :tag "Foo" "(foo)Node")''.
3410
3411 2006-05-20 Karl Chen <quarl@cs.berkeley.edu>
3412
3413 * progmodes/cc-vars.el (c-backslash-column): Mark as safe if its
3414 value is an integer.
3415
3416 2006-05-20 Eli Zaretskii <eliz@gnu.org>
3417
3418 * mail/rmail.el (rmail-mime-charset-pattern): Add "?:" before
3419 "format".
3420 (rmail-convert-to-babyl-format): Undo the change from 2006-04-19.
3421
3422 2006-05-20 Martin Rudalics <rudalics@gmx.at>
3423
3424 * progmodes/hideif.el (show-ifdef-block): Fix bug where parts of
3425 a hidden block remained hidden if `hide-ifdef-lines' is non-nil.
3426
3427 2006-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
3428
3429 * progmodes/gud.el (gdb-script-font-lock-keywords): Use a stricter
3430 regexp for keywords.
3431
3432 2006-05-20 Masayuki FUJII <boochang@m4.kcn.ne.jp> (tiny change)
3433
3434 * dnd.el (dnd-get-local-file-name): Specify LITERAL in
3435 replace-regexp-in-string.
3436
3437 * term/w32-win.el (w32-drag-n-drop): Substitute '/' for '\',
3438 encode, and escape file name on conversion to URL.
3439
3440 2006-05-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3441
3442 * dnd.el (dnd-handle-one-url): Change 3rd arg ARG to URL.
3443 Don't unescape URL.
3444 (dnd-get-local-file-name): Unescape URL on conversion to file name.
3445
3446 * x-dnd.el (x-dnd-handle-file-name): Encode and escape file names
3447 on conversion to URLs.
3448
3449 * net/browse-url.el (browse-url-file-url): Encode file name on
3450 conversion to URL.
3451
3452 * term/mac-win.el (mac-ae-open-documents): Escape file name on
3453 conversion to URL.
3454
3455 2006-05-19 Eli Zaretskii <eliz@gnu.org>
3456
3457 * progmodes/cc-styles.el (c-style-alist): Doc fix.
3458
3459 2006-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3460
3461 * term/mac-win.el (mac-bytes-to-digits): Remove function.
3462 (mac-handle-toolbar-switch-mode): Use coercion instead of it.
3463
3464 2006-05-19 Glenn Morris <rgm@gnu.org>
3465
3466 * calendar/diary-lib.el (diary-bahai-date)
3467 (list-bahai-diary-entries, mark-bahai-diary-entries)
3468 (mark-bahai-calendar-date-pattern): Not interactive.
3469 (add-to-diary-list): New optional arg LITERAL. Doc fix.
3470 (diary-entries-list): Change format of 4th element in each entry.
3471 (diary-list-entries): Use add-to-diary-list.
3472 (diary-goto-entry): Handle the case where the buffer visiting the
3473 diary has been killed.
3474 (fancy-diary-display): Add 'locator to button rather than 'marker.
3475 Only generate temp-face when there are marks to apply.
3476 (list-sexp-diary-entries): Pass literal to add-to-diary-list.
3477 (diary-fancy-date-pattern): New variable.
3478 (diary-time-regexp): Doc fix.
3479 (diary-anniversary, diary-time): New faces.
3480 (fancy-diary-font-lock-keywords): Use diary-fancy-date-pattern and
3481 diary-time-regexp. Add font-lock-multiline property where needed.
3482 Use new faces diary-anniversary and diary-time.
3483 (diary-fancy-font-lock-fontify-region-function): New function, to
3484 handle multiline font-lock pattern in fancy diary.
3485 (fancy-diary-display-mode): Set font-lock-fontify-region-function.
3486 (diary-font-lock-keywords): Tweak time regexp. Use new face
3487 diary-time.
3488
3489 2006-05-19 Alexander Shopov <ash@contact.bg> (tiny change)
3490
3491 * international/code-pages.el (mik): Table corrected.
3492
3493 2006-05-18 Kim F. Storm <storm@cua.dk>
3494
3495 * progmodes/grep.el (grep-find): Don't check grep-find-command
3496 before running command (breaks non-interactive usage).
3497
3498 2006-05-18 Thien-Thi Nguyen <ttn@gnu.org>
3499
3500 * emacs-lisp/ewoc.el (ewoc--adjust): New func.
3501 (ewoc--insert-new-node): Don't insert trailing newline.
3502 Instead, adjust successor nodes's start markers.
3503 (ewoc--refresh-node): Delete all text from current node's start
3504 marker to the next one's; adjust successor nodes's start markers.
3505 (ewoc--create): Doc fixes.
3506 (ewoc--refresh): Don't insert newline.
3507 (ewoc--set-hf): Use `ewoc--set-buffer-bind-dll-let*'.
3508 * pcvs.el (cvs-make-cvs-buffer):
3509 Specify extra newline for ewoc's header and footer.
3510 (cvs-update-header): Update initial header recognition.
3511 Append newline to final header and footer values.
3512 * pcvs-info.el (cvs-fileinfo-pp): Insert trailing newline.
3513
3514 2006-05-17 Richard Stallman <rms@gnu.org>
3515
3516 * files.el (file-name-extension): Doc fix.
3517
3518 2006-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3519
3520 * shell.el (shell-dirtrack-mode): Make it into a proper minor mode, so
3521 we can explicitly enable/disable rather than toggle.
3522 (shell-mode): Use it.
3523 (shell-cd): Don't try to reproduce what `cd' does.
3524
3525 2006-05-17 Kim F. Storm <storm@cua.dk>
3526
3527 * ido.el (ido-read-internal): Use only nondirectory part of
3528 default item.
3529
3530 2006-05-17 Thien-Thi Nguyen <ttn@gnu.org>
3531
3532 * emacs-lisp/ewoc.el (ewoc-data): Add docstring.
3533 (ewoc-nth): Doc fix.
3534
3535 (ewoc-map, ewoc-invalidate): Compute PP before looping.
3536
3537 2006-05-16 Eli Zaretskii <eliz@gnu.org>
3538
3539 * international/mule.el (auto-coding-alist): Add .lha to files
3540 read with no-conversion.
3541
3542 * files.el (auto-mode-alist): Add .lha files to archive file
3543 extensions.
3544
3545 * arc-mode.el (archive-arc-summarize, archive-lzh-summarize):
3546 Convert csize to integer when computing offsets within the
3547 compressed archive file.
3548
3549 2006-05-16 Kim F. Storm <storm@cua.dk>
3550
3551 * subr.el (add-to-history): Add KEEP-ALL arg and align functionality
3552 with read-from-minibuffer.
3553
3554 2006-05-16 Reiner Steib <Reiner.Steib@gmx.de>
3555
3556 * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p): New function.
3557 (byte-compile-warnings): Fix safe-local-variable property.
3558
3559 2006-05-16 Ken Manheimer <ken.manheimer@gmail.com>
3560
3561 * allout.el (allout-show-bodies, allout-old-style-prefixes)
3562 (allout-stylish-prefixes, allout-numbered-bullet)
3563 (allout-file-xref-bullet, allout-use-hanging-indents): Use simple
3564 predicates to qualify `safe-local-variable' property, when
3565 available, else use equivalent lambda.
3566 (allout-current-topic-collapsed-p): Do the right thing regarding
3567 trailing blank lines.
3568
3569 2006-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
3570
3571 * server.el (server-start): Only create a directory if needed.
3572 (server-edit, server-unload-hook): server-start => server-mode.
3573 (kill-emacs-hook): Cleanup upon exit.
3574
3575 2006-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
3576
3577 * hexl.el (hexlify-buffer): Encode process arguments manually.
3578
3579 2006-05-16 Nick Roberts <nickrob@snap.net.nz>
3580
3581 * progmodes/gud.el (gud-tooltip-tips): Add missing argument to
3582 call to gdb-tooltip-print.
3583
3584 2006-05-15 Romain Francoise <romain@orebokech.com>
3585
3586 * dired-x.el (dired-guess-shell-gnutar): On GNU and GNU/Linux
3587 systems, default to "tar" since those systems probably have GNU tar.
3588
3589 2006-05-14 Lars Hansen <larsh@soem.dk>
3590
3591 * desktop.el (desktop-missing-file-warning): Fix docstring.
3592 (desktop-restore-file-buffer): Correct question asked on missing file.
3593
3594 2006-05-14 Kim F. Storm <storm@cua.dk>
3595
3596 * progmodes/cc-subword.el (c-forward-subword, c-backward-subword):
3597 Add CUA move property.
3598
3599 2006-05-13 Chong Yidong <cyd@stupidchicken.com>
3600
3601 * custom.el (custom-push-theme): Load the variable before checking
3602 its `standard-value'.
3603
3604 2006-05-13 Lars Hansen <larsh@soem.dk>
3605
3606 * desktop.el (desktop-save): Use with-temp-buffer.
3607
3608 2006-05-12 Glenn Morris <rgm@gnu.org>
3609
3610 * calendar/cal-menu.el (calendar-mode-map, calendar-mouse-3-map):
3611 * calendar/calendar.el (calendar-mode-map):
3612 * calendar/diary-lib.el (include-other-diary-files,diary-mail-entries):
3613 * calendar/appt.el (appt-check, appt-make-list): Refer to
3614 diary-view-entries, diary-list-entries, diary-show-all-entries
3615 rather than obsolete aliases.
3616
3617 2006-05-12 Chong Yidong <cyd@stupidchicken.com>
3618
3619 * simple.el (line-move-finish): Avoid calling point motion hooks
3620 while processing intangibility.
3621
3622 2006-05-12 Dan Nicolaescu <dann@ics.uci.edu>
3623
3624 * term/xterm.el (terminal-init-xterm): Fix typo.
3625
3626 2006-05-12 Ken Manheimer <ken.manheimer@gmail.com>
3627
3628 * allout.el (allout-view-change-hook): Mark as being deprecated,
3629 to be replaced by `allout-exposure-change-hook'.
3630 (allout-exposure-change-hook): New, replacing
3631 `allout-view-change-hook'.
3632 (allout-flag-region): Run new hook `allout-exposure-change-hook',
3633 in addition to `allout-view-change-hook'.
3634 (allout-show-bodies, allout-old-style-prefixes)
3635 (allout-stylish-prefixes, allout-use-hanging-indents): Quote the
3636 lambda forms to prevent their showing up in variable help
3637 presentations as inscrutable byte-compiled code.
3638 (allout-numbered-bullet, allout-file-xref-bullet, allout-layout):
3639 Use string-or-null-p to qualify safe-local-variable values.
3640 (allout-reindent-bodies): Use memq to qualify matches against
3641 valid safe-local-variable values. Also, quote the lambda as above.
3642 (allout-use-mode-specific-leader): Add missing candidate-value
3643 symbols, use memq, and quote the lambda.
3644 (allout-overlay-interior-modification-handler): Remove unused
3645 variables `msg' and 'opened'.
3646 (allout-hidden-p): Constrain invisibility consideration to allout's
3647 invisibility spec, disregarding invisibility for other reasons.
3648
3649 2006-05-12 Reiner Steib <Reiner.Steib@gmx.de>
3650
3651 * files.el (version-control): Correct safe values.
3652
3653 2006-05-12 Thien-Thi Nguyen <ttn@gnu.org>
3654
3655 * emacs-lisp/ewoc.el (ewoc-refresh): Compute PP once before looping.
3656
3657 (ewoc--node-enter-before, ewoc--create-node): Delete funcs.
3658 (ewoc--insert-new-node): New func.
3659 Update callers of deleted funcs to use it, instead.
3660
3661 2006-05-11 Glenn Morris <rgm@gnu.org>
3662
3663 * calendar/calendar.el (diary-show-all-entries): Do not refer to
3664 obsolete alias `show-all-diary-entries'.
3665 (make-diary-entry): Not interactive.
3666 (cal-tex-cursor-month, cal-tex-cursor-month-landscape)
3667 (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
3668 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
3669 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3670 (cal-tex-cursor-year-landscape, cal-tex-cursor-filofax-year)
3671 (cal-tex-cursor-filofax-daily, cal-tex-cursor-year): Interactive.
3672
3673 2006-05-11 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
3674
3675 * calendar/calendar.el (calendar-french-date-string)
3676 (calendar-mayan-date-string, calendar-chinese-date-string)
3677 (calendar-astro-date-string, calendar-iso-date-string)
3678 (calendar-islamic-date-string, calendar-bahai-date-string)
3679 (calendar-hebrew-date-string, calendar-coptic-date-string)
3680 (calendar-ethiopic-date-string, calendar-persian-date-string):
3681 These functions are not interactive.
3682
3683 2006-05-11 Luc Teirlinck <teirllm@auburn.edu>
3684
3685 * files.el: Balance parentheses.
3686
3687 2006-05-11 Reiner Steib <Reiner.Steib@gmx.de>
3688
3689 * files.el, newcomment.el, outline.el, simple.el,
3690 emacs-lisp/bytecomp.el, progmodes/cc-compat.el,
3691 progmodes/cc-vars.el, progmodes/compile.el:
3692 Move `safe-local-variable' declarations to the respective files.
3693
3694 * help-fns.el (describe-variable): Don't print safe-var if it is
3695 byte-code. Improve wording as suggested by Luc Teirlinck.
3696
3697 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
3698
3699 * progmodes/gdb-ui.el (gdb-reset): Update speedbar if necessary.
3700 (gdb-var-evaluate-expression-handler, gdb-var-update-handler):
3701 Use a token for pending-triggers to ensure gdb-var-update
3702 gets called once per user input again for pre-GDB 6.4.
3703 (gdb-var-delete): Match on more complex expressions.
3704 (gdb-var-list-children-handler, gdb-var-create-handler):
3705 Use a token for consistency.
3706
3707 2006-05-11 Carsten Dominik <dominik@science.uva.nl>
3708
3709 * textmodes/org.el (org-read-date, org-goto-calendar)
3710 (org-agenda-goto-calendar):
3711 Bind `view-calendar-holidays-initially' to nil.
3712
3713 2006-05-11 Thien-Thi Nguyen <ttn@gnu.org>
3714
3715 * emacs-lisp/ewoc.el (ewoc--refresh-node): No longer save-excursion.
3716 Update all callers to do it there, instead.
3717
3718 2006-05-10 Glenn Morris <rgm@gnu.org>
3719
3720 * calendar/calendar.el (calendar-basic-setup): Set day to 1 in
3721 prefix arg case, to avoid view-diary-entries-initially error.
3722 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
3723 (calendar-date-is-legal-p): Handle dates with no day part.
3724
3725 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
3726
3727 * comint.el (comint-insert-input): Just make it when
3728 comint-use-prompt regexp is nil (default) and with the mouse.
3729 (comint-copy-old-input): Reinstate from 2004-06-23.
3730 (comint-mode-map): Bind C-c C-m to it.
3731
3732 2006-05-10 J.D. Smith <jdsmith@as.arizona.edu>
3733
3734 * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
3735 Remove spurious move to point-max (new comint behavior fixes).
3736
3737 * progmodes/idlwave.el (idlwave-push-mark): Removed obsolete
3738 compatibility function (Emacs 18/19).
3739 (idlwave-is-continuation-line): Always return point at start of
3740 previous non-blank continuation line.
3741 `keyword-parameters': Fix continued comment font-lock matcher.
3742 (idlwave-font-lock-fontify-region): Written, use as
3743 font-lock-fontify-region-function, to fix continued keyword
3744 fontification issues.
3745
3746 2006-05-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3747
3748 * term/mac-win.el (mac-font-panel-mode): Doc fix.
3749 (mac-service-selection, mac-service-open-file)
3750 (mac-service-open-selection, mac-service-mail-selection)
3751 (mac-service-mail-to, mac-service-insert-text): Rename from
3752 mac-services-*. All uses changed.
3753 (mac-apple-event-map): Rename event symbol `services' to `service'.
3754
3755 2006-05-10 Thien-Thi Nguyen <ttn@gnu.org>
3756
3757 * emacs-lisp/ewoc.el (ewoc--dll-create, ewoc--node-delete)
3758 (ewoc--node-enter-first, ewoc--node-enter-last)
3759 (ewoc--delete-node-internal): Merge funcs into unique callers.
3760
3761 2006-05-09 Chong Yidong <cyd@stupidchicken.com>
3762
3763 * emacs-lisp/crm.el (completing-read-multiple): Properly handle
3764 return value of read-from-minibuffer for empty input.
3765
3766 2006-05-09 Miles Bader <miles@gnu.org>
3767
3768 * comint.el (comint-insert-input): Remove redundant calls to setq
3769 and goto-char.
3770
3771 2006-05-10 Nick Roberts <nickrob@snap.net.nz>
3772
3773 * comint.el (comint-insert-input): Make it work when
3774 comint-use-prompt-regexp is t.
3775
3776 2006-05-10 Miles Bader <miles@gnu.org>
3777
3778 * subr.el (field-at-pos): New function.
3779
3780 * comint.el (comint-insert-input): Use it.
3781
3782 2006-05-09 Juri Linkov <juri@jurta.org>
3783
3784 * battery.el (battery-linux-proc-acpi): Also try
3785 `/proc/acpi/thermal_zone/THR2/temperature'.
3786
3787 * files.el <safe-local-variable>: Remove `eval' and `let' binding
3788 for now unused lambda `string-or-null'.
3789
3790 * add-log.el (change-log-default-name): Put `string-or-null-p'
3791 instead of lambda on `safe-local-variable' property.
3792
3793 * diff-mode.el (diff-context->unified): Use `region-beginning' and
3794 `region-end' instead of `mark' and `point'.
3795 (diff-unified->context, diff-reverse-direction, diff-fixup-modifs):
3796 Operate on region in Transient Mark mode when the mark is active.
3797 Use `region-beginning' and `region-end' instead of `mark' and
3798 `point'.
3799 (diff-hunk-text, diff-goto-source): Doc fix.
3800
3801 * startup.el (fancy-splash-screens, normal-splash-screen): Use
3802 face `mode-line-buffer-id' for mode-line buffer face instead of
3803 hard-coded `(:weight bold)'.
3804
3805 * arc-mode.el (archive-set-buffer-as-visiting-file): Bind
3806 buffer-undo-list to t (undo-ask is reproducible by visiting
3807 nested archives).
3808
3809 2006-05-09 Kim F. Storm <storm@cua.dk>
3810
3811 * progmodes/grep.el (rgrep): Set default directory of *grep*
3812 buffer if we start M-x rgrep in the *grep* buffer and choose
3813 a different base directory.
3814
3815 2006-05-09 Michael Albinus <michael.albinus@gmx.de>
3816
3817 * net/tramp.el (tramp-register-file-name-handlers): Enable Tramp
3818 completion also when ido is loaded.
3819
3820 2006-05-09 Masatake YAMATO <jet@gyve.org>
3821
3822 * font-lock.el (cpp-font-lock-keywords-source-directives): Addded
3823 "warning" and "import".
3824 (cpp-font-lock-keywords): Added "warning".
3825
3826 2006-05-08 Dan Nicolaescu <dann@ics.uci.edu>
3827
3828 * term/xterm.el (terminal-init-xterm): Add more key bindings.
3829
3830 2006-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
3831
3832 * mwheel.el (mwheel-scroll): Make sure that when scrolling multiple
3833 pages at a time, if we signal the end, we should indeed reach that end.
3834
3835 2006-05-08 David Reitter <david.reitter@gmail.com>
3836
3837 * emacs-lisp/easy-mmode.el (define-minor-mode): Only preserve messages
3838 output during execution of the body.
3839
3840 2006-05-08 Kim F. Storm <storm@cua.dk>
3841
3842 * progmodes/grep.el (lgrep, rgrep): Doc fixes.
3843
3844 2006-05-08 Thien-Thi Nguyen <ttn@gnu.org>
3845
3846 * emacs-lisp/ewoc.el (ewoc--set-buffer-bind-dll-let*):
3847 Use with-current-buffer.
3848
3849 2006-05-07 Kim F. Storm <storm@cua.dk>
3850
3851 * subr.el (add-to-history): Remove keep-dups arg.
3852
3853 * kmacro.el (kmacro-push-ring): Let-bind history-delete-duplicates
3854 to nil around call to add-to-history.
3855
3856 2006-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
3857
3858 * emacs-lisp/syntax.el (syntax-ppss): Flush the cache before rather
3859 than after a buffer modification.
3860
3861 2006-05-08 Nick Roberts <nickrob@snap.net.nz>
3862
3863 * progmodes/gdb-ui.el (gdb-var-create-handler): Move speedbar
3864 call to...
3865 (gud-watch): ...here so speedbar is raised for already watched
3866 expressions.
3867 (gdb-speedbar-refresh): Delete function.
3868 (gdb-speedbar-update, gdb-speedbar-timer-fn): New functions.
3869 Use speedbar-timer-fn instead of speedbar-refresh (reverting
3870 earlier change).
3871 (gdb-var-evaluate-expression-handler)
3872 (gdb-var-list-children-handler-1, gdb-var-update-handler-1): Use it.
3873
3874 * speedbar.el (speedbar-timer-fn): Remove save-window-excursion.
3875 Update localized contents for all buffers except ignored modes.
3876
3877 2006-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3878
3879 * term/mac-win.el (mac-utxt-to-string): Use `eq' instead of `='.
3880 (mac-atsu-font-table, mac-font-panel-mode): Add defvars.
3881 (mac-bytes-to-digits, mac-handle-toolbar-switch-mode)
3882 (mac-handle-font-panel-closed, mac-handle-font-selection):
3883 New functions.
3884 (mac-font-panel-mode): New minor mode.
3885 (mac-apple-event-map): Add bindings for toolbar toggle button and
3886 font panel.
3887 (menu-bar-showhide-menu): Add mac-font-panel-mode.
3888
3889 2006-05-07 John Paul Wallington <jpw@pobox.com>
3890
3891 * ibuffer.el (ibuffer-compressed-file-name-regexp):
3892 Avoid `regexp-opt'; simplify regexp for readability.
3893
3894 2006-05-06 Eli Zaretskii <eliz@gnu.org>
3895
3896 * ldefs-boot.el (dired-do-redisplay, dired-maybe-insert-subdir):
3897 * files.el (buffer-stale-function):
3898 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
3899 * autorevert.el (global-auto-revert-non-file-buffers): Point Info
3900 links to the main manual, not to emacs-xtra.
3901
3902 2006-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3903
3904 * term/mac-win.el (mac-utxt-to-string): Don't make adjustment for
3905 MacJapanese if text is ASCII-only.
3906
3907 2006-05-06 Nick Roberts <nickrob@snap.net.nz>
3908
3909 * progmodes/gdb-ui.el (gdb-goto-breakpoint): Use or instead of
3910 unless so nil isn't returned.
3911 (gdb-setup-windows, gdb-restore-windows): Reset gdb-source-window.
3912
3913 2006-05-06 Kim F. Storm <storm@cua.dk>
3914
3915 * subr.el (add-to-history): New function.
3916
3917 * ediff.el (ediff-files, ediff-files3, ediff-merge-files)
3918 (ediff-merge-files-with-ancestor):
3919 * env.el (setenv):
3920 * isearch.el (isearch-update-ring):
3921 * server.el (server-visit-files):
3922 * progmodes/grep.el (lgrep, rgrep):
3923 * progmodes/vhdl-mode.el (vhdl-generate-makefile-1):
3924 * progmodes/xscheme.el (xscheme-insert-expression):
3925 Use add-to-history.
3926
3927 * kmacro.el (kmacro-push-ring): Use add-to-history.
3928 (kmacro-ring-length): Remove unused defun.
3929 (kmacro-start-macro): Use kmacro-push-ring.
3930
3931 2006-05-06 Thien-Thi Nguyen <ttn@gnu.org>
3932
3933 * emacs-lisp/ewoc.el (ewoc-create, ewoc-set-hf): Use `insert'
3934 directly instead of a lambda expression that calls it.
3935
3936 2006-05-06 Kim F. Storm <storm@cua.dk>
3937
3938 * avoid.el (mouse-avoidance-point-position): Use posn-at-point
3939 instead of compute-motion.
3940
3941 2006-05-05 Dan Nicolaescu <dann@ics.uci.edu>
3942
3943 * ibuffer.el (ibuffer-compressed-file-name-regexp): Undo previous
3944 change.
3945
3946 2006-05-05 Reiner Steib <Reiner.Steib@gmx.de>
3947
3948 * startup.el (command-line-1): Refer to "Pure Storage" on
3949 pure-space-overflow.
3950
3951 2006-05-05 Martin Rudalics <rudalics@gmx.at>
3952
3953 * emacs-lisp/re-builder.el (reb-update-overlays): Cycle through
3954 provided faces once they all have been used up.
3955
3956 2006-05-05 Eli Zaretskii <eliz@gnu.org>
3957
3958 * startup.el (normal-splash-screen, fancy-splash-screens-1): Add a
3959 reference to the Lisp manual to the warning about pure space
3960 overflow.
3961
3962 2006-05-05 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
3963
3964 * textmodes/ispell.el (ispell-buffer-local-dict): Add a `no-reload'
3965 argument to avoid the call to `ispell-internal-change-dictionary'
3966 when not needed.
3967 (ispell-change-dictionary): Use this argument and call
3968 `ispell-internal-change-dictionary' after the possible change
3969 to `ispell-local-dictionary'.
3970 (ispell-internal-change-dictionary): Check for a change in
3971 personal dictionary use too.
3972
3973 2006-05-05 Eli Zaretskii <eliz@gnu.org>
3974
3975 * startup.el (command-line): On MS-Windows, probe "~", not
3976 "~USER", for warning about non-existent home directory
3977
3978 * arc-mode.el (archive-l-e): New optional argument `float' means
3979 generate a float value.
3980 (archive-arc-summarize, archive-lzh-summarize)
3981 (archive-zip-summarize, archive-zoo-summarize): Invoke archive-l-e
3982 with 3rd argument non-nil when file's size is being computed.
3983 Format the file sizes with %8.0f instead of %8d.
3984
3985 2006-05-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3986
3987 * cus-start.el (all): Add mac-dnd-known-types.
3988
3989 * term/mac-win.el (mac-utxt-to-string, mac-string-to-utxt)
3990 (mac-TEXT-to-string, mac-string-to-TEXT, mac-furl-to-string)
3991 (mac-TIFF-to-string): New functions.
3992 (x-get-selection, x-selection-value)
3993 (mac-select-convert-to-string): Use them.
3994 (mac-text-encoding-mac-japanese-basic-variant): New constant.
3995 (mac-dnd-types-alist): New customization variable.
3996 (mac-dnd-handle-furl, mac-dnd-handle-hfs, mac-dnd-insert-utxt)
3997 (mac-dnd-insert-TEXT, mac-dnd-insert-TIFF, mac-dnd-drop-data)
3998 (mac-dnd-handle-drag-n-drop-event): New functions.
3999 (mac-drag-n-drop): Remove function.
4000 (global-map): Bind drag-n-drop and M-drag-n-drop to
4001 mac-dnd-handle-drag-n-drop-event.
4002
4003 2006-05-04 Karl Chen <quarl@NOSPAM.quarl.org>
4004
4005 * progmodes/perl-mode.el (perl-beginning-of-function):
4006 Skip anonymous subs.
4007
4008 2006-05-04 Dan Nicolaescu <dann@ics.uci.edu>
4009
4010 * ibuffer.el (ibuffer-compressed-file-name-regexp): Avoid loading
4011 regexp-opt at run time.
4012
4013 * term.el (term-handle-ansi-escape): Fix off by one error.
4014
4015 2006-05-04 Nick Roberts <nickrob@snap.net.nz>
4016
4017 * progmodes/gdb-ui.el (gdb-force-update): Delete variable...
4018 (gdb-init-1, gdb-post-prompt): ...and references to it.
4019 (gdb-frame-handler): Strip directory name from filename if present.
4020
4021 * progmodes/gud.el (gdb-force-update): Delete defvar
4022 (gud-speedbar-buttons): ...and references to it. Use window-start
4023 to try to keep positon in watch expression.
4024
4025 2006-05-03 Richard Stallman <rms@gnu.org>
4026
4027 * simple.el (next-history-element, previous-history-element): Doc fix.
4028
4029 * isearch.el (isearch-update-ring): Doc fix.
4030
4031 2006-05-03 Dan Nicolaescu <dann@ics.uci.edu>
4032
4033 * isearch.el (isearch-update-ring): Take history-delete-duplicates
4034 into consideration. Replace one arm ifs with whens.
4035
4036 2006-05-03 Nick Roberts <nickrob@snap.net.nz>
4037
4038 * progmodes/gdb-ui.el (gud-watch): Let user select an expression.
4039 (menu): Fix typo.
4040
4041 2006-05-02 Miles Bader <miles@gnu.org>
4042
4043 * replace.el (occur-engine): Bind `inhibit-field-text-motion' to t.
4044
4045 2006-05-02 Jay Belanger <belanger@truman.edu>
4046
4047 * calc/calc-embed.el (calc-override-minor-modes-map)
4048 (calc-override-minor-modes): New variables.
4049 (calc-do-embedded): Make sure that Calc keystrokes aren't
4050 overwritten by minor modes.
4051
4052 2006-05-02 Chong Yidong <cyd@mit.edu>
4053
4054 * msb.el (msb): If EVENT is a down event, read and discard the up event.
4055
4056 2006-05-02 Reiner Steib <Reiner.Steib@gmx.de>
4057
4058 * startup.el (command-line-1): Refer to Lisp manual when
4059 pure-space-overflow occurs.
4060
4061 * files.el (byte-compile-dynamic, byte-compile-dynamic-docstrings)
4062 (byte-compile-warnings, find-file-visit-truename, indent-tabs-mode)
4063 (left-margin, no-byte-compile, no-update-autoloads, truncate-lines)
4064 (version-control): Don't use `t' for safe-local-variable declarations.
4065
4066 2006-05-01 Richard Stallman <rms@gnu.org>
4067
4068 * diff-mode.el (diff-mode-shared-map): Don't bind M-W, M-U, M-C,
4069 M-r, M-R, M-A, M-SPC or M-DEL.
4070 (diff-mode-map): diff-refine-hunk now on C-c C-w
4071 (diff-mode-map): Bind C-c C-e, C-c C-n, C-c C-r, C-c C-u.
4072
4073 * help-mode.el (help-mode): view-exit-action calls delete-window
4074 only when it is safe and possible.
4075
4076 * simple.el (undo-outer-limit-truncate): Put quotes around buffer name
4077 in messages.
4078
4079 * emacs-lisp/warnings.el (display-warning, lwarn): Doc fixes.
4080
4081 * tool-bar.el (tool-bar-setup): Put Help and Preferences items
4082 in the default tool-bar-map.
4083
4084 2006-05-01 Michael Albinus <michael.albinus@gmx.de>
4085
4086 * net/tramp.el (tramp-completion-file-name-handler-alist)
4087 (tramp-run-real-handler, tramp-completion-run-real-handler)
4088 (tramp-completion-handle-file-name-all-completions)
4089 (tramp-completion-handle-file-name-completion): Autoload them.
4090 (tramp-completion-handle-file-exists-p)
4091 (tramp-completion-handle-file-name-directory)
4092 (tramp-completion-handle-file-name-nondirectory)
4093 (tramp-completion-handle-expand-file-name): Remove them.
4094 (tramp-handle-file-name-directory): Return the real directory name.
4095 Returning "/" only doesn't need to be necessary any longer.
4096 (tramp-file-name-handler): Make special attention when in hostname
4097 completion mode.
4098 (tramp-completion-file-name-handler): Revert patch from 2006-04-28.
4099 (tramp-register-file-name-handlers):
4100 Register `tramp-completion-file-name-handler' only when
4101 `partial-completion-mode' is enabled.
4102 (tramp-completion-handle-file-name-all-completions):
4103 Delete directory part from results.
4104 (tramp-get-completion-methods, tramp-get-completion-user-host):
4105 Discard deleting "/", it doesn't work after the change of
4106 `tramp-handle-file-name-directory' above.
4107
4108 2006-05-01 Kim F. Storm <storm@cua.dk>
4109
4110 * progmodes/grep.el (grep-expand-template): Use save-match-data
4111 and symbol-value.
4112
4113 2006-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4114
4115 * term/mac-win.el (mac-ae-open-documents, mac-drag-n-drop):
4116 Use select-frame-set-input-focus instead of raise-frame.
4117 (global-map): Bind M-drag-n-drop to mac-drag-n-drop.
4118
4119 2006-05-01 Nick Roberts <nickrob@snap.net.nz>
4120
4121 * progmodes/gud.el (gud-def): Add %c case.
4122 (gud-speedbar-buttons): Don't bind case-fold-search unnecessarily.
4123 (gud-format-command): Make match case sensitive. Match on %F.
4124
4125 2006-04-30 Glenn Morris <rgm@gnu.org>
4126
4127 * calendar/cal-tex.el (cal-tex-preamble-extra): New variable.
4128 (cal-tex-preamble): Use cal-tex-preamble-extra.
4129 (cal-tex-list-diary-entries): Refer to `diary-list-entries' rather
4130 than alias `list-diary-entries'.
4131
4132 2006-04-29 Dan Nicolaescu <dann@ics.uci.edu>
4133
4134 * help-fns.el (describe-variable): Add info about safe local variables.
4135
4136 2006-04-29 Richard Stallman <rms@gnu.org>
4137
4138 * bindings.el (mode-line-format): help-echo doc fixes.
4139
4140 * net/tramp.el (tramp-file-name-handler-alist): Delete
4141 expand-file-name and other operations that can cause spurious loading.
4142
4143 2006-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
4144
4145 * files.el (safe-local-variable-p): Remove support for the special
4146 value t.
4147
4148 * textmodes/paragraphs.el (sentence-end-without-space):
4149 Fix safety predicate.
4150 (sentence-end-double-space, sentence-end-without-period)
4151 (paragraph-ignore-fill-prefix):
4152 * textmodes/fill.el (colon-double-space):
4153 * abbrev.el (abbrev-mode): Tighten the safety predicate.
4154
4155 * subr.el (booleanp): New fun.
4156
4157 * textmodes/reftex-vars.el (reftex-guess-label-type):
4158 Tighten the safety predicate.
4159
4160 2006-04-28 Kim F. Storm <storm@cua.dk>
4161
4162 * progmodes/grep.el (defgroup grep): Doc fix.
4163 (grep-auto-highlight): Remove.
4164 (grep-template): New defcustom.
4165 (grep-find-template): Rename from grep-tree-template.
4166 (grep-files-aliases): Rename from grep-tree-files-aliases.
4167 Remove "all" alias, add "l" alias.
4168 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories): Remove.
4169 (grep-find-ignored-directories): New defcustom to replace
4170 grep-tree-ignore-CVS-directories, to facilitate ignoring
4171 subdirectories for multiple version control systems.
4172 (grep-mode-map): Add Recursive grep item to GREP menu.
4173 (grep-regexp-history, grep-files-history): New defvars.
4174 (grep-probe): New helper function.
4175 (grep-compute-defaults): Use it to simplify code.
4176 Adapt to name changes.
4177 Use `.' as base in grep-find-template rather than <D>.
4178 (grep): Remove superfluous highlight-regexp arg. Fix doc.
4179 Call grep-compute-defaults unconditionally.
4180 (grep-expand-keywords): New defconst.
4181 (grep-expand-template): Rename from grep-expand-command-macros.
4182 Simplify via grep-expand-keywords. Look at case-fold-search instead
4183 of grep-tree-ignore-case to add -i option.
4184 Bind case-fold-search to nil while matching keywords.
4185 (grep-tree-last-regexp, grep-tree-last-files): Remove.
4186 (grep-read-regexp, grep-read-files): New helper functions.
4187 (rgrep): Rename from grep-tree. Rework to use proper histories.
4188 Adapt to changes in defcustoms and functions above.
4189 (lgrep): New command, as grep, but using same interactive UI as rgrep.
4190
4191 2006-04-28 Michael Albinus <michael.albinus@gmx.de>
4192
4193 * net/tramp.el (tramp-completion-file-name-handler):
4194 Disable Tramp's functionality while loading Tramp itself.
4195 (tramp-register-file-name-handlers): That's a defsubst now.
4196 Code from `tramp-repair-jka-compr' moved here. Apply it via
4197 `after-init-hook'.
4198 (tramp-repair-jka-compr): Remove.
4199
4200 2006-04-27 Jay Belanger <belanger@truman.edu>
4201
4202 * calc-embed.el (calc-embedded-make-info): Use `math-read-expr' to
4203 read expression when `math-read-big-expr' doesn't work.
4204
4205 2006-04-27 Reiner Steib <Reiner.Steib@gmx.de>
4206
4207 * startup.el (command-line-1): Display warning when
4208 pure-space-overflow is non-nil.
4209
4210 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4211
4212 * textmodes/bibtex.el (bibtex-user-optional-fields): Mark as
4213 risky.
4214
4215 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4216
4217 * textmodes/bibtex.el (bibtex-url): New optional arg no-browse.
4218 Return the URL or nil if none can be generated.
4219
4220 2006-04-27 Nick Roberts <nickrob@snap.net.nz>
4221
4222 * progmodes/gud.el (gud-comint-buffer): Move forward to stop
4223 byte compiler warnings.
4224 (gud-basic-call, gud-find-expr): Let user select an expression
4225 for printing. Print expression as well as value in GUD buffer.
4226
4227 2006-04-17 Ken Manheimer <ken.manheimer@gmail.com>
4228
4229 * allout.el: Remove local autoload declaration for
4230 pgg-gpg-symmetric-key-p, since that's now done in pgg-gpg.el.
4231 (allout-show-bodies, allout-header-prefix, allout-primary-bullet)
4232 (allout-plain-bullets-string, allout-distinctive-bullets-string)
4233 (allout-use-mode-specific-leader, allout-old-style-prefixes)
4234 (allout-stylish-prefixes, allout-numbered-bullet)
4235 (allout-file-xref-bullet, allout-presentation-padding)
4236 (allout-use-hanging-indents, allout-reindent-bodies): Mark as
4237 safe-local-variable with suitable value spec, and add autoload
4238 cookie for loaddefs inclusion. We now use an explicit spec everywhere.
4239 (move-beginning-of-line, move-end-of-line): Repair so these compat
4240 functions now actually resituate the point, when appropriate.
4241
4242 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
4243
4244 * progmodes/cc-subword.el (c-subword-mode-map): Use command remapping.
4245
4246 * add-log.el (add-log-iso8601-time-zone): Make parameter optional.
4247 (add-log-iso8601-time-string): Fix call to format-time-string.
4248
4249 2006-04-26 Kim F. Storm <storm@cua.dk>
4250
4251 * subr.el (posn-string, posn-image, posn-object): Doc fix.
4252
4253 2006-04-26 Masatake YAMATO <jet@gyve.org>
4254
4255 * progmodes/asm-mode.el (asm-mode, asm-mode-syntax-table):
4256 Add support for "//" style comments. Remove `b' flag
4257 from ?* in `asm-mode-syntax-table'.
4258
4259 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
4260
4261 * follow.el: Use (featurep 'xemacs) everywhere.
4262 (follow-mode): Use define-minor-mode.
4263 (follow-mode-map): Move initialization into the declaration.
4264 Use command remapping.
4265 (follow-emacs-version-xemacs-p): Remove.
4266 (follow-submit-feedback): Remove.
4267
4268 * allout.el (allout-layout, allout-passphrase-verifier-string)
4269 (allout-passphrase-hint-string): Tighten up a bit the safety predicate.
4270
4271 * textmodes/reftex-vars.el (reftex-vref-is-default)
4272 (reftex-fref-is-default, reftex-guess-label-type):
4273 Tighten up a bit the safety predicate.
4274
4275 * textmodes/paragraphs.el (sentence-end-double-space)
4276 (sentence-end-without-period, sentence-end-without-space)
4277 (page-delimiter, paragraph-ignore-fill-prefix):
4278 Tighten up a bit the safety predicate.
4279
4280 * textmodes/fill.el (colon-double-space): Tighten up the safety pred.
4281
4282 * progmodes/python.el (python-continuation-line-p)
4283 (python-beginning-of-statement): syntax-ppss may return
4284 a negative depth.
4285 (python-mode): Don't forcefully enable font-lock.
4286
4287 * time-stamp.el (time-stamp-start, time-stamp-end)
4288 (time-stamp-inserts-lines): Tighten up a bit the safety predicate.
4289
4290 * add-log.el: Remove spurious * in docstrings.
4291 (add-log-time-zone-rule): Rename from change-log-time-zone-rule.
4292 (add-change-log-entry): Use it here, since it's not specific
4293 to iso8601.
4294 (add-log-iso8601-time-string): Don't use it here any more.
4295 (change-log-indent-text, change-log-indent): Rename from add-log-*.
4296
4297 * abbrev.el (abbrev-mode): Tighten up a bit the safety predicate.
4298
4299 2006-04-25 Ryan Yeske <rcyeske@gmail.com>
4300
4301 * net/rcirc.el (rcirc-print): Revert last change with ignored nicks.
4302 (rcirc-toggle-low-priority): Doc fix.
4303 (rcirc-handler-NOTICE): Remove beginning of line anchor in
4304 ChanServ regexp.
4305 (rcirc-startup-channels-alist): Connect to #rcirc by default, not
4306 #emacs.
4307 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Add variables.
4308 (rcirc-decode-coding-system): Use utf-8 as the default.
4309 (rcirc-multiline-minor-mode): Set the fill-column.
4310 (rcirc-format-response-string): Display bright and dim nicks.
4311 (rcirc-browse-url): Update interactive spec to fill ARG.
4312 (rcirc-bright-nick, rcirc-dim-nick): Add faces.
4313 (rcirc-print): Ignore dim-nick messages wrt modeline-activity.
4314
4315 2006-04-24 J.D. Smith <jdsmith@as.arizona.edu>
4316
4317 * textmodes/bibtex.el (bibtex-find-entry): Don't demand matching
4318 case for @Article, etc.
4319
4320 2006-04-23 Michael Albinus <michael.albinus@gmx.de>
4321
4322 * net/tramp.el (tramp-register-file-name-handlers): New defun.
4323 Added with autoload cookie.
4324 (tramp-unload-file-name-handlers): Rename from
4325 `tramp-unload-file-name-handler-alist'.
4326
4327 2006-04-23 Romain Francoise <romain@orebokech.com>
4328
4329 * comint.el (comint-match-partial-filename): Doc fix.
4330
4331 2006-04-21 Glenn Morris <rgm@gnu.org>
4332
4333 * calendar/cal-menu.el (calendar-mode-map): Refer to
4334 `diary-view-entries' rather than alias `view-diary-entries'.
4335 * calendar/diary-lib.el (view-other-diary-entries): Ditto.
4336
4337 2006-04-21 Luc Teirlinck <teirllm@auburn.edu>
4338
4339 * progmodes/antlr-mode.el (antlr-default):
4340 * cus-edit.el (custom-documentation):
4341 * faces.el (scroll-bar, border, cursor, mouse): Avoid nil spec
4342 in defface.
4343
4344 2006-04-21 Kim F. Storm <storm@cua.dk>
4345
4346 * image.el (image-type): New defun split out of create-image.
4347 (create-image): Use it.
4348
4349 2006-04-21 Carsten Dominik <dominik@science.uva.nl>
4350
4351 * textmodes/org.el (org-mode-map): Catch conflict with old allout.el.
4352 (org-open-at-point): Remove the "...done" message to keep output
4353 in the echo area visible.
4354 (org-export-as-xoxo): Fix call to `indent-region'.
4355
4356 2006-04-21 Kevin Ryde <user42@zip.com.au>
4357
4358 * international/mule.el (keyboard-coding-system): defcustom
4359 info-link fixes: "Specify Coding" has been split, keyboard now in
4360 "Terminal Coding", and "Single-Byte Character Support" is now
4361 "Unibyte Mode".
4362
4363 2006-04-21 Nick Roberts <nickrob@snap.net.nz>
4364
4365 * progmodes/gdb-ui.el (gdb-data-list-register-values-handler):
4366 Use font-lock-warning-face for any errors e.g. no stack.
4367 (gdb-stack-list-locals-handler): Display any errors e.g. no stack.
4368
4369 2006-04-20 Dan Nicolaescu <dann@ics.uci.edu>
4370
4371 * progmodes/sh-script.el (sh-shell): Mark as safe.
4372
4373 * newcomment.el (comment-start, comment-start-skip)
4374 (comment-end-skip, comment-end): Mark as safe.
4375
4376 2006-04-20 Carsten Dominik <dominik@science.uva.nl>
4377
4378 * textmodes/org.el (org-deadline-announce): Face removed.
4379 (org-level-faces, org-n-levels): Convert to constant.
4380 (org-compatible-face): New function.
4381 (org-hide, org-level-1, org-level-2, org-level-3, org-level-4)
4382 (org-level-5, org-level-6, org-level-7, org-level-8)
4383 (org-special-keyword, org-warning, org-headline-done, org-link)
4384 (org-date, org-tag, org-todo, org-done, org-table, org-formula)
4385 (org-scheduled-today, org-scheduled-previously, org-time-grid):
4386 Face definition revised for better color tty support.
4387 (org-bold-re, org-italic-re, org-underline-re): New constants.
4388 (org-set-font-lock-defaults): Use the new constants.
4389 (org-agenda-highlight-todo): New function.
4390 (org-agenda-todo): Fix bug with point at end of line.
4391 (org-agenda-change-all-lines, org-finalize-agenda-entries):
4392 Fontify TODO keywords.
4393 (org-insert-link): Preserve relative path in ../ links.
4394 (org-export-as-html): Convert links pointing to .org files into
4395 links that will work beteen the exported HTML files.
4396 (org-todo-list): Fix bug when arg=0.
4397 (org-insert-heading): More fine-tuning.
4398
4399 2006-04-19 Romain Francoise <romain@orebokech.com>
4400
4401 * mail/rmail.el (rmail-convert-to-babyl-format): Use second group
4402 from `rmail-mime-charset-pattern'.
4403
4404 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
4405
4406 * progmodes/python.el (python-mode): Fix typo.
4407
4408 2006-04-18 J.D. Smith <jdsmith@as.arizona.edu>
4409
4410 * comint.el (comint-previous-input): Don't clobber input line
4411 when moving off either end of the input history ring.
4412 (comint-delete-input): New function, used by
4413 `comint-previous-input' and others.
4414 (comint-previous-matching-input):
4415 Use `coming-delete-input'. Save the partial input if leaving the
4416 edit line. Goto point-max before deleting input to avoid
4417 partial input fragments hanging around.
4418 (comint-restore-input): New function, used by `comint-previous-input'.
4419
4420 2006-04-18 Luc Teirlinck <teirllm@auburn.edu>
4421
4422 * imenu.el (imenu--index-alist): Balance parentheses.
4423
4424 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
4425
4426 * progmodes/python.el (python-mode): Add support for hs-minor-mode.
4427
4428 2006-04-19 Reiner Steib <Reiner.Steib@gmx.de>
4429
4430 * abbrev.el (read-abbrev-file): Use abbrev-file-name if optional
4431 file is nil.
4432
4433 2006-04-18 Richard Stallman <rms@gnu.org>
4434
4435 * tooltip.el (tooltip-mode, tooltip-use-echo-area): Doc fixes.
4436
4437 * imenu.el (imenu-create-index-function, imenu--index-alist)
4438 (imenu--last-menubar-index-alist, imenu--make-index-alist)
4439 (imenu-default-create-index-function, imenu--generic-function):
4440 Doc fixes.
4441
4442 * image-mode.el (image-toggle-display): Handle tar and arc subfiles.
4443
4444 * help-mode.el (help-mode): Set view-exit-action to delete window.
4445
4446 * env.el (setenv): Get rid of arg UNSET. Interactive unsetting
4447 now works by passing nil as arg.
4448
4449 * apropos.el (apropos-print): Don't do where-is on self-insert-command.
4450
4451 * abbrev.el (edit-abbrevs-redefine): Temporarily widen.
4452 (read-abbrev-file): Provide default when reading filename.
4453
4454 * files.el (enable-local-variables): Allow :all as value.
4455 (hack-local-variables): Implement that value.
4456 (safe-local-variable-values, safe-local-eval-forms)
4457 (enable-local-variables): Mark as risky.
4458 (find-file-visit-truename, kept-old-versions): Mark safe.
4459
4460 * time-stamp.el (time-stamp-format, time-stamp-line-limit)
4461 (time-stamp-start, time-stamp-end, time-stamp-inserts-lines)
4462 (time-stamp-count, time-stamp-pattern): Add safe-local-variable prop.
4463
4464 2006-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
4465
4466 * progmodes/tcl.el (tcl-send-string, tcl-send-region):
4467 Use forward-line so as to get to BOL even in the presence of fields.
4468 (tcl-eval-region): Strip surrounding space to avoid multiple prompts
4469 in return.
4470 (inferior-tcl): Tell tclsh to work in interactive mode.
4471
4472 * complete.el (partial-completion-mode):
4473 Use 'choose-completion-string-functions to make sure that
4474 choose-completion fills the minibuffer properly.
4475
4476 * complete.el (PC-old-read-file-name-internal): Remove.
4477 (PC-read-include-file-name-internal): Remove. Turn it into an advice
4478 of read-file-name-internal.
4479 (partial-completion-mode): Enable/disable this advice.
4480
4481 2006-04-18 Juanma Barranquero <lekktu@gmail.com>
4482
4483 * net/tramp.el (tramp-completion-file-name-handler): Revert change
4484 of 2006-04-17.
4485
4486 2006-04-18 Carsten Dominik <dominik@science.uva.nl>
4487
4488 * textmodes/org.el (org-insert-heading): Insert heading before
4489 current if at beginning of line.
4490 (org-todo, org-date): New faces.
4491 (org-table-align): Make sure tooltip window contains full text.
4492 (org-no-properties): New defsubst.
4493 (org-set-font-lock-defaults): Use new faces.
4494
4495 2006-04-18 Nick Roberts <nickrob@snap.net.nz>
4496
4497 * progmodes/gud.el (gud-speedbar-item-info): Display frame address
4498 for root variables.
4499
4500 * progmodes/gdb-ui.el (gdb-pc-address): Rename from gdb-frame-address.
4501 (gdb-frame-address): Re-use to identify frame for watch expression.
4502 (gdb-var-list, gdb-var-create-handler): Add frame address for root
4503 variables.
4504 (gdb-init-1, gdb-source, gdb-post-prompt)
4505 (gdb-assembler-custom, gdb-invalidate-assembler): Use gdb-pc-address.
4506 (gdb-frame-handler): Get gdb-frame-address.
4507
4508 2006-04-17 Michael Albinus <michael.albinus@gmx.de>
4509
4510 Sync with Tramp 2.0.53.
4511
4512 * net/tramp.el (tramp-completion-mode): ?\t has event-modifier
4513 'control. Reported by Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>.
4514 (tramp-completion-file-name-handler): Add autoload cookie for
4515 adding to `file-name-handler-alist'.
4516
4517 * net/tramp-smb.el (tramp-smb-wait-for-output): Wait always for
4518 the prompt. If it returns earlier (when detecting an error
4519 message), the rest of the output will merge accidently with the
4520 output of the next command. Reported by M Jared Finder
4521 <jared@hpalace.com>.
4522
4523 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
4524 for `process-file', in order to let it work for older Emacsen too.
4525
4526 2006-04-17 Ralf Angeli <angeli@iwi.uni-sb.de>
4527
4528 * textmodes/tex-mode.el (tex-font-lock-match-suscript): New function.
4529 (tex-font-lock-keywords-3): Use it.
4530
4531 2006-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
4532
4533 * newcomment.el (comment-add): New function.
4534 (comment-region-default, comment-dwim): Use it.
4535
4536 2006-04-15 Michael Olson <mwolson@gnu.org>
4537
4538 * emacs-lisp/tq.el: Improve comments.
4539 (tq-queue-head-question): New accessor function.
4540 (tq-queue-head-regexp, tq-queue-head-closure, tq-queue-head-fn):
4541 Update for modified queue structure.
4542 (tq-queue-add): Accept `question' argument.
4543 (tq-queue-pop): If a question is pending, send it.
4544 (tq-enqueue): Accept new optional argument `delay-question'.
4545 If this is non-nil, and at least one other question is pending a
4546 response, queue the question rather than sending it immediately.
4547
4548 2006-04-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4549
4550 * calendar/appt.el (appt-add): Check whether an appointment is
4551 already present in appt-time-msg-list. Simplify code.
4552
4553 2006-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4554
4555 * progmodes/cc-langs.el (c-mode-menu):
4556 Don't presume c-subword-mode is bound.
4557
4558 2006-04-13 Bill Wohler <wohler@newt.com>
4559
4560 * cus-edit.el (customize-package-emacs-version-alist): Update docstring.
4561 (customize-package-emacs-version): Use cdr instead of cadr now
4562 that alists use dotted pairs.
4563
4564 * custom.el (defcustom): Fix docstring for :package-version.
4565
4566 2006-04-13 Michael Albinus <michael.albinus@gmx.de>
4567
4568 * net/tramp.el (tramp-display-shell-command-buffer): New defvar.
4569 (tramp-handle-shell-command): Display output buffer only when
4570 `tramp-display-shell-command-buffer' is true.
4571 (tramp-handle-process-file): Set `tramp-display-shell-command-buffer'.
4572
4573 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
4574
4575 * textmodes/org.el (org-set-autofill-regexps): Set only the local
4576 values of `adaptive-fill-regexp' and `adaptive-fill-function'.
4577
4578 2006-04-13 Romain Francoise <romain@orebokech.com>
4579
4580 * pcvs-parse.el (cvs-parse-table): Use `with-temp-buffer' to avoid
4581 leaving temporary .cvsignore buffers behind.
4582
4583 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
4584
4585 * textmodes/org.el (org-set-regexps-and-options)
4586 (org-get-current-options): Better names for the startup folding
4587 options.
4588
4589 2006-04-13 Thien-Thi Nguyen <ttn@gnu.org>
4590
4591 * vc.el (vc-annotate): Arrange for point to end up at the same
4592 line number as in the original, but only when using a new buffer.
4593
4594 2006-04-12 Stuart Herring <herring@lanl.gov> (tiny change)
4595
4596 * files.el (hack-one-local-variable-eval-safep):
4597 Recognize `edebug-form-spec' for `put', but only if it passes
4598 `edebug-basic-spec'. Generalize `put' handling.
4599
4600 * emacs-lisp/edebug.el (edebug-basic-spec): New function for
4601 vetting file-local form specs.
4602
4603 * allout.el (allout-layout): Autoload its `safe-local-variable'
4604 property.
4605
4606 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
4607
4608 * textmodes/org.el (org-ctrl-c-ctrl-c): Improve documentation string.
4609 (org-agenda-mouse-1-follows-link)
4610 (org-mouse-1-follows-link): New options.
4611 (org-format-agenda-item): Fix bug if TAGS is nil.
4612 (org-agenda-get-scheduled): Quote `priority' symbol in plist.
4613
4614 2006-04-13 Nick Roberts <nickrob@snap.net.nz>
4615
4616 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers):
4617 GDB 6.1+ gives full filename for "info sources" so use
4618 file-name-nondirectory.
4619
4620 2006-04-12 Romain Francoise <romain@orebokech.com>
4621
4622 * subr.el (read-passwd): Bind `message-log-max' to nil.
4623
4624 2006-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4625
4626 * progmodes/perl-mode.el (perl-indent-new-calculate):
4627 Recompute parse-start after jumping backward by a whole sexp.
4628
4629 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4630
4631 * vc.el (vc-ensure-vc-buffer): Only change current-buffer, not the
4632 window configuration.
4633 (vc-annotate-display-select): Select the buffer so that current-buffer
4634 (and selected-window) is the output buffer at the end of vc-annotate.
4635
4636 2006-04-11 J.D. Smith <jdsmith@as.arizona.edu>
4637
4638 * vc.el (vc-annotate-color-map): Add custom TTY color map for
4639 8-color terminals, to use all of the colors in a sensible order.
4640 256-color terminals work well with the standard map.
4641 (vc-annotate-lines): Only strip the first color character if it
4642 is "#", to allow for terminal-style named colors.
4643 (vc-annotate-warp-version): Pass buf to `goto-line' to ensure
4644 the correct buffer is scrolled.
4645
4646 2006-04-11 Richard Stallman <rms@gnu.org>
4647
4648 * emacs-lisp/bytecomp.el (byte-compile-file):
4649 Bind enable-local-variables to :safe, and make normal-mode obey it.
4650
4651 * files.el (enable-local-variables): Allow value :safe.
4652 (normal-mode): Doc fix.
4653 (hack-local-variables): Implement enable-local-variables = :safe.
4654 (hack-local-variables-confirm): Don't prevent quitting.
4655
4656 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4657
4658 * loadhist.el (unload-feature): A bit of sanity check of
4659 load-history entries. Cancel timer-vars before unbinding them.
4660
4661 * hexl.el (hexl-isearch-search-function): Fix regexp-building code to
4662 quote special chars, and make the trick work on the hex part of the
4663 buffer as well.
4664 (hexl-mode, hexl-save-buffer, hexl-mode-exit)
4665 (hexl-maybe-dehexlify-buffer): Use restore-buffer-modified-p.
4666
4667 * startup.el (normal-splash-screen): Fix last change so we don't wait
4668 2 minutes if we don't show the splash screen.
4669
4670 2006-04-11 Carsten Dominik <dominik@science.uva.nl>
4671
4672 * textmodes/org.el (org-export-plain-list-max-depth)
4673 (org-table-spaces-around-separators)
4674 (org-radio-targets, org-activate-camels)
4675 (org-table-spaces-around-invisible-separators): Options removed.
4676 (org-time-stamp-rounding-minutes, org-remember-templates)
4677 (org-ellipsis, org-activate-links, org-descriptive-links):
4678 New options.
4679 (org-remember-apply-template, org-current-time)
4680 (org-finish-edit-table-field)
4681 (org-link-unescape, org-link-escape)
4682 (org-string-width, org-table-clean-line, org-html-do-expand)
4683 (org-edit-agenda-file-list, org-store-new-agenda-file-list)
4684 (org-read-agenda-file-list): New functions.
4685 (org-table-edit-field)
4686 (org-table-create-or-convert-from-region): New commands
4687 (org-table-toggle-vline-visibility): Command removed.
4688 (org-table-convert-region): Made a command.
4689 (orgtbl-deleta-backward-char,orgtbl-delete-char): Remove commands.
4690 Replace with the normal org- functions.
4691 (org-self-insert-command): Don't trigger realign unnecessarily
4692 when blanking a field that is not full.
4693 (org-mode): `Set buffer-invisibility-spec' for links.
4694 (org-activate-links2): Hide link part and only show descriptive
4695 part of the link.
4696 (org-insert-link): Modify for new linking system.
4697 (org-store-link): Store description separately, for use by
4698 `org-insert-link'.
4699 (org-table-align): Use `org-string-width'.
4700 (defgroup): Completely new group structure for custom variables.
4701 (org-agenda-files): Option: Single file name allowed. Function:
4702 Optional argument unrestrited means ignore any restricitons.
4703 (org-install-agenda-files-menu): Find a buffer in Org-mode before
4704 trying to modify the menu. Use generalized access to
4705 `org-agenda-files.'
4706 (org-agenda-list, org-todo-list, org-cycle-agenda-files)
4707 (org-agenda-file-to-front, org-remove-file, org-diary)
4708 (org-tags-view, org-export-icalendar-all-agenda-files)
4709 (org-export-icalendar-combine-agenda-files): Use generalized
4710 access to `org-agenda-files'.
4711 (org-remember-handler): Correctly preserve heading if present.
4712 (org-table-insert-row, org-table-insert-hline): Deal with
4713 invisible characters.
4714
4715 2006-04-10 J.D. Smith <jdsmith@as.arizona.edu>
4716
4717 * vc.el (vc-annotate-display-mode): Made default 'fullscale.
4718 (vc-annotate-color-map): New 18 element constant
4719 value/saturation, rotating hue colormap, from red->blue.
4720 (vc-annotate-mode-menu): "Default" -> "By Color Map Range".
4721 (vc-annotate-display-select): Switch to annotate-mode elsewhere.
4722 (vc-annotate): To avoid killing the required local variables,
4723 set them before the end of `with-output-to-temp-buffer', and
4724 after first switching to annotate-mode.
4725 (vc-annotate-warp-version): Add buffer argument in goto-line to
4726 ensure annotation, not source, is scrolled.
4727
4728 2006-04-10 Bill Wohler <wohler@newt.com>
4729
4730 * custom.el (defcustom, custom-handle-keyword):
4731 Add :package-version keyword.
4732 (custom-add-package-version): New function. Sets value of new
4733 property 'custom-package-version from :package-version keyword.
4734 (defcustom): Create Common Keywords section in docstring.
4735 (defface, defgroup): Replace definitions of a select few keywords
4736 with a reference to the Common Keywords in defcustom.
4737 (defcustom, defface, defgroup): Replace reference to Customization
4738 chapter in manual with hyperlink.
4739
4740 * cus-edit.el (customize-package-emacs-version-alist):
4741 New variable.
4742 (customize-changed-options): Add check for custom-package-version.
4743 (customize-package-emacs-version): New function to look up Emacs
4744 version corresponding to the given package version.
4745
4746 * emacs-lisp/find-func.el (find-function-regexp): Allow dashes in
4747 defun name, in similar fashion to find-variable-regexp.
4748
4749 2006-04-10 Eli Zaretskii <eliz@gnu.org>
4750
4751 * international/mule-cmds.el (set-locale-environment): Fix last
4752 change for when the locale's preferences don't specify any encoding.
4753
4754 2006-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
4755
4756 * emacs-lisp/find-func.el (find-function-search-for-symbol): Fix regexp
4757 so the defined var/fun doesn't need to be quoted.
4758
4759 2006-04-10 Richard Stallman <rms@gnu.org>
4760
4761 * finder.el (finder-mode-map): Add n and p bindings.
4762
4763 2006-04-10 Nick Roberts <nickrob@snap.net.nz>
4764
4765 * progmodes/gdb-ui.el (gdb-init-1): Re-initialise gdb-main-file to nil.
4766 (gdb-get-version): Make it work for pre "interpreter mi" (GDB 5.3?).
4767 (gdb-setup-windows): Put something in source window if we can't find
4768 the source file.
4769 (gdb-frame-handler): Make it work again with just assembly.
4770 (gdb-data-list-register-values-handler): Make it work when there is
4771 no stack.
4772
4773 2006-04-09 Richard Stallman <rms@gnu.org>
4774
4775 * mail/rmail.el (rmail-mime-charset-pattern): Ignore format and delsp
4776 specs while looking for charset.
4777
4778 * textmodes/picture.el (picture-mode-exit): Run picture-mode-exit-hook.
4779
4780 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
4781 Make them faces.
4782 (lm-font-lock-keywords): Update appropriately.
4783
4784 2006-04-10 Kim F. Storm <storm@cua.dk>
4785
4786 * simple.el (filter-buffer-substring): Add NOPROPS arg, so
4787 it can also replace buffer-substring-no-properties.
4788
4789 * emulation/cua-base.el (cua-delete-region, cua-paste)
4790 (cua-repeat-replace-region): Use filter-buffer-substring.
4791
4792 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
4793 (cua-cut-region-to-global-mark): Likewise.
4794
4795 * emulation/cua-rect.el (cua--extract-rectangle)
4796 (cua-incr-rectangle, cua--rectangle-aux-replace): Likewise.
4797
4798 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4799
4800 * textmodes/bibtex.el (bibtex-entry-update): New optional arg
4801 entry-type. Add field delimiters to numerical fields if they are
4802 not present.
4803
4804 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4805
4806 * textmodes/bibtex.el (bibtex-find-text-internal): Add new element
4807 string-const to return value.
4808 (bibtex-remove-delimiters): Use it.
4809
4810 2006-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
4811
4812 * emacs-lisp/bytecomp.el (byte-compile-form): Don't call
4813 cl-byte-compile-compiler-macro unless it exists.
4814
4815 2006-04-08 Eli Zaretskii <eliz@gnu.org>
4816
4817 * files.el (hack-local-variables-confirm) <offer-save>:
4818 Clarify message text. Suggested by Ralf Angeli.
4819
4820 2006-04-08 Michael Cadilhac <michael.cadilhac@lrde.org>
4821
4822 * rect.el (kill-rectangle): Don't barf if `kill-read-only-ok' is set.
4823 (delete-extract-rectangle-line): Use `filter-buffer-substring'
4824 instead of `buffer-substring' and `delete-region'. (Most of the
4825 code actually copied from `kill-region'.)
4826
4827 2006-04-08 Ryan Yeske <rcyeske@gmail.com>
4828
4829 * rcirc.el (rcirc-default-server): Rename from rcirc-server.
4830 (rcirc-default-port): Rename from rcirc-port.
4831 (rcirc-default-nick): Rename from rcirc-nick.
4832 (rcirc-default-user-name): Rename from rcirc-user-name.
4833 (rcirc-default-user-full-name): Rename from rcirc-user-full-name.
4834 (rcirc-low-priority-flag): New variable.
4835 (rcirc-decode-coding-system): New defcustom.
4836 (rcirc-encode-coding-system): New defcustom.
4837 (rcirc-coding-system-alist): New defcustom.
4838 (rcirc-multiline-major-mode): New defcustom.
4839 (rcirc-nick): New internal variable.
4840 (rcirc-process): Remove variable.
4841 (rcirc-server-buffer): New variable.
4842 (rcirc): Update to use rcirc-default-* variables above.
4843 (rcirc-connect): Do not add window-configuration-hook-here.
4844 (rcirc-server): New internal variable.
4845 (rcirc-connect): Do not send keepalive pings if
4846 rcirc-keepalive-seconds is nil.
4847 (with-rcirc-server-buffer): New macro.
4848 (rcirc-send-string): Encode with rcirc-encode-coding-system.
4849 (rcirc-server-name): Rename from rcirc-server.
4850 (rcirc-buffer-process): New function.
4851 (rcirc-buffer-nick): New function.
4852 (rcirc-buffer-target): Remove function.
4853 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
4854 New commands.
4855 (rcirc-mode-map): Change binding of C-c C-l to
4856 rcirc-toggle-low-priority.
4857 (rcirc-mode): Initialize coding system based on
4858 rcirc-coding-system-alist. New change-major-mode-hook to part the
4859 channel on a mode change. Make kill-buffer-hook buffer-local.
4860 (rcirc-change-major-mode-hook): New function.
4861 (rcirc-clean-up-buffer): Rename from rcirc-kill-buffer-hook-1.
4862 (rcirc-last-post-time): New variable.
4863 (rcirc-process-message): Store the last time user posted a message
4864 to this target.
4865 (rcirc-multiline-minor-mode): New mode.
4866 (rcirc-multiline-minor-mode-map): New mode map.
4867 (rcirc-edit-multiline): Put multiline-edit buffer in
4868 rcirc-multiline-major-mode along with rcirc-multiline-minor-mode.
4869 (rcirc-print): Ignore any line starting with an ignored nick.
4870 (rcirc-print): Decode using rcirc-decode-coding-system.
4871 (rcirc-track-minor-mode): Update global-mode-string when disabling
4872 this mode.
4873 (minor-mode-alist): Add LowPri indicator.
4874 (rcirc-toggle-low-priority): New function.
4875 (rcirc-last-non-irc-buffer): Prefix arg now no means switch to
4876 next lowpriority buffer with activity.
4877 (rcirc-record-activity): Sort buffers in rcirc-activity by the
4878 last time the user posted a message in to the target.
4879 (rcirc-update-activity-string): New formatting for low priority
4880 buffers.
4881 (rcirc-split-activity): New function.
4882 (rcirc-handler-PART, rcirc-handler-KICK)
4883 (rcirc-handler-PART-or-KICK): Kick responses are printed properly.
4884 (rcirc-nick-away-alist): New variable.
4885 (rcirc-handler-301): New handler. Away messages are printed once
4886 per change.
4887
4888 2006-04-08 Eli Zaretskii <eliz@gnu.org>
4889
4890 * info.el (Info-follow-nearest-node): Doc fix.
4891
4892 * international/mule-cmds.el (set-locale-environment): Make sure
4893 the coding-system preferred by the locale's language has the same
4894 EOL conversion type as the original buffer-file-coding-system.
4895 (locale-language-names): Add a few MS Windows language codes.
4896
4897 2006-04-07 Richard Stallman <rms@gnu.org>
4898
4899 * simple.el (eval-expression): Doc fix.
4900
4901 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp)
4902 (eval-defun): Doc fixes.
4903
4904 2006-04-07 Reiner Steib <Reiner.Steib@gmx.de>
4905
4906 * pgg-gpg.el: Revert to revision 1.8 to allow the use of gpg-agent.
4907
4908 2006-04-07 Nick Roberts <nickrob@snap.net.nz>
4909
4910 * progmodes/gdb-ui.el (gdb-init-2): Set current filename using
4911 GDB list command without argument for greater generality.
4912
4913 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
4914
4915 * subr.el (string-or-null-p): New function.
4916
4917 * textmodes/paragraphs.el (sentence-end): Use string-or-null-p.
4918
4919 * textmodes/ispell.el (ispell-local-dictionary): Use string-or-null-p.
4920
4921 * files.el: Update comment about safe-local-variable declarations.
4922
4923 2006-04-06 J.D. Smith <jdsmith@as.arizona.edu>
4924
4925 * progmodes/idlwave.el: Updated to IDLWAVE version 6.0.
4926 See idlwave.org.
4927
4928 * progmodes/idlw-shell.el: Updated to IDLWAVE version 6.0.
4929 See idlwave.org. Includes code to obsolete idlw-rinfo.el.
4930
4931 * progmodes/idlw-help.el: Updated to IDLWAVE version 6.0.
4932 See idlwave.org.
4933
4934 * progmodes/idlw-complete-structtag.el: Updated to IDLWAVE
4935 version 6.0 (minimal changes). See idlwave.org.
4936
4937 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version
4938 6.0 (minimal changes). See idlwave.org.
4939
4940 * progmodes/idlw-rinfo.el: File obsoleted and removed.
4941
4942 2006-04-06 Romain Francoise <romain@orebokech.com>
4943
4944 * pgg-gpg.el: Sync back with Gnus 5.10, reverting changes that add
4945 symmetric encryption features and a new asynchronous interface to
4946 GnuPG. This new version is version 1.4, plus whitespace changes.
4947
4948 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
4949
4950 * files.el: Move some `safe-local-variable' declarations to the
4951 respective files.
4952
4953 * textmodes/ispell.el (ispell-check-comments)
4954 (ispell-local-dictionary): Mark as safe.
4955
4956 * abbrev.el (abbrev-mode): Mark as safe.
4957
4958 * add-log.el (change-log-default-name): Mark as safe.
4959
4960 * textmodes/reftex-vars.el (reftex-vref-is-default)
4961 (reftex-fref-is-default, reftex-level-indent)
4962 (reftex-guess-label-type): Mark as safe.
4963
4964 * textmodes/fill.el (colon-double-space): Mark as safe.
4965
4966 * textmodes/paragraphs.el (paragraph-start, paragraph-separate)
4967 (sentence-end-double-space, sentence-end-without-period)
4968 (sentence-end-without-space, sentence-end, sentence-end-base)
4969 (page-delimiter, paragraph-ignore-fill-prefix): Mark as safe.
4970
4971 2006-04-06 Kim F. Storm <storm@cua.dk>
4972
4973 * ido.el (ido-mode): Remove ido-ignore-unc-host-regexps from
4974 the :set-after list.
4975 (ido-downcase-unc-hosts): New user option. Default on.
4976 (ido-ignore-unc-host-regexps): Don't reset ido-unc-hosts-cache
4977 when it is set, as regexps are now applied on the fly.
4978 (ido-unc-hosts): Keep all known hosts in ido-unc-hosts-cache.
4979 Make C-a DTRT--filter hosts through ido-ignore-unc-host-regexps
4980 on the fly, but only when ido-process-ignore-lists is set.
4981 Do case insensitive filtering if ido-downcase-unc-hosts is set.
4982 Only downcase names if ido-downcase-unc-hosts is set.
4983
4984 2006-04-06 Juanma Barranquero <lekktu@gmail.com>
4985
4986 * ido.el (ido-unc-hosts-cache): Fix typo in docstring.
4987
4988 * woman.el (WoMan-xref-man-page): Fix call to `substring'.
4989
4990 2006-04-05 Kim F. Storm <storm@cua.dk>
4991
4992 * ido.el (ido-mode): Set after ido-unc-hosts and
4993 ido-ignore-unc-host-regexps.
4994 (ido-save-history): Save ido-unc-hosts-cache.
4995 (ido-load-history): Load ido-unc-hosts-cache.
4996 (ido-reread-directory): Refresh unc hosts cache in // dir.
4997
4998 * startup.el (fancy-splash-screens): Set emulation-mode-map-alists
4999 to nil while displaying slash screen.
5000
5001 2006-04-05 Daiki Ueno <ueno@unixuser.org>
5002
5003 * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
5004 Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
5005
5006 2006-04-05 Kenichi Handa <handa@m17n.org>
5007
5008 * international/characters.el: Setup cases of Latin, Greek, and
5009 Cyrillic characters in CJK charsets.
5010
5011 2006-03-29 Daiki Ueno <ueno@unixuser.org>
5012
5013 * pgg-gpg.el (pgg-gpg-start-process): Don't bind
5014 default-enable-multibyte-characters. This reverts the change from
5015 revision 6.17 which is no longer necessary because the passphrase
5016 is sent separately now. GnuPG messages are unreadable under
5017 multibyte locales with default-enable-multibyte-characters set to nil.
5018
5019 2006-04-04 Andreas Schwab <schwab@suse.de>
5020
5021 * files.el: Mark `left-margin', `byte-compile-dynamic-docstrings'
5022 and `byte-compile-warnings' as `safe-local-variable'.
5023
5024 2006-04-04 Dan Nicolaescu <dann@ics.uci.edu>
5025
5026 * man.el (Man-mode-map): Restore the \r binding.
5027 (Man-abstract-xref-man-page): If Man-target-string is a function,
5028 call it.
5029 (Man-highlight-references): Use Man-default-man-entry to get the
5030 target. Deal with xrefs too.
5031 (Man-highlight-references0): Don't call the target function.
5032
5033 * woman.el (WoMan-xref-man-page): Strip the section number, woman
5034 cannot deal with it.
5035
5036 2006-04-04 Daiki Ueno <ueno@unixuser.org>
5037
5038 * pgg-gpg.el: Clean up process buffers every time gpg processes
5039 complete.
5040
5041 2006-04-04 Kenichi Handa <handa@m17n.org>
5042
5043 * sort.el (sort-build-lists): Don't bind inhibit-field-text-motion
5044 here.
5045 (sort-lines, sort-numeric-fields, sort-fields, sort-columns):
5046 Temporarily bind inhibit-field-text-motion to t.
5047
5048 2006-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
5049
5050 * startup.el (normal-splash-screen): Only set mode-line-format in the
5051 splash buffer, so as not to interfere when debugging the code.
5052 Ignore errors when switching buffer.
5053
5054 2006-04-03 Romain Francoise <romain@orebokech.com>
5055
5056 * dired.el (dired-dnd-protocol-alist): Fix typo.
5057
5058 2006-04-03 Reiner Steib <Reiner.Steib@gmx.de>
5059
5060 * savehist.el (savehist): Add :version.
5061 (savehist-ignored-variables): New variable.
5062 (savehist-minibuffer-hook): Don't save variables listed in
5063 `savehist-ignored-variables'.
5064
5065 * dired.el (dired-dnd-protocol-alist): Mention that change does
5066 only apply to new buffers in doc string.
5067
5068 2006-04-03 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
5069
5070 * recentf.el (recentf-open-files-item): Include newline in button
5071 field, so opening a file will work, when the point is at the end
5072 of the file name. Allow, for example, to [i]search a file by
5073 extension and just push RET to open it.
5074
5075 2006-04-03 Daiki Ueno <ueno@unixuser.org>
5076
5077 * pgg-gpg.el (pgg-gpg-process-filter)
5078 (pgg-gpg-wait-for-completion): Check if buffer is alive.
5079
5080 * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
5081 lines, temporary fix.
5082
5083 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
5084
5085 * ibuf-macs.el (define-ibuffer-column): Document the new parameter.
5086
5087 2006-04-02 Richard Stallman <rms@gnu.org>
5088
5089 * progmodes/compile.el (compilation-message-face): Make it defcustom.
5090
5091 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
5092
5093 * ibuf-macs.el (define-ibuffer-column): Add a new key:
5094 header-mouse-map.
5095
5096 * ibuffer.el (ibuffer-name-header-map, ibuffer-size-header-map)
5097 (ibuffer-mode-header-map): New keymaps.
5098 (ibuffer-update-title-and-summary): Enable mouse face highlighting
5099 and keybindings for column headers.
5100 (name,size,mode) <define-ibuffer-column>: Add a header-mouse-map
5101 property.
5102
5103 2006-04-02 Drew Adams <drew.adams@oracle.com> (tiny change)
5104
5105 * speedbar.el (speedbar-after-create-hook): Doc fix.
5106
5107 2006-04-02 Michael Ernst <mernst@alum.mit.edu>
5108
5109 * shell.el (shell-directory-tracker)
5110 (shell-dynamic-complete-command): Doc fixes.
5111
5112 2006-04-01 Matt Hodges <MPHodges@member.fsf.org>
5113
5114 * pcomplete.el (pcomplete-show-completions): Recognize TAB on text
5115 terminals.
5116
5117 2006-04-01 Kim F. Storm <storm@cua.dk>
5118
5119 * ido.el (ido-unc-hosts-cache): New defvar.
5120 (ido-unc-hosts): If value of defcustom is a function, call it to
5121 get list of UNC hosts. Add function-item choices to specify
5122 ido-unc-hosts-net-view or user function.
5123 (ido-ignore-unc-host-regexps): New defcustom.
5124 (ido-unc-hosts-net-view, ido-unc-hosts): New functions.
5125 (ido-is-unc-root, ido-is-unc-host, ido-file-name-all-completions)
5126 (ido-exhibit): Call ido-unc-hosts to get list of UNC hosts.
5127
5128 2006-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
5129
5130 * pcvs-util.el (cvs-insert-strings): Fix bug with strings longer than
5131 wwidth.
5132
5133 2006-03-31 Juanma Barranquero <lekktu@gmail.com>
5134
5135 * ido.el (ido-cache-unc-host-shares-time, ido-report-no-match)
5136 (ido-max-work-file-list, ido-switch-buffer)
5137 (ido-read-file-name-as-directory-commands):
5138 Fix typos in docstrings.
5139
5140 2006-03-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5141
5142 * term/mac-win.el (mac-system-coding-system): Define and use after
5143 Mac-specific coding systems are ready.
5144
5145 2006-03-27 Romain Francoise <romain@orebokech.com>
5146
5147 * net/rcirc.el (rcirc-connect): Add autoload cookie.
5148
5149 * ldefs-boot.el: Update.
5150
5151 2006-03-27 Daiki Ueno <ueno@unixuser.org>
5152
5153 * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
5154 passphrases when it is not needed.
5155 (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
5156 passphrase stuff from gpg, should only be necessary when you use
5157 gpg with a smartcard.
5158
5159 2006-03-27 Nick Roberts <nickrob@snap.net.nz>
5160
5161 * comint.el (comint-dynamic-list-completions): Allow user to
5162 select *Completions* buffer.
5163
5164 2006-03-27 Carsten Dominik <dominik@science.uva.nl>
5165
5166 * textmodes/org.el (org-get-level-face): Fix bug with level counting.
5167
5168 2006-03-26 Andreas Schwab <schwab@suse.de>
5169
5170 * progmodes/gud.el (gdb): Only complain about multiple debugging
5171 when the gdb process is still running.
5172
5173 2006-03-25 Eli Zaretskii <eliz@gnu.org>
5174
5175 * mail/rmail.el (tool-bar-map): Defvar it.
5176 (rmail-tool-bar-map): Tool-bar buttons for Rmail.
5177 (rmail-perm-variables): Make rmail-tool-bar-map a local variable.
5178
5179 2006-03-25 Sven Joachim <svenjoac@gmx.de> (tiny change)
5180
5181 * help.el (print-help-return-message): Suggest to use
5182 display-buffer instead of switch-to-buffer-other-window to restore
5183 the previous window without selecting it.
5184
5185 2006-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5186
5187 * frame.el (select-frame-by-name): Call x-focus-frame also when
5188 window-system is mac.
5189
5190 * term/mac-win.el: Adjust Courier font specifications in
5191 x-fixed-font-alist.
5192 (mac-select-convert-to-string): Use utf-16be-mac or utf-16le-mac
5193 when directly encoding to UTF-16 in native byte order, no BOM.
5194
5195 2006-03-25 Kim F. Storm <storm@cua.dk>
5196
5197 * emulation/cua-base.el (cua-rectangle-mark-key): New defcustom.
5198 (cua--init-keymaps): Use it instead of fixed C-return.
5199 (cua-mode): Set after it.
5200
5201 * emulation/cua-rect.el (cua--init-rectangles):
5202 Use cua-rectangle-mark-key instead of fixed C-return.
5203
5204 2006-03-25 Nick Roberts <nickrob@snap.net.nz>
5205
5206 * progmodes/gdb-ui.el (gdba): Revert 2006-03-10 change for case of
5207 "run" in .gdbinit.
5208 (gdb-var-create-regexp): Remove "^done" prefix for gdb-mi.el.
5209
5210 2006-03-24 Romain Francoise <romain@orebokech.com>
5211
5212 * files.el (ctl-x-5-map): Really bind C-x 5 C-o to
5213 `display-buffer-other-frame'.
5214
5215 2006-03-24 Kim F. Storm <storm@cua.dk>
5216
5217 * apropos.el (apropos-synonyms): Add selection => region.
5218
5219 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
5220
5221 * progmodes/gdb-ui.el (gdb-var-create-regexp)
5222 (gdb-var-list-children-regexp, gdb-var-update-regexp)
5223 (gdb-var-list-children-regexp-1, gdb-var-update-regexp-1)
5224 (gdb-data-list-register-values-regexp)
5225 (gdb-stack-list-locals-regexp, gdb-stack-list-locals-handler):
5226 Future proof against new fields being added to MI output.
5227 (gdb-send): Don't treat backslashes for program input as
5228 continuations.
5229 (gdb-assembler-handler): Don't use window-start for this handler.
5230 (gdb-frame-handler): Don't change to hollow arrow if overlay
5231 arrow doesn't move to new frame.
5232
5233 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
5234
5235 * progmodes/gdb-ui.el (gdb-continuation): Declare earlier to
5236 prevent compiler warnings.
5237 (gdb-stopped): Check for gud-last-last-frame (case: signal).
5238 (breakpoint-disabled): Make lighter for contrast with overlay arrow.
5239 (gdb-assembler-custom): Use hollow-right-triangle for assembler
5240 buffer too.
5241
5242 2006-03-23 Reiner Steib <reinersteib+gmane@imap.cc>
5243
5244 * pgg-gpg.el (pgg-gpg-update-agent): Check for
5245 make-network-process, so we can use the same code in Gnus v5-10
5246 too and have this file fully synchronized with that release.
5247
5248 2006-03-23 Romain Francoise <romain@orebokech.com>
5249
5250 * ibuf-ext.el (ibuffer-read-filter-group-name):
5251 Use `ibuffer-generate-filter-groups' to make completion list match
5252 the filter groups that are really displayed in the Ibuffer buffer.
5253 (ibuffer-generate-filter-groups): Add new args noempty, nodefault.
5254
5255 2006-03-23 Kenichi Handa <handa@m17n.org>
5256
5257 * international/mule-cmds.el (sort-coding-systems): Describe that
5258 the argument is modified in docstring.
5259
5260 2006-03-22 Sascha Wilde <wilde@sha-bang.de>
5261
5262 * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
5263 (pgg-gpg-update-agent): New function.
5264 (pgg-gpg-use-agent-p): New function.
5265 (pgg-gpg-process-region, pgg-gpg-encrypt-region)
5266 (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
5267 (pgg-gpg-sign-region): Use it.
5268
5269 2006-03-21 Chong Yidong <cyd@stupidchicken.com>
5270
5271 * cus-edit.el (custom-face-set): Call custom-push-theme before
5272 face-spec set so that `changed' theme is correctly saved.
5273 (custom-face-reset-standard): Reset to recalculated face rather
5274 than defface spec.
5275
5276 * custom.el (custom-push-theme): Only save `changed' theme if the
5277 current face does not match the defface specs.
5278
5279 2006-03-21 Simon Josefsson <jas@extundo.com>
5280
5281 * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
5282 <wilde@sha-bang.de>.
5283 (pgg-gpg-use-agent): New variable.
5284 (pgg-gpg-process-region): Use it.
5285 (pgg-gpg-encrypt-region): Likewise.
5286 (pgg-gpg-encrypt-symmetric-region): Likewise.
5287 (pgg-gpg-decrypt-region): Likewise.
5288 (pgg-gpg-sign-region): Likewise.
5289 (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
5290
5291 2006-03-21 Carsten Dominik <dominik@science.uva.nl>
5292
5293 * textmodes/org.el (org-open-at-point): Fix bug in wiki-style
5294 bracket links.
5295
5296 2006-03-21 Kim F. Storm <storm@cua.dk>
5297
5298 * progmodes/gdb-ui.el (gdb-reset): Set buffer local value of
5299 fringe-indicator-alist instead of modifying global value.
5300 (gdb-frame-handler): Likewise.
5301
5302 2006-03-21 Nick Roberts <nickrob@snap.net.nz>
5303
5304 * diff-mode.el (diff-function): Make it inherit from diff-header
5305 instead of diff-context.
5306
5307 * progmodes/gdb-ui.el (hollow-right-triangle): Define as fringe
5308 bitmap.
5309 (gdb-info-stack-custom): Rename from gdb-info-frames-custom and
5310 change names in macro above for consistency.
5311 (gdb-frame-handler): Use hollow-right-triangle for all selected
5312 frames which except the innermost (where execution has stopped).
5313 (gdb-reset): Reset buffer-local values of overlay-arrow.
5314
5315 2006-03-20 Richard Stallman <rms@gnu.org>
5316
5317 * simple.el (set-mark-command): Doc fix.
5318
5319 * files.el (display-buffer-other-frame): New command.
5320 (ctl-x-4-map): Bind C-x 5 C-o to it.
5321
5322 2006-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
5323
5324 * jit-lock.el (jit-lock-function): Check for the actual defer-timer
5325 rather than just defer-time, in case defer-time has been changed but
5326 the timer isn't running yet.
5327 (jit-lock-deferred-fontify): Correspondingly let-bind defer-timer.
5328
5329 2006-03-19 Luc Teirlinck <teirllm@auburn.edu>
5330
5331 * help-mode.el (help-follow-symbol): New function.
5332 Essentially identical to the old `help-follow', but do not let
5333 `push-button' do the work when on an xref.
5334 (help-mode-map): Bind `help-follow-symbol' to "C-c C-c".
5335
5336 2006-03-19 Richard Stallman <rms@gnu.org>
5337
5338 * help-mode.el (help-xref-symbol-regexp): Make no xref for symbol
5339 preceded by the word `program'.
5340 (help-follow-mouse, help-follow): Throw error if not on xref.
5341 Delete no longer used args.
5342
5343 2006-03-20 Nick Roberts <nickrob@snap.net.nz>
5344
5345 * progmodes/gdb-ui.el (gdb-stopped): Even when there is no source
5346 annotation ensure gud-overlay-arrow-position is redisplayed.
5347
5348 2006-03-19 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5349
5350 * textmodes/bibtex.el (bibtex-include-OPTkey)
5351 (bibtex-entry-field-alist, bibtex-generate-url-list): Mark as risky.
5352 (bibtex-autokey-name-case-convert)
5353 (bibtex-autokey-titleword-case-convert): Make these the aliases
5354 for the following two variables.
5355 (bibtex-autokey-name-case-convert-function)
5356 (bibtex-autokey-titleword-case-convert-function): Make these the
5357 real names.
5358 (bibtex-font-lock-keywords): Make bibtex-font-lock-url and
5359 bibtex-font-lock-crossref sublists.
5360 (bibtex-mode): Revert 2005-12-30 change (which made
5361 completion-ignore-case buffer-local).
5362 (bibtex-url): Simplify.
5363
5364 2006-03-19 Kim F. Storm <storm@cua.dk>
5365
5366 * emulation/cua-rect.el (cua--highlight-rectangle): Set overlay
5367 cursor property value to 2 (to align with C level change).
5368
5369 2006-03-19 Bill Wohler <wohler@newt.com>
5370
5371 * image.el (image-load-path-for-library): Shorten first line in
5372 docstring.
5373
5374 2006-03-18 Richard Stallman <rms@gnu.org>
5375
5376 * mail/rmail.el (rmail-reply-regexp): Undo previous change.
5377
5378 2006-03-18 Ben North <ben@redfrontdoor.org> (tiny change)
5379
5380 * isearch.el (isearch-other-meta-char): Handle user bindings for
5381 shifted control characters.
5382
5383 2006-03-18 Agustin Martin <agustin.martin@hispalinux.es>
5384
5385 * textmodes/ispell.el (ispell-skip-region-alist): Add "_+" to the
5386 part that matches email addresses, file names, etc.
5387
5388 2006-03-18 Eli Zaretskii <eliz@gnu.org>
5389
5390 * term/w32-win.el (mouse-set-font):
5391 Mention w32-list-proportional-fonts in the doc string.
5392
5393 2006-03-18 Kim F. Storm <storm@cua.dk>
5394
5395 * ido.el (ido-cache-ftp-work-directory-time): Doc fix.
5396 (ido-unc-hosts): New user option to explicitly define list of know
5397 UNC-style hosts for completion.
5398 (ido-cache-unc-host-shares-time): New user option.
5399 (ido-is-unc-root, ido-is-unc-host, ido-cache-unc-valid):
5400 New helper functions for UNC file-name support.
5401 (ido-may-cache-directory): Check for UNC host. Simplify.
5402 (ido-wash-history): Clean out old UNC hosts.
5403 (ido-nonreadable-directory-p): UNC hosts are always readable.
5404 (ido-directory-too-big-p): UNC hosts are never too big.
5405 (ido-set-current-directory): Handle UNC root path.
5406 (ido-file-name-all-completions): Complete UNC host names from
5407 ido-unc-hosts list. Cache UNC host shares.
5408 (ido-make-file-list-1): Don't filter UNC root.
5409 (ido-exhibit): Check for // in root directory, and switch to UNC
5410 mode by setting ido-current-directory to //.
5411
5412 2006-03-17 Luc Teirlinck <teirllm@auburn.edu>
5413
5414 * cus-edit.el (customize-changed-options): Mention explicit
5415 version number as default in prompt.
5416
5417 2006-03-17 Bill Wohler <wohler@newt.com>
5418
5419 * image.el (image-load-path-for-library): Minor docstring fix.
5420
5421 2006-03-17 Carsten Dominik <dominik@science.uva.nl>
5422
5423 * textmodes/org.el (org-read-date): Include subgroup 5 into
5424 replacement text.
5425 (org-popup-calendar-for-date-prompt): Fix customization type.
5426
5427 2006-03-17 Nick Roberts <nickrob@snap.net.nz>
5428
5429 * progmodes/gdb-ui.el (gud-watch): Provide completion.
5430 (gdb-continuation): New variable.
5431 (gdb-send): Deal with continuation lines.
5432
5433 * progmodes/gud.el (gud-gdb-complete-command)
5434 (gud-gdb-run-command-fetch-lines): Adapt for use with watch
5435 expressions.
5436 (gud-tooltip-mode): Use buffer-local value.
5437
5438 2006-03-16 Kim F. Storm <storm@cua.dk>
5439
5440 * ido.el (ido-edit-input): Use selected match, if any.
5441
5442 2006-03-16 Bill Wohler <wohler@newt.com>
5443
5444 * image.el (image-load-path-for-library): Prefer user's images in
5445 image-load-path.
5446
5447 2006-03-16 Martin Rudalics <rudalics@gmx.at>
5448
5449 * mouse.el (mouse-drag-vertical-line): Use window-inside-edges
5450 when checking for attempt to drag leftmost or rightmost scrollbar.
5451
5452 2006-03-16 Nick Roberts <nickrob@snap.net.nz>
5453
5454 * progmodes/gdb-ui.el (gdb-inferior-status): New variable.
5455 (gdb-force-mode-line-update): New function.
5456 (gdb-resync, gdb-starting, gdb-signal, gdb-exited, gdb-stopped)
5457 (gdb-exited): Use them.
5458 (gdb-signal): New function.
5459 (gdb-annotation-rules): Provide a rule for it.
5460
5461 2006-03-16 Kenichi Handa <handa@m17n.org>
5462
5463 * international/mule.el (auto-coding-regexp-alist): Add entries
5464 for Unicode BOM.
5465
5466 * sort.el (sort-build-lists): Temporarily bind
5467 inhibit-field-text-motion to t.
5468
5469 2006-03-15 Luc Teirlinck <teirllm@auburn.edu>
5470
5471 * locate.el (locate-command, locate-make-command-line)
5472 (locate-fcodes-file, locate-update-command)
5473 (locate-prompt-for-command, locate, locate-with-filter)
5474 (locate-get-file-positions): Doc fixes.
5475 (locate-buffer-name, locate-header-face): Remove leading `*' in
5476 defcustom.
5477 (locate-filter-output): Use `keep-lines' instead of its alias
5478 `delete-non-matching-lines'.
5479 (locate-get-filename, locate-get-dirname): Add introductory comment.
5480 (locate-find-directory-other-window): Give appropriate error
5481 message if used outside main listing.
5482
5483 2006-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
5484
5485 * font-lock.el (font-lock-lines-before): Delete variable, subsumed by
5486 the new extend-region feature.
5487 (font-lock-after-change-function): Update correspondingly.
5488 * jit-lock.el (jit-lock-after-change): Update correspondingly.
5489 * progmodes/grep.el (font-lock-lines-before): Don't disable.
5490
5491 2006-03-15 Bill Wohler <wohler@newt.com>
5492
5493 * image.el (image-load-path-for-library): Fix example by not
5494 recommending that one binds image-load-path. Just defvar it to
5495 placate compiler and only use it if previously defined.
5496
5497 2006-03-15 Carsten Dominik <dominik@science.uva.nl>
5498
5499 * textmodes/org.el (org-insert-centered): Use `string-width' to
5500 make underlining work for wide characters.
5501 (org-goto-map, org-agenda-mode-map, org-mode-map): Explicitly bind
5502 TAB to `org-cycle', to make sure that no binding in
5503 `outline-mode-map' can supercede it.
5504
5505 2006-03-14 Ken Manheimer <ken.manheimer@gmail.com>
5506
5507 * allout.el: Increment version to 2.2.1 in file commentary.
5508
5509 (allout-version): Increment to 2.2.1.
5510
5511 (allout-default-layout): New customization variable, used when the
5512 file lacks a specific allout-layout. Uses allout-layout-type for
5513 recursively nested definition.
5514
5515 (allout-layout-type): Widget defining allout layouts, necessary for
5516 self-recursive definition.
5517
5518 (allout-mode): Incorporate allout-default-layout as fallback for
5519 allout-layout.
5520
5521 (allout-layout): Mark as 'safe-local-variable', and refer mention
5522 fallback to `allout-default-layout' in absence of a specified value.
5523 (allout-passphrase-verifier-string)
5524 (allout-passphrase-hint-string): Mark as 'safe-local-variable'.
5525
5526 (allout-file-passphrase-verifier-string): Obsolete variable, removed.
5527
5528 (allout-get-encryption-passphrase-verifier): Use correct name of
5529 passphrase verifier in docstring.
5530
5531 2006-03-15 Nick Roberts <nickrob@snap.net.nz>
5532
5533 * progmodes/gdb-ui.el (gdb-var-list): Change order of first two
5534 elements.
5535 (gdb-find-watch-expression): Make it work for arrays too.
5536 Follow change to gdb-var-list.
5537 (gud-watch): Allow the user to enter variable name with a prexix
5538 arg. Create keybindings.
5539 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
5540 (gdb-var-list-children-handler, gdb-var-update-handler)
5541 (gdb-var-delete, gdb-edit-value, gdb-speedbar-expand-node)
5542 (gdb-var-list-children-handler-1, gdb-var-update-handler-1):
5543 Follow change to gdb-var-list.
5544 (gdb-starting): Don't show the overlay arrows when program is running.
5545
5546 * progmodes/gud.el (gud-speedbar-buttons): Follow change to
5547 gdb-var-list.
5548
5549 2006-03-14 Bill Wohler <wohler@newt.com>
5550
5551 * image.el (image-load-path-for-library): Pass value of path
5552 rather than symbol. Always return list of directories.
5553 Guarantee that image directory comes first.
5554
5555 2006-03-14 Alan Mackenzie <acm@muc.de>
5556
5557 * font-core.el (font-lock-extend-region\(-function\)?.):
5558 New function/variable.
5559
5560 * font-lock.el (font-lock-after-change-function):
5561 Call font-lock-extend-region. Obey font-lock-lines-before.
5562 (font-lock-default-fontify-region): Remove reference to
5563 font-lock-lines-before.
5564
5565 * jit-lock.el (jit-lock-after-change):
5566 Call font-lock-extend-region. Obey font-lock-lines-before.
5567
5568 2006-03-14 David Ponce <david@dponce.com>
5569
5570 * tree-widget.el (tree-widget-themes-load-path)
5571 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
5572
5573 2006-03-13 Ryan Yeske <rcyeske@gmail.com>
5574
5575 * net/rcirc.el (rcirc) <defgroup>: Add link to manual.
5576 (rcirc-print): Mark the start of text at the end of the prompt.
5577 (rcirc-track-minor-mode): Add autoload cookie.
5578 (rcirc-update-activity-string): Add space to front of mode-line
5579 indicator.
5580
5581 2006-03-13 Miles Bader <miles@gnu.org>
5582
5583 * net/rcirc.el (rcirc-nick-abbrevs): Remove variable.
5584 (rcirc-abbrev-nick): Remove function.
5585 (rcirc-format-response-string): Don't call `rcirc-abbrev-nick'.
5586
5587 2006-03-13 David Ponce <david@dponce.com>
5588
5589 * tree-widget.el: Handle themes across all occurrences of the main
5590 themes sub-directory found in tree-widget-themes-load-path.
5591 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
5592 (tree-widget--locate-sub-directory): Return all occurrences.
5593 (tree-widget-themes-path): New function.
5594 Replace tree-widget-themes-directory, and return a list of directories.
5595 (tree-widget-set-parent-theme)
5596 (tree-widget-lookup-image): Use it.
5597
5598 2006-03-13 Carsten Dominik <dominik@science.uva.nl>
5599
5600 * textmodes/org.el (org-link-search): Avoid self-matching of
5601 links, allow target text to be distributed over several lines.
5602 (org-search-not-link): New function.
5603 (org-set-regexps-and-options, org-get-current-options):
5604 New startup options.
5605 (org-export-as-html): Take odd-level setting from local variable.
5606 (org-fontify-emphasized-text): New option.
5607 (org-set-font-lock-defaults): Include emphasized text.
5608 (org-follow-mhe-link): Allow folder-only links, fix folder name.
5609 (org-font-lock): Customize group renamed from `org-faces'.
5610
5611 2006-03-13 John Paul Wallington <jpw@pobox.com>
5612
5613 * ibuf-ext.el (ibuffer-never-show-predicates): Add `require'
5614 keyword; require `ibuf-ext' feature. Thanks to Zhang Wei.
5615
5616 2006-03-12 Luc Teirlinck <teirllm@auburn.edu>
5617
5618 * cus-start.el (all): Delete :version keyword for members of the
5619 fringe group, since the entire group is new in 22.1.
5620
5621 2006-03-13 Nick Roberts <nickrob@snap.net.nz>
5622
5623 * progmodes/gdb-ui.el (gdb-stack-list-locals-handler): Add local
5624 map if value is hexadecimal (an address).
5625 (gud-watch): Only search roots for existing watch expressions.
5626 (gdb-speedbar-refresh): Bind speedbar-shown-directories to nil to
5627 prevent caching problems with speedbar-update-directory-contents.
5628
5629 2006-03-12 Juri Linkov <juri@jurta.org>
5630
5631 * battery.el (battery-linux-proc-acpi): Check `capacity' for non-nil
5632 before comparing with `low' and `warn'.
5633
5634 * info.el (Info-dir-remove-duplicates): Move point to the
5635 beginning of the current line after deleting the entries from
5636 redundant heading. Use marker for `limit' and compare it with
5637 point before calling `re-search-forward'.
5638
5639 2006-03-11 Luc Teirlinck <teirllm@auburn.edu>
5640
5641 * simple.el (yank): Fix typo in docstring.
5642
5643 2006-03-11 Ryan Yeske <rcyeske@gmail.com>
5644
5645 * mail/rmailsum.el (rmail-summary-next-msg): Skip deleted
5646 messages, where "D" is the 6th character.
5647
5648 2006-03-11 Eli Zaretskii <eliz@gnu.org>
5649
5650 * simple.el (yank): Fix last change.
5651
5652 2006-03-11 David Ponce <david@dponce.com>
5653
5654 * ispell.el (ispell-find-aspell-dictionaries): Add aliases before
5655 merging elements from the standard ispell-dictionary-alist.
5656 (ispell-aspell-add-aliases): Add aliases to the passed dictionary
5657 alist, and return the new alist.
5658
5659 2006-03-11 Richard Stallman <rms@gnu.org>
5660
5661 * mail/rmail.el (rmail-ignored-headers): Discard DomainKey-Signature.
5662
5663 * eshell/eshell.el (eshell-prefer-to-shell): Variable deleted;
5664 the way it is implemented is too unclean.
5665
5666 * simple.el (kill-region, yank): Doc fix.
5667
5668 * battery.el (battery-echo-area-format): Doc fix.
5669 (battery-mode-line-format): Likewise.
5670 (battery-linux-proc-apm, battery-linux-proc-acpi): Likewise.
5671 (battery-linux-proc-acpi): Ignore batteries that say "charged".
5672
5673 2006-03-11 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
5674
5675 * progmodes/octave-mod.el (octave-indent-for-comment):
5676 Behave according to do string.
5677
5678 2006-03-11 Agustin Martin <agustin.martin@hispalinux.es>
5679
5680 * textmodes/ispell.el (ispell-menu-map-needed) [ispell-message]:
5681 Be visible only if major mode is Mail Mode.
5682
5683 * textmodes/flyspell.el (flyspell-external-point-words)
5684 (flyspell-process-localwords): Fix last changes.
5685
5686 2006-03-11 Eli Zaretskii <eliz@gnu.org>
5687
5688 * calendar/holidays.el (list-holidays): Doc fix.
5689
5690 * international/mule.el (auto-coding-alist): Add .odt
5691 (OpenOffice's open document) files.
5692
5693 * files.el (auto-mode-alist): Add .odt (OpenOffice's open
5694 document) files. Mention in the doc string the need to sync with
5695 auto-coding-alist.
5696
5697 2006-03-10 Chong Yidong <cyd@stupidchicken.com>
5698
5699 * files.el (hack-local-variables-confirm): Don't prompt for ! if
5700 enable-local-variables is set to always query, or there is no
5701 savable variable.
5702
5703 2006-03-10 Bill Wohler <wohler@newt.com>
5704
5705 * image.el (image-load-path-for-library): Merge at least three
5706 functions from Gnus and MH-E into this one function that can now
5707 be shared.
5708
5709 2006-03-11 Nick Roberts <nickrob@snap.net.nz>
5710
5711 * progmodes/gdb-ui.el (gdb-remove-text-properties): Rename from
5712 gdb-remove-mouse-face and remove help-echo too.
5713 (gdb-enqueue-input): Correct conditional clause.
5714
5715 2006-03-10 Glenn Morris <rgm@gnu.org>
5716
5717 * calendar/calendar.el (calendar-holidays): Doc fix.
5718 * calendar/holidays.el (list-holidays): Doc fix.
5719
5720 2006-03-10 Nick Roberts <nickrob@snap.net.nz>
5721
5722 * progmodes/gdb-ui.el (gdba): Don't call gdb-init-1 explicitly as
5723 it gets called in gdb-prompt anyway.
5724 (gdb-use-separate-io-buffer): Only restore window arrangement for
5725 gdb-many-windows.
5726 (gdb-enqueue-input): Make it harder to send GDB input when program
5727 is running.
5728 (gdb-buffer-list): New variable.
5729 (gdb-remove-mouse-face): New function.
5730 (gdb-starting): Use it when GDB input won't get sent.
5731
5732 2006-03-08 Juanma Barranquero <lekktu@gmail.com>
5733
5734 * help.el (view-lossage): Remove trailing whitespace before
5735 inserting "\n".
5736
5737 2006-03-07 Chong Yidong <cyd@stupidchicken.com>
5738
5739 * files.el (hack-local-variables-confirm):
5740 Set coding-system-for-read to nil before writing to .emacs.
5741
5742 * arc-mode.el (archive-extract): Check if an existing buffer name
5743 comes from a different archive.
5744
5745 * help.el (describe-key-briefly): If KEY is a down event, read and
5746 discard the up event.
5747
5748 2006-03-07 Nick Roberts <nickrob@snap.net.nz>
5749
5750 * progmodes/gud.el (gud-speedbar-buttons): Allow pointers to
5751 be edited and use font-lock-warning-face for any changes.
5752
5753 * progmodes/gdb-ui.el (gdb-edit-value-handler): New function.
5754 (gdb-edit-value): Use it to report any errors.
5755
5756 2006-03-07 Juanma Barranquero <lekktu@gmail.com>
5757
5758 * help.el (describe-key): Remove leftover test code.
5759
5760 2006-03-07 Carsten Dominik <dominik@science.uva.nl>
5761
5762 * textmodes/org.el: Move defvars out of eval-when-compile.
5763 Use buffer-file-name variable.
5764 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused
5765 arg `file'.
5766 (org-level-faces): Remove startup dependency.
5767 (org-cycle, org-map-tree, org-scan-tags)
5768 (org-remember-handler): Don't call `outline-level' directly.
5769 (org-mhe-search-all-folders): New option.
5770 (org-mhe-get-message-folder-from-index)
5771 (org-mhe-get-message-folder): Fix indexing search.
5772 (org-format-agenda-item): Handle nil TAGS argument.
5773 (org-cleaned-string-for-export, org-activate-target-links)
5774 (org-make-target-link-regexp): Deal with empty radio target list.
5775 (org-tag): New face.
5776 (org-get-level-face): New function.
5777 (org-set-font-lock-defaults): Simplify setup for headlines.
5778 (org-complete): Pass common substring to `display-completion-list'.
5779
5780 2006-03-06 David Ponce <david@dponce.com>
5781
5782 * tree-widget.el: Update Commentary header.
5783 (tree-widget-theme-name): Ignore parent themes.
5784 (tree-widget-set-parent-theme): New function.
5785 (tree-widget-set-theme): Use it.
5786 (tree-widget-set-image-properties): Move definition. Does nothing
5787 if image properties have already been set.
5788 (tree-widget-image-properties): Move definition. Receive an image
5789 name. Set the :pointer property.
5790 (tree-widget-lookup-image): Doc fix. Search in parent themes.
5791 Don't set the :pointer image property.
5792 (tree-widget-convert-widget): New function. Handle :dynargs
5793 compatibility here.
5794 (tree-widget): Use it to :convert-widget. Add the :expander-p
5795 predicate to control when the :expander function is entered.
5796 Thanks to Ken Manheimer <ken.manheimer@gmail.com> for the idea.
5797 (tree-widget-value-create): Handle :expander-p. widget-apply
5798 :expander.
5799 (tree-widget-expander-p): New function. Default value of the
5800 :expander-p property.
5801
5802 2006-03-06 Chong Yidong <cyd@stupidchicken.com>
5803
5804 * help.el (describe-key): Properly handle the return value of
5805 read-key-sequence when grabbing an up-event. Cleanup mouse-1
5806 remaps. Handle string and vector `follow-link' values.
5807
5808 2006-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
5809
5810 * complete.el (PC-expand-many-files): Try be more careful when parsing
5811 the shell's output.
5812
5813 2006-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
5814
5815 * outline.el (hide-sublevels): Provide better interactive default.
5816
5817 2006-03-06 Kenichi Handa <handa@m17n.org>
5818
5819 * international/fontset.el (create-fontset-from-fontset-spec):
5820 Fix regexp for paring FONTSET-SPEC (allow spaces after `:').
5821
5822 2006-03-05 Luc Teirlinck <teirllm@auburn.edu>
5823
5824 * progmodes/gud.el (gud-jdb-marker-filter): Quote `[' with two
5825 backslashes instead of one in regexp.
5826 (gud-tooltip-dereference): Add missing optional argument.
5827
5828 2006-03-04 John Paul Wallington <jpw@pobox.com>
5829
5830 * wdired.el (toplevel): Require `cl' at compile-time.
5831
5832 2006-03-04 Andreas Schwab <schwab@suse.de>
5833
5834 * server.el (server-process-filter): Handle errors during
5835 evaluation of the argument.
5836
5837 2006-03-03 John Paul Wallington <jpw@pobox.com>
5838
5839 * t-mouse.el (t-mouse-drag-start, t-mouse-swap-alt-keys): Doc fix;
5840 escape parentheses at beginning of line.
5841 (t-mouse-tty, t-mouse-make-event): Doc fix; use imperative.
5842 (t-mouse-mode): Remove period from end of error message.
5843
5844 2006-03-03 Agustin Martin <agustin.martin@hispalinux.es>
5845
5846 * textmodes/flyspell.el (flyspell-process-localwords):
5847 Be case-sensitive.
5848
5849 2006-03-03 Martin Rudalics <rudalics@gmx.at>
5850
5851 * cus-edit.el (custom-quote): Remove function, since it has been
5852 moved to custom.el.
5853
5854 * font-lock.el (lisp-font-lock-keywords-2)
5855 * emacs-lisp/rx.el (rx-check-any, rx-check-not)
5856 * generic-x.el (reg-generic-mode): Quote "]"s in regexps when
5857 they have no special meaning.
5858
5859 * midnight.el (clean-buffer-list): Handle case where base-buffer of
5860 indirect buffer gets killed before indirect buffer. Use dolist.
5861
5862 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
5863
5864 * emacs-lisp/edebug.el (edebug-display): Use `edebug-sit-for-seconds'
5865 value instead of a literal constant (1) on more pauses.
5866
5867 2006-03-03 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
5868
5869 * textmodes/flyspell.el (flyspell-external-point-words):
5870 Be case-sensitive.
5871
5872 2006-03-03 Ryan Yeske <rcyeske@gmail.com>
5873
5874 * net/rcirc.el (rcirc-url-regexp): Match entire url when it starts
5875 with "www".
5876
5877 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
5878
5879 * allout.el: Restablish intermediate missing comment header to
5880 preserve outline structure.
5881 (allout-beginning-of-current-entry): Skip invisible text.
5882 (allout-open-topic): Fix opening a topic at end-of-buffer.
5883 (allout-minor-mode): Move nearer to allout-mode function.
5884
5885 2006-03-02 Carsten Dominik <dominik@science.uva.nl>
5886
5887 * textmodes/org.el (org-paste-subtree): Remove (debug) form.
5888
5889 2006-03-02 Nick Roberts <nickrob@snap.net.nz>
5890
5891 * dframe.el (dframe-frame-mode): Don't burp when menu-bar-lines
5892 is nil.
5893
5894 * progmodes/gud.el (gud-speedbar-menu-items):
5895 Use buffer-local-value and add missing :visible keyword.
5896
5897 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Quieten speedbar-refresh.
5898
5899 2006-03-01 Carsten Dominik <dominik@science.uva.nl>
5900
5901 * textmodes/reftex-index.el (reftex-index-map): `follow-mouse'
5902 must be `follow-link'.
5903
5904 * textmodes/reftex-toc.el (reftex-toc-map): Likewise.
5905
5906 * textmodes/org.el (org-export-as-html): Fix bugs in HTML
5907 formatting: No nested anchors.
5908 (org-all-targets): Fix bug with XEmacs compatibility.
5909 (org-read-date): Add (require 'parse-time).
5910 (org-set-tags): Fix bug with extra inserted space.
5911 (org-export-html-style): Define a style class for targets.
5912 (org-agenda-keymap, org-mouse-map): Add a binding for `follow-link'.
5913 (org-hide-leading-stars): New option.
5914 (org-hide): New face.
5915 (org-set-font-lock-defaults): Allow to hide leading stars.
5916 (org-get-legal-level, org-tr-level): New functions.
5917 (org-odd-levels-only): New option.
5918 (org-level-faces, org-paste-subtree, org-convert-to-odd-levels)
5919 (org-demote, org-promote): Deal with double-star levels.
5920 (org-convert-to-odd-levels): New command.
5921
5922 2006-03-01 Nick Roberts <nickrob@snap.net.nz>
5923
5924 * speedbar.el (speedbar-update-localized-contents): Try to
5925 preserve window-start.
5926 (speedbar-update-directory-contents): Try to preserve window-start
5927 and window-point.
5928 (speedbar-update-special-contents): Don't move back to start of window.
5929
5930 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Rename from
5931 gdb-speedbar-timer-fn. Use speedbar-refresh instead of
5932 speedbar-timer-fn.
5933 (gdb-var-update-handler, gdb-var-update-handler-1): Use it.
5934 (gdb-speedbar-expand-node): Use speedbar-delete-subblock
5935 instead of gdb-speedbar-timer-fn.
5936
5937 2006-02-28 Jay Belanger <belanger@truman.edu>
5938
5939 * calc/calccomp.el (math-compose-tex-matrix): Add a latex option.
5940 (math-compose-expr): Use latex option when calling
5941 `math-compose-tex-matrix' for latex mode.
5942
5943 2006-02-28 Nick Roberts <nickrob@snap.net.nz>
5944
5945 * speedbar.el: Re-instate comments about developing for speedbar
5946 [this is what info and gdb-ui use even if better methods exist now].
5947
5948 * t-mouse.el: New file.
5949 (t-mouse-tty): Use with-temp-buffer. Add more terminal types.
5950 (t-mouse-lispy-buffer-posn-from-coords): Remove.
5951 (t-mouse-make-event-element): Use posn-at-x-y instead.
5952 (t-mouse-make-event): Deal with Fedora Core 3.
5953 (t-mouse-make-event): Don't sink the `stupid text mode menubar'.
5954 (t-mouse-mouse-position-function): New function. Use it instead
5955 of advising mouse-position.
5956 (t-mouse-mode): New minor mode.
5957 (t-mouse-stop, t-mouse-run): Remove. Use t-mouse-mode instead.
5958
5959 2006-02-27 Glenn Morris <rgm@gnu.org>
5960
5961 * calendar/calendar.el (calendar-holidays): Doc fix.
5962
5963 2006-02-27 Nick Roberts <nickrob@snap.net.nz>
5964
5965 * progmodes/gdb-ui.el (gdb-source-window): New variable.
5966 Re-introduce the concept of a source window.
5967 (gdb-get-buffer-create): Rename from gdb-get-create-buffer for
5968 consistency with get-buffer-create.
5969 (def-gdb-auto-update-handler, gdb-info-locals-handler)
5970 (gdb-data-list-register-values-handler)
5971 (gdb-stack-list-locals-handler): Try to preserve window-start as
5972 well as window-point.
5973 (gdb-display-source-buffer): New function (old concept).
5974 (gdb-goto-breakpoint): Use it.
5975
5976 * progmodes/gud.el (gud-display-line): Use gdb-display-source-buffer
5977 for gdb-ui/gdb-mi (old concept).
5978
5979 2006-02-27 Carsten Dominik <dominik@science.uva.nl>
5980
5981 * textmodes/reftex-index.el (reftex-index-map): Add `follow-mouse'
5982 binding.
5983
5984 * textmodes/reftex-toc.el (reftex-toc-map): Add `follow-mouse' binding.
5985
5986 * textmodes/reftex-sel.el (reftex-select-label-map)
5987 (reftex-select-bib-map): Add `follow-mouse' binding.
5988
5989 2006-02-26 Luc Teirlinck <teirllm@auburn.edu>
5990
5991 * jka-cmpr-hook.el (jka-compr-compression-info-list)
5992 (jka-compr-mode-alist-additions, jka-compr-load-suffixes):
5993 Give :set functions to provide automatic updating.
5994 Update docstring. Give compiler defvars early in the file
5995 and move the defcustoms to a later spot where all called functions
5996 are defined.
5997 (jka-compr-file-name-handler-entry): Doc fix.
5998 (jka-compr-compression-info-list--internal)
5999 (jka-compr-mode-alist-additions--internal)
6000 (jka-compr-load-suffixes--internal): New variables.
6001 (jka-compr-install): Set the three above variables.
6002 Update `load-file-rep-suffixes' instead of `load-suffixes'.
6003 (jka-compr-update, jka-compr-set): New functions.
6004 (auto-compression-mode): Doc fix.
6005
6006 * jka-compr.el (jka-compr-uninstall): Replace `mapcar' with `mapc'.
6007 Update `load-file-rep-suffixes' instead of `load-suffixes'.
6008 Use jka-compr-compression-info-list--internal,
6009 jka-compr-mode-alist-additions--internal and
6010 jka-compr-load-suffixes--internal.
6011
6012 * files.el (load-library):
6013 * loadhist.el (file-loadhist-lookup):
6014 * startup.el (command-line):
6015 * subr.el (locate-library):
6016 * emacs-lisp/autoload.el (update-directory-autoloads):
6017 * emacs-lisp/find-func.el (find-library-suffixes):
6018 Use `get-load-suffixes' instead of `load-suffixes'.
6019
6020 * subr.el (locate-library):
6021 * emacs-lisp/find-func.el (find-library-name):
6022 Use `load-file-rep-suffixes' instead of '("").
6023
6024 2006-02-26 Kim F. Storm <storm@cua.dk>
6025
6026 * ido.el (ido-save-history, ido-load-history): Simplify.
6027 Don't use find-file-noselect to avoid interference from other modes.
6028
6029 2006-02-25 Thien-Thi Nguyen <ttn@gnu.org>
6030
6031 * progmodes/sh-script.el (sh-mode): Fix bug: Arrange
6032 to use the default shell if filename is not available.
6033 Reported by Giorgos Keramidas.
6034
6035 2006-02-25 John Williams <jrw@pobox.com> (tiny change)
6036
6037 * progmodes/etags.el (tags-completion-table): Do completion from
6038 all the tables in the current list, as documented in the manual.
6039
6040 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6041
6042 * CC Mode Update to 5.31.3.
6043
6044 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6045
6046 * progmodes/cc-mode.el (c-postprocess-file-styles):
6047 Bind inhibit-read-only to t, around the call to
6048 c-remove-any-local-eval-or-mode-variables, so that it works on a
6049 RO file.
6050
6051 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6052
6053 * progmodes/cc-awk.el: Correct a typo.
6054
6055 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6056
6057 * progmodes/cc-cmds.el, cc-mode.el: Rename c-hungry-backspace to
6058 c-hungry-delete-backwards, at the request of RMS. Leave the old
6059 name as an alias.
6060
6061 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6062
6063 * progmodes/cc-mode.el: Correct a typo.
6064
6065 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6066
6067 * progmodes/cc-defs.el: Update the version number to 5.31.3.
6068
6069 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6070
6071 * progmodes/cc-cmds.el (c-electric-brace): Fix clean-up
6072 brace-else-brace (error due to mbeg, mend being undefined).
6073
6074 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6075
6076 * progmodes/cc-mode.el: File Local variables: Solve the problem
6077 where both `mode' and c-file-offsets are specified: `mode' will
6078 overwrite c-f-o's settings:
6079 (c-remove-any-local-eval-or-mode-variables): New function.
6080 (c-postprocess-file-styles): Call the above new function, within
6081 c-tentative-buffer-change, to splat `mode' and `eval' before the
6082 second hack-local-variables.
6083
6084 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6085
6086 * progmodes/cc-mode.el:
6087 [Supersedes patch to cc-engine.el 2005-12-16T20:07:49Z!monnier@iro.umontreal.ca]
6088 (c-after-change): Protect the match data with save-match-data.
6089 It was getting corrupted by c-after-change-check-<>-operators.
6090
6091 * cc-defs.el: [Supersedes patch V1.38]:
6092 (top level): Check for a buggy font-lock-compile-keywords ONLY in
6093 XEmacs. GNU Emacs 22 now has a check which would throw an error here.
6094
6095 * progmodes/cc-awk.el (c-awk-after-change): Protect the match data
6096 with save-match-data. It was being corrupted when Font Lock was
6097 not enabled.
6098
6099 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6100
6101 * progmodes/cc-langs.el (c-mode-menu): Add menu items for Electric
6102 Mode and Subword Mode.
6103
6104 * progmodes/cc-engine.el (c-beginning-of-statment-1): Distinguish
6105 real labels ("case 1:" or "foo:") from non-labels ("public:").
6106 (c-forward-objc-directive): Replace c-forward-token-2 with crude
6107 coding; c-f-t-2 doesn't move over a token at EOB.
6108
6109 * progmodes/cc-defs.el (c-version): Update version number to 5.31.2.
6110
6111 * progmodes/cc-cmds.el, cc-mode.el, cc-engine.el
6112 (c-update-modeline): Concatenate the minor mode indicators
6113 directly onto mode-name, removing c-submode-indicators.
6114 Sometimes, c-s-i got separated from the mode name on the mode line.
6115
6116 * progmodes/cc-cmds.el (c-electric-brace, c-electric-semi&comma)
6117 (c-electric-colon): Correct doc-strings: "/ln" -> "/la".
6118
6119 2006-02-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6120
6121 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Improve the
6122 error message when there's an evaluation error to show whether
6123 it's loaded from source or not.
6124 (c-filter-ops): Make it available at runtime too to work when
6125 `c-make-init-lang-vars-fun' needs to evaluate from source.
6126
6127 2006-02-24 Juanma Barranquero <lekktu@gmail.com>
6128
6129 * help.el (help): Revert last part of 2006-02-23 change (deletion
6130 of the `provide' call).
6131
6132 2006-02-23 Juri Linkov <juri@jurta.org>
6133
6134 * compare-w.el (compare-windows-highlight): Add new value
6135 `persistent' and change :type from `boolean' to `choice'.
6136 (compare-windows-overlays1, compare-windows-overlays2):
6137 New internal variables.
6138 (compare-windows-highlight): If compare-windows-highlight is
6139 `persistent', add current overlays to compare-windows-overlays[12]
6140 instead of adding compare-windows-dehighlight to pre-command-hook.
6141 (compare-windows-dehighlight): Delete all overlays from
6142 compare-windows-overlays[12].
6143
6144 * info.el (Info-search): Don't bind search-spaces-regexp to
6145 Info-search-whitespace-regexp in non-regexp isearch mode.
6146
6147 2006-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
6148
6149 * help.el (describe-mode): Pass `mode-name' to format-mode-line.
6150
6151 2006-02-23 Juanma Barranquero <lekktu@gmail.com>
6152
6153 * textmodes/org.el (org-xemacs-p)
6154 (org-export-html-show-new-buffer, org-table-may-need-update)
6155 (org-insert-item, org-mhe-get-message-real-folder)
6156 (org-mhe-get-message-folder-from-index)
6157 (org-mhe-get-message-folder, org-mhe-get-message-num)
6158 (org-mhe-get-header, org-make-org-heading-search-string)
6159 (org-make-org-heading-camel, org-table-sort-lines)
6160 (org-format-org-table-html, org-format-table-table-html):
6161 Fix typos in docstrings.
6162
6163 2006-02-23 Carsten Dominik <dominik@science.uva.nl>
6164
6165 * textmodes/org.el (org-cleaned-string-for-export)
6166 (org-solidify-link-text): New function.
6167 (org-add-hook): Use `add-local-hook' instead of `make-local-hook' for
6168 XEmacs, just to silence the compiler.
6169 (org-export-as-ascii, org-export-as-html-and-open):
6170 Use `org-cleaned-string-for-export' and create internal links.
6171 (org-follow-mhe-link): Require mh-e, use folder.
6172
6173 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
6174
6175 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face properly.
6176
6177 * progmodes/gdb-ui.el (gdb-debug-ring-max): Rename from
6178 gdb-debug-log-length.
6179 (gdb-debug-ring): Rename from gdb-debug-log-ring. Don't make
6180 it a real ring but...
6181 (gud-gdba-marker-filter): ...make it work like mark-ring.
6182 (gdb-enable-debug): Rename from gdb-enable-debug-log.
6183 (gdb-mouse-jump): New function. Add bindings.
6184
6185 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
6186
6187 * progmodes/gdb-ui.el (gdb-signalled): New variable and function.
6188 (gdb-debug-log-ring): Rename from gdb-debug-log and make a ring.
6189 (gdb-send, gdb-send-item, gud-gdba-marker-filter): Use it.
6190 (gdb-debug-log-length): Customize it's length.
6191 (gud-watch, gdb-var-create-handler): Display function::var format
6192 but don't use to create variable object.
6193 (gdb-var-create-handler): Use message-box in place of message.
6194 (gdb-stopped): Call gdb-exited if signalled.
6195
6196 2006-02-22 Carsten Dominik <dominik@science.uva.nl>
6197
6198 * textmodes/reftex.el (reftex-locate-file): Remove duplicate function.
6199
6200 * textmodes/reftex-vars.el (reftex-try-all-extensions): New option.
6201
6202 * textmodes/reftex.el (reftex-locate-file): Search all extensions
6203 if `reftex-try-all-extensions' is set.
6204
6205 * textmodes/reftex-dcr.el (reftex-view-crossref): New argument to
6206 fail silently when there is no valid argument at point.
6207 (reftex-view-crossref-when-idle): Call `reftex-view-crossref' with
6208 `fail-silently' argument. From a patch by David Reiter.
6209
6210 * textmodes/org.el (org-mark-ring-push, org-mark-ring-goto):
6211 New commands.
6212 (org-mark-ring): New variable.
6213 (org-mark-ring-length): New option.
6214 (org-open-at-point, org-goto, org-open-file): Push old position
6215 onto the mark ring.
6216 (org-add-hook): New function.
6217 (org-export-table-remove-special-lines): New option.
6218 (org-skip-comments, org-format-org-table-html): Respect new
6219 option `org-export-table-remove-special-lines'.
6220 (org-open-file): Allow special command configuration for
6221 directory link.
6222 (org-file-apps): Fix bugs in customize type, added setting
6223 for directories.
6224 (org-activate-tags, org-format-agenda-item, org-complete)
6225 (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
6226 (org-get-tags, org-get-buffer-tags, org-open-at-point)
6227 (org-link-search, org-make-org-heading-search-string)
6228 (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
6229 (org-radio-targets, org-file-link-context-use-camel-case)
6230 (org-activate-camels): New options.
6231 (org-update-radio-target-regexp, org-all-targets)
6232 (org-make-target-link-regexp, org-activate-target-links):
6233 New functions.
6234 (org-make-org-heading-search-string): New function.
6235 (org-store-link, org-insert-link): Use new option
6236 `org-file-link-context-use-camel-case'.
6237 (org-activate-camels): Use new option `org-activate-camels'.
6238 (org-link-regexp): Add mhe prefix.
6239 (org-open-at-point, org-store-link): Support for mhe links.
6240 (org-mhe-get-message-real-folder, org-mhe-get-message-folder)
6241 (org-mhe-get-message-folder-from-index, org-mhe-get-message-num)
6242 (org-mhe-get-header, org-follow-mhe-link): New functions.
6243 (org-remove-angle-brackets, org-add-angle-brackets):
6244 New functions.
6245 (org-bracket-link-regexp): New constant.
6246 (org-read-date): Fix bug that was rejecting all typed dates.
6247 (org-link-search): Make hierarchy above visible after a match.
6248 (org-follow-bbdb-link): Inhibit electric mode for BBDB.
6249 (org-store-link): Fix bug with link creation when cursor is in
6250 an empty line.
6251 (org-open-at-point): Fix bug with matching a link.
6252 Fixed buggy argument sequence in call to `org-view-tags'.
6253 (org-compile-prefix-format): Set `org-prefix-has-tag'.
6254 (org-prefix-has-tag): New variable.
6255 (org-format-agenda-item): Remove tags from headline
6256 if appropriate.
6257 (org-agenda-remove-tags-when-in-prefix): New option.
6258
6259 2006-02-21 Michael Kifer <kifer@cs.stonybrook.edu>
6260
6261 * ediff-diff.el (ediff-setup-diff-regions, ediff-setup-diff-regions3):
6262 Fix the regular expressions.
6263
6264 2006-02-21 Richard M. Stallman <rms@gnu.org>
6265
6266 * progmodes/sh-script.el (sh-mode): Set shell type based on file name
6267 if there's no other specific basis.
6268
6269 * emacs-lisp/unsafep.el (unsafep): Don't treat &rest or &optional
6270 as variables at all.
6271 (unsafep-variable): Rename arg; doc fix.
6272
6273 * abbrevlist.el (list-one-abbrev-table): Add autoload.
6274
6275 * calendar/appt.el (diary-selective-display): Add defvar.
6276
6277 * sort.el (sort-columns): Use Posix arg syntax for `sort'.
6278
6279 * isearch.el (search-whitespace-regexp): Fix custom type.
6280
6281 * help.el (describe-key-briefly): Compute interactive args
6282 in same was as before previous change.
6283
6284 * files.el (enable-local-variables): Doc fix.
6285
6286 2006-02-21 Kim F. Storm <storm@cua.dk>
6287
6288 * fringe.el: Cleanup as file is now pre-loaded.
6289 (fringe-bitmaps): Initialize unconditionally.
6290 (fringe-mode, set-fringe-style): Remove autoload cookies.
6291
6292 2006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
6293
6294 * fringe.el (fringe-bitmaps): Rename `horisontal-bar' to
6295 `horizontal-bar'.
6296 (fringe-cursor-alist): Use `horizontal-bar'.
6297
6298 2006-02-20 Kim F. Storm <storm@cua.dk>
6299
6300 * fringe.el (fringe-bitmaps): Update to new bitmap names.
6301 (fringe-indicator-alist, fringe-cursor-alist): Initialize.
6302
6303 * loadup.el: Load "fringe" on window systems.
6304
6305 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
6306
6307 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for all
6308 out of scope components.
6309
6310 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): Don't enable by
6311 default.
6312
6313 2006-02-20 Chong Yidong <cyd@stupidchicken.com>
6314
6315 * custom.el (customize-mark-to-save, customize-mark-as-set):
6316 Load the symbol first.
6317
6318 2006-02-20 Juanma Barranquero <lekktu@gmail.com>
6319
6320 * buff-menu.el (list-buffers-noselect): Turn also "\n" into a
6321 strech spec so it doesn't display as "^J" on the header line
6322 when `Buffer-menu-use-header-line' is t.
6323
6324 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
6325
6326 * speedbar.el (speedbar-make-button): Keep text properties
6327 of string arguments if desired.
6328
6329 * progmodes/gud.el (gud-speedbar-buttons): Fontify watch
6330 expessions.
6331
6332 * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Force update
6333 of speedbar.
6334
6335 2006-02-19 Ryan Yeske <rcyeske@gmail.com>
6336
6337 * ffap.el (ffap-read-file-or-url): Bind `completion-ignore-case'
6338 to value of `read-file-name-completion-ignore-case'.
6339
6340 2006-02-19 Chong Yidong <cyd@stupidchicken.com>
6341
6342 * custom.el (customize-mark-as-set): Push to `user' theme.
6343
6344 * cus-edit.el (custom-save-variables): Allow unthemed values.
6345 (customize-set-variable): Push setting to `user' theme.
6346
6347 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
6348
6349 * progmodes/gud.el: Don't require font-lock as it's now
6350 automatically loaded.
6351 (gud-speedbar-buttons): Replace gdb-var-changed with
6352 gdb-force-update.
6353
6354 * progmodes/gdb-ui.el (gdb-force-update): Rename from
6355 gdb-var-changed.
6356 (gdb-post-prompt): Use it.
6357 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
6358 (gdb-var-update-handler, gdb-var-delete)
6359 (gdb-speedbar-expand-node, gdb-var-list-children-handler-1)
6360 (gdb-var-update-handler-1): Don't set gdb-var-changed, just set
6361 gdb-force-update in gdb-post-prompt.
6362 (gdb-reset): Clear watch expressions from speedbar when quitting.
6363
6364 2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
6365
6366 * viper-cmd.el (viper-insert-state-post-command-sentinel)
6367 (viper-change-state-to-vi, viper-change-state-to-emacs):
6368 Make aware of cursor coloring in the Emacs state.
6369 (viper-special-read-and-insert-char): Use read-char-exclusive.
6370 (viper-minibuffer-trim-tail): Workaround for fields in minibuffer.
6371
6372 * viper-init.el (viper-emacs-state-cursor-color): New variable.
6373
6374 * viper-util.el (viper-save-cursor-color)
6375 (viper-get-saved-cursor-color-in-replace-mode)
6376 (viper-get-saved-cursor-color-in-insert-mode)
6377 (viper-restore-cursor-color): Make aware of the cursor color in Emacs
6378 state.
6379 (viper-get-saved-cursor-color-in-emacs-mode): New function.
6380
6381 * ediff-diff.el (ediff-ignore-case, ediff-ignore-case-option)
6382 (ediff-ignore-case-option3, ediff-actual-diff-options)
6383 (ediff-actual-diff3-options): New variables to control case sensitivity.
6384 (ediff-make-diff2-buffer, ediff-setup-fine-diff-regions)
6385 (ediff-setup-diff-regions3): Make aware of case-sensitivity.
6386 (ediff-toggle-ignore-case): New function.
6387 (ediff-extract-diffs, ediff-extract-diffs3): Preserve point in buffers.
6388
6389 * ediff-help.el (ediff-long-help-message-narrow2)
6390 (ediff-long-help-message-compare2, ediff-long-help-message-compare3)
6391 (ediff-long-help-message-word-mode): Add ignore-case command.
6392 (ediff-help-for-quick-help): Add ignore-case command.
6393
6394 * ediff-merg.el: Move provide to the end.
6395
6396 * ediff-ptch.el: Move provide to the end.
6397
6398 * ediff-wind.el: Move provide to the end.
6399
6400 * ediff-mult.el: Move provide to the end.
6401 (ediff-set-meta-overlay): Enable follow-link.
6402
6403 * ediff.el: Move provide to the end.
6404 Break recursive load cycle in eval-when-compile.
6405 (ediff-patch-buffer): Better heuristics.
6406
6407 * ediff-util.el: Move provide to the end.
6408 Break recursive load cycle in eval-when-compile.
6409 (ediff-setup-keymap): Add binding for #c. Replace some defsubsts with
6410 defuns.
6411 (ediff-submit-report): Pass the values of ediff-diff3-program,
6412 ediff-diff3-options.
6413
6414 2006-02-19 Juanma Barranquero <lekktu@gmail.com>
6415
6416 * help-fns.el (help-do-arg-highlight): Recognize also ARG- followed by
6417 the opening bracket of the following bracketing pairs: {}, [], (), <>,
6418 `' (for example, in the docstring of `windmove-default-keybindings').
6419
6420 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
6421
6422 * progmodes/gud.el (gud-speedbar-buttons): Update properly for
6423 shadow face. Don't provide binding to edit variable when it is
6424 out of scope.
6425
6426 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
6427 (gdb-var-update-handler): Detect out of scope variables with pre
6428 GDB 6.4 too.
6429 (gdb-post-prompt): Revert change from 2006-02-17 (force update).
6430 Reset status of variable objects to nil in update handlers.
6431 (gdb-var-update-handler-1): Detect when a variable object comes
6432 in scope. setcar on var changes gdb-var-list directly.
6433
6434 2006-02-17 Juri Linkov <juri@jurta.org>
6435
6436 * ffap.el (ffap) <defface>: Add explicit face declaration.
6437 (ffap-highlight): Use face `ffap' directly instead of checking
6438 for its existence.
6439
6440 * icomplete.el (icomplete-get-keys): Use `t' for the second arg
6441 `visible-ok' of `other-buffer' to find the right original buffer.
6442
6443 * info.el (Info-search): Skip `Local Variables' node.
6444
6445 2006-02-17 Juri Linkov <juri@jurta.org>
6446
6447 * info.el (Info-find-file): Check for symbols `apropos', `history',
6448 `toc' in the input filename, and return these symbols as is.
6449 (Info-find-node-2): Set Info-current-file to symbols `apropos',
6450 `history', `toc' instead of strings.
6451 (Info-set-mode-line): For non-string Info-current-file use the
6452 symbol's name inside **.
6453 (Info-isearch-push-state): Add quote before Info-current-file and
6454 Info-current-node.
6455 (Info-isearch-pop-state): Use `equal' instead of `string='.
6456 (Info-extract-pointer, Info-following-node-name): Use
6457 `match-string-no-properties' instead of `match-string'.
6458 (Info-up): Check `old-file' for `stringp'.
6459 (Info-history): Use `equal' instead of `string-equal'.
6460 Check `file' for `stringp'.
6461 (Info-history): Use symbol `history' instead of string as first arg
6462 of `Info-find-node'.
6463 (Info-toc): Check `Info-current-file' for `stringp'. Use symbol
6464 `toc' instead of string.
6465 (Info-extract-menu-node-name): Use `buffer-substring-no-properties'
6466 instead of `buffer-substring', and `match-string-no-properties'
6467 instead of `match-string'.
6468 (Info-index-nodes): Check for symbols `apropos', `history', `toc'
6469 instead of strings.
6470 (info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
6471 Use symbol `apropos' instead of string.
6472 (Info-copy-current-node-name): Check `Info-current-file' for
6473 `stringp' and construct a command with `Info-find-node' from it.
6474 (Info-fontify-node): Use `match-string-no-properties' instead of
6475 `match-string' and check file names for `stringp'.
6476 (Info-desktop-buffer-misc-data): Check for symbols `apropos',
6477 `history', `toc' instead of strings.
6478
6479 2006-02-17 Chong Yidong <cyd@stupidchicken.com>
6480
6481 * files.el: Rearrange functions and variables in the file local
6482 variables section.
6483
6484 2006-02-17 Reiner Steib <Reiner.Steib@gmx.de>
6485
6486 * files.el: Add truncate-lines, ispell-check-comments and
6487 ispell-local-dictionary as safe local variables.
6488
6489 2006-02-18 Nick Roberts <nickrob@snap.net.nz>
6490
6491 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for
6492 out of scope variables.
6493 (gud-speedbar-buttons): Use unless.
6494
6495 * progmodes/gdb-ui.el (gdb-var-list): Update doc string.
6496 (gdb-init-1, gdb-var-changed): Set gdb-var-changed to t initially.
6497 (gdb-show-changed-values): Also use for out of scope variables.
6498 (gdb-var-update-handler-1): Note if variable goes out of scope.
6499
6500 2006-02-17 Ryan Yeske <rcyeske@gmail.com>
6501
6502 * net/rcirc.el (rcirc-connect): Make all arguments optional, and
6503 default to global variable values for unsupplied args.
6504 (rcirc-get-buffer-create): Fix bug with setting the target.
6505 (rcirc-any-buffer): Rename from rcirc-get-any-buffer, and include
6506 test for rcirc-always-use-server-buffer-flag here.
6507 (rcirc-response-formats): Add %N, which is a facified nick. %n
6508 uses the default face. Change the ACTION format string. If the
6509 "nick" is the server, don't print anything for that field.
6510 Comment fixes.
6511 (rcirc-target-buffer): Don't test
6512 rcirc-always-use-server-buffer-flag here.
6513 (rcirc-print): Squeeze extra spaces out of the text before message.
6514 (rcirc-put-nick-channel): Strip potential "@" char from nick
6515 before adding them to nick table.
6516 (rcirc-url-regexp): Improve to match address like "foo.com".
6517
6518 2006-02-17 Eli Zaretskii <eliz@gnu.org>
6519
6520 * allout.el (allout-hidden-p): Move this defsubst before
6521 allout-overlay-interior-modification-handler, where it is first
6522 used.
6523
6524 2006-02-17 Ken Manheimer <ken.manheimer@gmail.com>
6525
6526 * allout.el: Use allout invisible-text overlays instead of
6527 selective display for concealed text. Also, lots of general
6528 cleanup, and improved compatibility code.
6529
6530 (allout-version) Incremented, corrected, revised, and refined
6531 module commentary.
6532
6533 (provide 'allout): Moved to the bottom, added a require of overlay.
6534
6535 (allout-encrypt-unencrypted-on-saves): Defaults to t instead of
6536 `except-current'.
6537 (allout-write-file-hook-handler): Minimize delay.
6538 (count-trailing-whitespace-region): New function so
6539 auto-encryption of current topic can resituate cursor exactly.
6540 PGP/GPG encryption trims trailing whitespace from lines, which
6541 must be accounted for across encryption then decryption.
6542
6543 (allout-command-prefix): Now defaults to "\C-c<space>" rather than
6544 just plain "\C-c", to avoid intruding on user's keybinding space.
6545
6546 (allout-toggle-current-subtree-encryption): Pass along fetch-pass
6547 parameter, so user request to provide a new password is done.
6548
6549 (allout-outside-normal-auto-fill-function, allout-auto-fill):
6550 Refined mechanism for auto-filling behavior while in allout mode.
6551
6552 (allout-mode): Explicitly specify the mode map in the docstring.
6553 Clarify provision for various write-file hook var names.
6554 Adjusted for invisible-text overlays instead of selective-display.
6555
6556 (allout-depth): Really return 0 if not within any topic. This
6557 rectifies `allout-beginning-of-level' and sequence numbering
6558 errors that occur when cutting and pasting numbered topics.
6559 Changed from a in-line subst to a regular function, as well.
6560
6561 (allout-pre-next-prefix): Renamed from allout-pre-next-preface.
6562
6563 (allout-end-of-subtree, allout-end-of-subtree)
6564 (allout-end-of-entry, allout-end-of-current-heading)
6565 (allout-next-visible-heading, allout-open-topic, allout-show-entry)
6566 (allout-show-children, allout-show-to-offshoot)
6567 (allout-hide-current-entry, allout-show-current-entry): Rectified
6568 handling of trailing blank lines between items.
6569
6570 (allout-line-boundary-regexp, set-allout-regexp, allout-depth)
6571 (allout-current-depth, allout-unprotected, allout-hidden-p)
6572 (allout-on-current-heading-p, allout-listify-exposed)
6573 (allout-chart-subtree, allout-goto-prefix)
6574 (allout-back-to-current-heading, allout-get-body-text)
6575 (allout-snug-back, allout-flag-current-subtree, allout-show-all)
6576 (allout-hide-region-body, allout-toggle-subtree-encryption)
6577 (allout-encrypt-string, allout-encrypted-key-info)
6578 (allout-next-topic-pending-encryption, allout-encrypt-decrypted)
6579 (allout-file-vars-section-data): Adjusted for use with
6580 invisible-text overlays instead of selective-display.
6581
6582 (allout-kill-line, allout-kill-topic, allout-yank-processing):
6583 Reworked for use with invisible text overlays.
6584
6585 (allout-current-topic-collapsed-p): New function.
6586
6587 (allout-hide-current-subtree): Use allout-current-topic-collapsed-p
6588 to know when to close the containing topic.
6589
6590 (allout-pre-command-business, allout-post-command-business):
6591 Simplify undo-batching and dynamic isearch exposure.
6592
6593 (allout-set-overlay-category): New for invisible-text overlays.
6594 Sets properties of allout-overlay-category, used by
6595 allout-flag-region to set invisible-text overlay properties.
6596 (allout-get-invisibility-overlay): Get the first qualifying
6597 invisibility overlay, so we can find the extent of it.
6598 (allout-back-to-visible-text): Get to just before the beginnining
6599 of the current invisibility overlay, if any.
6600
6601 (allout-overlay-insert-in-front-handler)
6602 (allout-overlay-interior-modification-handler)
6603 (allout-before-change-handler, allout-isearch-end-handler): New
6604 functions to handle extraordinary actions affecting concealed
6605 text.
6606
6607 (allout-flag-region): Use overlays instead of selective-display
6608 for invisible text - by inheritence from the properties of
6609 allout-overlay-category in mainline Emacs, and applied
6610 property-by-property in XEmacs, some recent versions of which
6611 don't inherit the properties from the category. Provisions to
6612 respond to concealed-text edits simplified drastically.
6613
6614 (allout-isearch-rectification, allout-isearch-was-font-lock)
6615 (allout-isearch-expose, allout-enwrap-isearch)
6616 (allout-isearch-abort, allout-pre-was-isearching)
6617 (allout-isearch-prior-pos, allout-isearch-did-quit)
6618 (allout-isearch-dynamic-expose)
6619 (allout-hide-current-entry-completely): Functions deleted.
6620
6621 (allout-undo-aggregation): Explicit undo aggregation no longer
6622 necessary due to transition away from selective-display.
6623
6624 (set-allout-regexp, allout-up-current-level)
6625 (allout-next-visible-heading, allout-forward-current-level)
6626 (allout-open-topic, allout-reindent-body, allout-rebullet-topic)
6627 (allout-kill-line, allout-yank-processing, allout-show-children)
6628 (allout-expose-topic, allout-old-expose-topic)
6629 (allout-listify-exposed, allout-insert-latex-header)
6630 (allout-toggle-subtree-encryption, allout-encrypt-string)
6631 (remove-from-invisibility-spec, allout-hide-current-subtree):
6632 Ditched unused variables.
6633
6634 2006-02-17 Agustin Martin <agustin.martin@hispalinux.es>
6635
6636 * textmodes/ispell.el (ispell-change-dictionary): Call
6637 ispell-buffer-local-dict instead of
6638 ispell-accept-buffer-local-defs.
6639 (ispell-local-dictionary-alist): Accept as valid any coding-system
6640 supported by Emacs.
6641 (ispell-dictionary-alist-3): Esperanto dictionary's coding system
6642 changed to iso-8859-3.
6643
6644 2006-02-17 Nick Roberts <nickrob@snap.net.nz>
6645
6646 * speedbar.el (speedbar-frame-width): Make an inline function
6647 instead of a macro. Use frame-width.
6648 (speedbar-try-completion, speedbar-update-contents)
6649 (speedbar-timer-fn): Use consp.
6650 (speedbar-update-localized-contents): Try to preserve point.
6651
6652 * progmodes/gdb-ui.el (gdba, gdb-var-list): Improve doc strings.
6653 (menu): Re-order menu items.
6654 (gdb-var-update-regexp, gdb-var-update-regexp-1): Match "in_scope"
6655 field.
6656 (gdb-var-update-handler-1): Use it for GDB 6.4+.
6657 (gdb-post-prompt): Speed things by not forcing update.
6658
6659 2006-02-16 Chong Yidong <cyd@stupidchicken.com>
6660
6661 * wid-edit.el (widget-button-click): For mouse-1, cancel button
6662 press and perform default action if we get a mouse movement event.
6663
6664 2006-02-16 Juanma Barranquero <lekktu@gmail.com>
6665
6666 * calendar/icalendar.el (icalendar--get-event-property)
6667 (icalendar--get-event-property-attributes): Fix typos in
6668 docstrings.
6669
6670 * progmodes/flymake.el (flymake-fix-file-name): Fix typo in
6671 docstring.
6672
6673 2006-02-15 Juanma Barranquero <lekktu@gmail.com>
6674
6675 * bs.el (bs-mode): Use `buffer-disable-undo'.
6676 (bs--get-file-name): Simplify.
6677 (bs-show-in-buffer): Mark the buffer as not modified.
6678
6679 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
6680
6681 * wid-edit.el (widget-keymap): Bind down-mouse-1 to
6682 widget-button-click.
6683
6684 * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
6685 (custom-mode): Update docstring.
6686
6687 * cus-theme.el (custom-new-theme-mode-map): Remove mouse-1
6688 binding.
6689
6690 * files.el (hack-local-variables-confirm): Allow scrolling if the
6691 file variable list is too long. Kill temp buffer after use.
6692
6693 2006-02-15 Nick Roberts <nickrob@snap.net.nz>
6694
6695 * progmodes/gud.el (gdb): Improve doc string.
6696 (gdb-script-font-lock-keywords): Expand allowed character set.
6697
6698 * progmodes/gdb-ui.el (gdb-use-separate-io-buffer)
6699 (gdb-display-separate-io-buffer, gdb-frame-separate-io-buffer)
6700 (gdb-separate-io-interrupt, gdb-separate-io-quit)
6701 (gdb-separate-io-stop, gdb-separate-io-eof):
6702 Rename from gdb-inferior-* to gdb-separate-*.
6703 (gdb-set-gud-minor-mode-existing-buffers-1): Improve doc string.
6704
6705 2006-02-14 Jay Belanger <belanger@truman.edu>
6706
6707 * calc/calc-arith.el (math-check-known-scalarp): Make sure
6708 expression is a symbol before checking that it is bound.
6709
6710 * calc/calcalg2.el (math-integrate-by-parts): Do a more careful
6711 test to see if equation can be solved.
6712
6713 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
6714
6715 * wid-edit.el (widget-button-click): Use :pressed-face property
6716 for overlay face, if it exists.
6717
6718 * cus-edit.el (custom-manual, custom-add-see-also)
6719 (custom-add-parent-links, custom-group-link): Add :pressed-face
6720 property to links.
6721
6722 * files.el (hack-local-variables): Remove ignored variables before
6723 checking if any variables need setting.
6724
6725 2006-02-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6726
6727 * cus-start.el (all): Add x-gtk-whole-detached-tool-bar.
6728
6729 2006-02-14 Juanma Barranquero <lekktu@gmail.com>
6730
6731 * help.el (where-is): Fix message for remapped commands.
6732
6733 * mwheel.el (mouse-wheel-click-event, mouse-wheel-mode):
6734 Fix typos in docstrings.
6735
6736 2006-02-13 Chong Yidong <cyd@stupidchicken.com>
6737
6738 * files.el (safe-local-variable-values): New option.
6739 (hack-local-variables-prop-line): Return a list of variable-value
6740 pairs if MODE-ONLY is non-nil.
6741 (hack-local-variables): Construct list of variable-value pairs,
6742 and apply or reject them in one go. Ask for confirmation if
6743 variables are not known safe.
6744 (hack-local-variables-confirm): Complete rewrite. Support
6745 `safe-local-variable-values'.
6746 (enable-local-variables): Update docstring to reflect new
6747 behavior.
6748 (ignored-local-variables): Ignore ignored-local-variables and
6749 safe-local-variable-values.
6750 (safe-local-variable-p): New function.
6751 (risky-local-variable-p): `safe-local-variable' property check
6752 moved to safe-local-variable-p.
6753 (hack-one-local-variable): Checks moved to hack-local-variables.
6754
6755 (byte-compile-dynamic, c-basic-offset, c-file-style)
6756 (c-indent-level, comment-column, fill-column, fill-prefix)
6757 (indent-tabs-mode, kept-new-versions, no-byte-compile)
6758 (no-update-autoloads, outline-regexp, page-delimiter)
6759 (paragraph-start, paragraph-separate, sentence-end)
6760 (sentence-end-double-space tab-width, version-control):
6761 Add `safe-local-variable' property.
6762
6763 * find-lisp.el: Delete nonexistent `autocompile' file variable.
6764
6765 * icomplete.el, play/landmark.el: Change nonexistent
6766 `outline-layout' file variable to `allout-layout'.
6767
6768 2006-02-14 Nick Roberts <nickrob@snap.net.nz>
6769
6770 * progmodes/gdb-ui.el (gud-watch, gdb-invalidate-registers-1)
6771 (gdb-get-changed-registers): Test value of gud-minor-mode relative
6772 to gud-comint-buffer.
6773 (gdb-speedbar-expand-node, gdb-locals-mode): Use functions in
6774 gdb-ui.el for gdb-mi.el.
6775 (gdb-post-prompt, gdb-get-changed-registers): Move test for
6776 registers buffer to gdb-get-changed-registers.
6777 (gdb-breakpoint-regexp): New regexp. Allow toggling and
6778 deletion of catchpoints (throw and catch).
6779 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
6780 (gdb-goto-breakpoint): Use it for both gdb-ui and gdb-mi.
6781 (gdb-find-file-hook, gdb-set-gud-minor-mode-existing-buffers-1)
6782 (gdb-var-list-children-1, gdb-info-breakpoints-custom)
6783 (gdb-var-update-1, gdb-invalidate-locals-1): Use also for gdb-mi.
6784
6785 2006-02-13 Jay Belanger <belanger@truman.edu>
6786
6787 * calc/calc-arith.el (math-check-known-matrixp): Make sure
6788 expression is a symbol before checking that it is bound.
6789
6790 2006-02-13 Richard M. Stallman <rms@gnu.org>
6791
6792 * mouse.el (mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
6793 for the minibuffer too, but not if resize-mini-windows will interfere.
6794
6795 * help.el (describe-key-briefly, describe-key): Do all arg-reading
6796 inside `interactive' spec.
6797 (describe-key-briefly-internal, describe-key-internal):
6798 Functions merged back into their callers.
6799
6800 2006-02-13 Martin Rudalics <rudalics@gmx.at>
6801
6802 * info.el (info-xref-visited): Inherit from info-xref too.
6803 (Info-set-mode-line): Replace occurrences of `%' by `%%'
6804 when propertizing Info-current-file and Info-current-node.
6805
6806 2006-02-13 Juri Linkov <juri@jurta.org>
6807
6808 * tumme.el (tumme-thumbnail-storage): Fix docstring.
6809 (tumme-thumb-name): Fix per-directory format.
6810
6811 2006-02-13 Juanma Barranquero <lekktu@gmail.com>
6812
6813 * subr.el (substitute-key-definition): Doc fix (hide internal arg).
6814
6815 2006-02-12 Miles Bader <miles@gnu.org>
6816
6817 * net/rcirc.el (rcirc-format-response-string): Fix small bugs.
6818
6819 2006-02-13 Mathias Dahl <mathias.dahl@gmail.com>
6820
6821 * tumme.el: Remove history section. If someone needs the it, it
6822 can always be found in CVS.
6823
6824 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
6825
6826 * tumme.el (tumme-thumbnail-storage): Update docstring. Add info
6827 about the Thumbnail Managing Standard option.
6828
6829 2006-02-12 Richard M. Stallman <rms@gnu.org>
6830
6831 * subr.el (substitute-key-definition): Doc fix.
6832
6833 * simple.el (blink-matching-paren-dont-ignore-comments): Doc fix.
6834
6835 * files.el (magic-mode-alist): Don't use `\\s ' in regexps.
6836
6837 * info.el (Info-mode): Doc fix.
6838
6839 * progmodes/ebrowse.el (ebrowse-global-prefix-key): Change to C-c C-m.
6840
6841 2006-02-12 Michael Albinus <michael.albinus@gmx.de>
6842
6843 * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
6844 because on Solaris a POSIX compatible "id" is needed. Reported by
6845 Magnus Henoch <mange@freemail.hu>.
6846
6847 2006-02-12 Juri Linkov <juri@jurta.org>
6848
6849 * tumme.el: Remove todo item about Thumbnail Managing Standard.
6850 (tumme) <defgroup>: Change :group to `multimedia'.
6851 (tumme-thumbnail-storage): Add choice `standard' for Thumbnail
6852 Managing Standard.
6853 (tumme-cmd-create-thumbnail-options): Use %w and %h instead of %s.
6854 Fix dostring.
6855 (tumme-cmd-create-temp-image-options): Use %w and %h instead of %x
6856 and %y. Fix docstring.
6857 (tumme-cmd-pngnq-program, tumme-cmd-pngcrush-program)
6858 (tumme-cmd-create-standard-thumbnail-command): New user options.
6859 (tumme-thumb-size): Set default to 128 if tumme-thumbnail-storage
6860 is `standard'. Fix docstring.
6861 (tumme-thumb-width, tumme-thumb-height): New user options.
6862 (tumme-external-viewer): Try to find various viewers.
6863 (tumme-get-thumbnail-image): Use `create-image' instead of
6864 constructing the `image' structure.
6865 (tumme-insert-thumbnail): Use `png' if tumme-thumbnail-storage is
6866 `standard'.
6867 (tumme-thumb-name): Add file name generation for standard storage.
6868 Simplify code for other storages.
6869 (tumme-thumb-name): Use width %w and height %h instead of size %s.
6870 Add modification time %m and thumbnail-nq8 %q.
6871 Use `tumme-cmd-create-standard-thumbnail-command' if
6872 tumme-thumbnail-storage is `standard'.
6873 (tumme-dired-insert-marked-thumbs): New autoload command.
6874 (tumme-dired-after-readin-hook): New function.
6875 (tumme-line-up-dynamic): Use `tumme-thumb-width' instead of
6876 `tumme-thumb-size'.
6877 (tumme-display-image): Replace size-x %x and size-y %y with
6878 width %w and height %h.
6879
6880 * dired.el (dired-mode-map): Bind `\C-t\C-t' to
6881 `tumme-dired-insert-marked-thumbs'.
6882
6883 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
6884
6885 * tumme.el (tumme-write-tag): Fix small bug (file name did not
6886 include path).
6887 (tumme-mark-tagged-files): Fix bug in regexp used to find rows
6888 matching tag.
6889
6890 2006-02-12 Miles Bader <miles@gnu.org>
6891
6892 * net/rcirc.el (rcirc-nick-abbrevs, rcirc-response-formats):
6893 New variables.
6894 (rcirc-abbrev-nick): New function.
6895 (rcirc-format-response-string): Rewrite to use the formats in
6896 `rcirc-response-formats' and expand escape sequences therein.
6897 A text-property `rcirc-text' is added over the actual response
6898 text to make easy to find inside the returned string.
6899 (rcirc-print): When filling, just look for the `rcirc-text'
6900 text-property to find the appropriate fill prefix, instead of
6901 using hardwired patterns.
6902
6903 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
6904
6905 * tumme.el: Enhance some docstrings. Add todo item about Thumbnail
6906 Managing Standard.
6907
6908 2006-02-11 Kim F. Storm <storm@cua.dk>
6909
6910 * ido.el (ido-buffer-internal): Set mark for ido-insert-buffer.
6911 Don't use insert-buffer; do insert-buffer-substring directly.
6912 (ido-file-internal): Set mark for ido-insert-file. Use insert-file-1.
6913
6914 2006-02-11 Martin Rudalics <rudalics@gmx.at>
6915
6916 * files.el (revert-buffer, recover-file): Replace buffer-read-only
6917 with inhibit-read-only. Suggested by Stefan Monnier.
6918 (revert-buffer): Let insert-file-contents discard
6919 buffer-undo-list. Simplify code.
6920 (find-file, find-file-existing, revert-buffer): Doc-string fixes.
6921
6922 2006-02-11 Eli Zaretskii <eliz@gnu.org>
6923
6924 * menu-bar.el (menu-bar-select-yank): Add a doc string.
6925
6926 * help.el (describe-key-briefly): Now a wrapper for
6927 describe-key-briefly-internal. Bind enable-disabled-menus-and-buttons
6928 to t. Populate yank-menu if empty.
6929 (describe-key-briefly-internal): Renamed from describe-key-briefly.
6930 (describe-key): Now a wrapper for describe-key-internal. Bind
6931 enable-disabled-menus-and-buttons to t. Populate yank-menu if empty.
6932 (describe-key-internal): Renamed from describe-key.
6933
6934 2006-02-11 Milan Zamazal <pdm@zamazal.org>
6935
6936 * progmodes/glasses.el (glasses-separator): Doc fix.
6937 (glasses-original-separator): New defcustom.
6938 (glasses-make-readable, glasses-convert-to-unreadable): Use it.
6939
6940 2006-02-11 Martin Rudalics <rudalics@gmx.at>
6941
6942 * mwheel.el (mouse-wheel-up-event): Doc fix.
6943
6944 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
6945
6946 * tumme.el (tumme-dir): Change default value to "~/.emacs.d/tumme/".
6947 (tumme-dir): New function. Copied from thumbs.el.
6948
6949 2006-02-10 Juanma Barranquero <lekktu@gmail.com>
6950
6951 * desktop.el (desktop-outvar): Fix typo.
6952 (desktop-save-buffer-p): Doc fix.
6953
6954 * subr.el (substitute-key-definition): Fix typo.
6955
6956 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6957
6958 * frame.el (select-frame-set-input-focus): Call x-focus-frame also
6959 when window-system is mac.
6960
6961 * term/mac-win.el (fontset-standard): Rename from "fontset-mac".
6962
6963 2006-02-10 Kim F. Storm <storm@cua.dk>
6964
6965 * subr.el (substitute-key-definition-key): Pass t for NOERROR to
6966 indirect-function instead of using condition-case.
6967
6968 2006-02-10 Mathias Dahl <mathias.dahl@gmail.com>
6969
6970 * tumme.el (tumme-copy-with-exif-file-name): Try to make docstring
6971 less `colloquial'...
6972
6973 2006-02-09 Mathias Dahl <mathias.dahl@gmail.com>
6974
6975 * tumme.el: Add a couple of todo items.
6976
6977 2006-02-09 Lars Hansen <larsh@soem.dk>
6978
6979 * hilit-chg.el: Add highlight-changes-mode to desktop-locals-to-save.
6980 (highlight-changes-mode): Don't change desktop-locals-to-save.
6981
6982 2006-02-09 Chong Yidong <cyd@stupidchicken.com>
6983
6984 * image-mode.el (image-toggle-display): Clear image cache if using
6985 filename.
6986
6987 2006-02-09 Masatake YAMATO <jet@gyve.org>
6988
6989 * dired-x.el (dired-guess-shell-alist-default): Add .man as
6990 a `dired-man' target.
6991
6992 * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start
6993 boundary of symbols.
6994
6995 2006-02-08 Peter Doornbosch <peter.doornbosch@luminis.nl> (tiny change)
6996
6997 * vc-svn.el (vc-svn-print-log): Show recent commits as well.
6998
6999 2006-02-09 Juanma Barranquero <lekktu@gmail.com>
7000
7001 * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
7002 `mapcar'; return nil.
7003
7004 2006-02-08 Chong Yidong <cyd@stupidchicken.com>
7005
7006 * mouse.el (mouse-drag-track): Don't change window if we rebind to
7007 some other event.
7008
7009 2006-02-08 Ryan Yeske <rcyeske@gmail.com>
7010
7011 * net/rcirc.el (rcirc-startup-channels-alist):
7012 Add irc.freenode.net and #emacs as defaults.
7013 (rcirc-ignore-all-activity-flag): Remove variable.
7014 (rcirc-authinfo): New variable.
7015 (rcirc-authinfo-filename): Remove variable.
7016 (rcirc-always-use-server-buffer-flag): New flag.
7017 (rcirc): M-x rcirc will automatically connect without prompting.
7018 C-u M-x rcirc will prompt. Use rcirc-connect to create a
7019 connection in lisp.
7020 (rcirc-process-server-response-1): Remove everything but the nick
7021 portion of the sender so it doesn't need to be done everywhere
7022 else. Update related code.
7023 (global-map): Remove global keybindings.
7024 (rcirc-get-buffer-create): Make sure rcirc-topic is set.
7025 (rcirc-send-input): Split into several functions.
7026 (rcirc-process-input-line, rcirc-process-message)
7027 (rcirc-process-command): New functions.
7028 (rcirc-target-buffer): New function to determine where to route
7029 messages.
7030 (rcirc-user-nick): Save match data.
7031 (rcirc-toggle-ignore-buffer-activity)
7032 (rcirc-update-activity-string): Remove global ignore functionality,
7033 which can be done now by toggling rcirc-track-minor-mode.
7034 (rcirc-track-minor-mode-map): New keymap.
7035 (rcirc-track-minor-mode): New minor-mode.
7036 (ignore): Make the ignore output nicer. Always print it when
7037 adding or removing nicks.
7038 (rcirc-url-regexp): Improve.
7039 (rcirc-mangle-text): Remove properties before using text in the
7040 modeline.
7041 (rcirc-authenticate): Authentication data comes from
7042 rcirc-authinfo, not the file pointed to by rcirc-authinfo-file.
7043 (rcirc-server-prefix): Inherit from rcirc-server.
7044
7045 2006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change)
7046
7047 * Makefile.in (compile): Append "|| true" to the end of the `find'
7048 command, like compile-always does.
7049
7050 2006-02-08 Sam Steingold <sds@gnu.org>
7051
7052 * net/tramp.el (tramp-maybe-open-connection): Do not wait for
7053 output from a dead connection.
7054
7055 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
7056
7057 * dired.el (dired-mode-map): Add more bindings for tumme.
7058
7059 2006-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
7060
7061 * wdired.el (wdired-mode-map): Use remap.
7062 (wdired-get-filename): Massage.
7063 (wdired-perm-mode-map): Don't copy bindings from wdired-mode-map.
7064 (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit): Use the
7065 `keymap' property rather than `local-map'.
7066
7067 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
7068
7069 * tumme.el (tumme-get-thumbnail-image): New utility function.
7070 Suggested by from Chong Yidong.
7071 (tumme-dired-with-window-configuration): Rename from
7072 `tumme-dired'. Add code to save window configuration.
7073 (tumme-restore-window-configuration): New command to restore the
7074 window configuration that `tumme-dired-with-window-configuration'
7075 saves before it changes the window configuration.
7076 (tumme-show-all-from-dir): New command to display thumbnails for
7077 all files in a directory entered by the user, like M-x thumbs.
7078 (tumme-display-thumbs): Call `pop-to-buffer' after all thumbnails
7079 have been created.
7080 (tumme-display-thumbnail-original-image): Call `display-buffer'.
7081 (obsolete-tumme-display-thumbnail-original-image-and-buffer):
7082 Remove obsolete test function.
7083
7084 2006-02-07 Juanma Barranquero <lekktu@gmail.com>
7085
7086 * vc.el (small-temporary-file-directory): Remove defvar; there's
7087 a defcustom for it in files.el.
7088
7089 * tumme.el (tumme-get-thumbnail-image): Add missing arg to `error'.
7090 Fix typo in message.
7091 (tumme-gallery-generate): Fix typo in `error' message.
7092 (tumme-display-window-height-correction)
7093 (tumme-display-window-width-correction, tumme-line-up-dynamic)
7094 (tumme-line-up-interactive): Dox fixes.
7095 (tumme-cmd-rotate-original-options, tumme-display-properties-format)
7096 (tumme-restore-window-configuration, tumme-format-properties-string)
7097 (tumme-create-thumbs, tumme-display-previous-thumbnail-original):
7098 Fix typos in docstrings.
7099
7100 2006-02-07 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
7101
7102 * wdired.el (wdired-get-filename): Fix bug: Don't re-normalize OLD.
7103
7104 2006-02-07 Nick Roberts <nickrob@snap.net.nz>
7105
7106 * progmodes/gud.el (gud-tooltip-mode): Remove autoload cookie.
7107 User should use hook if desired.
7108
7109 * progmodes/gdb-ui.el (gdb-post-prompt): Regenerate breakpoints
7110 buffer if necessary.
7111 (gdb-delete-frame-or-window): New function.
7112 (gdb-breakpoints-mode-map): Bind "q" to it.
7113
7114 2006-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
7115
7116 * textmodes/nroff-mode.el: Clean up name space.
7117 (nroff-mode-syntax-table): Remove spurious `1' in the syntax of \n.
7118 (nroff-mode): Obey the global setting of nroff-electric-mode.
7119 (nroff-electric-mode): Use define-minor-mode and derived-mode-p.
7120
7121 * calendar/calendar.el (calendar-increment-month): Typo in last change.
7122
7123 2006-02-06 Thien-Thi Nguyen <ttn@gnu.org>
7124
7125 * vc-svn.el (vc-svn-previous-version, vc-svn-next-version): New funcs.
7126
7127 2006-02-06 Lars Hansen <larsh@soem.dk>
7128
7129 * generic-x.el (etc-fstab-generic-mode): Add file system types
7130 cifs and usbdevfs. Allow special chars in file names.
7131
7132 2006-02-05 Jay Belanger <belanger@truman.edu>
7133
7134 Update copyright notices of the files in lisp/calc.
7135
7136 2006-02-05 Romain Francoise <romain@orebokech.com>
7137
7138 Update copyright notices of all files in the lisp/play directory.
7139
7140 2006-02-04 Luc Teirlinck <teirllm@auburn.edu>
7141
7142 * ldefs-boot.el: Regenerate.
7143
7144 * emacs-lisp/find-func.el (find-definition-noselect): Minor doc fix.
7145
7146 2006-02-05 Kim F. Storm <storm@cua.dk>
7147
7148 * files.el (magic-mode-regexp-match-limit): New defvar.
7149 (set-auto-mode): Use it to limit magic-mode-alist matching.
7150
7151 2006-02-04 Kevin Rodgers <ihs_4664@yahoo.com>
7152
7153 * simple.el (display-message-or-buffer): Compare the number of
7154 characters to the frame width when determining whether a 1-line
7155 message string will fit in the echo area. Count screen lines
7156 instead of buffer lines when determining whether a multi-line
7157 message will fit in the echo area/minibuffer window.
7158
7159 2006-02-04 Eli Zaretskii <eliz@gnu.org>
7160
7161 * info.el (Info-index, Info-mode): Improve the description of the
7162 `i' command.
7163
7164 * ldefs-boot.el: Regenerate.
7165
7166 2006-02-03 Werner Lemberg <wl@gnu.org>
7167
7168 * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
7169 greedy to find the closing bracket in \*[...] and similar
7170 expressions. This is a first rough fix -- many additional
7171 refinements are necessary to make nroff mode really usable with groff.
7172
7173 2006-02-03 Jens Petersen <petersen@redhat.com> (tiny change)
7174
7175 * international/mule-cmds.el (set-locale-environment):
7176 Add "/usr/share/X11/locale/locale.alias" to search list for xorg-x11
7177 libX11.
7178
7179 2006-02-03 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
7180
7181 * arc-mode.el (archive-maybe-copy): Fix the way directories in the
7182 archive are created in archive-tmpdir.
7183
7184 2006-02-02 John Paul Wallington <jpw@pobox.com>
7185
7186 * ibuffer.el (ibuffer-compressed-file-name-regexp): New defcustom.
7187 (ibuffer-fontification-alist): Use it.
7188 (ibuffer-mode-map): Bind `ibuffer-mark-compressed-file-buffers'
7189 to "* z" and the Ibuffer Mark menu.
7190
7191 * ibuf-ext.el (ibuffer-mark-compressed-file-buffers): New command.
7192
7193 2006-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
7194
7195 * textmodes/table.el (*table--cell-describe-mode)
7196 (*table--cell-describe-bindings): Undo last change since
7197 print-help-return-message is not obsoleted by anything at all.
7198
7199 2006-02-02 Luc Teirlinck <teirllm@auburn.edu>
7200
7201 * emulation/cua-base.el (cua-mode): Doc fix.
7202
7203 2006-02-02 Juanma Barranquero <lekktu@gmail.com>
7204
7205 * dframe.el (dframe-handle-make-frame-visible)
7206 (dframe-handle-iconify-frame, dframe-get-focus)
7207 (dframe-select-attached-frame, dframe-power-click)
7208 (dframe-frame-mode): Fix typos in docstrings.
7209
7210 * ezimage.el (ezimage-mail, ezimage-object-out-of-date)
7211 (ezimage-insert-image-button-maybe, ezimage-insert-over-text):
7212 Fix typos in docstrings.
7213
7214 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer)
7215 (hi-lock-face-buffer, hi-lock-font-lock-hook)
7216 (hi-lock-archaic-interface-message-used)
7217 (hi-lock-file-patterns-range): Fix typos in docstrings.
7218
7219 * savehist.el (savehist-loaded, savehist-load, savehist-install)
7220 (savehist-autosave, savehist-trim-history): Fix typos in docstrings.
7221
7222 * mail/mailclient.el (mailclient-place-body-on-clipboard-flag):
7223 Fix typo in docstring.
7224
7225 * net/newsticker.el (newsticker--decode-iso8601-date)
7226 (newsticker--set-customvar, newsticker--buffer-insert-item)
7227 (newsticker--do-run-auto-mark-filter)
7228 (newsticker--parse-generic-feed): Doc fixes.
7229 (newsticker--retrieval-timer-list, newsticker-url-list)
7230 (newsticker-hide-immortal-items-in-echo-area)
7231 (newsticker-hide-obsolete-items-in-echo-area)
7232 (newsticker-new-item-face, newsticker--enclosure)
7233 (newsticker-buffer-update, newsticker-w3m-show-inline-images)
7234 (newsticker--parse-atom-0.3, newsticker--parse-rss-1.0)
7235 (newsticker--parse-generic-feed, newsticker--cache-contains)
7236 (newsticker--stat-num-items, newsticker-download-enclosures):
7237 Fix typos in docstrings.
7238
7239 * net/rcirc.el (rcirc-debug): Doc fix.
7240 (rcirc-fill-column, rcirc-receive-message-hooks)
7241 (rcirc-browse-url-map, rcirc-read-only-flag, rcirc-prompt)
7242 (rcirc-mode, rcirc-generate-new-buffer-name)
7243 (rcirc-startup-channels, rcirc-ignore-update-automatic)
7244 (rcirc-cmd-ignore, rcirc-browse-url, rcirc-url-regexp):
7245 Fix typos in docstrings.
7246 (rcirc-print): "?\ " -> "?\s".
7247 (rcirc-cmd-join): Improve argument/docstring consistency.
7248
7249 2006-02-01 Mark A. Hershberger <mah@everybody.org>
7250
7251 * xml.el (xml-parse-region): Move save-excursion and set-buffer up
7252 before narrow-to-region.
7253
7254 2006-02-01 Richard M. Stallman <rms@gnu.org>
7255
7256 * simple.el (move-beginning-of-line): Scan properly for invis change.
7257
7258 * replace.el (multi-occur-in-matching-buffers): Fix prev change.
7259
7260 2006-02-01 Michael Albinus <michael.albinus@gmx.de>
7261
7262 * net/tramp.el (tramp-convert-file-attributes): Set file's gid
7263 change bit only when id-format is 'integer. Reported by Matt
7264 Hodges <M.P.Hodges@rl.ac.uk>.
7265
7266 2006-02-01 Juanma Barranquero <lekktu@gmail.com>
7267
7268 * hilit-chg.el (highlight-changes-initial-state)
7269 (highlight-changes-global-initial-state): Doc fixes.
7270 (highlight-changes-global-modes, global-highlight-changes):
7271 Fix typos in docstrings.
7272
7273 2006-02-01 Kim F. Storm <storm@cua.dk>
7274
7275 * emulation/cua-base.el (cua-mode): Mention that CUA enables
7276 transient-mark-mode in doc string.
7277
7278 2006-01-31 Richard M. Stallman <rms@gnu.org>
7279
7280 * replace.el (multi-occur): Doc fix.
7281 (multi-occur-in-matching-buffers): Rename from
7282 multi-occur-by-filename-regexp. Prefix arg says match
7283 buffer names instead of file names.
7284
7285 2006-01-31 Juanma Barranquero <lekktu@gmail.com>
7286
7287 * bs.el: Allow non-default values of `bs-header-lines-length'.
7288 (bs--running-in-xemacs): Remove (not needed anymore).
7289 (bs--set-window-height): Simplify by using `fit-window-to-buffer'
7290 instead of `shrink-window', thus avoiding having to compute the
7291 height of the window.
7292 (bs--up): Wrap around even when there's no header.
7293 (bs--down): Use `forward-line' instead of `next-line'.
7294
7295 2006-01-30 Chong Yidong <cyd@stupidchicken.com>
7296
7297 * image-mode.el (image-toggle-display): Use file name if possible,
7298 instead of unnecessarily allocating a (possibly huge) lisp string.
7299
7300 2006-01-30 John Paul Wallington <jpw@pobox.com>
7301
7302 * subr.el (toplevel): Define `cl-assertion-failed' condition here
7303 because the `assert' macro signals it at runtime.
7304
7305 * emacs-lisp/cl.el (toplevel): Remove definition of
7306 `cl-assertion-failed' condition.
7307
7308 2006-01-30 Nick Roberts <nickrob@snap.net.nz>
7309
7310 * thumbs.el (thumbs-marked-list): Make buffer-local and
7311 permanent-local.
7312 (thumbs-insert-thumb): Make help-echo non-sticky.
7313 (thumbs-file-alist): Use eolp as check for (non)-image.
7314
7315 2006-01-30 Juanma Barranquero <lekktu@gmail.com>
7316
7317 * ediff-mult.el (ediff-meta-buffer-keymap-setup-hook)
7318 (ediff-before-session-group-setup-hooks)
7319 (ediff-default-filtering-regexp, ediff-meta-mark-equal-files):
7320 Fix typos in docstrings.
7321
7322 * window.el (bw-dir, bw-eqdir, balance-windows)
7323 (split-window-keep-point): Fix typos in docstrings.
7324
7325 * textmodes/org.el (org-allow-space-in-links, org-closed-string)
7326 (org-quote-string, org-calendar-to-agenda-key)
7327 (org-agenda-sorting-strategy, org-agenda-use-time-grid)
7328 (org-show-following-heading, org-tags-column)
7329 (org-use-tag-inheritance, org, org-allow-space-in-links)
7330 (org-usenet-links-prefer-google, org-file-apps-defaults-gnu)
7331 (org-enable-table-editor, org-calc-default-modes)
7332 (org-table-allow-automatic-line-recalculation)
7333 (org-export-html-style, org-export-with-fixed-width)
7334 (org-export-with-sub-superscripts, org-special-keyword)
7335 (org-formula, org-time-grid, org-table-may-need-update)
7336 (org-mode, org-goto-ret, org-goto-left, org-goto-right)
7337 (org-goto-quit, org-get-indentation, org-end-of-item)
7338 (org-move-item-down, org-move-item-up)
7339 (org-renumber-ordered-list, org-todo, org-log-done, org-occur)
7340 (org-remove-occur-highlights, org-read-date, org-goto-calendar)
7341 (org-agenda, org-agenda-day-view, org-agenda-previous-date-line)
7342 (org-agenda-log-mode, org-agenda-toggle-diary)
7343 (org-agenda-toggle-time-grid, org-agenda-cleanup-fancy-diary)
7344 (org-agenda-file-to-end, org-agenda-no-heading-message)
7345 (org-agenda-get-closed, org-format-agenda-item)
7346 (org-cmp-priority, org-cmp-category, org-cmp-time)
7347 (org-agenda-change-all-lines, org-agenda-diary-entry)
7348 (org-scan-tags, org-after-todo-state-change-hook, org-tags-view)
7349 (org-link-search, org-camel-to-words, org-open-file)
7350 (org-remember-handler, org-table-convert-region)
7351 (org-table-move-row-down, org-table-move-row-up)
7352 (org-table-copy-region, org-table-wrap-region)
7353 (org-table-toggle-vline-visibility)
7354 (org-table-get-vertical-vector, org-table-modify-formulas)
7355 (org-table-get-specials, org-recalc-commands)
7356 (org-table-rotate-recalc-marks, org-table-eval-formula)
7357 (orgtbl-make-binding, org-in-invisibility-spec-p, org-cycle)
7358 (org-level-color-stars-only, org-insert-heading):
7359 Fix typos in docstrings.
7360 (last-arg): Add defvar.
7361
7362 * makefile.w32-in (WINS): Add erc.
7363 (MH_E_SRC): Update (copied from lisp/Makefile.in).
7364
7365 2006-01-29 Bill Wohler <wohler@newt.com>
7366
7367 * Makefile.in (MH_E_SRC): Add mh-compat.el, mh-folder.el,
7368 mh-letter.el, mh-limit.el, mh-scan.el, mh-show.el, mh-thread.el,
7369 mh-tool-bar.el, mh-xface.el. Remove mh-customize.el, mh-init.el.
7370 (mh-autoloads): Don't use comments on otherwise empty lines.
7371
7372 2006-01-29 Edward O'Connor <ted@oconnor.cx>
7373
7374 * emulation/viper.el (viper-major-mode-modifier-list): Add
7375 insert-state and vi-state entries for erc-mode.
7376 (viper-go-away, viper-set-hooks): Add and remove
7377 viper-comint-mode-hook from erc-mode-hook as appropriate.
7378
7379 * emulation/viper.el (viper-insert-state-mode-list): Add erc-mode.
7380
7381 2006-01-29 Juanma Barranquero <lekktu@gmail.com>
7382
7383 * bs.el (bs--format-aux): Implement `middle' alignment as
7384 described in the docstring for `bs-attributes-list'.
7385 (bs--get-name): Simplify. Don't pad the buffer name.
7386
7387 2006-01-27 Agustin Martin <agustin.martin@hispalinux.es>
7388
7389 * textmodes/ispell.el (ispell-find-aspell-dictionaries): If no
7390 English aspell dictionary is installed, use the first entry of
7391 ispell-dictionary-alist-1.
7392
7393 2006-01-27 Kevin Rodgers <ihs_4664@yahoo.com>
7394
7395 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
7396 Doc fix.
7397
7398 2006-01-27 Michael Albinus <michael.albinus@gmx.de>
7399
7400 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
7401 for `process-file', in order to let it work for older Emacsen too.
7402
7403 2006-01-27 Eli Zaretskii <eliz@gnu.org>
7404
7405 * international/latexenc.el: Add a suitable `coding:' tag.
7406 (latexenc-find-file-coding-system): Undo last change.
7407
7408 2006-01-27 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
7409
7410 * international/latexenc.el (latexenc-find-file-coding-system):
7411 Make sure latexenc-main-file is a regular file and is readable.
7412
7413 2006-01-27 Andre Spiegel <spiegel@gnu.org>
7414
7415 * vc-rcs.el (vc-rcs-fetch-master-state, vc-rcs-consult-headers):
7416 Pass FILE to vc-user-login-name.
7417
7418 * vc-sccs.el (vc-sccs-state): Pass FILE to vc-user-login-name.
7419
7420 2006-01-27 Nick Roberts <nickrob@snap.net.nz>
7421
7422 * thumbs.el (thumbs-do-thumbs-insertion): Suppress message when
7423 there are no more images to display.
7424 (thumbs-mark, thumbs-unmark): Revert change so that they move to
7425 the next image.
7426
7427 2006-01-26 Richard M. Stallman <rms@gnu.org>
7428
7429 * cus-edit.el (custom-mode): Doc: Use advertised-widget-backward.
7430
7431 * wid-edit.el (advertised-widget-backward): New alias.
7432 (widget-keymap): Use advertised-widget-backward for S-TAB.
7433
7434 * tumme.el: Correct the keywords.
7435 (tumme-dir-max-size): Use defvar.
7436 (tumme-setup-dired-keybindings, tumme-dired): Add autoload cookie.
7437
7438 * simple.el (move-beginning-of-line): Take account of fields.
7439 (clone-indirect-buffer-other-window): Take args like
7440 clone-indirect-buffer, and work like it.
7441
7442 * help-fns.el (describe-function): Don't pass `nil' as default.
7443
7444 * files.el (risky-local-variable-p): Follow var aliases.
7445
7446 * subr.el (lazy-completion-table): Doc fix.
7447
7448 * mail/rmailsum.el (rmail-make-summary-line-1): Don't set
7449 global binding of `line'.
7450
7451 2006-01-25 Andre Spiegel <spiegel@gnu.org>
7452
7453 * vc-hooks.el (vc-user-login-name): Rewritten to handle access via
7454 Tramp.
7455
7456 * vc.el (vc-default-dired-state-info): Pass FILE to
7457 vc-user-login-name.
7458 (vc-default-update-changelog): Don't use vc-user-login-name, we
7459 don't need it here.
7460
7461 * net/tramp-vc.el (vc-user-login-name): Comment out defadvice, it is
7462 no longer necessary.
7463
7464 2006-01-25 Kenichi Handa <handa@m17n.org>
7465
7466 * international/mule.el (decode-char): Avoid the overhead of
7467 calling utf-lookup-subst-table-for-decode if
7468 utf-translate-cjk-mode is nil.
7469 (encode-char): Avoid the overhead of calling
7470 utf-lookup-subst-table-for-encode if utf-translate-cjk-mode is
7471 nil.
7472
7473 2006-01-22 Kenichi Handa <handa@m17n.org>
7474
7475 * international/mule.el (make-subsidiary-coding-system): Reset
7476 `coding-system-define-form' property of subsidiaries to nil.
7477 Avoid duplicated entry in coding-system-alist.
7478 (make-coding-system): Avoid duplicated entry in
7479 coding-system-alist.
7480 (define-coding-system-alias): Likewise.
7481
7482 2006-01-24 Luc Teirlinck <teirllm@auburn.edu>
7483
7484 * completion.el: Minor fixes in introductory comment.
7485 (completion-def-wrapper): Fix alist.
7486
7487 2006-01-25 Nick Roberts <nickrob@snap.net.nz>
7488
7489 * thumbs.el (thumbs-new-image-size): New function.
7490 (thumbs-increment-image-size-element)
7491 (thumbs-decrement-image-size-element, thumbs-increment-image-size)
7492 (thumbs-decrement-image-size): Delete.
7493 (thumbs-resize-image-1): Rename from thumbs-resize-image. Keep old
7494 temp files and use to resize.
7495 (thumbs-resize-image): Rename from thumbs-resize-image-interactive.
7496 Use increment argument to enlarge/shrink. Preserve point.
7497 (thumbs-shrink-image): Rename from thumbs-resize-image-size-down.
7498 (thumbs-enlarge-image): Rename from thumbs-resize-image-size-up
7499 (thumbs-show-thumbs-list): Set thumbs-buffer to current-buffer.
7500 (thumbs-mark, thumbs-unmark): Preserve point.
7501 (thumbs-modify-image): Keep old temp files and use to modify.
7502 Cleanup old temp files at load time. Preserve point.
7503 (thumbs-view-image-mode-map): Use new command names.
7504
7505 2006-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
7506
7507 * log-view.el (log-view-minor-wrap): First rev is the one at point.
7508
7509 * calendar/cal-menu.el: Avoid macros from calendar.el so as to break
7510 the nastiest part of the cyclic dependency.
7511 (cal-menu-update): Use dotimes and calendar-increment-month.
7512
7513 * calendar/calendar.el: Remove unnecessary leading stars in docstrings.
7514 (calendar-week-start-day): Add an :initializer.
7515 (calendar-mode-map): Use suppress-keymap, and command remapping.
7516 (describe-calendar-mode): Setup xref-stack info for the back button.
7517 (calendar-star-date): Insert before delete.
7518 (calendar-set-mode-line): Add file-modified info if applicable.
7519 (calendar-increment-month): New function.
7520
7521 2006-01-24 Tobias C. Rittweiler <tcr@freebits.de> (tiny change)
7522
7523 * font-lock.el (lisp-font-lock-keywords-2):
7524 Recognize "& keywords" only at word boundaries.
7525
7526 2006-01-24 Nick Roberts <nickrob@snap.net.nz>
7527
7528 * thumbs.el (thumbs-extra-images): New variable. Make it buffer-local
7529 and permanent-local.
7530 (thumbs-max-image-number): New variable.
7531 (thumbs-do-thumbs-insertion): Use them.
7532 (thumbs-per-line): Change default to 4.
7533 (thumbs-marked-list): Rename from thumbs-markedL.
7534 (thumbs-cleanup-thumbsdir, thumbs-delete-images)
7535 (thumbs-rename-images): Use -list instead of L for internal variables.
7536 (thumbs-call-convert): Use call-process instead of shell-command.
7537 (thumbs-insert-thumb): Add filename as help-echo to each image.
7538 (thumbs-show-from-dir): Rename from thumbs-show-all-from-dir.
7539 Give dir to thumbs-show-thumbs-list.
7540 (thumbs-show-thumbs-list): Set default-directory to that of images.
7541 (thumbs-dired-show): Rename from thumbs-dired-show-all.
7542 (thumbs-display-thumbs-buffer, thumbs-show-more-images): New functions.
7543 (thumbs-mode-map): Bind "+" to thumbs-show-more-images.
7544 (thumbs-view-image-mode-map): Bind "^" to thumbs-display-thumbs-buffer.
7545
7546 2006-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
7547
7548 * ses.el (ses-read-cell): Provide a default value.
7549
7550 2006-01-23 Juanma Barranquero <lekktu@gmail.com>
7551
7552 * term/w32-win.el (image-library-alist): Add additional names for
7553 GIF library.
7554
7555 2006-01-23 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
7556
7557 * international/latexenc.el (latexenc-find-file-coding-system):
7558 Add file-regular-p check.
7559
7560 2006-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
7561
7562 * simple.el (clone-buffer): Don't show the new buffer in the same
7563 window.
7564
7565 2006-01-23 Juri Linkov <juri@jurta.org>
7566
7567 * faces.el (link, link-visited): New faces based on default values
7568 of `info-xref' and `info-xref-visited'.
7569
7570 * info.el (info-xref): Inherit from `link'.
7571 (info-xref-visited): Inherit from `link-visited'.
7572
7573 * cus-edit.el (custom-buffer-create-internal): Use widget type
7574 `custom-manual' instead of `info-link' and don't set properties
7575 `button-face' and `mouse-face' explicitly.
7576 (custom-browse-group-tag, custom-browse-variable-tag)
7577 (custom-browse-face-tag): Inherit from widget class
7578 `custom-group-link' instead of `push-button'.
7579 (custom-button-unraised): Inherit from `underline' face.
7580 (custom-link): Inherit from `link' face. Fix doc and group.
7581 (custom-add-parent-links, custom-group-value-create): Don't set
7582 properties `button-face' and `mouse-face' explicitly for
7583 `custom-group-link' widget.
7584 (custom-group-link): Add properties `button-face' and `mouse-face'
7585 to widget definition.
7586 (custom-field-keymap): New variable. Put `custom-field-keymap' to
7587 editable-field's :keymap property.
7588 (custom-mode): Fix docstring: substitute keybindings for
7589 `widget-forward' and `widget-backward' from `widget-keymap',
7590 `widget-complete' from `custom-field-keymap', replace old
7591 `Custom-move-and-invoke' with `widget-move-and-invoke'. Untabify.
7592
7593 * desktop.el (desktop-load-file): Check for `fboundp' before
7594 calling `symbol-function'.
7595
7596 * simple.el (clone-buffer, clone-indirect-buffer)
7597 (clone-indirect-buffer-other-window): Use `read-buffer' instead of
7598 `read-string'. Fix prompts.
7599
7600 * play/doctor.el (doctor-mode-map): Rename from `doc-mode-map'.
7601
7602 2006-01-23 Nick Roberts <nickrob@snap.net.nz>
7603
7604 * thumbs.el (thumbs-file-alist): Avoid creating duplicate entries.
7605
7606 2006-01-22 Luc Teirlinck <teirllm@auburn.edu>
7607
7608 * startup.el (inhibit-splash-screen, initial-scratch-message):
7609 Doc fixes.
7610
7611 2006-01-22 Michael Albinus <michael.albinus@gmx.de>
7612
7613 Sync with Tramp 2.0.52.
7614
7615 * net/tramp.el, net/tramp-ftp.el, net/tramp-util.el,
7616 net/tramp-vc.el: Add code for unloading Tramp. See comment before
7617 `tramp-unload-tramp' for checklist.
7618
7619 * net/tramp.el: Require `timer-funcs' instead of `timer' if in
7620 XEmacs. Contributed by Steve Youngs <steve@sxemacs.org>.
7621 (tramp-unload-file-name-handler-alist)
7622 (tramp-unload-tramp): New defuns.
7623 (tramp-advice-PC-expand-many-files): New defadvice.
7624 (tramp-save-PC-expand-many-files, tramp-setup-complete) Defuns
7625 removed.
7626 (tramp-handle-expand-file-name): Remove double slash.
7627 (tramp-handle-file-attributes-with-ls): Return t as 9th attribute.
7628 It doesn't matter, because it will be converted later on.
7629 (tramp-handle-file-ownership-preserved-p): Rewritten. The old
7630 implementation was just heuristic.
7631 (tramp-post-connection): Set uid and gid properties.
7632 (tramp-convert-file-attributes): Set file's gid change bit.
7633 (tramp-get-remote-uid, tramp-get-remote-gid): New defuns.
7634 (tramp-handle-expand-file-name): Use "~root" for tilde expansion
7635 in case of su(do)? methods. The home directory of the local user
7636 will be taken else.
7637 (tramp-open-connection-telnet)
7638 (tramp-open-connection-rsh, tramp-open-connection-su)
7639 (tramp-open-connection-multi): Set PS1 to "$ ". Otherwise, a
7640 local shell prompt could hurt. Reported by Romain Francoise
7641 <romain@orebokech.com>.
7642 (tramp-let-maybe): Add `edebug-form-spec' property.
7643 (tramp-handle-expand-file-name): Bind `default-directory' locally
7644 to "/" in order to avoid problems with UNC shares or Cygwin
7645 mounts.
7646 (tramp-md5-function): Fix typo in error message.
7647
7648 * net/tramp-ftp.el (tramp-ftp-enable-ange-ftp): New defun.
7649
7650 * net/tramp-util.el (top): Apply `ignore' instead of `identity'
7651 for byte-compiler pacification.
7652
7653 2006-01-22 Andre Spiegel <spiegel@gnu.org>
7654
7655 * vc-rcs.el (vc-rcs-state-heuristic): Use file-attributes with
7656 ID-FORMAT `string'. This allows us to get rid of
7657 `vc-user-login-name UID'.
7658
7659 * vc-sccs.el (vc-sccs-state-heuristic): Likewise.
7660
7661 2006-01-22 John Paul Wallington <jpw@pobox.com>
7662
7663 * hl-line.el (hl-line-highlight, hl-line-move): Doc fixes.
7664
7665 2006-01-21 Martin Rudalics <rudalics@gmx.at>
7666
7667 * emacs-lisp/find-func.el (find-definition-noselect)
7668 (find-variable-noselect): Search variables in C source code too.
7669 (find-function-C-source, find-function-noselect, find-function)
7670 (find-function-other-frame, find-variable-noselect, find-variable)
7671 (find-variable-other-frame, find-variable-at-point):
7672 Fix docstrings.
7673
7674 2006-01-21 Francesco Potorti` <pot@gnu.org>
7675
7676 * mail/rmailout.el (rmail-output): Don't use content-type if it is nil.
7677
7678 2006-01-21 Agustin Martin <agustin.martin@hispalinux.es>
7679
7680 * textmodes/flyspell.el (flyspell-emacs-popup, flypell-xemacs-popup):
7681 Default to disabling the "Save affix" question.
7682
7683 2006-01-21 Marien Zwart <marienz@gentoo.org> (tiny change)
7684
7685 * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as
7686 the first arg to run-python.
7687
7688 2006-01-21 Eli Zaretskii <eliz@gnu.org>
7689
7690 * startup.el (command-line-1): Handle --no-desktop if desktop.el
7691 is not loaded.
7692
7693 2006-01-20 Jay Belanger <belanger@truman.edu>
7694
7695 * calc/calcalg2.el (calc-sum-rec): Fix the sum when the lower
7696 limit is 0.
7697
7698 * calc/calc-arith.el (math-add-symb-fancy): Check the length of
7699 the correct variable.
7700
7701 2006-01-20 Carsten Dominik <dominik@science.uva.nl>
7702
7703 * textmodes/org.el (org-open-at-point): Fixed bug with matching a
7704 link. Fixed buggy argument sequence in call to `org-view-tags'.
7705 (org-compile-prefix-format): Set `org-prefix-has-tag'.
7706 (org-prefix-has-tag): New variable.
7707 (org-format-agenda-item): Remove tags from headline if
7708 appropriate.
7709 (org-agenda-remove-tags-when-in-prefix): New option.
7710 (org-get-tags-at): New function.
7711
7712 2006-01-20 Nick Roberts <nickrob@snap.net.nz>
7713
7714 * thumbs.el (thumbs-buffer): New variable. Make it buffer local.
7715 (thumbs-find-image): Move image name and number from buffer name
7716 to mode name. Set thumbs-buffer. Preserve point so that large
7717 images remain visible.
7718 (thumbs-file-alist): Construct list in thumbs-buffer and reverse
7719 order.
7720 (thumbs-show-image-num): Get image from thumbs-file-alist. Set
7721 mode name.
7722 (thumbs-next-image, thumbs-previous-image): Make them work.
7723
7724 2006-01-19 Luc Teirlinck <teirllm@auburn.edu>
7725
7726 * cus-edit.el (custom-buffer-create-internal): State in the text above
7727 the whole buffer buttons that they do not operate on hidden items.
7728 (custom-face-menu): Use `custom-face-save' instead of
7729 `custom-face-save-command'.
7730 (custom-face-save-command): Make it an alias for `custom-face-save'
7731 and declare it obsolete.
7732 (custom-face-save): Doc fix.
7733
7734 * dired.el (dired-no-confirm): Add quote.
7735 (dired-subdir-alist-pre-R): Add quote in
7736 `make-variable-buffer-local' form and remove unbalanced parenthesis.
7737
7738 2006-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
7739
7740 * textmodes/table.el (table-mode-indicator): Typo in last change.
7741
7742 2006-01-19 Richard M. Stallman <rms@gnu.org>
7743
7744 * outline.el (hide-leaves): Don't call outline-end-of-heading.
7745 Fixes bug reported in Nov 2005.
7746
7747 * isearch.el (isearch-forward): Doc fix.
7748
7749 * dired.el (dired-move-to-filename-regexp): Define as alias.
7750 (dired-no-confirm): Use defcustom.
7751 (dired-subdir-alist-pre-R): Put defvar at top level.
7752
7753 * battery.el (battery-linux-proc-acpi): Handle "last full capacity".
7754
7755 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
7756 Mark as risky.
7757
7758 * simple.el (set-mark-command): Doc fix.
7759 (clone-indirect-buffer-other-window):
7760 Read arg like clone-indirect-buffer.
7761 (move-beginning-of-line): Skip invisible newlines.
7762
7763 2006-01-19 Masatake YAMATO <jet@gyve.org>
7764
7765 * progmodes/cpp.el (cpp-edit-load): Make the order of
7766 listed conditions in a base C code buffer and its associate
7767 CPP Edit buffer the same.
7768
7769 2006-01-19 Kenichi Handa <handa@m17n.org>
7770
7771 * mail/rmail.el (rmail-enable-mime): Docstring fixed.
7772 (rmail-mime-feature): Likewise.
7773 (rmail-require-mime-maybe): Use display-warning to show a warning
7774 message.
7775
7776 * international/mule.el (auto-coding-regexp-alist-lookup): New fun.
7777 (find-auto-coding): Use auto-coding-regexp-alist-lookup.
7778
7779 2006-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
7780
7781 * array.el: Move defvars out of eval-when-compile.
7782 (array-make-template): Replace undeclared global var with a local one.
7783 (array-mode): Inline initialization functions.
7784 (array-init-local-variables, array-init-max-row)
7785 (array-init-max-column, array-init-columns-per-line)
7786 (array-init-field-width, array-init-rows-numbered)
7787 (array-init-line-length, array-init-lines-per-row): Remove.
7788
7789 * play/doctor.el: Move defvars out of eval-when-compile. Use dolist.
7790 (doc-mode-map): Define explicitly.
7791 (doctor-txtype): Use mapc.
7792
7793 * textmodes/table.el: Move defvars out of eval-when-compile.
7794 Remove harmful code meant to avoid byte-compiler warnings.
7795 (table-fixed-mode-indicator): Remove. Use a more complex mode-line
7796 specification that checks table-fixed-width-mode directly.
7797 (table-recognize-region, table-recognize-cell):
7798 Use restore-buffer-modified-p.
7799 (table-fixed-width-mode): Remove code that refreshes
7800 table-fixed-mode-indicator.
7801 (*table--cell-describe-bindings, *table--cell-describe-mode):
7802 Avoid obsolete name print-help-return-message.
7803 (table--test-cell-list): Don't use replace-regexp from elisp.
7804 (table--point-entered-cell-function, table--point-left-cell-function):
7805 Don't set table-fixed-mode-indicator, use force-mode-line-update.
7806
7807 * textmodes/org.el: Move defvars out of eval-when-compile. Move code
7808 that was after the end of file. Use buffer-file-name variable.
7809 (org-timestamp-change): Use with-current-buffer.
7810 (org-todo-list): Don't unnecessarily define a new buffer-local var.
7811 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused arg
7812 `file'.
7813
7814 * progmodes/fortran.el: Move defvars out of eval-when-compile.
7815 (fortran-break-line): Remove unused var `opoint'.
7816 (fortran-abbrev-start): Obey help-event-list.
7817
7818 2006-01-18 Jesper Harder <harder@phys.au.dk>
7819
7820 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring.
7821
7822 2006-01-18 Masatake YAMATO <jet@gyve.org>
7823
7824 * progmodes/make-mode.el (makefile-imake-mode): New mode
7825 derived from makefile-mode.
7826 (makefile-imake-mode-syntax-table): New syntax table
7827 derived from makefile-mode-syntax-table.
7828 (makefile-mode): Write about makefile-imake-mode in doc string.
7829 (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode.
7830 (makefile-imake-font-lock-keywords): New font lock keywords.
7831
7832 * files.el (auto-mode-alist): Add Imakefile.
7833
7834 2006-01-17 Agustin Martin <agustin.martin@hispalinux.es>
7835
7836 * textmodes/flyspell.el (ispell-kill-ispell-hook): Add to the hook when
7837 loading the file rather than when turning on flyspell-mode.
7838
7839 2006-01-16 Luc Teirlinck <teirllm@auburn.edu>
7840
7841 * cus-edit.el (customize-rogue): Minor doc fix.
7842
7843 2006-01-17 Juri Linkov <juri@jurta.org>
7844
7845 * dired-aux.el (dired-diff): Use dired-dwim-target-directory
7846 instead of the file at the mark as default if the file at the mark
7847 is the same as the file at point or if dired-dwim-target-directory
7848 is not the same as the current directory and the mark is not active.
7849
7850 * log-view.el (log-view-minor-wrap): Use the same logic to get
7851 revisions as `log-view-diff'.
7852
7853 * info.el (Info-revert-find-node): Check for Info-current-file
7854 before preserving new-history.
7855
7856 * man.el (Man-heading-regexp): Add `/'.
7857
7858 * textmodes/sgml-mode.el: Add `coding: iso-2022-7bit' cookie.
7859 (html-mode): Set `sentence-end-base' instead of `sentence-end'.
7860
7861 2006-01-16 Juri Linkov <juri@jurta.org>
7862
7863 * faces.el (mode-line-faces): New defgroup.
7864 (mode-line-highlight): Move definition after new defgroup.
7865 (mode-line, mode-line-inactive, mode-line-highlight):
7866 Replace :group `modeline' with `mode-line-faces'.
7867 (mode-line-buffer-id): New face.
7868 (modeline-buffer-id): New face alias.
7869 (vertical-border): Remove :group `modeline'.
7870
7871 * bindings.el (propertized-buffer-identification): Use face
7872 `mode-line-buffer-id' instead of `Buffer-menu-buffer'.
7873 (mode-line-next-buffer, mode-line-previous-buffer): New functions.
7874 (mode-line-buffer-identification-keymap): For mouse-1 replace
7875 `mode-line-unbury-buffer' with `mode-line-previous-buffer'.
7876 Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for
7877 mouse-3.
7878
7879 * buff-menu.el (buffer-menu-buffer) <defface>: Renamed from
7880 Buffer-menu-buffer. Doc fix.
7881 (Buffer-menu-buffer): Face alias to buffer-menu-buffer.
7882 (list-buffers-noselect): Use `buffer-menu-buffer' face instead of
7883 `Buffer-menu-buffer'.
7884
7885 * info.el (Info-mode-line-node-keymap): New defvar.
7886 (Info-set-mode-line): Use `stringp' to check Info-current-file.
7887 Propertize Info-current-node with `mode-line-buffer-id' and
7888 `mode-line-highlight' faces and `Info-mode-line-node-keymap'.
7889
7890 * time.el (display-time-mail-face): Replace :group `faces' with
7891 `mode-line-faces'.
7892
7893 2006-01-16 Kenichi Handa <handa@m17n.org>
7894
7895 * international/code-pages.el: Add autoload cookies for cp125[0345678].
7896
7897 * language/european.el (cp1252): New alias for windows-1252.
7898
7899 * international/mule.el (autoload-coding-system): Prepare for EOL
7900 variants.
7901
7902 2006-01-15 Dan Nicolaescu <dann@ics.uci.edu>
7903
7904 * term.el (term-raw-map): Add mapping for insert.
7905 (term-send-insert): New.
7906 (term-mode): Make variables local here instead of doing it in
7907 `term-emulate-terminal'.
7908 (term-emulate-terminal): Delete incorrect optimization for cr+lf.
7909 Scroll reverse needs to take into account the scroll region.
7910 Saving and restoring the cursor should save the color attributes too.
7911 (term-reset-terminal): Reset the scroll region.
7912 (term-handle-ansi-escape): Cursor up and down should take into
7913 account the scroll region.
7914 (term-set-scroll-region): Rename from `term-scroll-region'.
7915 Move to 0,0 after setting the region.
7916 (term-handle-scroll): Handle scroll up.
7917 (term-down): Fix off by one error.
7918 (term-delete-lines): Do not delete outside the scroll region.
7919 (term-insert-lines): Take into account the scroll region.
7920
7921 2006-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
7922
7923 * textmodes/ispell.el (ispell-internal-change-dictionary)
7924 (ispell-change-dictionary): Undo most of last change of 2006-01-13.
7925 (start, end): Move declaration outside of eval-when-compile.
7926
7927 * textmodes/flyspell.el (flyspell-kill-ispell-hook): New fun.
7928 (flyspell-mode-on): Use it.
7929
7930 * textmodes/ispell.el (ispell-kill-ispell): Run new hook
7931 ispell-kill-ispell-hook.
7932
7933 2006-01-14 Luc Teirlinck <teirllm@auburn.edu>
7934
7935 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
7936 (Custom-reset-saved): Do not ask for confirmation in single option
7937 buffers.
7938
7939 2006-01-13 Richard M. Stallman <rms@gnu.org>
7940
7941 * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement.
7942
7943 2006-01-13 Romain Francoise <romain@orebokech.com>
7944
7945 * add-log.el (add-change-log-entry, change-log-merge):
7946 Conditionally use `hard-newline'.
7947
7948 2006-01-13 Martin Rudalics <rudalics@gmx.at>
7949
7950 * wid-edit.el (widget-field-end): If the overlay is no longer
7951 associated with a buffer, behave as if the overlay didn't exist.
7952
7953 * cus-edit.el (custom-add-see-also, custom-add-parent-links):
7954 Make sure the links use the `custom-link' face.
7955
7956 2006-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
7957
7958 * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
7959 (ld-script-mode): Don't set indent-line-function since we don't
7960 have one.
7961
7962 2006-01-13 Carsten Dominik <dominik@science.uva.nl>
7963
7964 * textmodes/org.el (org-open-file): Use mailcap for selecting an
7965 application.
7966 (org-file-apps-defaults-gnu): Use mailcap as the default for
7967 selecting an application on a UNIX system.
7968 (org-agenda-show-tags): New command.
7969 (org-table-insert-hline): Keep cursor in current table line.
7970 (org-table-convert): Offset effect of modifying
7971 `org-table-insert-hline'.
7972 (org-format-agenda-item): New optional argument TAG.
7973 (org-compile-prefix-format): Handle %T format for the tag.
7974 (org-expand-wide-chars): New function.
7975 (org-table-insert-row, org-table-insert-hline):
7976 Use `org-expand-wide-chars'.
7977 (org-open-file): Fix bug in program launch.
7978 (org-get-time-of-day): Fix bug with times before 1am.
7979 (org-agenda-menu): Add tags commands.
7980
7981 2006-01-13 Agustin Martin <agustin.martin@hispalinux.es>
7982
7983 * textmodes/ispell.el (ispell-init-process): Include the used
7984 dictionary in ispell process start message.
7985 (ispell-internal-change-dictionary): When flyspell-mode is active
7986 and dictionary is changed, make sure ispell process is restarted
7987 and flyspell word cache cleared out for the current buffer.
7988 (ispell-change-dictionary): Make sure flyspell word cache is
7989 cleared out in all buffers with active flyspell mode when
7990 dictionary is globally changed.
7991 Call ispell-internal-change-dictionary after dictionary change.
7992
7993 2006-01-13 Eli Zaretskii <eliz@gnu.org>
7994
7995 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
7996
7997 * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in.
7998 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright
7999 years. Fix small differences wrt Makefile.in.
8000 (recompile): Use --eval '(batch-byte-recompile-directory 0)', like
8001 Makefile.in does.
8002
8003 2006-01-12 Bill Wohler <wohler@newt.com>
8004
8005 * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with
8006 mh-search.el.
8007
8008 2006-01-12 Masatake YAMATO <jet@gyve.org>
8009
8010 * progmodes/ld-script.el: Update copyright year.
8011
8012 2006-01-12 Chong Yidong <cyd@stupidchicken.com>
8013
8014 * cus-theme.el (custom-theme-add-variable, custom-theme-add-face):
8015 Don't add widget if setting undefined.
8016
8017 2006-01-12 John Paul Wallington <jpw@pobox.com>
8018
8019 * help-fns.el (describe-variable): Remove newlines from void
8020 variable output.
8021
8022 2006-01-13 Nick Roberts <nickrob@snap.net.nz>
8023
8024 * wdired.el (wdired-mode-map): Add help echo for
8025 wdired-abort-changes.
8026
8027 * man.el (Man-file-name-regexp): Adjust for a list of files.
8028
8029 2006-01-12 Masatake YAMATO <jet@gyve.org>
8030
8031 * progmodes/ld-script.el (auto-mode-alist): Support
8032 suffix conventions used in netbsd and eCos.
8033
8034 2006-01-11 Luc Teirlinck <teirllm@auburn.edu>
8035
8036 * cus-edit.el (custom-reset-menu, custom-buffer-create-internal)
8037 (custom-variable-menu, custom-face-menu, custom-group-menu)
8038 (Custom-mode-menu): Change names of menu items. (As discussed on
8039 emacs-devel.)
8040 (custom-face-menu): Add "Undo Edits" item.
8041
8042 * startup.el (init-file-user): defcustom -> defvar.
8043
8044 * tooltip.el (tooltip-mode): Doc fix.
8045
8046 2006-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
8047
8048 * reveal.el (reveal-post-command): window-buffer signals an error on
8049 dead windows rather than returning nil.
8050 (reveal-open-new-overlays): An overlay might die while we open others.
8051
8052 2006-01-11 Bill Wohler <wohler@newt.com>
8053
8054 * cus-dep.el (generated-custom-dependencies-file): Fix typo and
8055 phrasing in docstring.
8056
8057 * Makefile.in (MH_E_SRC): Rename from MH-E-SRC since the dashes
8058 can give some systems gas. Add new file mh-buffers.el.
8059
8060 2006-01-06 Masatake YAMATO <jet@gyve.org>
8061
8062 * font-lock.el (cpp-font-lock-keywords): Font lock keywords for
8063 C preprocessor forward ported from GNU Emacs 21.2.
8064
8065 * progmodes/asm-mode.el (asm-font-lock-keywords):
8066 Use `cpp-font-lock-keywords'.
8067
8068 * progmodes/ld-script.el (ld-script-font-lock-keywords): Ditto.
8069
8070 * progmodes/ld-script.el (auto-mode-alist): Use \\> instead
8071 of $ for "\\.ld[s]?".
8072
8073 2006-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
8074
8075 * progmodes/tcl.el (tcl-indent-command): Use indent-for-tab-command.
8076 (tcl-indent-line): Return `noindent' if inside a string.
8077
8078 * progmodes/flymake.el (flymake-split-string): Remove more than one
8079 empty string at beg/end of the result.
8080 (flymake-find-buildfile, flymake-find-possible-master-files):
8081 Use expand-file-name.
8082 (flymake-fix-file-name): Don't replace \ with / and don't remove ./
8083 since expand-file-name does it for us. Use directory-file-name.
8084 (flymake-ler-get-full-file, flymake-ler-get-file, flymake-ler-get-line)
8085 (flymake-ler-get-type, flymake-ler-get-text)
8086 (flymake-ler-make-ler): Remove. Replace by defstruct. Update callers.
8087 (flymake-current-line-no): Remove spurious interactive spec.
8088 (flymake-delete-temp-directory): Remove unused var `slash-pos'.
8089 (flymake-check-include): Remove arg inc-path merged into inc-name.
8090 (flymake-check-patch-master-file-buffer): Fit in 80 columns.
8091 Arg regexp-list replaced by a simple regexp.
8092 (flymake-master-make-header-init, flymake-master-tex-init):
8093 Correspondingly replace regexp-list with a regexp. Fix regexp.
8094
8095 2006-01-10 Simon Josefsson <jas@extundo.com>
8096
8097 * mail/smtpmail.el (smtpmail-try-auth-methods): Add comment
8098 describing AUTH PLAIN fix.
8099
8100 2006-01-10 Thien-Thi Nguyen <ttn@gnu.org>
8101
8102 * mail/emacsbug.el (report-emacs-bug-text-prompt): Delete var.
8103 (report-emacs-bug): Don't record initial prompt text.
8104 Instead, add text properties to prompting text.
8105 (report-emacs-bug-hook): Delete prompting text.
8106
8107 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
8108
8109 * progmodes/flymake.el (flymake-find-buildfile): Remove invariant arg
8110 `dirs'. Adjust callers.
8111
8112 2006-01-09 John Paul Wallington <jpw@gnu.org>
8113
8114 * cus-edit.el (custom-comment) <defface>: Add TTY definitions.
8115
8116 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
8117
8118 * reveal.el (reveal-open-new-overlays): New extracted fun.
8119 (reveal-close-old-overlays): Idem. Check overlays's liveness before
8120 using them. Simplify the code.
8121 (reveal-post-command): Use them. Fix up obsolete windows in
8122 reveal-open-spots.
8123
8124 * progmodes/flymake.el: Use `require' rather than autoload for
8125 XEmacs's overlays.
8126 (flymake-get-common-file-prefix, flymake-build-relative-filename):
8127 Delete. Use file-relative-name instead.
8128 (flymake-get-syntax-check-program-args, flymake-perl-init):
8129 Simplify the resulting code.
8130
8131 * log-view.el (log-view-file-re, log-view-message-re): Add support
8132 for DaRCS output.
8133
8134 2006-01-09 Alex Schroeder <alex@gnu.org>
8135
8136 * mail/rmail.el (rmail-reply-regexp): Also ignore mailing list
8137 identifiers sometimes added in square brackets at the beginning of
8138 subject lines.
8139
8140 2006-01-07 Richard M. Stallman <rms@gnu.org>
8141
8142 * cus-edit.el (Custom-set, Custom-save): Doc fix.
8143 (Custom-reset-current, Custom-reset-saved): Change question text.
8144 (Custom-reset-standard): Likewise.
8145 (custom-variable-reset-saved): Doc fix.
8146
8147 2006-01-07 Eli Zaretskii <eliz@gnu.org>
8148
8149 * startup.el (init-file-user): Doc fix.
8150
8151 2006-01-07 Alex Schroeder <alex@gnu.org>
8152
8153 * mail/rmail.el (rmail-current-subject): New function.
8154 (rmail-current-subject-regexp): New function.
8155 (rmail-next-same-subject): Use it.
8156
8157 * mail/rmailsum.el (rmail-summary-by-topic):
8158 Use rmail-current-subject and rmail-current-subject-regexp.
8159 (rmail-summary-next-same-subject): Ditto.
8160
8161 * net/rcirc.el (rcirc-send-input): No longer check whether the
8162 process is open, since not all commands need an open process.
8163 (rcirc-send-string): Check whether the process is open before
8164 sending anything.
8165 (rcirc-ignore-list): New option.
8166 (rcirc-ignore-list-automatic): New variable.
8167 (rcirc-print): Take rcirc-ignore-list into account.
8168 (rcirc-cmd-ignore): New command.
8169 (rcirc-ignore-update-automatic): New function.
8170 (rcirc-handler-PART, rcirc-handler-QUIT): Use it to maintain the
8171 list if ignored nicks.
8172 (rcirc-handler-NICK): Ditto, and also ignore the new nick.
8173
8174 2006-01-06 David Reitter <david.reitter@gmail.com>
8175
8176 * mail/emacsbug.el (report-emacs-bug): Let explanations correctly
8177 reflect the address to which the report will be sent.
8178
8179 2006-01-06 Eli Zaretskii <eliz@gnu.org>
8180
8181 * progmodes/ld-script.el (auto-mode-alist): Recognize linker
8182 scripts whose file-name extensions are "\.x[bdsru]?[cn]?$".
8183
8184 2006-01-01 Michael Ernst <mernst@alum.mit.edu> (tiny changes)
8185
8186 * textmodes/tildify.el: Fix typos (misspellings) in the commentary.
8187
8188 * emacs-lisp/find-func.el (find-definition-noselect): Fix typo in
8189 the doc string: "functoin" => "function".
8190 * ldefs-boot.el: Likewise.
8191
8192 * textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
8193 message text: "Duplicat" => "Duplicate".
8194
8195 2006-01-06 Sven Joachim <svenjoac@gmx.de> (tiny change)
8196
8197 * files.el (basic-save-buffer-2): If backing-up failed, reset
8198 buffer-backed-up to nil.
8199
8200 2006-01-06 Nick Roberts <nickrob@snap.net.nz>
8201
8202 * progmodes/gud.el (gdb-script-skip-to-head)
8203 (gdb-script-calculate-indentation): Indent for breakpoint command
8204 lists also.
8205
8206 2006-01-05 Bill Wohler <wohler@newt.com>
8207
8208 * Makefile.in (compile-always): Add mh-autoloads dependency.
8209 (bootstrap): Remove mh-autoloads dependency, as compile dependency
8210 provides it.
8211 (updates): Remove mh-autoloads dependency, since it probably has
8212 already run recently (via recompile).
8213
8214 2006-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
8215
8216 * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
8217 argument `force' to disable the flyspell-last-buffer optimization.
8218 (flyspell-mode-on): Use it.
8219
8220 * progmodes/flymake.el (flymake-get-cleanup-function): Default to
8221 flymake-simple-cleanup.
8222 (flymake-allowed-file-name-masks): Use this new default.
8223 All the functions are now called in the right buffer rather than
8224 passing the buffer as argument.
8225 (flymake-process-sentinel): Switch to buffer before calling cleanup.
8226 (flymake-parse-err-lines): Remove redundant buffer arg.
8227 (flymake-get-program-dir): Comment out unused function.
8228 (flymake-start-syntax-check, flymake-start-syntax-check-process):
8229 Remove redundant buffer argument.
8230 (flymake-get-real-file-name, flymake-simple-java-cleanup)
8231 (flymake-simple-cleanup, flymake-master-cleanup): Remove buffer arg.
8232
8233 2006-01-05 Richard M. Stallman <rms@gnu.org>
8234
8235 * info.el (Info-find-node): Don't record previous node if have none.
8236 (info): Go to directory only if history is empty.
8237
8238 * simple.el (mark): Doc fix.
8239
8240 2006-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8241
8242 * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
8243 already of desired type.
8244 (mac-ae-list): Coerce parameter to "list" type.
8245 (mac-dispatch-apple-event): Replace cadr part of event with a
8246 dummy position so that event-start returns it.
8247
8248 2006-01-05 Carsten Dominik <dominik@science.uva.nl>
8249
8250 * textmodes/org.el (org-end-of-subtree): New function.
8251 (org-cycle, org-subtree-end-visible-p, org-scan-tags):
8252 Use `org-end-of-subtree'.
8253 (org-agenda, org-agenda-convert-date): Protect calls to
8254 `fit-window-to-buffer'.
8255 (org-tags-view): Force matching of sublevels when doing a
8256 todo-only search. Define the correct redo command, including the
8257 arguments.
8258 (org-agenda-redo): Display message.
8259 (org-check-for-org-mode): New function.
8260 (org-agenda-type): New variable.
8261 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
8262 Set `org-agenda-type'.
8263 (org-agenda-check-type): New function.
8264 (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
8265 (org-agenda-week-view, org-agenda-day-view)
8266 (org-agenda-next-date-line, org-agenda-previous-date-line)
8267 (org-agenda-log-mode, org-agenda-toggle-diary)
8268 (org-agenda-toggle-time-grid, org-agenda-date-later)
8269 (org-agenda-date-prompt, org-agenda-diary-entry)
8270 (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
8271 (org-agenda-convert-date, org-agenda-menu):
8272 Use `org-agenda-check-type'.
8273 (org-make-overlay, org-delete-overlay)
8274 (org-detatch-overlay, org-move-overlay, org-overlay-put):
8275 New compatibility functions.
8276 (org-calendar-select-mouse): New command.
8277
8278 2006-01-04 Chong Yidong <cyd@stupidchicken.com>
8279
8280 * cus-edit.el (Custom-reset-current, Custom-reset-saved)
8281 (Custom-reset-standard): Fix y-or-n-p messages.
8282 (custom-link): New face for links.
8283 (custom-buffer-create-internal, custom-manual): Use it.
8284 (custom-face-save): Push to theme-face before setting face spec.
8285
8286 * wid-edit.el (widget-default-mouse-face-get): New function.
8287 (widget-specify-button): Handle mouse-face like button-face.
8288
8289 * custom.el (load-theme): Clear old theme settings if reloading.
8290
8291 2006-01-03 Luc Teirlinck <teirllm@auburn.edu>
8292
8293 * cus-edit.el (custom-buffer-create-internal): Move whole buffer
8294 "Erase Customization" button back to same position it occupies in
8295 the individual State menus.
8296
8297 2006-01-04 Kim F. Storm <storm@cua.dk>
8298
8299 * wid-edit.el (key-sequence): Rework widget to read key binding
8300 using `kbd' syntax. Use C-q to insert literal key, event, or code.
8301 (widget-key-sequence-default-value): Default value for empty sequence.
8302 (widget-key-sequence-map): New map for reading key binding. Bind C-q.
8303 (widget-key-sequence-read-event): New command for C-q.
8304 (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
8305 (widget-key-sequence-value-to-external): New functions.
8306
8307 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
8308
8309 * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
8310 Use expand-file-name.
8311 (flymake-delete-temp-directory): Use expand-file-name,
8312 file-name-directory, and directory-file-name.
8313 (flymake-strrchr): Delete.
8314 (flymake-start-syntax-check): Don't pass the redundant buffer argument
8315 to the init-f function.
8316 (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
8317 (flymake-init-find-buildfile-dir)
8318 (flymake-init-create-temp-source-and-master-buffer-copy)
8319 (flymake-simple-make-init-impl, flymake-simple-make-init)
8320 (flymake-master-make-init, flymake-master-make-header-init)
8321 (flymake-simple-make-java-init, flymake-simple-ant-java-init)
8322 (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
8323 (flymake-xml-init): Remove corresponding redundant buffer argument.
8324 (flymake-allowed-file-name-masks): Remove last elems that are equal to
8325 the default anyway. Clean up regexps.
8326
8327 * progmodes/flymake.el (flymake-temp-source-file-name)
8328 (flymake-master-file-name, flymake-temp-master-file-name)
8329 (flymake-base-dir): New buffer-local vars.
8330 (flymake-buffer-data, flymake-get-buffer-value)
8331 (flymake-set-buffer-value): Replace those hash-tables by the new
8332 buffer-local vars. Update callers.
8333
8334 * progmodes/flymake.el (flymake-check-start-time)
8335 (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
8336 (flymake-last-change-time, flymake-new-err-info, flymake-timer):
8337 Move definition, so we can remove redundant earlier declaration.
8338 (flymake-replace-regexp-in-string, flymake-split-string)
8339 (flymake-get-temp-dir): Use defalias.
8340 (flymake-popup-menu): Remove `pos' argument. Use posn-at-point.
8341 (flymake-xemacs-window-edges): Remove unused function.
8342 (flymake-get-point-pixel-pos): Move.
8343 (flymake-pid-to-names, flymake-reg-names)
8344 (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
8345 Replace by a simple list flymake-processes and by process-buffer.
8346 Update callers. Other than simplify the code, it uses buffers rather
8347 than buffer-names so it doesn't get confused by uniquify.
8348 (flymake-buffer-data): The global value should just be nil.
8349
8350 * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
8351 Optimize the body of a defalias like any other code.
8352
8353 * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
8354 Make sure we've setup font-lock's vars. It may influence which
8355 function we then call.
8356 (font-lock-default-fontify-buffer): Don't bother calling set-defaults
8357 here since it's too late anyway.
8358
8359 2006-01-03 Romain Francoise <romain@orebokech.com>
8360
8361 * startup.el (fancy-splash-tail, normal-splash-screen):
8362 Update copyright year.
8363
8364 2006-01-02 J.D. Smith <jdsmith@as.arizona.edu>
8365
8366 * mouse.el (mouse-drag-track): Rename, from
8367 `mouse-drag-region-1'. Includes optional argument required to
8368 enable post-drag event processing (e.g. delete region keys).
8369 Can be used without this argument to track a mouse region and operate
8370 on it as soon as the drag completes.
8371 (mouse-drag-region): Use `mouse-drag-track'.
8372
8373 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
8374
8375 * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
8376 Move to `custom-buffer' group.
8377
8378 * cus-theme.el: Rewrite the Custom New Theme Mode interface.
8379 (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
8380 (custom-theme-insert-face-marker, custom-theme-variable-menu)
8381 (custom-theme-face-menu): New variables.
8382 (custom-theme-add-variable, custom-theme-variable-action)
8383 (custom-variable-reset-theme, custom-theme-delete-variable)
8384 (custom-face-reset-theme, custom-theme-face-action)
8385 (custom-theme-delete-face, custom-theme-merge-theme)
8386 (custom-theme-add-face, custom-theme-visit-theme): New functions.
8387
8388 2006-01-01 Chong Yidong <cyd@stupidchicken.com>
8389
8390 * custom.el: Move Custom Themes commentary to start of theme code.
8391 (custom-known-themes): Rename `standard' theme to `changed'.
8392 (custom-push-theme): Caller no longer specifies what theme to use
8393 when doing `reset'---the setting is simply removed from the theme.
8394 Delete MODE from `theme-value' and `theme-settings' properties.
8395 (custom-declare-theme): Ignore &rest args since we don't use them.
8396
8397 (custom-loaded-themes): Delete variable.
8398 (custom-theme-load-themes, custom-theme-loaded-p)
8399 (custom-theme-value): Delete functions.
8400
8401 (custom-declare-theme): Signal error on invalid theme names.
8402 (provide-theme): custom-loaded-themes was deleted.
8403 (load-theme): Load the file unconditionally.
8404 (enable-theme): Call `load-theme' if theme is undefined.
8405 (custom-enabled-themes): Only update value for successful loads.
8406 (disable-theme): Complete from enabled themes when interactive.
8407 (custom-variable-theme-value): Calculate theme value directly.
8408
8409 (custom-theme-reset-variables, custom-reset-variables): Mark as
8410 XEmacs compatibility functions. We don't actually use these.
8411
8412 * cus-edit.el (custom-variable-state-set):
8413 Use custom-variable-theme-value instead of custom-theme-value.
8414 (custom-face-state-set): Rename `standard' theme to `changed'.
8415 (custom-save-variables, custom-save-faces): Delete unneeded
8416 references to custom-reset-variables.
8417 (custom-save-resets): Delete function.
8418 (custom-save-variables, custom-save-faces): MODE argument deleted.
8419 (custom-save-variables, custom-save-faces): Ignore theme values.
8420
8421 * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
8422 compatibility function.
8423
8424 2006-01-01 Richard M. Stallman <rms@gnu.org>
8425
8426 * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
8427 (Custom-reset-current, Custom-reset-saved): Likewise.
8428 (Custom-reset-standard): Show message if aborted.
8429 (custom-mode): Doc fix, describing those commands.
8430
8431 * mouse.el (mouse-drag-region-1): When following link via mouse-2,
8432 put on event-kind property.
8433
8434 2005-12-31 Chong Yidong <cyd@stupidchicken.com>
8435
8436 * custom.el (provide-theme): Ban `user' theme name.
8437 (custom-enabling-themes): New variable.
8438 (enable-theme): Don't enable user if custom-enabling-themes is t.
8439 (custom-enabled-themes): Make it a defcustom.
8440 (custom-theme-recalc-face): No-op if face is undefined.
8441
8442 * cus-edit.el (custom-button-mouse): New variable.
8443 (custom-button-mouse): New face.
8444 (custom-raised-buttons, custom-mode): Use it.
8445
8446 * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
8447
8448 2005-12-31 Eli Zaretskii <eliz@gnu.org>
8449
8450 * progmodes/gud.el (gud-display-line): Support hl-line in the
8451 source buffer.
8452
8453 2005-12-31 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
8454
8455 * mouse.el (mouse-drag-window-above): Verify that the found window
8456 overlaps with the given window in the horizontal dimension.
8457
8458 2005-12-31 Eli Zaretskii <eliz@gnu.org>
8459
8460 * Makefile.in (cvs-update): New target.
8461
8462 * makefile.w32-in (cvs-update): Ditto.
8463
8464 2005-12-30 Chong Yidong <cyd@stupidchicken.com>
8465
8466 * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
8467 (custom-new-theme-mode-map): New variable.
8468
8469 2005-12-30 Richard M. Stallman <rms@gnu.org>
8470
8471 * custom.el (custom-load-themes): Function deleted.
8472
8473 * cus-edit.el (custom-save-loaded-themes): Function deleted.
8474 (custom-save-variables): Don't delete or add custom-load-themes call.
8475
8476 2005-12-30 Stefan Monnier <monnier@iro.umontreal.ca>
8477
8478 * cus-start.el: Add `visible-cursor'.
8479
8480 * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
8481 (flymake-parse-output-and-residual): Remove `source-buffer' argument.
8482 (flymake-process-filter): Switch to buffer before calling it instead.
8483 (flymake-post-syntax-check, flymake-highlight-err-lines)
8484 (flymake-delete-own-overlays, flymake-parse-err-lines)
8485 (flymake-start-syntax-check, flymake-start-syntax-check-process)
8486 (flymake-count-lines, flymake-parse-residual):
8487 Remove constant buffer argument.
8488 (flymake-start-syntax-check-for-current-buffer): Remove.
8489 Update callers to use flymake-start-syntax-check instead.
8490 (flymake-display-err-menu-for-current-line):
8491 Remove unused var `mouse-pos'.
8492 (flymake-restore-formatting): Comment out unused function.
8493 (flymake-report-status, flymake-report-fatal-status): Remove buffer
8494 argument, use current-buffer instead. Update callers.
8495
8496 2005-12-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8497
8498 * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
8499 buffer-local because choose-completion-delete-max-match requires
8500 that we set completion-ignore-case (i.e., binding via let is not
8501 sufficient).
8502 (bibtex-complete): Always set completion-ignore-case and
8503 choose-completion-string-functions. The latter is needed because
8504 choose-completion-string-functions keeps its value if we quit the
8505 *Completions* buffer without requesting a completion.
8506
8507 2005-12-30 Andreas Schwab <schwab@suse.de>
8508
8509 * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
8510
8511 2005-12-30 Eli Zaretskii <eliz@gnu.org>
8512
8513 * jit-lock.el (jit-lock-chunk-size): Doc fix.
8514
8515 2005-12-30 Juri Linkov <juri@jurta.org>
8516
8517 * locate.el (locate-fcodes-file, locate-header-face)
8518 * progmodes/delphi.el (delphi-other-face)
8519 * progmodes/glasses.el (glasses-face): Add tag "None" to const nil.
8520
8521 * paren.el (show-paren-match, show-paren-mismatch): Use existing
8522 group `paren-showing-faces'.
8523
8524 * net/goto-addr.el (goto-address-highlight-keymap): Fix docstring.
8525 (goto-address): Fix docstring.
8526
8527 * net/webjump.el (webjump-sample-sites): Update URLs.
8528
8529 * textmodes/fill.el (fill-single-word-nobreak-p): Use `sentence-end'.
8530
8531 * subr.el (cancel-change-group): Add listp around pending-undo-list.
8532
8533 2005-12-29 Stefan Monnier <monnier@iro.umontreal.ca>
8534
8535 * font-lock.el (font-lock-compile-keywords): Signal an error when
8536 font-lock-set-defaults hasn't been called.
8537
8538 2005-12-29 Luc Teirlinck <teirllm@auburn.edu>
8539
8540 * subr.el (noreturn, 1value): Doc fixes.
8541
8542 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8543
8544 * textmodes/bibtex.el (bibtex-text-in-field-bounds): Handle case
8545 that assoc-string returns nil.
8546
8547 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8548
8549 * textmodes/bibtex.el (bibtex-entry-type-whitespace)
8550 (bibtex-entry-type-str, bibtex-empty-field-re)
8551 (bibtex-search-backward-string, bibtex-preamble-prefix)
8552 (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Remove.
8553 (bibtex-any-valid-entry-type): New variable.
8554 (bibtex-parse-field-name): Simplify.
8555 (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key.
8556 (bibtex-preamble-prefix): Include left delimiter.
8557 (bibtex-search-forward-field, bibtex-search-backward-field):
8558 Allow unbounded search past entry boundaries (required by bibtex-pop).
8559 (bibtex-text-in-field-bounds): Use push.
8560 (bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
8561 (bibtex-parse-preamble, bibtex-valid-entry)
8562 (bibtex-beginning-first-field): New functions.
8563 (bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp.
8564 (bibtex-map-entries): Fix docstring.
8565 (bibtex-flash-head): New arg prompt. Simplify.
8566 (bibtex-enclosing-field): Include code of bibtex-inside-field.
8567 (bibtex-insert-kill): Simplify. Always insert text past the
8568 current field or entry.
8569 (bibtex-format-entry): Use bibtex-parse-field.
8570 (bibtex-pop): Use bibtex-beginning-of-entry and
8571 bibtex-end-of-entry to initiate the search. Insert empty field if
8572 we found ourselves.
8573 (bibtex-print-help-message): New args field and comma.
8574 Handle entry keys.
8575 (bibtex-make-field): Use bibtex-beginning-of-entry.
8576 (bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any
8577 invalid entry.
8578 (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
8579 Handle preambles. Simplify code for thorough test.
8580 (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
8581 New arg comma. Handle entry heads.
8582 (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
8583 (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
8584 New arg comma.
8585 (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
8586 (bibtex-fill-field): Simplify.
8587 (bibtex-fill-entry): Use bibtex-beginning-first-field and
8588 bibtex-parse-field.
8589 (bibtex-convert-alien): Do not wait before calling bibtex-validate.
8590 (bibtex-complete): Use bibtex-parse-preamble.
8591
8592 2005-12-29 Nick Roberts <nickrob@snap.net.nz>
8593
8594 * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1):
8595 Display name of expression instead of convenience variable.
8596 (gdb-post-prompt): Only call gdb-get-changed-registers if needed.
8597
8598 * progmodes/gud.el (gud-tooltip-dereference): Rename from
8599 toggle-gud-tooltip-dereference.
8600 (gud-tooltip-print-command): Move concatenation of "*" to expr to...
8601 (gud-tooltip-tips): ...here when dereferencing.
8602
8603 2005-12-28 Bill Wohler <wohler@newt.com>
8604
8605 * simple.el (mh-e-user-agent): Move to mh-e/mh-comp.el and autoload.
8606
8607 2005-12-28 Stefan Monnier <monnier@iro.umontreal.ca>
8608
8609 * vc.el (vc-annotate-display): Replace optional arg `color-map' with
8610 compulsory arg `ratio'. Inline body of vc-annotate-time-span.
8611 (vc-annotate-display-autoscale): Adjust call.
8612 (vc-annotate-display-default): Adjust call. Make arg compulsory.
8613 Fix interactive spec.
8614 (vc-annotate-time-span): Remove.
8615 (vc-annotate-oldest-in-map): Rename from vc-annotate-car-last-cons.
8616 (vc-annotate-mode-menu, vc-annotate-display-autoscale)
8617 (vc-annotate-display-select): Use new name.
8618
8619 * vc.el (vc-annotate-mode-map): Remove obsolete binding.
8620 (vc-annotate-mode-menu): Remove left-over redundant declaration.
8621 Correct the construction of span entries. Simplify.
8622 (vc-annotate-display-select): Fix the nil case.
8623 (vc-annotate): Remove obsolete (and now broken) code.
8624 (vc-annotate-extract-revision-at-line): Remove obsolete code.
8625 (vc-annotate-time-span): Remove unused arg `quantize'. Simplify.
8626
8627 2005-12-28 Luc Teirlinck <teirllm@auburn.edu>
8628
8629 * subr.el (lazy-completion-table): Correct typo in docstring.
8630
8631 * startup.el (command-line): Use `custom-reevaluate-setting' for
8632 `send-mail-function'.
8633
8634 * mail/sendmail.el (send-mail-function): Autoload the standard-value.
8635
8636 2005-12-05 Ralf Angeli <angeli@iwi.uni-sb.de>
8637
8638 * mail/smtpmail.el (smtpmail-try-auth-methods):
8639 Send credentials together with "AUTH PLAIN" command.
8640
8641 2005-12-27 Richard M. Stallman <rms@gnu.org>
8642
8643 * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
8644 mouse-2, go back to previously selected window, so it's selected
8645 when mouse-2 command runs.
8646
8647 2005-12-27 Juri Linkov <juri@jurta.org>
8648
8649 * descr-text.el (describe-text-sexp): Use square brackets for
8650 button [Show] to distinguish it from the property value `show'.
8651 (describe-property-list): Use `insert-text-button' with
8652 `help-face' type instead of putting face in quotes, because button
8653 is not created automatically for a list of faces.
8654 (describe-text-properties-1): Put button-type value in quotes to
8655 distinguish from plain text "button".
8656 (describe-char): Display code point values in hex. Don't use
8657 `symbol-name' for `current-input-method' because it is a string.
8658 Use `insert-text-button' with `help-face' type instead of putting
8659 hardcoded face in quotes, because button is not created automatically.
8660
8661 2005-12-27 Richard M. Stallman <rms@gnu.org>
8662
8663 * progmodes/glasses.el (glasses-face): More specific custom type.
8664
8665 * files.el (set-visited-file-name): Doc fix.
8666
8667 * textmodes/flyspell.el (flyspell-external-point-words):
8668 Use local var buffer-scan-pos to advance scan for next misspelling.
8669 Advance it only after we find the misspelling.
8670
8671 2005-12-27 Agustin Martin <agustin.martin@hispalinux.es>
8672
8673 * textmodes/flyspell.el (flyspell-external-point-words):
8674 New criteria for finding the misspelling in the buffer.
8675
8676 2005-12-27 Nick Roberts <nickrob@snap.net.nz>
8677
8678 * help-mode.el (help-insert-string): Set help-xref-stack-item
8679 rather than call help-setup-xref.
8680
8681 * descr-text.el (describe-char): Revert previous changes for
8682 optional buffer argument.
8683
8684 2005-12-27 Juri Linkov <juri@jurta.org>
8685
8686 * help-mode.el (help-insert-string): New function. Save buffer
8687 contents in cases where it is impossible to recompute the old contents.
8688
8689 * descr-text.el (describe-char): Set help-xref-stack-item
8690 explicitly after buffer has been generated.
8691
8692 2005-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8693
8694 * cus-start.el (all): Add x-gtk-show-hidden-files.
8695
8696 2005-12-26 Richard M. Stallman <rms@gnu.org>
8697
8698 * replace.el (perform-replace): Calculate match-again
8699 before skipping read-only matches.
8700
8701 * paren.el (paren-showing-faces): New group.
8702 (show-paren-match, show-paren-mismatch): Move to that group.
8703
8704 * button.el (button): Put into group `basic-faces'.
8705
8706 * progmodes/make-mode.el: Remove faces from group `faces'.
8707
8708 * apropos.el (apropos, apropos-value): Doc fix.
8709 (apropos-documentation): Doc fix.
8710
8711 2005-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
8712
8713 * subr.el (lazy-completion-table): Remove argument `args'.
8714
8715 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
8716 Don't use the `args' argument of lazy-completion-table.
8717
8718 2005-12-26 Nick Roberts <nickrob@snap.net.nz>
8719
8720 * descr-text.el (describe-char): Add optional argument for buffer.
8721 Set buffer appropriately. Call help-setup-xref.
8722 Suggested by Stefan Monnier.
8723
8724 2005-12-26 Juri Linkov <juri@jurta.org>
8725
8726 * descr-text.el: Require `help-fns' at runtime. Don't require
8727 `button' for byte compilation.
8728 (describe-text-widget): Add `help-echo' for first button.
8729 Use `help-info' for second.
8730 (describe-property-list): Use `help-argument-name' instead of `italic'.
8731 (describe-text-category): Add prompt to interactive spec.
8732 Call `help-setup-xref'.
8733 (describe-char): Use `help-character-set'. Add `help-echo' for
8734 code point. Use `help-input-method'. Remove superfluous insert.
8735
8736 2005-12-25 Richard M. Stallman <rms@gnu.org>
8737
8738 * progmodes/cc-defs.el (c-emacs-features): Do parse-partial-sexp
8739 at point, in case of narrowing.
8740
8741 * progmodes/delphi.el (delphi-other-face): Allow nil in type.
8742
8743 * locate.el (locate-header-face): Allow nil in type.
8744
8745 * progmodes/cpp.el (cpp-face-none-list): Use cpp-face instead of face.
8746
8747 2005-12-25 Romain Francoise <romain@orebokech.com>
8748
8749 * battery.el (battery-linux-proc-acpi): Also try
8750 `/proc/acpi/thermal_zone/THM0/temperature'.
8751
8752 2005-12-24 Chong Yidong <cyd@stupidchicken.com>
8753
8754 * custom.el (custom-push-theme): Fix docstring.
8755
8756 * cus-edit.el (custom-variable-set, custom-variable-save)
8757 (custom-variable-save): Custom-quote widget values.
8758 (customize-save-variable): Fix custom-push-theme call.
8759
8760 2005-12-24 Eli Zaretskii <eliz@gnu.org>
8761
8762 * w32-fns.el (w32-batch-update-autoloads): New function.
8763
8764 * makefile.w32-in (autoloads, $(lisp)/mh-e/mh-loaddefs.el):
8765 Use w32-batch-update-autoloads, and don't setq generated-autoload-file
8766 from the command line.
8767
8768 2005-12-23 Chong Yidong <cyd@stupidchicken.com>
8769
8770 * custom.el (custom-push-theme): Clarify docstring. VALUE nil for
8771 reset means to remove setting from theme entirely. Don't keep
8772 expanding theme-settings list; delete old entries if necessary.
8773
8774 * cus-edit.el (custom-buffer-create-internal): Move "Erase
8775 customization" button one line up.
8776 (custom-themed): New face.
8777 (custom-magic-alist): New value, THEMED, for theme settings.
8778 (custom-variable-state-set, custom-face-state-set):
8779 Check theme-value instead of saved-value.
8780 (custom-variable-reset-standard, custom-face-reset-standard):
8781 Remove theme setting entirely. Recalculate new values.
8782 (custom-variable-set, custom-variable-set)
8783 (custom-variable-reset-saved, custom-variable-reset-backup)
8784 (custom-face-set, custom-face-reset-saved): Update `user' theme.
8785 (custom-variable-save): Fix typos.
8786
8787 2005-12-23 Juri Linkov <juri@jurta.org>
8788
8789 * emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
8790 Add autoload cookies.
8791 (edebug-outside-d-c-i-n-s-w): New variable.
8792 (edebug-display, edebug-outside-excursion): Use it to save the
8793 original value of default-cursor-in-non-selected-windows.
8794 Set default-cursor-in-non-selected-windows to t while Edebug
8795 is active.
8796 (edebug-mode, edebug-eval-mode): Doc fix.
8797
8798 * mouse.el (mouse-choose-completion): Replace `buffer-substring'
8799 with `buffer-substring-no-properties' to remove common substring
8800 highlighting.
8801
8802 * info.el (info-other-window, info): Rename function argument
8803 `file' to `file-or-node'.
8804 (Info-complete-menu-item): Use local variable `complete-nodes' to
8805 keep the global value of `Info-complete-nodes' unchanged for
8806 subsequent completions.
8807 (info-tool-bar-map): Put `Info-index' icon just before `Info-search'.
8808
8809 * simple.el (get-next-valid-buffer, last-buffer)
8810 (next-error-buffer-p, next-error-find-buffer)
8811 (minibuffer-history-sexp-flag): Doc fix.
8812
8813 * savehist.el (savehist-mode-hook): Add `:group'.
8814
8815 * log-view.el: Call autoload for vc-find-version.
8816 (log-view-current-file): Adjust subgroup numbers.
8817 (log-view-current-tag): Add `length'.
8818
8819 2005-12-23 Richard M. Stallman <rms@gnu.org>
8820
8821 * vc.el (vc-annotate-car-last-cons): Defn moved up.
8822
8823 2005-12-23 Juri Linkov <juri@jurta.org>
8824
8825 * hi-lock.el (hi-lock-archaic-interface-message-used)
8826 (hi-lock-archaic-interface-deduce, hi-lock-mode): Doc fix.
8827 (hi-lock-mode): Display "Hi" in the mode line only when
8828 hi-lock-interactive-patterns or hi-lock-file-patterns is non-nil.
8829 (hi-lock-write-interactive-patterns):
8830 Use hi-lock-file-patterns-prefix instead of hard-coded "Hi-lock".
8831 (hi-lock-set-pattern, hi-lock-set-file-patterns)
8832 (hi-lock-font-lock-hook): Set 3rd arg `how' of
8833 font-lock-add-keywords to t.
8834
8835 2005-12-23 David Koppelman <koppel@ece.lsu.edu>
8836
8837 * hi-lock.el (hi-lock-highlight-range): New variable.
8838 (hi-lock-mode, hi-lock-unface-buffer): Call font-lock-fontify-buffer
8839 only if font-lock-fontified is non-nil. Remove overlays.
8840 (hi-lock-set-pattern): Call font-lock-fontify-buffer if
8841 font-lock-fontified is non-nil, otherwise use overlays (instead of
8842 text properties).
8843 (hi-lock-string-serialize-hash, hi-lock-string-serialize-serial):
8844 New variables.
8845 (hi-lock-string-serialize) New function.
8846
8847 2005-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8848
8849 * menu-bar.el (menu-find-file-existing): New function.
8850 (menu-bar-file-menu): Use menu-find-file-existing for Open.
8851
8852 * tool-bar.el (tool-bar-setup): Open changed to menu-find-file-existing.
8853
8854 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
8855
8856 * vc.el: Remove unnecessary leading * in docstrings.
8857 (vc-annotate-mode-map): Move initialization into declaration.
8858 (vc-static-header-alist): Nitpick on the regexp.
8859 (vc-default-init-version): New fun.
8860 (vc-register): Use it.
8861 (vc-insert-headers): Use dolist.
8862 (vc-annotate-get-backend): Remove unused function.
8863 (vc-annotate-add-menu): Remove. Build the menu directly at toplevel.
8864 (vc-annotate-mode): Remove corresponding call.
8865 (vc-annotate-car-last-cons): Simplify.
8866 (vc-annotate-buffers): Remove var.
8867 (vc-annotate-backend): Make it buffer-local.
8868 (vc-annotate): Move the interaction to the interactive spec.
8869 Add a `buf' argument.
8870 (vc-annotate-warp-version): Use this new `buf' argument to avoid
8871 killing&creating a vc-annotate buffer, which is very disruptive when
8872 the buffers are shown in dedicated frames.
8873
8874 2005-12-23 Nick Roberts <nickrob@snap.net.nz>
8875
8876 * descr-text.el: Add FSF as maintainer.
8877 (describe-text-mode, describe-text-mode-map)
8878 (describe-text-mode-hook, describe-text-done): Delete. Use normal
8879 help-mode.
8880 (describe-text-widget, describe-text-sexp)
8881 (describe-property-list, describe-text-category)
8882 (describe-text-properties, describe-text-properties-1)
8883 (describe-char): Use help buttons instead of widgets.
8884 (describe-char-unicodedata-file): Make URL link in doc string.
8885
8886 2005-12-22 Richard M. Stallman <rms@gnu.org>
8887
8888 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
8889 (custom-buffer-create-internal): Reword the top-of-buffer help intro.
8890 Don't include buttons that write a file when there's no file.
8891 (custom-variable-menu, custom-face-menu, custom-group-menu):
8892 Don't include commands that write a file when there's no file.
8893 (customize-browse): Reword the top-of-buffer help intro.
8894 (custom-buffer-create-internal): Fix previous change.
8895 (customize-changed-options-previous-release): Prev release is 21.1.
8896 (customize-changed-options): Doc fix.
8897 (customize-changed): New alias.
8898 (custom-reset-menu, custom-magic-alist, Custom-mode-menu):
8899 Say "standard values".
8900 (Custom-reset-standard): Doc fix.
8901 (custom-face-reset-standard): Doc fix.
8902
8903 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
8904
8905 * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
8906 even if font-lock-mode is non-nil since it may be t without having
8907 turned on font-lock-mode-internal.
8908 (font-lock-choose-keywords): Minor optimization.
8909 (font-lock-add-keywords, font-lock-remove-keywords)
8910 (font-lock-set-defaults): Don't call make-local-variable on a variable
8911 that we know to already be local.
8912
8913 2005-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
8914
8915 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't print progress
8916 messages if in the minibuffer.
8917
8918 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
8919
8920 * textmodes/flyspell.el (flyspell-check-word-p): Don't quote - in a RE.
8921 (tex-mode-flyspell-verify, flyspell-get-word)
8922 (flyspell-external-point-words): Don't use point-min/max uselessly.
8923
8924 * emacs-lisp/lisp.el (lisp-complete-symbol): Mostly undo the change
8925 by Kevin Rodgers. Instead, just hide the completions buffer if we
8926 don't need to show it.
8927
8928 2005-12-21 Luc Teirlinck <teirllm@auburn.edu>
8929
8930 * wid-edit.el (file, directory): Doc fixes for the `define-widget's.
8931
8932 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
8933
8934 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
8935 delete-windows-on with an inexistent buffer.
8936
8937 2005-12-22 Nick Roberts <nickrob@snap.net.nz>
8938
8939 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
8940 Delete defcustom variable :tag names.
8941
8942 2005-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
8943
8944 * log-view.el (log-view-file-re, log-view-message-re): Use shy groups.
8945 (log-view-font-lock-keywords): Ajust subgroup numbers.
8946 (log-view-current-tag): Don't hard code the number of subgroups.
8947
8948 2005-12-20 Juri Linkov <juri@jurta.org>
8949
8950 * tooltip.el (tooltip): Move defgroup before define-minor-mode.
8951 (tooltip-x-offset, tooltip-y-offset): Doc fix.
8952
8953 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
8954 (menu-bar-non-minibuffer-window-p): Instead of checking
8955 display-multi-frame-p, use selected-frame when menu-updating-frame
8956 is nil.
8957
8958 2005-12-20 Stuart Herring <herring@lanl.gov> (tiny change)
8959
8960 * align.el (align-rules-list): Use [ \t] instead of \s-
8961 for column separators in text mode.
8962
8963 2005-12-20 Nick Roberts <nickrob@snap.net.nz>
8964
8965 * help-mode.el (help-customize-variable, help-customize-face):
8966 Don't pop help-xref-stack as help-follow no longer pushes
8967 anything on to it.
8968
8969 2005-12-20 Carsten Dominik <dominik@science.uva.nl>
8970
8971 * textmodes/org.el (org-agenda-custom-commands): New option.
8972 (org-agenda): Offer custom commands on splash screen.
8973 (org-make-tags-matcher): Parser for Boolean logic added.
8974 (org-agenda-set-tags): New command.
8975 (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
8976 (org-set-tags): Efficiency improvements.
8977 (org-auto-align-tags): New option.
8978 (org-todo, org-demote, org-promote): Realign tags.
8979 (org-tags-completion-function): Use also "&" and "|" as separators.
8980 (org-org-menu): Agenda commands simplified.
8981
8982 2005-12-19 Luc Teirlinck <teirllm@auburn.edu>
8983
8984 * cus-edit.el (customize-apropos, customize-apropos-options):
8985 Docstring changes.
8986
8987 * font-lock.el (font-lock): Add tags to the links in the defgroup.
8988
8989 2005-12-19 Chong Yidong <cyd@stupidchicken.com>
8990
8991 * longlines.el (longlines-mode): Wrap while widened.
8992 (longlines-decode-region, longlines-encode-region): Compute max
8993 just once.
8994
8995 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8996
8997 * cus-edit.el (mac): New group.
8998
8999 * cus-start.el (all): Add user options in macterm.c. Add test for
9000 Mac-related built-ins. Fix test for GTK-related built-ins.
9001
9002 * term/mac-win.el (mac-handle-language-change)
9003 (mac-ae-open-documents, mac-ae-get-url, mac-services-open-file)
9004 (mac-services-open-selection, mac-services-mail-selection)
9005 (mac-services-mail-to, mac-services-insert-text)
9006 (mac-dispatch-apple-event): Add docstrings.
9007 (x-get-selection, mac-select-convert-to-string): Select coding
9008 system from `utf-16be' and `utf-16le' using `byteorder'.
9009
9010 2005-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
9011
9012 * subr.el (lazy-completion-table): Don't be fooled if the var holds
9013 a "list" (lambda ...) rather than a real completion list.
9014
9015 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
9016 lexical-let when encountering ((lambda (...) ...) ...).
9017
9018 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
9019
9020 * progmodes/sh-script.el (sh-mode):
9021 * language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
9022 * textmodes/picture.el (picture-mode): Update docstrings.
9023
9024 2005-12-17 Eli Zaretskii <eliz@gnu.org>
9025
9026 * makefile.w32-in (autoloads, custom-deps): Warn that parts of
9027 commands enclosed in $(ARGQUOTE)s should not be split between two
9028 lines, as that will break with GNU Make >3.80, when sh.exe is used
9029 and arg quoting is with '..'.
9030 (autoloads): Don't break the quoted --eval expression between
9031 several lines.
9032
9033 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
9034
9035 * emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
9036 Capture error from printing circular structures.
9037
9038 2005-12-17 Martin Rudalics <rudalics@gmx.at>
9039
9040 * wid-edit.el (widget-checkbox-action): Clear undo info.
9041
9042 2005-12-16 Bill Wohler <wohler@newt.com>
9043
9044 * menu-bar.el (kill-this-buffer): Set a good example by using menu
9045 bar, not menubar in comment.
9046
9047 2005-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
9048
9049 * progmodes/cc-engine.el (c-after-change-check-<>-operators):
9050 After-change-functions should not clobber the match data.
9051
9052 2005-12-16 Juri Linkov <juri@jurta.org>
9053
9054 * simple.el (choose-completion): Use `buffer-substring-no-properties'
9055 instead of `buffer-substring'.
9056 (completion-common-substring): Doc fix.
9057 (completion-setup-function): Use minibuffer-completion-contents
9058 instead of minibuffer-contents. Don't set common-string-length
9059 initially. Remove special handling of partial-completion-mode.
9060 Move computation of completion-base-size into one cond.
9061 Call completion-base-size-function in mainbuf. In computation of
9062 completion-base-size for file name completion don't move point to
9063 the end of the minibuffer. Move computation of common-string-length
9064 into one cond. Start putting faces only when common-string-length>=0.
9065 Add condition to put completions-common-part when
9066 common-string-length>0.
9067
9068 * complete.el (PC-do-completion): Remove `(equal (point) beg)' to
9069 place point at the first different character in the minibuffer
9070 even if this position is at the beginning of the minibuffer.
9071
9072 * info.el (Info-read-node-name-1): In completion-base-size-function's
9073 lambda return 1 if common-substring or minibuffer-completion-contents
9074 starts with (, and 0 otherwise.
9075
9076 * emacs-lisp/crm.el (crm-minibuffer-completion-help):
9077 Use `crm-current-element' for second arg of `display-completion-list'.
9078
9079 2005-12-16 Klaus Zeitler <kzeitler@lucent.com>
9080
9081 * files.el (set-auto-mode): Look for an interpreter specified on
9082 the first line also if search for mode specification succeeded,
9083 but the mode is not known.
9084
9085 2005-12-16 Carsten Dominik <dominik@science.uva.nl>
9086
9087 * textmodes/org.el (org-tags-match-list-sublevels): New option.
9088 (org-open-at-point): Implement tag searches as links.
9089 (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
9090 (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
9091 (org-tags-sparse-tree, org-tags-view, org-set-tags)
9092 (org-agenda-dispatch): New commands.
9093 (org-use-tag-inheritance, org-tags-column): New options.
9094 (org-tab-follows-link, org-return-follows-link): New options.
9095 (org-tags): New customize group.
9096 (org-start-icalendar-file): Get local time zone.
9097 (org-tags-completion-function): New function.
9098 (org-set-font-lock-defaults): Make sure links will also be
9099 highlighted inside headlines.
9100
9101 2005-12-16 Mark Plaksin <happy@usg.edu> (tiny change)
9102
9103 * term.el (term-emulate-terminal):
9104 Let term-handle-ansi-terminal-messages override what Bash says about
9105 its current directory.
9106
9107 2005-12-16 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
9108
9109 * bindings.el (last-buffer): Move to simple.el.
9110 * simple.el (last-buffer): Move here.
9111 (get-next-valid-buffer): New function.
9112 (next-buffer): Use frame-local buffer list, maintain buried buffer list.
9113 (prev-buffer): Ditto. Rename to `previous-buffer'.
9114
9115 * menu-bar.el (menu-bar-update-buffers): Update uses of `prev-buffer'.
9116 * bindings.el (global-map): Ditto.
9117
9118 2005-12-15 Luc Teirlinck <teirllm@auburn.edu>
9119
9120 * cus-edit.el: Introductory comment change.
9121 (custom-magic-alist): Change message string for the `rogue' state.
9122
9123 2005-12-15 Richard M. Stallman <rms@gnu.org>
9124
9125 * tooltip.el: Delete defcustom variable :tag names.
9126
9127 * complete.el (partial-completion-mode): Doc fix.
9128
9129 * textmodes/flyspell.el (flyspell-external-point-words):
9130 Use save-excursion to ensure we don't move backward in the
9131 search loop, not even one character.
9132 (flyspell-delete-all-overlays): Use remove-overlays directly.
9133
9134 * textmodes/ispell.el (ispell-current-personal-dictionary): New var.
9135 (ispell-start-process): Set that variable.
9136 Clear ispell-buffer-local-name.
9137 (ispell-internal-change-dictionary):
9138 Set ispell-current-dictionary after killing process.
9139 (ispell-buffer-local-dict):
9140 Don't set spell-personal-dictionary after killing process.
9141 (ispell-buffer-local-words): Don't clear out ispell-buffer-local-name.
9142 (ispell-tex-skip-alists, ispell-html-skip-alists)
9143 (ispell-skip-region-alist): Mark as risky.
9144
9145 * net/newsticker.el (newsticker--retrieval-timer-list)
9146 (newsticker--display-timer, newsticker-running-p)
9147 (newsticker-ticker-running-p): Definitions moved up.
9148
9149 2005-12-16 Nick Roberts <nickrob@snap.net.nz>
9150
9151 * progmodes/gdb-ui.el (gdb-many-windows): Echo new state in minibuffer.
9152
9153 2005-12-15 David Ponce <david@dponce.com>
9154
9155 * recentf.el (recentf-dialog-goto-first): Fix missing error condition.
9156 (recentf-edit-list, recentf-open-files): Signal an error when
9157 there is no recent file.
9158
9159 2005-12-14 Lennart Borgman <lennart.borgman.073@student.lu.se>
9160
9161 * textmodes/texinfmt.el (texinfo-format-region): Set buffer to
9162 read-only except for texinfo-format-region evaluation.
9163
9164 2005-12-14 Richard M. Stallman <rms@gnu.org>
9165
9166 * vc.el (vc-default-previous-version, vc-default-next-version)
9167 (vc-do-command): Doc fixes.
9168
9169 2005-12-14 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9170
9171 * textmodes/bibtex.el (bibtex-expand-strings)
9172 (bibtex-autokey-expand-string, bibtex-name-part)
9173 (bibtex-entry-type-whitespace, bibtex-entry-type-str)
9174 (bibtex-any-entry-maybe-empty-head, bibtex-string-type)
9175 (bibtex-preamble-prefix, bibtex-string-empty-key): New variables.
9176 (bibtex-entry-type, bibtex-entry-head): Match only valid entries.
9177 (bibtex-entry-postfix, bibtex-known-entry-type-re)
9178 (bibtex-valid-entry-re, bibtex-any-valid-entry-re)
9179 (bibtex-valid-entry-whitespace-re, bibtex-empty-field-re)
9180 (bibtex-field-name-for-parsing, bibtex-remove-delimiters-string)
9181 (bibtex-beginning-of-last-entry): Remove.
9182 (bibtex-parse-field-name): Use bibtex-field-name. Issue error
9183 message if comma is missing but buffer is read-only.
9184 (bibtex-parse-field-text): Handle whitespaces at the end of field
9185 text. Return 3-element list with beginning and end of field text
9186 and end of field.
9187 (bibtex-end-of-text-in-field, bibtex-end-of-field): Change accordingly.
9188 (bibtex-parse-field): Remove arg name. Use bibtex-field-name.
9189 (bibtex-search-forward-field, bibtex-search-backward-field):
9190 Search always delimited by limits of entry. Use more efficient
9191 search algorithms.
9192 (bibtex-name-in-field): Use bibtex-start-of-name-in-field and
9193 bibtex-end-of-name-in-field.
9194 (bibtex-text-in-field-bounds): Handle BibTeX strings when
9195 extracting the content of a field.
9196 (bibtex-text-in-field): Use search limits.
9197 (bibtex-parse-string-prefix): Handle empty string keys based on
9198 bibtex-string-empty-key.
9199 (bibtex-parse-string): Fix docstring.
9200 (bibtex-text-in-string): Use bibtex-text-in-field-bounds.
9201 (bibtex-preamble-prefix, bibtex-strings): New functions.
9202 (bibtex-skip-to-valid-entry): Include preceding whitespace in
9203 BibTeX entries (consistent with other BibTeX functions).
9204 (bibtex-map-entries): Use bibtex-skip-to-valid-entry.
9205 (bibtex-search-entry): Fix docstring. Simplify.
9206 (bibtex-flash-head, bibtex-complete-string-cleanup)
9207 (bibtex-count-entries, bibtex-sort-buffer): Simplify.
9208 (bibtex-beginning-of-first-entry): Use bibtex-skip-to-valid-entry.
9209 (bibtex-parse-entry): New optional arg content.
9210 (bibtex-format-entry, bibtex-autofill-entry, bibtex-url): Use it.
9211 Use bibtex-text-in-field-bounds.
9212 (bibtex-print-help-message): Handle BibTeX strings and preambles.
9213 (bibtex-end-of-entry): Use bibtex-preamble-prefix and
9214 bibtex-parse-string-postfix.
9215 (bibtex-find-text-internal): New function.
9216 (bibtex-remove-delimiters): Use it.
9217 (bibtex-find-text): Use it. New optional arg help.
9218 (bibtex-complete): Handle BibTeX string and preamble entries.
9219 (bibtex-Preamble): Fix order of closing delimiters.
9220
9221 2005-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
9222
9223 * vc.el (vc-default-revert): New fun.
9224
9225 * vc-mcvs.el (vc-mcvs-revert): Fix call to vc-default-revert.
9226
9227 2005-12-14 Romain Francoise <romain@orebokech.com>
9228
9229 * font-lock.el (font-lock-keywords-alist): Rename `append' to `how'.
9230 (font-lock-add-keywords, font-lock-update-removed-keyword-alist):
9231 (font-lock-remove-keywords): Likewise.
9232
9233 2005-12-14 Juri Linkov <juri@jurta.org>
9234
9235 * log-view.el (log-view-diff): Doc fix.
9236
9237 * isearch.el (isearch-query-replace): Use (mark) instead of
9238 isearch-opoint if mark is active in transient-mark-mode.
9239
9240 2005-12-14 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
9241
9242 * isearch.el (isearch-query-replace): Check for isearch-other-end.
9243
9244 2005-12-14 Per Abrahamsen <abraham@dina.kvl.dk>
9245
9246 * progmodes/cpp.el (cpp-face): New widget.
9247 (cpp-known-face, cpp-unknown-face, cpp-edit-list): Use it.
9248
9249 2005-12-14 Juri Linkov <juri@jurta.org>
9250
9251 * help-macro.el (make-help-screen): Bind `inhibit-read-only' to t
9252 around `erase-buffer' and `insert'.
9253
9254 * descr-text.el (describe-text-properties): Replace buffer name
9255 "*Help-2*" with "*Help*<2>".
9256 (describe-char): Add functions print-help-return-message,
9257 toggle-read-only. Use help-setup-xref with nil to not store
9258 describe-char in help-xref-stack. Use help-make-xrefs to
9259 make [back] button.
9260
9261 * desktop.el (desktop-minor-mode-table): Add vc-dired-mode with nil.
9262
9263 * wdired.el (wdired-old-point): New internal variable.
9264 (wdired-change-to-wdired-mode): Set it buffer-locally.
9265 (wdired-abort-changes): Restore point after aborting changes.
9266
9267 2005-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
9268
9269 * vc.el (vc-do-command): Add a new value t for okstatus.
9270
9271 * vc-svn.el (vc-svn-registered): Use it to avoid popping up a spurious
9272 frame in case of errors.
9273
9274 2005-12-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9275
9276 * menu-bar.el (menu-bar-showhide-fringe-menu): Move "On the Right"
9277 so it comes after "On the Left" in the menu.
9278
9279 2005-12-12 Luc Teirlinck <teirllm@auburn.edu>
9280
9281 * cus-edit.el (customize-apropos, customize-apropos-options)
9282 (customize-apropos-faces, customize-apropos-groups): Doc fixes.
9283
9284 2005-12-12 Bill Wohler <wohler@newt.com>
9285
9286 * vc-svn.el (vc-svn-registered): Fix problem of visiting
9287 non-writable Subversion-controlled files by saving window
9288 configuration before calling vc-do-command. vc-do-command calls
9289 pop-to-buffer on error which is unexpected during registration.
9290
9291 2005-12-12 Jay Belanger <belanger@truman.edu>
9292
9293 * calc/README: Update the summary of changes.
9294
9295 2005-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
9296
9297 * descr-text.el (describe-char): Rework last fix to solve the problem
9298 is the same way it's solved for everything else in that function
9299 (i.e. by extracting the info before setting up the *Help* buffer).
9300
9301 2005-12-12 Kim F. Storm <storm@cua.dk>
9302
9303 * subr.el (version-regexp-alist): Allow space as separator before
9304 non-numeric part, e.g. "1.0 alpha".
9305 (version-to-list): Interpret .X.Y version as 0.X.Y version.
9306
9307 2005-12-12 Carsten Dominik <dominik@science.uva.nl>
9308
9309 * textmodes/org.el (org-agenda, org-timeline, org-todo):
9310 Implement Logging and the keep-modes setting.
9311 (org-get-category): Make sure a string is returned.
9312 (org-log-done): New function.
9313 (org-log-done, org-closed-string): New options.
9314
9315 2005-12-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9316
9317 * tooltip.el (tooltip-y-offset): Change default to 20.
9318
9319 2005-12-12 Richard M. Stallman <rms@gnu.org>
9320
9321 * mouse.el (mouse-drag-vertical-line): Use adjust-window-trailing-edge.
9322
9323 * frame.el (display-hourglass): Doc fix.
9324
9325 * help.el (help-for-help-internal): Simplify entry for `a'.
9326
9327 * info.el (Info-on-current-buffer): Doc fix.
9328 (info-insert-file-contents): Don't test (featurep 'jka-compr).
9329
9330 * startup.el (inhibit-splash-screen): Make this the real name.
9331 (inhibit-startup-message): Make this the alias.
9332 (command-line): Find only simple.el, and use its directory
9333 to fill in other preloaded files' names.
9334 (command-line): Deactivate the mark if deactivate-mark is set.
9335
9336 * international/mule.el (load-with-code-conversion):
9337 Bind deactivate-mark.
9338
9339 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
9340
9341 2005-12-11 Luc Teirlinck <teirllm@auburn.edu>
9342
9343 * cus-edit.el (customize-apropos): Avoid listing an option more
9344 than once under different aliases. No longer list user options
9345 that are not defined with defcustom (unless a prefix arg is given).
9346 Doc fix.
9347 (customize-apropos-options): Doc fix.
9348
9349 2005-12-11 Juri Linkov <juri@jurta.org>
9350
9351 * frame.el (set-background-color, set-foreground-color)
9352 (set-cursor-color, set-mouse-color, set-border-color):
9353 Add explicit prompts to read colors by `facemenu-read-color'.
9354 (show-trailing-whitespace, blink-cursor-delay)
9355 (blink-cursor-interval, display-hourglass, hourglass-delay):
9356 Remove tags.
9357 (display-hourglass, hourglass-delay): Doc fix.
9358 (cursor-in-non-selected-windows): Capitalize words in tag.
9359
9360 * faces.el (frame-background-mode): Replace `choice-item' keywords
9361 with `const' to not make [default] button. Change default value tag
9362 from `default' to `automatic'. Doc fix.
9363 (trailing-whitespace) <defface>: Change group `whitespace' to
9364 `whitespace-faces'.
9365
9366 2005-12-11 Richard M. Stallman <rms@gnu.org>
9367
9368 * buff-menu.el (Buffer-menu-sort-column): Not a user variable.
9369
9370 2005-12-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9371
9372 * term/mac-win.el: Create keymap for mac-apple-event-map.
9373
9374 2005-12-11 Nick Roberts <nickrob@snap.net.nz>
9375
9376 * tooltip.el (tooltip-mode): Move to start of file so that it
9377 appears at top of customize buffer.
9378
9379 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
9380 Add the gud groupname.
9381 (gud-tooltip-mode): Add the tooltip groupname.
9382 (gud-tooltip-echo-area): Add the gud groupname. Remove tag to
9383 avoid conflict with tooltip-use-echo-area.
9384
9385 2005-12-10 Romain Francoise <romain@orebokech.com>
9386
9387 * help.el (help-for-help-internal): Add `r' in doc string.
9388
9389 2005-12-10 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
9390
9391 * align.el (align-regexp, align-highlight-rule):
9392 Use region-beginning and region-end instead of point and mark, so that
9393 repetition (with `repeat-complex-command') recomputes the region
9394 bounds.
9395
9396 2005-12-10 Lennart Borgman <lennart.borgman.073@student.lu.se>
9397
9398 * window.el (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
9399 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
9400 (bw-refresh-edges, bw-adjust-window, bw-balance-sub): New functions.
9401 (balance-windows): Rewrite using the above new functions.
9402
9403 2005-12-10 David Koppelman <koppel@ece.lsu.edu>
9404
9405 * hi-lock.el (hi-lock-mode): Rename from hi-lock-buffer-mode;
9406 react if global-hi-lock-mode seems intended.
9407 (global-hi-lock-mode) Renamed from hi-lock-mode.
9408 (hi-lock-archaic-interface-message-used)
9409 (hi-lock-archaic-interface-deduce): New variables.
9410 (turn-on-hi-lock-if-enabled, hi-lock-line-face-buffer)
9411 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
9412 (hi-lock-find-patterns, hi-lock-font-lock-hook):
9413 Replace hi-lock-buffer-mode with hi-lock-mode.
9414
9415 2005-12-10 Kevin Rodgers <ihs_4664@yahoo.com>
9416
9417 * emacs-lisp/lisp.el (lisp-complete-symbol): Regenerate the
9418 completion list, even after a partial completion has been
9419 inserted in the current buffer. If there are more than 1
9420 completion, redisplay the *Completions* buffer; if the
9421 completion is unique, delete the *Completions* window.
9422
9423 2005-12-10 Eli Zaretskii <eliz@gnu.org>
9424
9425 * mail/rmail.el (rmail-next-same-subject): Handle multiple "Re: "
9426 strings and long subject lines that were broken into multiple
9427 lines at arbitrary places. Handle subjects that have "Re: " in
9428 the middle.
9429
9430 2005-12-10 John W. Eaton <jwe@octave.org>
9431
9432 * emacs/octave-mod.el (octave-electric-space): Don't indent
9433 comments or strings if octave-auto-indent is nil.
9434
9435 2005-12-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9436
9437 * term/mac-win.el: Require url when compiling.
9438 Call mac-process-deferred-apple-events after loading init files.
9439 (mac-apple-event-map): New defvar. Define event handlers in it.
9440 (core-event, internet-event): New Apple event class symbols.
9441 (open-application, reopen-application, open-documents)
9442 (print-documents, open-contents, quit-application)
9443 (application-died, show-preferences, autosave-now, get-url):
9444 New Apple event ID symbols.
9445 (about): New HICommand ID symbol.
9446 (mac-event-spec, mac-event-ae): New macros.
9447 (mac-ae-parameter, mac-ae-list, mac-bytes-to-integer)
9448 (mac-ae-selection-range, mac-ae-text-for-search)
9449 (mac-ae-open-documents, mac-ae-text, mac-ae-get-url): New functions.
9450 (mac-application-menu-map): Remove keymap. Handlers for HICommand
9451 and Services menu events are now defined in mac-apple-event-map.
9452 (mac-drag-n-drop): Remove selection range handling.
9453
9454 2005-12-10 Kenichi Handa <handa@m17n.org>
9455
9456 * simple.el (zap-to-char):
9457 * isearch.el (isearch-process-search-char): Translate CHAR by
9458 translation-table-for-input.
9459
9460 2005-12-09 Chong Yidong <cyd@stupidchicken.com>
9461
9462 * foldout.el (foldout-exit-fold): Properly hide subtree.
9463
9464 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
9465
9466 * files.el (save-buffer):
9467 * international/ucs-tables.el (ucs-set-table-for-input):
9468 * mail/mail-extr.el (mail-extract-address-components):
9469 * mail/sendmail.el (mail-mode): Reformat doc string.
9470
9471 2005-12-09 Juri Linkov <juri@jurta.org>
9472
9473 * isearch.el (isearch-highlight): Change main overlay priority
9474 from 1 to 1001. Simplify.
9475 (isearch-lazy-highlight-update): Change lazy overlay priority
9476 from 0 to 1000.
9477
9478 * replace.el (replace-highlight): Change overlay priority from
9479 1 to 1001.
9480
9481 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
9482 Change overlay priority from 1 to 1001. Reuse existing overlay.
9483
9484 * compare-w.el (compare-windows-highlight): Change overlay
9485 priority from 1 to 1000.
9486
9487 * menu-bar.el (menu-bar-edit-menu): Add listp around
9488 pending-undo-list to disable menu item "undo" when pending
9489 undo list is empty.
9490
9491 * locate.el (locate): Disable undo in *Locate* buffer.
9492
9493 2005-12-09 Kim F. Storm <storm@cua.dk>
9494
9495 * mail/smtpmail.el (smtpmail-via-smtp): Disable undo in SMTP buffer.
9496
9497 2005-12-09 David Ponce <david@dponce.com>
9498
9499 * recentf.el: Improvement of the menu code.
9500 (recentf-enabled-p): Move before first use. Use `kill-emacs-hook'
9501 instead of menu hook.
9502 (recentf-show-menu, recentf-hide-menu): New functions.
9503 (recentf-menu-customization-changed, recentf-mode): Use them.
9504 (recentf-menu-action, recentf-max-menu-items)
9505 (recentf-menu-open-all-flag, recentf-menu-append-commands-flag)
9506 (recentf-arrange-by-rule-others)
9507 (recentf-arrange-by-rules-min-items)
9508 (recentf-arrange-by-rule-subfilter) : Don't use
9509 `recentf-menu-customization-changed'.
9510 (recentf-arrange-rules): Likewise. Accept functions to compute
9511 sub-menu titles.
9512 (recentf-menu-filter): Likewise. Doc fix.
9513 (recentf-menu-value-shortcut): Doc fix.
9514 (recentf-dump-variable): Quote atom value.
9515 (recentf-make-menu-items): Update to use it as a menu filter.
9516 (recentf-match-rule): New function.
9517 (recentf-arrange-by-rule): Use it.
9518 (recentf-indirect-mode-rule): New function.
9519 (recentf-build-mode-rules): Use it.
9520 (recentf-dir-rule): New function.
9521 (recentf-arrange-by-dir): Use it.
9522 (recentf-filter-changer-current): Rename from
9523 `recentf-filter-changer-state'. All references updated.
9524 (recentf-filter-changer-alist): Update filter names.
9525 (recentf-filter-changer-select): New function.
9526 (recentf-filter-changer): Use it. Make a sub-menu from filters
9527 available in `recentf-filter-changer-alist'.
9528 (recentf-data-cache, recentf-clear-data)
9529 (recentf-update-menu): Remove. All references updated.
9530 (recentf-match-rule-p, recentf-build-dir-rules)
9531 (recentf-filter-changer-goto-next)
9532 (recentf-filter-changer-get-current)
9533 (recentf-filter-changer-get-next): Remove.
9534
9535 2005-12-08 Luc Teirlinck <teirllm@auburn.edu>
9536
9537 * cus-edit.el (custom-buffer-create-internal): Relabel the whole
9538 buffer "Reset" button to "Reset to Current" for consistency with
9539 the State buttons.
9540
9541 2005-12-08 John Paul Wallington <jpw@pobox.com>
9542
9543 * ibuf-ext.el (define-ibuffer-filter filename):
9544 If `dired-directory' is a list then really use its car.
9545
9546 2005-12-08 Kim F. Storm <storm@cua.dk>
9547
9548 * emulation/cua-rect.el (cua--rectangle-aux-replace):
9549 Fix indention of text on right side of replaced rectangle.
9550
9551 2005-12-09 Nick Roberts <nickrob@snap.net.nz>
9552
9553 * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
9554 No need to check gud-comint-buffer is bound.
9555 (gdb): Prevent multiple debugging when first session uses gdba.
9556
9557 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9558
9559 CC Mode update to 5.31.
9560
9561 * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
9562 Emacsen which lack `define-minor-mode'. (Currently Emacs <21.
9563 We might do this function properly in the future).
9564
9565 * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el:
9566 New macros c-sentence-end and c-default-value-sentence end, to cope
9567 with Emacs 22's new function `sentence-end'.
9568
9569 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9570
9571 * progmodes/cc-cmds.el (c-show-syntactic-information): Solve the
9572 compat issue using `c-put-overlay' and `c-delete-overlay'.
9573
9574 * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay):
9575 New compat macros to handle overlays/extents.
9576
9577 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9578
9579 * progmodes/cc-fix.el: Add definitions of the macros push and pop
9580 (for GNU Emacs 20.4)
9581
9582 * progmodes/cc-defs.el:
9583 (i) Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4)
9584
9585 * progmodes/cc-cmds.el (c-show-syntactic-information): Change the
9586 highlighting mechanism so it will work in XEmacs too.
9587
9588 * progmodes/cc-defs.el: Insert c-int-to-char.
9589
9590 * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
9591 call to the new macro c-int-to-char. This solves XEmacs's
9592 regarding characters as different from integers.
9593
9594 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9595
9596 * progmodes/cc-fonts.el (c-make-syntactic-matcher):
9597 New internal helper.
9598
9599 (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
9600 construct to make the indirect face lookup work in XEmacs.
9601
9602 (c-cpp-matchers): Append the negation char face to the existing
9603 fontification, so that the cpp face doesn't disappear.
9604 Use `c-make-syntactic-matcher' to avoid negation chars in comments
9605 and strings.
9606
9607 * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
9608 to map to `font-lock-negation-char-face' in emacsen where it exists.
9609
9610 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9611
9612 * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
9613
9614 * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el:
9615 Rename "c-subword-move-mode" as "c-subword-mode".
9616
9617 * progmodes/cc-mode.el: Added tty suitable bindings for C-c
9618 <delete> and C-c C-<delete>. (To the c-hungry- delete functions).
9619
9620 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9621
9622 * progmodes/cc-mode.el: Added autoload directive for
9623 `c-subword-move-mode' for use in older emacsen.
9624
9625 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9626
9627 * progmodes/cc-mode.el:
9628 (i) Insert a binding for C-c C-backspace into
9629 c-bind-special-erase-keys which works in TTYs.
9630 (ii) Make sure that when file styles are used, any explicitly
9631 given style variables take priority over those in the style.
9632 Do this by calling `hack-local-variables' a second time.
9633
9634 * progmodes/cc-vars.el: Add language specific customization
9635 widgets for AWK to c-doc-comment-style, c-require-final-newline
9636 and c-default-style. Add a defcustom for awk-mode-hook.
9637 Give c-syntactic-element and c-syntactic-context doc-strings by
9638 directly setting their `variable-documentation' propery.
9639 This allows Emacs 22.1 to read these with C-h v.
9640
9641 * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan Monnier).
9642
9643 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9644
9645 * progmodes/cc-fonts.el, cc-vars.el
9646 (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection)
9647 (gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
9648 Masatake YAMATO.
9649
9650 (c-doc-comment-style): Made GtkDoc default in C mode.
9651
9652 * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
9653 and C-c C-<delete>.
9654
9655 (c-bind-special-erase-keys): New function for use on
9656 `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
9657
9658 * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
9659 <delete> key behavior in XEmacs according to `delete-forward-p'.
9660 C.f. `c-electric-delete'.
9661
9662 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9663
9664 * progmodes/cc-mode.el: Give c-hungry-backspace and
9665 c-hungry-delete-forward permanent key bindings.
9666
9667 * progmodes/cc-cmds.el (c-electric-semi&comma):
9668 Bind c-syntactic-context for calls to "criteria functions", for
9669 consistency with other calls to user functions.
9670
9671 * progmodes/cc-cmds.el (c-indent-command): Expunge use of
9672 `current-prefix-arg', since this might be the prefix arg to a
9673 command which calls c-indent-command as a function. Change the
9674 interactive spec from "p" to "P".
9675
9676 * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
9677 reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
9678 was difficult to understand.
9679
9680 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9681
9682 * progmodes/cc-engine.el (c-on-identifier): Fix bug when at the
9683 first char of an identifier.
9684
9685 * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
9686 +" syntax in C++.
9687
9688 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9689
9690 * progmodes/cc-cmds.el (c-mask-paragraph): Correct, so that
9691 auto-fill doesn't split a c-comment's last word from a hanging
9692 "*/" when a space is typed between them after fill-column.
9693
9694 * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
9695
9696 * progmodes/cc-styles.el (c-set-style)
9697 (c-setup-paragraph-variables): Abort the command if we're not in a
9698 CC Mode buffer.
9699
9700 * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
9701 with blank comment-prefix, and a blank line as the comment's
9702 second line.
9703
9704 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9705
9706 * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
9707 Incorporate the patterns added in the Emacs development branch
9708 for the new Emacs 22 face `font-lock-negation-char-face'.
9709
9710 * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
9711 of "red" since it stands out better in xterms and DOS terminals.
9712
9713 * progmodes/cc-engine.el (c-literal-faces):
9714 Add `font-lock-comment-delimiter-face' which is new in Emacs 22.
9715
9716 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9717
9718 * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
9719 forcibly enable c-electric-flag.
9720
9721 * progmodes/cc-vars.el, cc-cmds.el: New clean-up
9722 `comment-close-slash' on c-electric-slash: if enabled, typing `/' just
9723 after the comment-prefix of a C-style comment will close that comment.
9724
9725 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9726
9727 * progmodes/cc-fonts.el (c-basic-matchers-before)
9728 (c-complex-decl-matchers): Fix the "not-arrow-prefix" regexp used
9729 in Pike.
9730
9731 * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
9732 digraphs.
9733
9734 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
9735 (c-cpp-message-directives, c-cpp-include-directives)
9736 (c-opt-cpp-macro-define, c-opt-cpp-macro-define-start)
9737 (c-cpp-expr-directives): Introduce new language constants to
9738 control cpp syntax in a cleaner way.
9739
9740 (c-cpp-expr-functions): Rename from c-cpp-defined-fns.
9741
9742 (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
9743
9744 * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines)
9745 (c-multiline-string-start-char): New language constants and
9746 variables to specify how newlines in string literals work.
9747
9748 (c-font-lock-invalid-string): Use them.
9749
9750 * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
9751 unbalanced close brace is entered. Optimization by avoiding going
9752 back over arbitrarily large blocks. Removed hints that this
9753 function only would be relevant/useful in AWK.
9754
9755 (c-electric-brace): Indent syntactically after the cleanups since
9756 lineup functions might do it differently then.
9757
9758 * progmodes/cc-engine.el, cc-langs.el
9759 (c-opt-op-identifier-prefix): New language constant and variable.
9760
9761 (c-just-after-func-arglist-p, c-after-special-operator-id)
9762 (c-search-decl-header-end, c-inside-bracelist-p): Use it.
9763
9764 * progmodes/cc-align.el, cc-engine.el
9765 (c-after-special-operator-id): New helper to handle C++ operator
9766 identifiers.
9767
9768 (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p)
9769 (c-guess-basic-syntax): Handle C++ operator identifiers in
9770 declarations.
9771
9772 * progmodes/cc-langs.el (c-assignment-operators): Add the
9773 trigraph version of ^= too.
9774
9775 * progmodes/cc-langs.el (c-assignment-operators): Add the
9776 trigraph version of |= in C++.
9777
9778 * progmodes/cc-fonts.el (c-font-lock-declarators):
9779 Handle `c-decl-hangon-kwds' after the identifier name.
9780
9781 * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
9782 whether an arglist is "nonempty", ignore a comment after the open
9783 paren if it isn't followed by a non-comment token on the same line.
9784
9785 * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4:
9786 Enable heuristics below the point to cope with classes inside special
9787 brace lists in Pike.
9788
9789 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9790
9791 * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
9792
9793 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9794
9795 * progmodes/cc-guess.el (cc-guess-install): New function to
9796 install an already guessed style in another buffer.
9797
9798 * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
9799 sets `inhibit-read-only' - `c-save-buffer-state' should be used
9800 anyway if the change always is undone.
9801
9802 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9803
9804 Implement togglable electricity:
9805
9806 * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
9807 saying when it should be used.
9808
9809 * progmodes/cc-engine.el: Add the new buffer-local variable,
9810 c-electric-flag.
9811
9812 * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
9813 c-toggle-auto-newline.
9814
9815 * progmodes/cc-mode.el: Rename c-toggle-auto-state to
9816 c-toggle-auto-newline. Remove the binding for
9817 c-toggle-auto-hungry-state. Add the binding C-c C-l for the new
9818 c-toggle-electric-state.
9819
9820 * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
9821
9822 * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
9823 c-\(forward\|backward\)-subword.
9824 (c-update-modeline): Add the new modeline flag `l' for
9825 `c-electric-flag'. Make the auto-newline flag `a' dependent on `l'.
9826 (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'.
9827 Make the old name an alias of the new name.
9828 (c-toggle-electric-state): New function.
9829 (c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\)):
9830 Adapt these functions to do electric things only when
9831 c-electric-flag is non-nil.
9832 (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
9833 new functions from c-electric-brace.
9834 (c-point-syntax): Add a check for "virtual semicolons" in AWK
9835 mode, so that the tentative extra newline doesn't change the
9836 syntax of the following brace.
9837 (c-electric-brace): Restructure by extracting the above functions.
9838 Tidy up the coding somewhat.
9839 (c-electric-semi&comma, c-electric-colon, c-electric-paren):
9840 restructure a bit.
9841
9842 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9843
9844 * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
9845 anchor position(s) using faces. Thanks to Masatake YAMATO for the idea.
9846
9847 * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
9848 (c-submode-indicators): Change name from `c-auto-hungry-string'
9849 since it's now used to track another submode.
9850
9851 (c-update-modeline): Convert to function and extended to check
9852 `c-subword-move-mode'.
9853
9854 (c-forward-into-nomenclature, c-backward-into-nomenclature):
9855 Convert to compat aliases for `c-forward-subword' and
9856 `c-backward-subword'.
9857
9858 * progmodes/cc-subword.el: New functions and minor mode to handle
9859 SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
9860
9861 (c-forward-subword, c-backward-subword, c-mark-subword)
9862 (c-kill-subword, c-backward-kill-subword, c-transpose-subwords)
9863 (c-capitalize-subword, c-downcase-subword, c-upcase-subword):
9864 Functions corresponding to the standard word handling functions.
9865
9866 (c-subword-move-mode): Minor mode that replaces all the standard
9867 word handling functions with their subword equivalences.
9868
9869 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9870
9871 * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
9872 entry for one-liner-defun.
9873
9874 * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
9875 name in its def-edebug-spec.
9876
9877 * progmodes/cc-cmds.el (c-electric-brace): Make the
9878 one-liner-defun clean-up work with empty-defun-braces. o-l-d now
9879 compacts space before a comment, if this will make things fit on
9880 one line.
9881
9882 Introduce an "awk" style, mainly for auto-newline and clean-ups.
9883
9884 * progmodes/cc-align.el: New function c-snug-1line-defun-close
9885
9886 * progmodes/cc-cmds.el: In c-electric-brace, add code for new
9887 clean-up one-liner-defun.
9888
9889 * progmodes/cc-styles.el: Add the new "awk" style.
9890
9891 * progmodes/cc-vars.el: Add description of one-liner-defun to
9892 c-cleanup-list's doc-string. New user options,
9893 c-max-one-liner-length. In c-default-style, set the default style
9894 for AWK to "awk".
9895
9896 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9897
9898 * progmodes/cc-engine.el (c-forward-label): Fix fontification of
9899 macros inside labels.
9900
9901 * progmodes/cc-engine.el (c-looking-at-bos): Obsolete in favor of
9902 `c-at-statement-start-p' and `c-at-expression-start-p'.
9903
9904 * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
9905 error if the mark isn't set.
9906
9907 * progmodes/cc-engine.el (c-guess-continued-construct)
9908 (c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
9909 accurately detect functions inside functions.
9910
9911 * progmodes/cc-engine.el (c-at-expression-start-p): New function
9912 like `c-at-statement-start-p' that additionally recognizes commas
9913 and expression parentheses as delimiters.
9914
9915 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Add flag
9916 to avoid heuristics that doesn't work for unclosed blocks.
9917 (c-at-statement-start-p): New function.
9918
9919 * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
9920 Objective-C directives, e.g. directives spanning lines should work
9921 reasonably well now.
9922
9923 (c-put-c-type-property, c-clear-c-type-property): New helpers.
9924
9925 (c-forward-objc-directive): New function to move over any ObjC
9926 directive.
9927
9928 (c-just-after-func-arglist-p, c-guess-basic-syntax)
9929 (c-basic-matchers-before): Use it.
9930
9931 (c-font-lock-objc-iip-decl): Remove.
9932
9933 * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
9934 in the template arglist recognition.
9935
9936 * progmodes/cc-styles.el (c-style-alist): Fix several
9937 inconsistencies in the Whitesmith style.
9938
9939 * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks):
9940 New lineup function to get lines after Whitesmith style blocks
9941 correctly indented.
9942
9943 (c-lineup-whitesmith-in-block): Back out the compensation for
9944 opening parens since it's done using `add' lists in the style
9945 definition instead. Don't use the anchor position since it varies
9946 too much between the syntactic symbols. :P
9947
9948 * progmodes/cc-vars.el (c-valid-offset): Update.
9949
9950 * progmodes/cc-engine.el (c-evaluate-offset): Extend to handle
9951 lists where the offsets are combined according to several
9952 different methods: `first', `min', `max', and `add'.
9953 Report offset evaluation errors with `c-benign-error' so that some kind
9954 of reindentation still is done.
9955
9956 * progmodes/cc-engine.el (c-guess-basic-syntax):
9957 Anchor `arglist-intro' the same way as `arglist-cont-nonempty' and
9958 `arglist-close'.
9959
9960 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix similar
9961 situations for `arglist-cont-nonempty' and `arglist-close'.
9962
9963 * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New const.
9964
9965 * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
9966 cc-bytecomp-boundp' in a number of places.
9967
9968 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a
9969 macro related issue.
9970
9971 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9972
9973 * progmodes/cc-awk.el: Change the terminology of regexps: A char
9974 list is now [asdf], a char class [:alpha:].
9975 Include code for char classes.
9976 Set c-awk-NL-prop on lines ending in open strings. (Bug fix.)
9977 Add character classes (e.g. "[:alpha:]") into AWK Mode's regexps.
9978
9979 Remove (nearly all of) the cruft associated with AWK Mode's former
9980 concept of "virtual semicolons":
9981
9982 Adapt c-beginning-of-statement, c-end-of-statement (together with
9983 subfunctions) to use the new notion of "virtual semicolon" in
9984 place of the old awkward special handling for AWK. There remains
9985 much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
9986 * progmodes/cc-cmds.el:
9987 (c-ascertain-adjacent-literal): In the backwards direction, now
9988 recognises AWK regexp delimiters as string delimiters.
9989 (c-after-statement-terminator-p): Adapt for virtual semicolons;
9990 check more rigorously for "end of macro".
9991 (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
9992 virtual semicolons;
9993 (c-beginning-of-statement): Adapt for virtual semicolons; Separate
9994 out the code for forward movement into ...
9995 (c-end-of-statement): Now contains the code for forward movement,
9996 adapted for virtual semicolons.
9997
9998 * progmodes/cc-engine.el:
9999 (c-ws*-string-limit-regexp): New regexp.
10000 (c-forward-single-comment, c-backward-single-comment): Comment out
10001 the (now redundant) "special" AWK stuff.
10002
10003 * progmodes/cc-styles.el, cc-vars.el: Change the settings of
10004 c-string-par-start, c-string-par-separate to be more like Text
10005 Mode than Fundamental Mode.
10006
10007 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10008
10009 * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
10010 to the fontified region so that fontification doesn't occur
10011 outside it (could happen e.g. when fontifying a line with an
10012 unfinished declaration).
10013
10014 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10015
10016 * progmodes/cc-awk.el: Move regexps for analysing AWK code to near the
10017 start of the file. ^L now separate sections of the file.
10018 (c-awk-non-eol-esc-pair-re, c-awk-blank-or-comment-line-re)
10019 (c-awk-one-line-possibly-open-string-re)
10020 (c-awk-regexp-one-line-possibly-open-char-class-re)
10021 (c-awk-one-line-possibly-open-regexp-re)
10022 (c-awk-one-line-non-syn-ws*-re): New defonsts.
10023 (c-awk-at-vsemi-p, c-awk-vsemi-status-unknown-p): New functions.
10024
10025 Amend the concept of "virtual semicolons" (in the indentation
10026 engine) for languages like AWK, such that they are now
10027 conceptually attached to end of the last token of a statement, not
10028 the end of the line. (In AWK Mode, however, the pertinent text
10029 property is still physically set on the EOL.) Remove the specific
10030 tests for awk-mode, thus facilitating the introduction of other
10031 language modes where EOLs can end statements.
10032 (Note: The funtionality in cc-cmds.el, specifically
10033 c-beginning/end-of-statement has yet to be amended.)
10034
10035 * progmodes/cc-defs.el (c-at-vsemi-p, c-vsemi-status-unknown-p):
10036 New macros.
10037
10038 * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
10039 c-stmt-delim-chars. New c-lang-defvars: c-at-vsemi-p-fn,
10040 c-vsemi-status-unknown-p-fn (in a new page).
10041
10042 * progmodes/cc-engine.el: In c-beginning-of-statement-1,
10043 c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
10044 numerous awkward forms like
10045 (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
10046 with (c-at-vsemi-p). Fix a few typos. In c-guess-basic-syntax, new
10047 variable before-ws-ip, the place just after char-before-ip appears.
10048
10049 * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
10050 a comment.
10051
10052 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10053
10054 * progmodes/cc-cmds.el (c-electric-brace): Clean up using
10055 `c-tentative-buffer-changes'.
10056
10057 * progmodes/cc-defs.el (c-region-is-active-p): Simplify and
10058 convert to macro to choose between Emacs and XEmacs at compile time.
10059
10060 (c-set-region-active): New set counterpart to `c-region-is-active-p'.
10061
10062 (c-tentative-buffer-changes): New macro to handle temporary buffer
10063 changes in a convenient way.
10064
10065 (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
10066 for `c-tentative-buffer-changes'.
10067
10068 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tighten up
10069 the checks for paren sexps between the point and the keyword, to
10070 avoid some false alarms.
10071
10072 * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
10073 Fixed a situation where an error could be thrown for unbalanced
10074 parens. Changed to make use of c-keyword-member' to avoid some
10075 repeated regexp matches.
10076
10077 (c-opt-lambda-key, c-opt-inexpr-block-key, c-opt-inexpr-class-key):
10078 These language variable are no longer necessary.
10079
10080 (c-block-stmt-kwds): New language constant used by
10081 c-looking-at-inexpr-block'.
10082
10083 (c-guess-basic-syntax): Remove an optional check that looked at
10084 the existence of the now removed language variables.
10085
10086 * progmodes/cc-engine.el (c-fdoc-shift-type-backward)
10087 (c-forward-decl-or-cast-1): Fix invalid recognition of C++ style
10088 object instantiation expressions as declarations in some contexts.
10089 This bug only affected languages where the declarator can't be
10090 enclosed in parentheses.
10091
10092 * progmodes/cc-styles.el (c-style-alist): Fix the GNU style to
10093 insert newlines before and after substatement braces.
10094
10095 * progmodes/cc-engine.el: Improved the heuristics for recognizing
10096 function declaration headers and the handling of C++ style member
10097 init lists.
10098
10099 (c-just-after-func-arglist-p): Rewritten to use
10100 `c-forward-decl-or-cast-1'. Now behaves a bit differently too.
10101
10102 (c-beginning-of-member-init-list): Remove since it isn't used anymore.
10103
10104 (c-guess-basic-syntax): Adapt case 5B for the new
10105 `c-just-after-func-arglist-p'. Merge cases 5B.1 and 5B.3.
10106 Remove cases 5D.1 and 5D.2 since they aren't trigged anymore (case 5B.1
10107 covers all cases now).
10108
10109 * progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'.
10110
10111 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10112
10113 * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
10114 c-string-par-start/separate c-sentence-end-with-esc-eol,
10115 initialised in c-setup-paragraph-variables, used in string
10116 scanning subroutines of c-beginning-of-statement.
10117
10118 * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
10119 which precedes the newly inserted `{'.
10120
10121 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10122
10123 * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
10124 function for declaration level blocks. It should now cope with
10125 templates better and also be a lot more comprehensible.
10126
10127 (c-looking-at-decl-block): The new function.
10128
10129 (c-search-uplist-for-classkey): The old one. It's now a wrapper
10130 for compatibility.
10131
10132 (c-add-class-syntax, c-guess-continued-construct)
10133 (c-guess-basic-syntax): Adapt for `c-looking-at-decl-block'.
10134
10135 (c-decl-block-key): Change to tell apart ambiguous and
10136 unambiguous keywords. Pike specials are now handled directly in
10137 the code instead.
10138
10139 (c-block-prefix-disallowed-chars, c-block-prefix-charset):
10140 New language constants and variables to make the backward skip in
10141 `c-looking-at-decl-block' as tight as possible.
10142
10143 (c-nonsymbol-token-char-list): New language constant.
10144
10145 * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
10146 find balanced template arglists backwards.
10147
10148 * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
10149 making char classes for `c-syntactic-skip-backward'.
10150
10151 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify case
10152 16D - can't be a class-close at that point.
10153
10154 * progmodes/cc-engine.el (c-guess-basic-syntax)
10155 (c-add-class-syntax): Don't narrow out the enclosing declaration
10156 level. This makes everything a lot easier, and it was actually
10157 only four small places that needed it to work. Some places that
10158 previously did `widen' are removed now, which has the effect that
10159 `c-guess-basic-syntax' never will look at things outside the
10160 current narrowment now. The anchor position for `topmost-intro'
10161 is affected by this, but it was so bogus it was basically useless
10162 before, and now it's equally bogus but in a slightly different way.
10163
10164 (c-narrow-out-enclosing-class): Gone.
10165
10166 (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
10167 the narrowed region.
10168
10169 (c-least-enclosing-brace): Remove silly optional argument.
10170
10171 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
10172 the point could be left directly after an open paren when finding
10173 the beginning of the first decl in the block.
10174
10175 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
10176 Specify which submatch to use.
10177
10178 * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
10179
10180 (c-decl-start-re): No longer any need for special treatment of
10181 ObjC due to the above.
10182
10183 (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
10184 presumably follows C in that regard.
10185
10186 * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
10187 New language constants to specify operator tokens inside
10188 identifiers in a more high level way.
10189
10190 (c-opt-identifier-prefix-key): New internal language constant.
10191
10192 (c-opt-identifier-concat-key, c-opt-after-id-concat-key)
10193 (c-identifier-start, c-identifier-key): Now completely calculated
10194 from other constants.
10195
10196 (c-identifier-last-sym-match): Decommission since it's no longer used.
10197
10198 (c-operators): Use `c-identifier-ops'. Document `postfix-if-paren'.
10199
10200 * progmodes/cc-engine.el (c-forward-name): Remove the
10201 optimization when c-identifier-key is equal to c-symbol-key since
10202 it doesn't work in byte compiled files. Don't record empty
10203 regions as identifiers.
10204
10205 * progmodes/cc-langs.el (c-filter-ops): New helper function to
10206 simplify access to `c-operators' and its likes.
10207
10208 (c-operator-list, c-all-op-syntax-tokens)
10209 (c-nonsymbol-token-regexp, c-<>-multichar-token-regexp)
10210 (c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds)
10211 (c-primary-expr-regexp, c-cast-parens): Use it.
10212
10213 * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
10214 an explicit language in functions.
10215
10216 * progmodes/cc-defs.el (c-make-keywords-re): Add an appendable
10217 variant of adornment.
10218
10219 * progmodes/cc-langs.el (c-any-class-key): Remove unused language
10220 variable.
10221
10222 (c-type-decl-prefix-key): Remove some now unnecessary cruft from
10223 the Pike value.
10224
10225 * progmodes/cc-engine.el (c-on-identifier)
10226 (c-simple-skip-symbol-backward): Small fix for handling "-"
10227 correctly in `skip-chars-backward'. Affected the operator lfun
10228 syntax in Pike.
10229
10230 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disable the
10231 diagnostic message about precompiled language vars not being used.
10232
10233 * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
10234 "__attribute__" is followed by a parenthesis.
10235
10236 (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re)
10237 (c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
10238 language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
10239
10240 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el:
10241 Internal cleanups to properly detect the declared identifiers in
10242 various declarations.
10243
10244 (c-decl-start-kwds): New language constant to recognize
10245 declarations that can start anywhere. Used for class declarations
10246 in Pike.
10247
10248 (c-specifier-key, c-not-decl-init-keywords)
10249 (c-decl-prefix-or-start-re, c-find-decl-prefix-search)
10250 (c-find-decl-spots): Implement `c-decl-start-kwds'.
10251
10252 (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds)
10253 (c-decl-hangon-key, c-forward-decl-or-cast-1): Separate the
10254 handling of the compiler specific extension keywords into a new
10255 language constant `c-decl-hangon-kwds' that defines keyword
10256 clauses to be ignored in declarations.
10257
10258 (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
10259 past unrecognized tokens when handling `c-colon-type-list-kwds'.
10260 Necessary to stop at the declared identifier in e.g. IDL valuetype
10261 declarations.
10262
10263 (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds)
10264 (c-prefix-spec-kwds-re, c-postfix-spec-kwds)
10265 (c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key)
10266 (c-forward-decl-or-cast-1): Recognize the declared identifier in
10267 class and enum declarations as such and not as part of the type.
10268
10269 (c-forward-decl-or-cast-1, c-forward-label): Relax the
10270 interpretation of PRECEDING-TOKEN-END when there's no preceding token.
10271
10272 (c-forward-decl-or-cast-1): Don't disregard sure signs of
10273 declarations when there's some syntax error later on.
10274
10275 (c-complex-decl-matchers): Did away with a reference to
10276 `c-specifier-key'.
10277
10278 * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
10279 value - this variable is always dynamically bound.
10280
10281 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el
10282 * cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el
10283 * cc-cmds.el, cc-defs.el: Change the policy for marking up
10284 functions that might do hidden buffer changes: All such internal
10285 functions are now marked instead of those that don't.
10286
10287 (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments)
10288 (c-(forward|backward)-single-comment, c-parse-state, c-on-identifier)
10289 (c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments)
10290 (c-literal-type): Allow these functions to make hidden buffer changes,
10291 so that they are free to use text property caching later on.
10292
10293 (c-electric-backspace, c-electric-delete-forward, c-electric-pound)
10294 (c-electric-brace, c-electric-slash, c-electric-star)
10295 (c-electric-semi&comma, c-electric-colon, c-electric-lt-gt)
10296 (c-electric-paren, c-electric-continued-statement, c-indent-command)
10297 (c-indent-region, c-mask-paragraph, c-indent-new-comment-line)
10298 (c-context-line-break): Add `c-save-buffer-state' calls to comply
10299 with the changed semantics of the functions above.
10300
10301 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a bug
10302 when macros occur in obscure places. Optimized the sexp movement
10303 a bit.
10304
10305 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10306
10307 Enhancements for c-beginning-of-statement to work in AWK Mode:
10308
10309 * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
10310 (completed statement) with `}' (statement completed by closing
10311 brace or semicolon) and `$' (statement completed by EOL).
10312
10313 (c-awk-virtual-semicolon-ends-prev-line-p)
10314 (c-awk-virtual-semicolon-ends-line-p)
10315 (c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward)
10316 (c-awk-at-statement-end-p): New functions.
10317
10318 * progmodes/cc-cmds.el: Simplify the structure of functions
10319 c-forward-over-illiterals, c-back-over-illiterals. Enhance these
10320 two functions and c-beginning-of-statement to handle AWK Mode.
10321
10322 * progmodes/cc-engine.el: Enhance c-forward-single-comment,
10323 c-backward-single-comment for AWK mode. Attempt to clarify their
10324 doc-strings.
10325
10326 * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
10327
10328 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10329
10330 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
10331 label handling. Labels are now recognized in a uniform and more
10332 robust way, regardless of context. Text properties are put on all
10333 labels to recognize the following declarations better.
10334 Multiword labels are handled both in indentation and fontification for
10335 the benefit of language extensions like Qt. For consistency, keywords
10336 in labels are now fontified with the label face instead.
10337 That also applies to "case" and "default".
10338
10339 (c-beginning-of-statement-1): Fix some bugs in the label
10340 handling. Disregard `c-nonlabel-token-key' in labels that begin
10341 with `c-label-kwds'.
10342
10343 (c-find-decl-spots): Support that the callback adds more
10344 `c-decl-end' spots to find.
10345
10346 (c-forward-decl-or-cast-1): Don't treat a list of plain
10347 identifiers followed by a colon as a declaration.
10348
10349 (c-forward-label): New function to recognize labels.
10350
10351 (c-guess-basic-syntax): Replace uses of `c-label-key' with
10352 `c-forward-label'. Moved the label recognition cases (14 and 15)
10353 earlier since they aren't so context sensitive now. Handle labels
10354 on the top level gracefully. Moved access label recognition to
10355 the generic label case (CASE 15) - removed CASE 5E.
10356
10357 (c-font-lock-declarations): Add recognition of labels in the
10358 same round since we need to handle labels in parallell with other
10359 declarations to recognize both accurately. It should also improve
10360 speed.
10361
10362 (c-simple-decl-matchers, c-basic-matchers-after):
10363 Move `c-font-lock-labels' so that it only is used on decoration level 2
10364 since `c-font-lock-declarations' handles it otherwise.
10365
10366 (c-complex-decl-matchers): Remove the simplistic recognition of
10367 access labels.
10368
10369 (c-decl-prefix-re): Remove the kludges that was necessary to cope
10370 with labels earlier.
10371
10372 (c-decl-start-re): New language variable to make
10373 `c-font-lock-declarations' stop for the special protection labels
10374 in Objective-C that start with `@'.
10375
10376 (c-label-key): Remove since it's no longer used.
10377
10378 (c-recognize-colon-labels, c-label-prefix-re): New language
10379 constants to support recognition of generic colon-terminated labels.
10380
10381 (c-type-decl-end-used): `c-decl-end' is now used whenever there
10382 are colon terminated labels.
10383
10384 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
10385 first argument starts with a special brace list.
10386
10387 * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1)
10388 (c-font-lock-declarations): Break out the declaration and cast
10389 recognition from `c-font-lock-declarations' to a new function, so
10390 that it can be used in the indentation engine.
10391
10392 * progmodes/cc-engine.el (c-find-decl-spots): Fix bug in backing
10393 up to the start of the literal. Fixed bug with the point on the
10394 wrong side of the search limit that could happen when the start
10395 position is inside a literal.
10396
10397 * progmodes/cc-engine.el (c-parse-state)
10398 (c-invalidate-state-cache): Modify the use of `c-state-cache-end'
10399 so that it's kept a little bit back to increase the hit rate.
10400
10401 (c-parse-state): Change the macro handling and fixed some
10402 glitches. Macro context is checked more often than necessary now,
10403 but otoh less garbage conses are generated.
10404
10405 * progmodes/cc-engine.el (c-parse-state)
10406 (c-invalidate-state-cache): Cache the last position where
10407 `c-state-cache' applies. This can speed up refontification quite
10408 a bit in blocks where there are many non-brace parens before the point.
10409
10410 (c-state-cache-end): New variable for this.
10411
10412 (c-guess-basic-syntax, c-debug-parse-state): Adapt for the new
10413 cache variable.
10414
10415 * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
10416 get close initial continue positions when the start position is
10417 inside a literal or macro. Do not call the callback for spots
10418 before the start position (which can happen e.g. for `c-decl-end'
10419 spots inside comments). Optimize better in special cases when the
10420 region is a single line inside a literal or macro (typically when
10421 the current line is refontified).
10422
10423 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify calls
10424 to `c-add-stmt-syntax' - there's no need to explicitly whack off
10425 entries from the paren state.
10426
10427 * progmodes/cc-engine.el (c-add-stmt-syntax): Narrow down the
10428 special case for "else if" clauses.
10429
10430 * progmodes/cc-engine.el (c-looking-at-inexpr-block)
10431 (c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
10432
10433 * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks):
10434 New language variable to recognize the gcc extension with statement
10435 blocks inside expressions.
10436
10437 * progmodes/cc-engine.el (c-add-stmt-syntax): Restructure to make
10438 it somewhat more comprehensible. The argument AT-BLOCK-START is
10439 no longer used and hence removed.
10440
10441 (c-guess-continued-construct, c-guess-basic-syntax): Update calls
10442 to `c-add-stmt-syntax'.
10443
10444 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
10445 Use `c-beginning-of-statement-1' instead of duplicating parts of it.
10446 This fixes bogus label recognition.
10447
10448 * progmodes/cc-engine.el (c-add-type, c-check-type)
10449 (c-forward-name, c-forward-type): Improve storage of template
10450 types in `c-found-types' so that they can be recognized better.
10451
10452 (c-syntactic-content): Add option to skip past nested parens.
10453
10454 * progmodes/cc-engine.el (c-forward-name):
10455 Set `c-last-identifier-range' all the time. It's less work that way.
10456 Handle that there might not be an identifier to store in
10457 `c-last-identifier-range'.
10458
10459 (c-forward-type): Handle that `c-last-identifier-range' might be
10460 nil from `c-forward-name'.
10461
10462 * progmodes/cc-defs.el (c-safe-scan-lists)
10463 (c-(go-)?(up|down)-list-(forward|backward)): Add limit arguments.
10464
10465 * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
10466 to work even if the form fails.
10467
10468 * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
10469 down in a large file in one go.
10470
10471 (c-get-fallback-start-pos): New helper function for `c-parse-state'.
10472
10473 * progmodes/cc-align.el (c-lineup-assignments): New lineup
10474 function which is like `c-lineup-math' but returns nil instead of
10475 `c-basic-offset' when it doesn't match.
10476
10477 (c-lineup-math): Change to use `c-lineup-assignments'.
10478
10479 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10480
10481 * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
10482 c-beginning-of-statement. New subfunctions
10483 c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
10484
10485 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10486
10487 * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
10488 hardcoded char classes whereever possible. Changed a couple of
10489 places to use skip by syntax instead of skip by char class.
10490
10491 * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
10492 Fix a bug in the regexp that caused extreme backtracking.
10493
10494 * progmodes/cc-langs.el (c-block-comment-starter)
10495 (c-block-comment-ender): New language constants to specify in a
10496 single place how block comments look.
10497
10498 (c-comment-start-regexp, c-block-comment-start-regexp)
10499 (comment-start, comment-end, comment-start-skip)
10500 (c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws)
10501 (c-syntactic-ws, c-nonempty-syntactic-ws)
10502 (c-single-line-syntactic-ws, c-syntactic-eol): Now built from
10503 `c-line-comment-starter', `c-block-comment-starter' and
10504 `c-block-comment-ender'.
10505
10506 (c-block-comment-regexp, c-unterminated-block-comment-regexp):
10507 New language constants to break up things a bit.
10508
10509 (c-simple-ws): New language constant for simple whitespace.
10510
10511 * progmodes/cc-defs.el (c-concat-separated): New convenience function.
10512
10513 * progmodes/cc-defs.el (c-make-keywords-re): Add kludge for bug
10514 in `regexp-opt' in Emacs 20 and XEmacs when strings contain
10515 newlines. Allow and ignore nil elements in the list.
10516
10517 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10518
10519 * progmodes/cc-cmds.el: Comment out a (n almost certainly
10520 superfluous) check, (eq here (point-max)) in c-beginning-of-statement.
10521
10522 * progmodes/cc-cmds.el: Tidy up the comments in
10523 c-beginning-of-statement and subfunctions.
10524
10525 * progmodes/cc-awk.el: Replace calls to put-text-property to the
10526 more flexible c-put-char-property and c-clear-char-properties.
10527 Add the author's email address.
10528
10529 * progmodes/cc-langs.el (c-block-comment-start-regexp): New variable.
10530
10531 * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
10532 closing "*/" of a block comment.
10533
10534 * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
10535 subfunctions) so that it works at BOB and EOB.
10536
10537 * progmodes/cc-cmds.el, cc-vars.el: More updating of
10538 c-beginning-of-statement, including new variable
10539 c-block-comment-start-regexp.
10540
10541 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10542
10543 * progmodes/cc-langs.el (c-known-type-key): Optimize simple
10544 symbols from `*-font-lock-extra-types' so that there's no need to
10545 use `regexp-opt' on those lists.
10546
10547 * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
10548 `c-type-modifier-kwds' is empty.
10549
10550 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
10551 there are several strings on the same line.
10552
10553 * progmodes/cc-engine.el (c-literal-limits): Remove the
10554 compatibility function for older emacsen. `c-literal-limits-fast'
10555 has now taken the place of this function.
10556
10557 * progmodes/cc-vars.el (c-emacs-features): Remove compatibility
10558 with older emacsen: We now require `pps-extended-state'.
10559
10560 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10561
10562 * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
10563 which obviates the need to hack sentence-end. This now handles
10564 escaped newlines in strings correctly. Correct minor bugs in
10565 c-move-over-sentence and in c-beginning-of-statement.
10566
10567 * progmodes/cc-cmds.el (c-beginning-of-statement (and
10568 subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
10569 that movement over macros and code are rigorously separated from
10570 eachother. Correct a few incidental bugs.
10571
10572 * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
10573 Improve its doc-string. Improve the handling of certain specific cases.
10574
10575 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10576
10577 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
10578 (c-guess-basic-syntax): Change the way class-level labels are
10579 recognized; they can now contain essentially any symbols.
10580
10581 (c-opt-extra-label-key): New language variable to cope with the
10582 special protection label syntax in Objective-C.
10583
10584 (c-opt-access-key): Remove; this is now handled better by
10585 `c-nonlabel-token-key' and `c-opt-extra-label-key'.
10586
10587 (c-complex-decl-matchers): Update to handle that
10588 `c-opt-access-key' no longer exists.
10589
10590 * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
10591 improved label recognition in `c-beginning-of-statement-1'.
10592
10593 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
10594 Recognize bitfields better.
10595
10596 * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
10597 Remove some cruft and fixed a bug that could cause it to go to a
10598 position further down.
10599
10600 * progmodes/cc-langs.el, cc-engine.el
10601 (c-beginning-of-statement-1): Improve detection of labels in
10602 declaration contexts.
10603
10604 (c-beginning-of-decl-1): Use it.
10605
10606 (c-nonlabel-token-key): New language constant and variable needed
10607 by `c-beginning-of-statement-1'.
10608
10609 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix bug that
10610 manifested itself due to the correction in `c-forward-sexp'.
10611
10612 * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp):
10613 Make these behave as documented when used at the buffer limits.
10614
10615 * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
10616 (c-type-decl-end-used): Made this a language variable.
10617
10618 * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
10619 correctly when `combine-after-change-calls' is used together with
10620 temporary narrowings.
10621
10622 * progmodes/cc-engine.el (c-beginning-of-statement-1):
10623 Report labels correctly when the start point is immediately after the
10624 colon.
10625
10626 * progmodes/cc-defs.el (c-parse-sexp-lookup-properties):
10627 Remove since it isn't used anymore.
10628
10629 * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
10630 bracket arglists such as template parens in C++.
10631
10632 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix a bug
10633 in the last check-in. Some optimization.
10634
10635 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix bug
10636 where it could stop at the same level in a preceding sexp when
10637 PAREN-LEVEL is set.
10638
10639 * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
10640 text property lookup only when it's needed.
10641
10642 * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
10643 Change the policy for paren marked angle brackets to be more
10644 persistent; once marked they remain marked even when they're found
10645 to be unbalanced in the searched region. This should keep the
10646 paren syntax around even when individual lines are refontified in
10647 multiline template arglists.
10648
10649 (c-parse-and-markup-<>-arglists): New dynamically bound variable
10650 to control markup so that incorrect angle bracket arglists aren't
10651 marked in contexts where the correct value for
10652 `c-disallow-comma-in-<>-arglists' isn't known.
10653
10654 (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
10655 argument has become `c-parse-and-markup-<>-arglists'.
10656
10657 (c-remove-<>-arglist-properties): Remove - no longer used.
10658
10659 (c-after-change-check-<>-operators): New function used on
10660 `after-change-functions' to avoid that "<" and ">" characters that
10661 are part of longer operators have paren syntax.
10662
10663 (c-<>-multichar-token-regexp): New language variable used by
10664 `c-after-change-check-<>-operators'.
10665
10666 (c-after-change): Call `c-after-change-check-<>-operators'.
10667
10668 (c-font-lock-<>-arglists): Use the context properties set by
10669 `c-font-lock-declarations' to set `c-disallow-comma-in-<>-arglists'
10670 correctly to avoid doing invalid markup.
10671
10672 (c-font-lock-declarations): Remove code that undoes the invalid
10673 markup done by `c-font-lock-<>-arglists'.
10674
10675 (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
10676 after `c-font-lock-declarations'.
10677
10678 * progmodes/cc-engine.el (c-syntactic-skip-backward):
10679 Add paren-level feature.
10680
10681 (c-guess-basic-syntax): Improve the anchor position for
10682 `template-args-cont' in nested template arglists. There's still
10683 much to be desired in this area, though.
10684
10685 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10686
10687 * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
10688 Make the "Text Filling and Line Breaking" commands work for AWK buffers.
10689
10690 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10691
10692 * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
10693 Removed; (c-major-mode-is 'awk-mode) can be used instead now.
10694
10695 * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
10696 it doesn't work no longer are supported.
10697
10698 * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el
10699 * cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
10700 requires support for the syntax-table' text property, which rules
10701 out Emacs 19 and XEmacs < 21.4. Removed various compatibility
10702 cruft associated with those versions.
10703
10704 * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
10705 for the `syntax-table' text property, which rules out Emacs 19 and
10706 XEmacs < 21.4. Removed various compatibility cruft associated
10707 with those versions.
10708
10709 * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
10710 support for the `syntax-table' text property.
10711
10712 * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
10713 variable and use an extra quoted face name instead. All the
10714 emacsen flavors handle that correctly.
10715
10716 * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare)
10717 (c-font-lock-declarators, c-font-lock-declarations)
10718 (c-complex-decl-matchers, c-basic-matchers-after): Use a text
10719 property to mark the items in in declarator lists to handle
10720 refontification inside multiline declarations better.
10721
10722 * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
10723 construct like "a * b = c;" as a declaration.
10724
10725 2005-12-08 Kim F. Storm <storm@cua.dk>
10726
10727 * emulation/cua-base.el (cua-use-hyper-key): Replace by ...
10728 (cua-rectangle-modifier-key): ... this. New defcustom. Can now
10729 select either meta, hyper, or super modifier for rectangle commands.
10730 (cua--rectangle-modifier-key): New defvar.
10731 (cua--M/H-key): Use it. Remove special case for `space'.
10732 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
10733 on X, to meta otherwise. Always bind C-return to toggle
10734 rectangle. Pass ?\s instead of `space' to cua--M/H-key.
10735
10736 * emulation/cua-rect.el (cua-help-for-rectangle):
10737 Use cua--rectangle-modifier-key. Handle super modifier too.
10738 (cua--init-rectangles): Always bind C-return to toggle rectangle.
10739 Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
10740
10741 * ido.el: Move Acknowledgements and History after Commentary.
10742 Minor changes to Commentary.
10743
10744 * emulation/cua-base.el (cua--select-keymaps): Enable repeat
10745 keymap if cua--prefix-override-timer is `shift'.
10746 (cua--shift-control-prefix): New function; emulate "type prefix
10747 key twice" functionality to handle shifted prefix key override.
10748 (cua--shift-control-c-prefix, cua--shift-control-x-prefix):
10749 New commands.
10750 (cua--init-keymaps): Bind them to S-C-c and S-C-x.
10751
10752 2005-12-08 Carsten Dominik <dominik@science.uva.nl>
10753
10754 * textmodes/org.el (org-insert-heading): Try to do items before
10755 headings.
10756 (org-agenda-mode): Quote `org-agenda-mode-hook'.
10757 (org-insert-item): New function.
10758 (org-renumber-ordered-list): Don't skip to higher level lists.
10759
10760 2005-12-08 Juri Linkov <juri@jurta.org>
10761
10762 * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
10763
10764 * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
10765
10766 * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
10767
10768 * pcvs.el (defun-cvs-mode): Put `definition-name' property on
10769 the constructed function name fun-1.
10770
10771 * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
10772 because such links don't lead to parent documentation.
10773
10774 2005-12-08 Kenichi Handa <handa@m17n.org>
10775
10776 * descr-text.el (describe-char): Use *Help-2* buffer if the
10777 current buffer is *Help*. Call describe-text-properties while
10778 setting the original buffer.
10779
10780 2005-12-07 Bill Wohler <wohler@newt.com>
10781
10782 * files.el (auto-mode-alist): Remove mh-letter-mode. Unnecessary,
10783 and causes problems with non-MH users (such as Gnus users).
10784
10785 2005-12-08 Nick Roberts <nickrob@snap.net.nz>
10786
10787 * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
10788 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
10789 (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
10790 command "info sources". Move calls to GDB command "list".
10791 (gdb-find-file-hook): Just use gdb-source-file-list.
10792 (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
10793 (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
10794 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
10795 (gdb-data-list-register-values-handler): Use correct trigger name.
10796
10797 2005-12-07 Kim F. Storm <storm@cua.dk>
10798
10799 * ido.el (ido-completion-map): Rename from ido-mode-map.
10800 (ido-common-completion-map, ido-file-completion-map)
10801 (ido-file-dir-completion-map, ido-buffer-completion-map):
10802 Rename from ido-mode-....-map.
10803 (ido-init-completion-maps): Rename from ido-init-mode-maps.
10804 (ido-setup-completion-map): Rename from ido-define-mode-map.
10805 (ido-read-internal): Bind minibuffer-local-filename-completion-map
10806 to ido-completion-map.
10807
10808 2005-12-07 Kenichi Handa <handa@m17n.org>
10809
10810 * international/mule-cmds.el
10811 (set-display-table-and-terminal-coding-system): If the coding
10812 system specified in `unibyte-display' property is different from
10813 the arg coding-system, don't setup standard-display-table.
10814
10815 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
10816
10817 * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
10818 that comments end at \n, regardless of selective-display.
10819
10820 2005-12-07 Nick Roberts <nickrob@snap.net.nz>
10821
10822 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
10823 (gdb-version): New variables.
10824 (gdb-source-file-list, gdb-register-names)
10825 (gdb-changed-registers): New variables for use with GDB 6.4+.
10826 (gdb-ann3): Replace with...
10827 (gdb-init-1, gdb-init-2): ...two new functions.
10828 (gdba, gdb-prompt): Call gdb-init-1.
10829 (gdb-get-version): New function. Call gdb-init-2 from here.
10830 (gud-watch): Make it work with mouse events too.
10831 (gdb-post-prompt): Don't add to queue until GDB version is known.
10832 (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
10833 (gdb-locals-mode): Use gdb-version.
10834 (gdb-memory-format-map, gdb-memory-unit-map)
10835 (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
10836 (gdb-locals-font-lock-keywords-1)
10837 (gdb-locals-font-lock-keywords-2): New variables.
10838 (gdb-find-file-hook): Make it work with GDB 6.4+ too.
10839 (gdb-set-gud-minor-mode-existing-buffers-1)
10840 (gdb-var-list-children-1, gdb-var-list-children-handler-1)
10841 (gdb-var-update-1, gdb-var-update-handler-1)
10842 (gdb-data-list-register-values-handler)
10843 (gdb-data-list-register-values-custom)
10844 (gdb-get-changed-registers, gdb-get-changed-registers-handler)
10845 (gdb-stack-list-locals-handler, gdb-get-register-names):
10846 New functions for use with GDB 6.4+.
10847 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
10848 (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
10849 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
10850 (gdb-stack-list-locals-regexp)
10851 (gdb-data-list-register-names-regexp): New regexps for use with
10852 GDB 6.4+.
10853
10854 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
10855
10856 * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
10857
10858 2005-12-06 Nozomu Ando <nand@mac.com> (tiny patch)
10859
10860 * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
10861 prompts work for AUTH PLAIN. Also reported by Steve Allan
10862 <seallan@verizon.net>.
10863
10864 2005-12-06 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
10865
10866 * frame.el (set-frame-parameter): Add doc string.
10867
10868 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
10869
10870 * textmodes/org.el (org-occur-highlights): New variable.
10871 (org-highlight-new-match, org-remove-occur-highlights): New functions.
10872 (org-highlight-sparse-tree-matches): New option.
10873 (org-do-occur): New function.
10874 (org-get-heading): Make it work also at beginning of line.
10875 (org-category-table): New variable.
10876 (org-get-category-table, org-get-category)
10877 (org-camel-to-words, org-link-search): New functions.
10878 (org-select-this-todo-keyword): New variable.
10879 (org-todo-list): New command.
10880 (org-shiftright, org-shiftleft): New commands.
10881 (org-agenda-todo): Add prefix argument.
10882 (org-show-hierarchy-above): New option.
10883 (org-show-todo-tree): Numerical prefix creates tree for specific
10884 TODO keyword.
10885 (org-outline-level): New function, to assign a level to plain
10886 lists items.
10887 (org-cycle-include-plain-lists): New option.
10888 (org-mode): Use `org-outline-level' as value of `outline-level'.
10889 (org-cycle): Temporarily switch `outline-regexp' if
10890 `org-cycle-include-plain-lists' is non-nil.
10891 (org-start-icalendar-file): Fix format bug.
10892 (org-agenda-get-day-entries): Create category table.
10893 (org-agenda-get-todos, org-agenda-get-timestamps)
10894 (org-agenda-get-deadlines, org-agenda-get-scheduled)
10895 (org-agenda-get-blocks): Use `org-get-category'.
10896 (org-context-in-file-links): Rename from
10897 `org-line-numbers-in-file-links'.
10898
10899 2005-12-06 Romain Francoise <romain@orebokech.com>
10900
10901 * window.el (balance-windows): Delete extraneous third arg in call
10902 to `enlarge-window'.
10903
10904 2005-12-06 Kenichi Handa <handa@m17n.org>
10905
10906 * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
10907
10908 2005-12-06 Nick Roberts <nickrob@snap.net.nz>
10909
10910 * progmodes/gdb-ui.el (gdb-var-create-handler)
10911 (gdb-var-evaluate-expression-handler, gdb-frame-handler)
10912 (gdb-var-list-children-handler, gdb-var-update-handler):
10913 Current buffer is already gdb-partial-output-buffer, don't
10914 make it current again.
10915
10916 2005-12-05 Luc Teirlinck <teirllm@auburn.edu>
10917
10918 * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
10919 (list-buffers-noselect): Use it.
10920
10921 2005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
10922
10923 * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
10924 (mail-yank-ignored-headers): Use regexp-opt.
10925 (mail-mode-map): Move initialization into declaration.
10926 (mail-sent-via): Remove unused shadowed var `to-line'.
10927 (mail-mailer-swallows-blank-line): Use with-temp-buffer.
10928 (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
10929 (mail-do-fcc): Use dolist and push.
10930 (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
10931 (mail-yank-ignored-headers): Don't autoload.
10932
10933 2005-12-05 Kenichi Handa <handa@m17n.org>
10934
10935 * international/mule-cmds.el (set-language-info-internal): New fun.
10936 (set-language-info): Call set-language-info-internal to update
10937 language-info-alist. If LANG-ENV is the current one, call
10938 set-language-environment to make INFO effective now.
10939 (set-language-info-alist): Likewise.
10940 (locale-language-names): With locale "en", use English
10941 lang. env. but set the default codings to iso-8859-1.
10942
10943 2005-12-04 Nick Roberts <nickrob@snap.net.nz>
10944
10945 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
10946 (gdb-speedbar-auto-raise): Echo new state in minibuffer.
10947 (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
10948 for plain strings.
10949 (gdb-frames-mode): Remove redundant call to font-lock-mode.
10950 (gdb-all-registers): Rename from toggle-gdb-all-registers.
10951 Create registers buffer if necessary. Echo new state in minibuffer.
10952 (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
10953
10954 2005-12-03 Chong Yidong <cyd@stupidchicken.com>
10955
10956 * info.el (Info-fontify-node): Match external links using
10957 non-directory part of filename.
10958
10959 2005-12-04 Juri Linkov <juri@jurta.org>
10960
10961 * font-core.el (global-font-lock-mode): Use define-global-minor-mode
10962 instead of easy-mmode-define-global-mode. Add `:group font-lock'.
10963 (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
10964 because there is no customization option for it.
10965
10966 * font-lock.el (lisp-font-lock-keywords-1):
10967 Add define-global-minor-mode.
10968
10969 * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
10970
10971 * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
10972 properties on the constructed variable names.
10973
10974 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
10975 Put `definition-name' properties on the constructed function names
10976 next-sym and prev-sym.
10977
10978 * emacs-lisp/find-func.el (find-function-regexp):
10979 Add define-global-minor-mode. Replace `easy-mmode-define-global-mode'
10980 with `easy-mmode-define-[a-z-]+'. Add easy-menu-define.
10981 (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
10982 and easy-menu-define.
10983
10984 * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
10985 easy-mmode-define-global-mode and define-global-minor-mode.
10986 (lisp-imenu-generic-expression): Add define-global-minor-mode.
10987
10988 * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
10989 instead of easy-mmode-define-global-mode.
10990
10991 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
10992 Use define-minor-mode instead of easy-mmode-define-minor-mode.
10993
10994 * cus-edit.el (customize-group, customize-group-other-window):
10995 Filter out autoloaded options from the group completion list by
10996 using heuristics that autoloaded groups don't have `custom-autoload'
10997 property on their symbols (they have only `custom-loads').
10998
10999 * simple.el (completion-setup-function): Put completions-common-part
11000 face on complete completion string too (i.e. completion string
11001 without completions-first-difference face).
11002
11003 * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
11004
11005 2005-12-03 Eli Zaretskii <eliz@gnu.org>
11006
11007 * view.el (view-mode): Doc fix.
11008
11009 * disp-table.el (standard-display-european): Add to the warning
11010 message a reference to the doc string.
11011
11012 * play/yow.el (apropos-zippy): Call print-help-return-message,
11013 similar to other Help and Apropos commands.
11014
11015 * help.el (print-help-return-message): If pop-up-frames is
11016 non-nil, set up help-return-method to delete the help window and,
11017 possibly, its frame as well, and don't display message about
11018 scrolling the help window. Doc fix.
11019 (help-return-method): Doc fix.
11020
11021 2005-12-03 Martin Rudalics <rudalics@gmx.at>
11022
11023 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
11024 whereby names of length one or names starting with a
11025 symbol-constituent character would not be returned.
11026
11027 2005-12-03 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
11028
11029 * subr.el (atomic-change-group): Add edebug and indentation spec.
11030
11031 2005-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
11032
11033 * completion.el (save-completions-file-name): Fix typo in last change.
11034
11035 2005-12-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11036
11037 * info.el: Move back/forward history to the beginning of the tool bar.
11038
11039 2005-12-02 Ken Manheimer <ken.manheimer@gmail.com>
11040
11041 * allout.el (eval-when-compile): Remove unnecessary load of cl.
11042 Add fset of allout-real-isearch-abort during compile to fix
11043 byte-compilation warnings.
11044 (allout-mode-p): Move definition of this macro above all uses, or
11045 byte compilation in barren emacs (eg, during emacs build) will
11046 lack the definition.
11047 (allout-mode): Move this variable above any uses, or byte
11048 compilation will fail.
11049 (allout-resolve-xref): Remove use of personal file-reference function.
11050 (allout-toggle-current-subtree-encryption): Do the current (ie,
11051 visible containing) topic, rather than nearest around point. Doc fix.
11052 (allout-toggle-subtree-encryption): New function, workhorse that
11053 works on nearest topic containing point.
11054 (allout-encrypt-string): Signal requirement for newer version of pgg.
11055 (allout-resumptions): Doc fix.
11056
11057 2005-12-02 Eli Zaretskii <eliz@gnu.org>
11058
11059 * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
11060
11061 2005-12-02 Agustin Martin <agustin.martin@hispalinux.es>
11062
11063 * textmodes/flyspell.el (flyspell-external-point-words):
11064 Consider a misspelling as found in the string search if: (a) misspelling
11065 and found string lengths match, or (b) misspelling is found as
11066 element in a boundary-chars separated longer string, or (c)
11067 ispell-program-name is really ispell and misspelling is found as
11068 part of a TeX string. After successful match move beginning of
11069 search region to end of match. Warn about not found misspellings
11070 once the process is done.
11071 (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
11072
11073 2005-12-02 Nick Roberts <nickrob@snap.net.nz>
11074
11075 * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
11076 tool bar (removed inadvertently).
11077
11078 2005-12-02 Juri Linkov <juri@jurta.org>
11079
11080 * log-view.el (log-view-diff): Clarify doc string.
11081
11082 2005-12-01 Bill Wohler <wohler@newt.com>
11083
11084 * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
11085 triggers lm-verify errors.
11086
11087 2005-12-01 Luc Teirlinck <teirllm@auburn.edu>
11088
11089 * simple.el (transient-mark-mode, line-number-mode)
11090 (column-number-mode, size-indication-mode): Remove `:require nil'.
11091
11092 2005-12-01 Nick Roberts <nickrob@snap.net.nz>
11093
11094 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
11095 in the margin also.
11096 (gdb-breakpoints-mode-map): Use D instead of d for
11097 gdb-delete-breakpoint.
11098 (gdb-get-frame-number): Require a number to match on.
11099 (gdb-threads-mode-map): Add follow-link binding.
11100
11101 2005-11-30 Jason Rumney <jasonr@gnu.org>
11102
11103 * isearch.el (isearch-mode-map): Avoid exiting search on
11104 language-change event.
11105
11106 2005-11-30 Romain Francoise <romain@orebokech.com>
11107
11108 * speedbar.el (speedbar-default-position): New defcustom.
11109 (speedbar-frame-reposition-smartly): Use it.
11110
11111 * dframe.el (dframe-reposition-frame-emacs): Fix position
11112 computation for `left' location.
11113 Update copyright year.
11114
11115 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
11116
11117 * help.el (help-map): Move initialization into declaration.
11118
11119 * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
11120
11121 * help-fns.el (help-argument-name): Don't autoload.
11122 It's useless and triggers a bug in cus-dep.el causing ldefs-boot
11123 to be re-loaded when customizing the `help' group.
11124
11125 2005-11-30 John Paul Wallington <jpw@gnu.org>
11126
11127 * help-fns.el (describe-function-1): Fill arglist output.
11128
11129 2005-11-30 Kim F. Storm <storm@cua.dk>
11130
11131 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
11132 (cua--rectangle-post-command): Cleanup overlays and deactivate mark
11133 after revert-buffer (or anything else which kills all local variables).
11134
11135 * apropos.el (apropos-parse-pattern): Doc fix.
11136 Set apropos-regexp directly, rather than expecting callers to do so.
11137 (apropos-command, apropos, apropos-value, apropos-documentation):
11138 Simplify calls to apropos-parse-pattern.
11139
11140 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
11141
11142 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
11143 (hi-lock-face-phrase-buffer): Use hi-yellow face.
11144 (hi-lock-write-interactive-patterns): Use comment-region.
11145
11146 * longlines.el (longlines-mode): Add mail-setup-hook.
11147
11148 * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
11149
11150 * simple.el (sendmail-user-agent-compose, next-line):
11151 Conditionally use hard-newline.
11152
11153 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
11154
11155 * international/latexenc.el (latex-inputenc-coding-alist):
11156 Reword doc string.
11157
11158 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
11159
11160 * help.el (describe-key-briefly, describe-key): Recognize default
11161 bindings.
11162
11163 2005-11-29 Romain Francoise <romain@orebokech.com>
11164
11165 * view.el (view-inhibit-help-message): New defcustom.
11166 (view-mode-enter): Use it.
11167
11168 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu>
11169
11170 * ediff-wind.el (ediff-setup-control-frame, ediff-make-wide-display):
11171 Preserve user position.
11172
11173 2005-11-28 Luc Teirlinck <teirllm@auburn.edu>
11174
11175 * font-lock.el: Throw error if facemenu is not loaded to prevent
11176 accidental change of loading order in loadup.el. (Suggested by RMS.)
11177
11178 * loadup.el: Add comment explaining why facemenu must be loaded
11179 before font-lock.
11180
11181 2005-11-28 Jay Belanger <belanger@truman.edu>
11182
11183 * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
11184 (calc-dispatch-map): Add more keys for `calc-same-interface'.
11185
11186 * calc/calc-misc.el (calc-dispatch-help): Update docstring.
11187
11188 * calc/calc-embed.el (calc-do-embedded): Update help message.
11189
11190 * calc/calc-prog.el (calc-user-define-invokation): Update help message.
11191
11192 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
11193
11194 * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
11195
11196 * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
11197 called-interactively-p.
11198 (elp-profilable-p): Rename from elp-not-profilable-p.
11199 Invert result and take into account macros and autoloaded functions.
11200 (elp-instrument-function): Update call.
11201 (elp-instrument-package): Update call. Add completion.
11202 (elp-pack-number): Use match-string.
11203 (elp-results-jump-to-definition-by-mouse): Merge into
11204 elp-results-jump-to-definition and then remove.
11205 (elp-output-insert-symname): Make help echo text single-line.
11206
11207 * replace.el (query-replace-map): Move initialization into declaration.
11208 (occur-engine): Use with-current-buffer.
11209 (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
11210 (occur-mode-mouse-goto): Replace with an alias.
11211
11212 2005-11-28 Juri Linkov <juri@jurta.org>
11213
11214 * simple.el (quoted-insert): Let-bind input-method-function to nil.
11215
11216 * term/w32-win.el: Bind [S-tab] to [backtab].
11217
11218 * info.el (Info-fontify-node): Set 2nd arg `noerror' of
11219 `Info-find-file' to t.
11220
11221 * replace.el (occur-mode-mouse-goto): Pop, don't switch.
11222 (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
11223 and same-window-regexps.
11224 (occur-next-error): Don't move point for arg 0.
11225
11226 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
11227
11228 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
11229
11230 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
11231
11232 * log-edit.el (log-edit-changelog-use-first): New var.
11233 (log-edit-changelog-ours-p): Use it.
11234 (log-edit-insert-changelog): Set it with new arg `use-first'.
11235 (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
11236 (log-edit-hook): Add them to the list of suggested options.
11237
11238 * textmodes/flyspell.el (flyspell-last-buffer): New var.
11239 (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
11240 redundant work.
11241 (flyspell-mode-on): Use add-hook for after-change-functions.
11242 (flyspell-mode-off): Use remove-hook for after-change-functions.
11243 (flyspell-changes): Make it buffer-local.
11244 (flyspell-after-change-function): Make it non-interactive. Use push.
11245 (flyspell-post-command-hook): Check input-pending-p while processing
11246 the potentially long list of buffer changes.
11247
11248 2005-11-28 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
11249
11250 * buff-menu.el (list-buffers-noselect): Display the selected
11251 frame's buffer list, not the global one.
11252
11253 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
11254
11255 * xt-mouse.el (xterm-mouse-event): Set last-input-event so
11256 that (list last-input-event) works as in interactive spec.
11257
11258 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
11259
11260 * loadup.el ("facemenu"): Load facemenu before font-lock, because
11261 `facemenu-keymap' needs to be defined when font-lock is loaded.
11262 Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
11263
11264 2005-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
11265
11266 * completion.el: Remove useless leading * in defcustom docstrings.
11267 (save-completions-file-name): Use ~/.emacs.d if available.
11268 (completion-standard-syntax-table): Rename from
11269 cmpl-standard-syntax-table and fold initialization into declaration,
11270 thus removing cmpl-make-standard-completion-syntax-table.
11271 (completion-lisp-syntax-table, completion-c-syntax-table)
11272 (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
11273 (cmpl-saved-syntax, cmpl-saved-point): Remove.
11274 (symbol-under-point, symbol-before-point)
11275 (symbol-under-or-before-point, symbol-before-point-for-complete)
11276 (add-completions-from-c-buffer): Use with-syntax-table.
11277 (make-completion): Don't return a list of completion entries.
11278 Update callers.
11279 (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
11280 (completion-initialize): Rename from initialize-completions.
11281 (completion-find-file-hook): Rename from cmpl-find-file-hook.
11282 (kill-emacs-save-completions): Collect stats here.
11283 (save-completions-to-file, load-completions-from-file):
11284 Use with-current-buffer.
11285 (completion-def-wrapper): Rename from def-completion-wrapper. Make it
11286 into a function. Move all calls to toplevel.
11287 (completion-lisp-mode-hook): New fun.
11288 (completion-c-mode-hook, completion-setup-fortran-mode):
11289 Set the syntax-table here. Use local-set-key.
11290 (completion-saved-bindings): New var.
11291 (dynamic-completion-mode): Make it into a proper minor mode.
11292 (load-completions-from-file): Remove unused var `num-uses'.
11293
11294 * emacs-lisp/cl-macs.el (defstruct): Don't define the default
11295 constructor if it is explicitly overridden.
11296
11297 * complete.el (PC-completion-as-file-name-predicate):
11298 Use minibuffer-completing-file-name.
11299 (partial-completion-mode): Use find-file-not-found-functions.
11300 (PC-lisp-complete-symbol): Use with-syntax-table.
11301 (PC-look-for-include-file): Remove dead setq.
11302 (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
11303 (PC-complete): Use with-current-buffer.
11304
11305 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
11306 escape single quotes.
11307
11308 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
11309
11310 * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
11311 of `if' whose condition always returned nil. Doc fix.
11312
11313 * buff-menu.el (Buffer-menu-revert-function): Make the selected
11314 window's buffer the current buffer around the call to
11315 `list-buffers-noselect'. This is necessary to mark that buffer
11316 with a `.' in the Buffer Menu when called from Lisp, for instance
11317 by Auto Revert Mode.
11318
11319 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
11320
11321 * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
11322 attaching to it.
11323 (gdb-pre-prompt): Make sure gdb-error is reset.
11324
11325 * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
11326 with a child process, detect it.
11327 (gud-speedbar-buttons): Match regexp more carefully.
11328
11329 2005-11-27 Richard M. Stallman <rms@gnu.org>
11330
11331 * mouse.el (mouse-drag-move-window-bottom):
11332 Use adjust-window-trailing-edge.
11333
11334 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
11335
11336 * simple.el (blink-matching-open): Ignore
11337 `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
11338 (blink-matching-paren-on-screen): Update docstring.
11339
11340 * paren.el (show-paren-mode): No longer change
11341 `blink-matching-paren-on-screen'.
11342
11343 2005-11-27 John Paul Wallington <jpw@pobox.com>
11344
11345 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
11346 (gdb-threads-select, gdb-edit-register-value):
11347 Use `posn-set-point' instead of `mouse-set-point' because the
11348 latter is not fbound when configured without X.
11349
11350 2005-11-27 Kim F. Storm <storm@cua.dk>
11351
11352 * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
11353 existing face when partially highlighting a TAB in a rectangle.
11354
11355 2005-11-26 Kim F. Storm <storm@cua.dk>
11356
11357 * ido.el (ido-mode-map): Doc fix.
11358 (ido-mode-common-map, ido-mode-file-map)
11359 (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
11360 (ido-define-mode-map): Rewrite. Select one of the new maps as
11361 parent for ido-mode-map instead of building from scratch.
11362 (ido-init-mode-maps): New defun to initialize new maps.
11363 (ido-mode): Call it.
11364 (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
11365 (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
11366
11367 2005-11-26 John Paul Wallington <jpw@pobox.com>
11368
11369 * arc-mode.el (archive-extract): Use `posn-set-point' instead of
11370 `mouse-set-point' because the latter is not fbound when configured
11371 without X.
11372
11373 2005-11-26 Thien-Thi Nguyen <ttn@gnu.org>
11374
11375 * files.el (file-relative-name): Doc fix.
11376
11377 2005-11-26 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
11378
11379 * progmodes/octave-inf.el (inferior-octave-startup): Force a
11380 non-empty string for secondary prompt PS2.
11381
11382 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
11383
11384 * progmodes/compile.el (compilation-setup): Fix last change.
11385
11386 2005-11-26 Nick Roberts <nickrob@snap.net.nz>
11387
11388 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
11389 (gdb-mouse-toggle-breakpoint-margin)
11390 (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
11391 Add gdb-server-prefix to keep out of command history.
11392 (gdb-edit-register-value): New function.
11393 (gdb-registers-mode-map): Bind mouse-2 and RET to it.
11394 (gdb-info-registers-custom): Use above map.
11395
11396 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
11397
11398 * custom.el (enable-theme): Signal error if argument is not a
11399 theme. Don't recalculate a face if it's not loaded yet.
11400
11401 * cus-face.el (custom-theme-set-faces): Don't change saved-face if
11402 the `user' theme is in effect.
11403
11404 * info.el (Info-on-current-buffer): Record actual filename in
11405 Info-current-file, instead of t, or a fake filename if a non-file
11406 buffer. Make autoload.
11407 (Info-find-node, Info-revert-find-node): No need to check for
11408 Info-current-file nil.
11409 (Info-set-mode-line, Info-up, Info-copy-current-node-name):
11410 Info-current-file is now never `t'.
11411 (Info-fontify-node): Many simplifications due to Info-current-file
11412 always being valid. Use Info-find-file to find node filename.
11413
11414 2005-11-25 David Kastrup <dak@gnu.org>
11415
11416 * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
11417 new character, then delete" in order to preserve markers.
11418
11419 2005-11-25 David Ponce <david@dponce.com>
11420
11421 * recentf.el (recentf-arrange-by-rule): Handle a special
11422 `auto-mode-alist'-like "strip suffix" rule.
11423 (recentf-build-mode-rules): Handle second level auto-mode entries.
11424
11425 2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
11426
11427 * viper-keym.el (viper-ESC-key): Use different values in terminal and
11428 window modes.
11429
11430 * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
11431 jde-javadoc-checker-report-mode.
11432
11433 * ediff-wind (ediff-make-wide-display): Slight simplification.
11434
11435 * ediff.el (ediff-date): Change the date of last update.
11436
11437 2005-11-24 Chong Yidong <cyd@stupidchicken.com>
11438
11439 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
11440 Use define-minor-mode, and make it a local mode. Turn on font-lock.
11441 (hi-lock-mode): New global minor mode.
11442 (turn-on-hi-lock-if-enabled): New function.
11443 (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
11444 Change arguments to regexp and face instead of a font-lock pattern.
11445 Directly set face property, instead of refontifying.
11446 (hi-lock-font-lock-hook): Check if font-lock is being turned on.
11447 (hi-lock-find-patterns): Use line-number-at-pos.
11448
11449 (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode. Use new
11450 arguments for hi-lock-set-pattern.
11451 (hi-lock-unface-buffer, hi-lock-set-file-patterns):
11452 Call font-lock-fontify-buffer.
11453 (hi-lock-find-file-hook, hi-lock-current-line)
11454 (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
11455
11456 (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
11457 turned off.
11458
11459 * progmodes/compile.el (compilation-setup): Don't fiddle with
11460 font-lock-defaults.
11461
11462 2005-11-25 Nick Roberts <nickrob@snap.net.nz>
11463
11464 * progmodes/gdb-ui.el (gdb-var-create-handler)
11465 (gdb-var-list-children-handler): Find values for all variable
11466 objects. gud-speedbar-buttons decides whether to display them.
11467
11468 2005-11-24 Romain Francoise <romain@orebokech.com>
11469
11470 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
11471 buffer name with a space.
11472
11473 2005-11-24 Carsten Dominik <dominik@science.uva.nl>
11474
11475 * textmodes/org.el (org-export-plain-list-max-depth): Rename from
11476 `org-export-local-list-max-depth'. Change default value to 3.
11477 (org-auto-renumber-ordered-lists)
11478 (org-plain-list-ordered-item-terminator): New options.
11479 (org-at-item-p, org-beginning-of-item, org-end-of-item)
11480 (org-get-indentation, org-get-string-indentation)
11481 (org-maybe-renumber-ordered-list, org-renumber-ordered-list):
11482 New functions.
11483 (org-move-item-down, org-move-item-up): New commands.
11484 (org-export-as-html): New classes for CSS support. Bug fix in
11485 regular expression detecting fixed-width regions. Respect
11486 `org-local-list-ordered-item-terminator'.
11487 (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
11488 also a list item.
11489 (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
11490 New item moving functions.
11491
11492 2005-11-24 Juri Linkov <juri@jurta.org>
11493
11494 * isearch.el (isearch-repeat): With empty search ring set
11495 `isearch-error' to the error string instead of signaling error
11496 with the function `error'.
11497
11498 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11499
11500 * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
11501
11502 2005-11-24 Nick Roberts <nickrob@snap.net.nz>
11503
11504 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
11505 and variable.
11506 (gdb-var-create-handler, gdb-var-list-children-handler):
11507 Don't match on "char **...".
11508 (gdb-var-update-handler): Find values for all variable objects.
11509 (gdb-info-frames-custom): Identify frames by leading "#".
11510
11511 * progmodes/gud.el (gud-speedbar-menu-items): Add
11512 gdb-speedbar-auto-raise as radio button.
11513 (gud-speedbar-buttons): Raise speedbar if requested.
11514 Don't match on "char **...".
11515 (gud-speedbar-buttons): Add (pointer) value for non-leaves.
11516 Make it editable.
11517
11518 2005-11-23 Chong Yidong <cyd@stupidchicken.com>
11519
11520 * info.el (Info-fontify-node): Handle the case where
11521 Info-current-file is t.
11522
11523 2005-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
11524
11525 * simple.el (blink-matching-open): Fix off-by-one in last change.
11526
11527 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11528
11529 * term/mac-win.el: Don't change default directory.
11530
11531 2005-11-22 Luc Teirlinck <teirllm@auburn.edu>
11532
11533 * cus-edit.el (Custom-reset-standard): Make it handle Custom group
11534 buffers correctly. (It used to throw an error in such buffers.)
11535 Make it ask for confirmation in group buffers and other Custom
11536 buffers containing more than one customization item.
11537
11538 2005-11-22 John Paul Wallington <jpw@gnu.org>
11539
11540 * net/goto-addr.el (goto-address-fontify): Put `follow-link'
11541 property on mail and url overlays.
11542 (goto-address-at-point): Use `posn-set-point' instead of
11543 `mouse-set-point' because the latter is not fbound when configured
11544 without X.
11545
11546 2005-11-22 Lars Hansen <larsh@soem.dk>
11547
11548 * ls-lisp.el (ls-lisp-parse-symlink): Delete.
11549 (ls-lisp-classify, ls-lisp-format): Delete call to
11550 ls-lisp-parse-symlink.
11551 (ls-lisp-handle-switches): Handle symlinks to directories as
11552 directories when ls-lisp-dirs-first in non-nil.
11553
11554 2005-11-21 Luc Teirlinck <teirllm@auburn.edu>
11555
11556 * startup.el (command-line): Make sure that loaddefs.el is handled
11557 correctly in load-history.
11558
11559 2005-11-22 Nick Roberts <nickrob@snap.net.nz>
11560
11561 * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
11562 (gdb-struct-string, gdb-array-string): New constants.
11563 (gdb-info-locals-handler): Use them.
11564 (gdb-reset): Reset gdb-var-list to nil.
11565
11566 2005-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
11567
11568 * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
11569 in patterns.
11570
11571 2005-11-21 Juri Linkov <juri@jurta.org>
11572
11573 * custom.el (defcustom): Update link types in docstring.
11574
11575 2005-11-20 Martin Rudalics <rudalics@gmx.at>
11576
11577 * custom.el (defgroup): Add doc-string-elt info.
11578
11579 * widget.el (define-widget): Don't use declare for the doc-string-elt.
11580
11581 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
11582
11583 * newcomment.el (comment-enter-backward): Fix last fix.
11584
11585 * simple.el (blink-matching-open):
11586 * paren.el (show-paren-function): Allow new paren-class info.
11587
11588 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
11589
11590 * faces.el: Revert 2005-11-17 change. :ignore-defface is now
11591 handled automagically.
11592
11593 2005-11-20 Andreas Schwab <schwab@suse.de>
11594
11595 * descr-text.el (describe-char): When copying overlays put them
11596 over the full char description instead of just the first character
11597 of it.
11598
11599 2005-11-20 Juri Linkov <juri@jurta.org>
11600
11601 * simple.el (what-cursor-position):
11602 * descr-text.el (describe-char): Use Lisp-readable syntax
11603 for octal and hex. Reorder decimal, octal and hex values.
11604 Remove excess whitespace in the output. Use `=' in `column='
11605 like in `point=' and `Hscroll='.
11606
11607 * international/mule-cmds.el (encoded-string-description):
11608 Use Lisp-readable syntax for hex.
11609
11610 2005-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11611
11612 * newcomment.el (comment-enter-backward): Handle the case where the
11613 comment is closed by EOB.
11614
11615 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
11616
11617 * longlines.el (longlines-before-revert-hook)
11618 (longlines-after-revert-hook): New functions.
11619 (longlines-mode): Turn off longlines temporarily when reverting.
11620 Add a message-setup-hook.
11621 (longlines-decode-buffer): New function.
11622 (longlines-wrap-line): Preserve marker positions.
11623
11624 2005-11-19 Andreas Schwab <schwab@suse.de>
11625
11626 * emacs-lisp/shadow.el: Handle compressed files.
11627
11628 2005-11-19 Romain Francoise <romain@orebokech.com>
11629
11630 * net/browse-url.el (browse-url-default-browser): Signal an error
11631 if no usable browser can be found, rather than try to load w3.
11632
11633 2005-11-16 Ryan Yeske <rcyeske@gmail.com>
11634
11635 * net/rcirc.el (rcirc-mangle-text): Add bold face property without
11636 replacing existing properties.
11637 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
11638 (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
11639 tty specs.
11640 (rcirc-server-prefix, rcirc-server): New faces.
11641 (rcirc-url-regexp): Generate with rx macro.
11642 (rcirc-last-server-message-time): New variable.
11643 (rcirc-filter): Record time of last message.
11644 (rcirc-keepalive): Kill processes that did not send a message
11645 since the last ping.
11646 (rcirc-mode): Give rcirc-topic a local binding here.
11647
11648 2005-11-19 Michael Cadilhac <michael.cadilhac@lrde.org>
11649
11650 * subr.el (read-passwd): Fontify the prompt as we do with other
11651 prompts.
11652
11653 2005-11-19 Ryan Yeske <rcyeske@gmail.com>
11654
11655 * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
11656 binding buffer-read-only to nil.
11657
11658 2005-11-19 Eli Zaretskii <eliz@gnu.org>
11659
11660 * complete.el (partial-completion-mode):
11661 Mention completion-auto-help in the doc string.
11662
11663 * man.el (Man-highlight-references): Doc fix. Reformat code in a
11664 more Lisp-ish way.
11665
11666 2005-11-19 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
11667
11668 * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
11669 digits, not 8, to avoid misalignment for files larger than 100MB.
11670
11671 2005-11-19 Eli Zaretskii <eliz@gnu.org>
11672
11673 * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
11674 Mention "keyboard shortcuts" in the help text.
11675
11676 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11677
11678 * startup.el (fancy-splash-default-action): Discard only
11679 mouse-down and succeeding mouse-up events in the splash screen
11680 window so that drag-n-drop event can be processed.
11681
11682 2005-11-18 Chong Yidong <cyd@stupidchicken.com>
11683
11684 * longlines.el (longlines-mode): Add hacks for mail-mode and
11685 message-mode.
11686
11687 2005-11-18 Carsten Dominik <dominik@science.uva.nl>
11688
11689 * textmodes/org.el (org-table-sort-lines): New command.
11690 (org-tbl-menu): Add entry for `org-table-sort-lines'.
11691 (org-add-file): Command removed, use `org-agenda-file-to-front'
11692 instead.
11693 (org-export-icalendar): Use `org-icalendar-combined-name'.
11694 (org-cycle-agenda-files, org-agenda-file-to-end)
11695 (org-agenda-file-to-front): New commands.
11696 (org-table-tab-jumps-over-hlines, org-export-html-style):
11697 New options.
11698 (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
11699 (org-at-table.el-p, org-set-autofill-regexps, org-html-protect):
11700 New functions.
11701 (org-fill-paragraph): Call `org-table-align' in tables.
11702 (org-mode): Call `org-set-autofill-regexps'.
11703 (org-export-as-html): Support for local handformatted lists.
11704 Modified to produce valid HTML 4.0. Use `org-export-html-style'.
11705 (org-export-local-list-max-depth): New option.
11706 (org-html-expand): Use `org-html-protect'.
11707
11708 2005-11-18 Nick Roberts <nickrob@snap.net.nz>
11709
11710 * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
11711 to "p".
11712 (gdb): Move definition of gud-pp to...
11713
11714 * progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
11715 speedbar.
11716 (gdb-find-watch-expression): New function.
11717
11718 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
11719
11720 * faces.el (face-attribute, set-face-attribute): Mention existence
11721 of `:ignore-defface' setting in docstring.
11722
11723 2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
11724
11725 * simple.el (completion-setup-function): Fix last change.
11726
11727 2005-11-17 John Paul Wallington <jpw@pobox.com>
11728
11729 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
11730 Use `posn-set-point' instead of `mouse-set-point' because the
11731 latter is not fbound when configured without X.
11732
11733 * comint.el (comint-insert-input): Likewise.
11734
11735 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
11736
11737 * simple.el (hard-newline): New variable.
11738 (sendmail-user-agent-compose, next-line): Use it.
11739
11740 * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
11741 (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
11742 (mail-mail-reply-to, mail-mail-followup-to)
11743 (mail-position-on-field, mail-signature, mail-yank-original)
11744 (mail-attach-file): Likewise.
11745
11746 * mail/mailheader.el (mail-header-format)
11747 (mail-header-format-function): Likewise.
11748
11749 * add-log.el (add-change-log-entry, change-log-merge): Likewise.
11750
11751 2005-11-17 Juri Linkov <juri@jurta.org>
11752
11753 * font-lock.el (font-lock-faces): Rename this defgroup from
11754 `font-lock-highlighting-faces'.
11755 (font-lock-comment-face, font-lock-comment-delimiter-face)
11756 (font-lock-string-face, font-lock-doc-face)
11757 (font-lock-keyword-face, font-lock-builtin-face)
11758 (font-lock-function-name-face, font-lock-variable-name-face)
11759 (font-lock-type-face, font-lock-constant-face)
11760 (font-lock-warning-face, font-lock-negation-char-face)
11761 (font-lock-preprocessor-face)
11762 (font-lock-regexp-grouping-backslash)
11763 (font-lock-regexp-grouping-construct): Rename :group from
11764 `font-lock-highlighting-faces' to `font-lock-faces'.
11765
11766 * cus-edit.el (lisp, c, tex):
11767 * progmodes/ada-mode.el (ada):
11768 * progmodes/asm-mode.el (asm):
11769 * progmodes/cperl-mode.el (cperl-faces):
11770 * progmodes/cpp.el (cpp):
11771 * progmodes/dcl-mode.el (dcl):
11772 * progmodes/f90.el (f90):
11773 * progmodes/fortran.el (fortran):
11774 * progmodes/icon.el (icon):
11775 * progmodes/idlwave.el (idlwave-misc):
11776 * progmodes/m4-mode.el (m4):
11777 * progmodes/make-mode.el (makefile):
11778 * progmodes/meta-mode.el (meta-font):
11779 * progmodes/modula2.el (modula2):
11780 * progmodes/octave-mod.el (octave):
11781 * progmodes/pascal.el (pascal):
11782 * progmodes/perl-mode.el (perl):
11783 * progmodes/prolog.el (prolog):
11784 * progmodes/ps-mode.el (PostScript-edit):
11785 * progmodes/scheme.el (scheme):
11786 * progmodes/sh-script.el (sh-script):
11787 * progmodes/simula.el (simula):
11788 * progmodes/tcl.el (tcl):
11789 * textmodes/nroff-mode.el (nroff):
11790 * textmodes/reftex-vars.el (reftex-fontification-configurations):
11791 * textmodes/sgml-mode.el (sgml):
11792 * textmodes/texinfo.el (texinfo):
11793 Add :link (custom-group-link font-lock-faces) to defgroup.
11794
11795 * hi-lock.el (hi-lock): Rename this defgroup from
11796 `hi-lock-interactive-text-highlighting'. Change parent group from
11797 `faces' to `font-lock'. Add link to the manual.
11798 (hi-lock-mode, hi-lock-file-patterns-range)
11799 (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
11800 `hi-lock-interactive-text-highlighting' to `hi-lock'.
11801 (hi-lock-faces): Add :group `faces'.
11802
11803 * cus-edit.el (custom-variable-prompt): Clarify the code.
11804
11805 * faces.el (face-read-string): Set the default value arg of
11806 completing-read.
11807
11808 2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
11809
11810 * rfn-eshadow.el (file-name-shadow-properties)
11811 (file-name-shadow-tty-properties, file-name-shadow-mode):
11812 Remove autoloads, because the file is now preloaded.
11813
11814 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
11815
11816 * printing.el (easy-menu-intern): Don't define.
11817 (pr-get-symbol): Use easy-menu-intern only if defined.
11818
11819 * simple.el (blink-matching-open): Simplify a bit.
11820 (completion-setup-function): Fix the case of partial-completion-mode
11821 when the minibuffer's contents start with "-".
11822 Obey completion-base-size-function even when
11823 minibuffer-completing-file-name is non-nil.
11824
11825 2005-11-16 Richard M. Stallman <rms@gnu.org>
11826
11827 * net/eudcb-ph.el (eudc-ph-open-session):
11828 Use set-process-query-on-exit-flag.
11829
11830 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
11831
11832 * international/ucs-tables.el (ucs-set-table-for-input):
11833 Use make-local-variable, not make-variable-buffer-local.
11834
11835 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
11836 Improve warning message text.
11837
11838 * savehist.el (savehist-save-hook): Add :group.
11839
11840 * menu-bar.el (menu-bar-help-menu):
11841 Rename Find Extra Packages to External Packages.
11842
11843 * cus-edit.el (Custom-reset-standard): Verify that
11844 :custom-standard-value prop exists before calling it.
11845
11846 * apropos.el (apropos-calc-scores): Use apropos-pattern.
11847
11848 2005-11-16 Martin Rudalics <rudalics@gmx.at>
11849
11850 * wid-edit.el (color): Enclose %t in %{...%}.
11851
11852 * cus-edit.el (face): Enclose %t in %{...%}.
11853
11854 2005-11-16 Hrvoje Niksic <hniksic@xemacs.org>
11855
11856 * savehist.el (savehist-mode-hook): Re-add the var.
11857 (savehist-mode): Use it.
11858
11859 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
11860
11861 * textmodes/flyspell.el: Fix commenting convention.
11862 Remove unnecessary leading * in custom docstrings.
11863 (flyspell-emacs): Remove unused var.
11864 (flyspell-delete-region-overlays): Use remove-overlays.
11865 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
11866 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
11867 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
11868 (flyspell-debug-signal-word-checked): Use with-current-buffer.
11869 (make-flyspell-overlay): Don't locally reuse a global name.
11870 (flyspell-highlight-incorrect-region)
11871 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
11872 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
11873 (flyspell-notify-misspell): Remove unused args `start' and `end'.
11874 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
11875 Wrap calls to accept-process-output inside with-local-quit since it's
11876 often called from a post-command-hook.
11877 (flyspell-correct-word, flyspell-auto-correct-word):
11878 Use ispell-send-string.
11879 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
11880
11881 * calendar/diary-lib.el (diary-list-entries): Also hide the
11882 terminating newline.
11883
11884 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
11885
11886 * textmodes/reftex.el (reftex-use-fonts): Remove the check for
11887 window-system, to allow fonts on tty.
11888
11889 2005-11-17 Nick Roberts <nickrob@snap.net.nz>
11890
11891 * progmodes/gud.el (gud-speedbar-item-info): New function.
11892 (gud-install-speedbar-variables): Use it to display data type
11893 of watch expression as a tooltip in speedbar.
11894
11895 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
11896
11897 * font-core.el (global-font-lock-mode): Add :version keyword,
11898 because default was changed.
11899
11900 * jka-cmpr-hook.el (auto-compression-mode): Ditto.
11901
11902 * startup.el (command-line): Use `custom-reevaluate-setting' for
11903 `file-name-shadow-mode'.
11904
11905 * loadup.el: Preload rfn-eshadow.
11906
11907 * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
11908 Add :version keyword.
11909 (file-name-shadow-properties, file-name-shadow-tty-properties)
11910 (file-name-shadow): Add :version keyword.
11911
11912 * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
11913 instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
11914 in the custom-group property of the symbol frames and the fringe
11915 group got no link to its parent group frames.
11916 Doc fix.
11917
11918 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
11919
11920 * progmodes/gud.el (gud-stop-subjob): New function.
11921 (gud-menu-map, gud-tool-bar-map): Use it.
11922
11923 2005-11-16 Kim F. Storm <storm@cua.dk>
11924
11925 * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
11926 than kill it.
11927 (gud-tool-bar-map): Likewise. Move cont/until/finish buttons
11928 to a more useful/logical place.
11929
11930 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
11931
11932 * progmodes/gud.el (gud-menu-map): Make visibility of stop and
11933 go buttons complementary.
11934
11935 2005-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
11936
11937 * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
11938 (rfn-eshadow-sifn-equal): New function.
11939 (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
11940
11941 2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
11942
11943 * viper-utils.el (viper-non-word-characters-reformed-vi):
11944 Quote `-' in string.
11945
11946 * viper.el (viper-emacs-state-mode-list): Ensure that
11947 rcirc-mode buffers come up in Emacs state.
11948
11949 * ediff-util.el (ediff-make-temp-file): Use proper file-name-handler
11950 operation.
11951
11952 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
11953
11954 * term.el (term-termcap-format): Fix typos.
11955 (term-down): Fix the negative argument case.
11956
11957 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
11958
11959 * progmodes/gdb-ui.el: Remove face-alias left over from change on
11960 2005-08-15.
11961 (gdb-ann3): New command gud-go.
11962 (menu): Accomodate gdb-mi.el.
11963 (gdb-assembler-custom): Make buffer of selected window current
11964 so that set-window-point works.
11965
11966 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
11967 buttons and include new ones.
11968
11969 2005-11-16 Kim F. Storm <storm@cua.dk>
11970
11971 * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
11972 (gud-menu-map): Use it.
11973
11974 2005-11-14 Luc Teirlinck <teirllm@auburn.edu>
11975
11976 * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
11977 that works correctly for Custom and that does not override a user
11978 who disables it.
11979
11980 * help-mode.el (help-make-xrefs, help-xref-on-pp)
11981 (help-xref-interned, help-follow): Make hyperlinks for variables
11982 that are unbound, but have a non-nil variable-documentation property.
11983
11984 * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
11985 mode hook. (It conflicted with defcustoms for some mode hooks.)
11986 Use the `variable-documentation' property to give the mode hook a
11987 docstring and expand that docstring.
11988
11989 2005-11-14 Hrvoje Niksic <hniksic@xemacs.org>
11990
11991 * savehist.el (savehist-mode): Don't bother with
11992 `custom-set-minor-mode'.
11993 (savehist-coding-system): Check XEmacs version.
11994 (history-length): Declare also at run time.
11995 (savehist-mode): Don't emit a message. Don't run the minor mode hook.
11996 Don't set the customize state.
11997 (savehist-minibuffer-hook): Special case for when
11998 minibuffer-history-variable is equal to t.
11999
12000 2005-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
12001
12002 * files.el (write-file): Refresh VC status.
12003
12004 * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
12005 (mark-diary-entries, make-diary-entry): Check default-major-mode rather
12006 than fundamental-mode to see if the mode was set.
12007
12008 2005-11-14 Romain Francoise <romain@orebokech.com>
12009
12010 * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
12011 dummy function in `eval-when-compile' to avoid compiler warning.
12012 Require `man' at compile time.
12013
12014 2005-11-14 Jay Belanger <belanger@truman.edu>
12015
12016 * calc-alg.el (calcFunc-write-out-power): Rename it to
12017 calcFunc-powerexpand.
12018 (math-write-out-power): Rename it to math-powerexpand; have it
12019 handle negative exponents.
12020 (calc-writeoutpower): Rename it to calc-powerexpand.
12021
12022 * calc-ext.el: Change calcFunc-writeoutpower and
12023 calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
12024 autoloads.
12025 Add calcFunc-ldiv to autoloads.
12026
12027 * calc-arith.el (calcFunc-ldiv): New function.
12028
12029 * calc.el (calc-left-divide): New function.
12030
12031 2005-11-14 Juri Linkov <juri@jurta.org>
12032
12033 * cus-edit.el (custom-variable-prompt): Set the default value arg
12034 of completing-read.
12035
12036 * cus-dep.el (custom-make-dependencies): Reverse the list of
12037 found dependencies.
12038
12039 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu>
12040
12041 * menu-bar.el (menu-bar-options-menu): Delete "Syntax
12042 Highlighting" entry, it is on by default now.
12043 (menu-bar-options-save): Do not save global-font-lock-mode.
12044
12045 2005-11-13 Richard M. Stallman <rms@gnu.org>
12046
12047 * textmodes/flyspell.el (flyspell-large-region):
12048 Call flyspell-accept-buffer-local-defs.
12049
12050 2005-11-13 Agustin Martin <agustin.martin@hispalinux.es>
12051
12052 * textmodes/flyspell.el (flyspell-notify-misspell):
12053 Fix misspelling of "Misspelling".
12054 (flyspell-process-localwords): New function.
12055 (flyspell-large-region): Call flyspell-process-localwords and
12056 flyspell-delete-region-overlays.
12057 (flyspell-delete-region-overlays): New function.
12058 (flyspell-delete-all-overlays): Call that.
12059
12060 2005-11-13 Richard M. Stallman <rms@gnu.org>
12061
12062 * help.el (help-for-help-internal): Improve doc of C-h a.
12063 (describe-key): Improve prompt; doc fix.
12064
12065 2005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
12066
12067 * vc-svn.el (vc-svn-registered): Catch all errors.
12068
12069 * cus-dep.el (custom-make-dependencies): Typo.
12070
12071 2005-11-13 Michael Albinus <michael.albinus@gmx.de>
12072
12073 * net/tramp-util.el (top): Fix compilation warning.
12074
12075 2005-11-13 Kim F. Storm <storm@cua.dk>
12076
12077 * help.el (help-for-help-internal): Fix `a' entry. Add `d' entry.
12078
12079 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
12080
12081 * progmodes/gud.el (gud-menu-map): Move parentheses (again).
12082 (gud-speedbar-buttons): Match on "const char *" too.
12083
12084 * progmodes/gdb-ui.el (gdb-var-create-handler)
12085 (gdb-var-list-children-handler): Match on "const char *" too.
12086 (gdb-var-evaluate-expression-handler): Match on empty string.
12087 (gdb-var-update-handler): Only call
12088 gdb-var-evaluate-expression-handler when required.
12089
12090 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
12091
12092 * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
12093 selected window. This still doesn't work for speedbar.
12094 (gud-speedbar-buttons): Handle string expressions properly.
12095
12096 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
12097 (gdb-var-create-handler): Handle string expressions properly.
12098 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
12099 Handle string expressions properly. Move "type" field into regexp.
12100
12101 2005-11-12 Karl Fogel <kfogel@red-bean.com>
12102
12103 * bookmark.el (bookmark-maybe-message): New function to reduce
12104 code duplication: invokes `message' iff baud-rate is high enough.
12105 (bookmark-write-file): Use above instead of an inline conditional.
12106 (bookmark-load): Same.
12107
12108 2005-11-12 Karl Fogel <kfogel@red-bean.com>
12109
12110 * bookmark.el (bookmark-write-file): Don't visit the destination
12111 file, just write the data to it using write-region. This is
12112 similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
12113 change to avoid visiting the file in the first place.
12114
12115 2005-11-12 Chong Yidong <cyd@stupidchicken.com>
12116
12117 * hi-lock.el (hi-lock-mode): Set the default value of
12118 font-lock-defaults.
12119
12120 2005-11-11 Luc Teirlinck <teirllm@auburn.edu>
12121
12122 * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
12123 arg to `file-attributes'.
12124 (find-lisp-format): The UID and GID can now be strings.
12125
12126 2005-11-12 Kim F. Storm <storm@cua.dk>
12127
12128 * help.el (help-map): Bind C-h d to apropos-documentation.
12129
12130 * simple.el (what-cursor-position): Print (EOB) instead of (100%)
12131 when point is at end-of-buffer.
12132
12133 * apropos.el (apropos-match-face): Doc fix.
12134 (apropos-sort-by-scores): Add new choice `verbose'.
12135 (apropos-documentation-sort-by-scores): New defcustom.
12136 (apropos-pattern): Now contains the pattern entered by the user.
12137 (apropos-pattern-quoted): New defvar.
12138 (apropos-regexp): New defvar, containing the regexp corresponding
12139 to apropos-pattern.
12140 (apropos-all-words-regexp): Rename from apropos-all-regexp.
12141 (apropos-read-pattern): New defun. Use it to read pattern arg in
12142 interactive calls; returns list of words for a word list, and
12143 string for a regexp.
12144 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
12145 parses a list of words or regexp as returned by apropos-read-pattern.
12146 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
12147 (apropos-score-doc): Return a very high score if the string
12148 entered by the user matches literally.
12149 (apropos-variable): Doc fix. Use apropos-read-pattern.
12150 (apropos-command): Doc fix. Use apropos-read-pattern and
12151 apropos-parse-pattern. Call apropos-print with nosubst=t.
12152 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
12153 apropos-parse-pattern.
12154 (apropos-documentation): Doc fix. Use apropos-read-pattern and
12155 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
12156 apropos-documentation-sort-by-scores. Call apropos-print with
12157 nosubst=t.
12158 (apropos-documentation-internal): Pass doc string through
12159 substitute-key-definition before adding text properties.
12160 Highlight substring matching literal user input if possible.
12161 (apropos-documentation-check-doc-file): Remove locals beg and end.
12162 Fix calculation of score (as added twice). Pass doc string through
12163 substitute-key-definition before adding text properties.
12164 (apropos-documentation-check-elc-file): Pass doc string through
12165 substitute-key-definition before adding text properties.
12166 Highlight substring matching literal user input if possible.
12167 (apropos-print): Add new arg NOSUBST; if set, command and variable
12168 doc strings have already been passed through substitute-key-definition.
12169 Add code to handle apropos-accumulator items without score element
12170 for backwards compatibility (e.g. with woman package).
12171 Only show scores if apropos-sort-by-scores is `verbose'.
12172
12173 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
12174
12175 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
12176 Add jka-compr-load-suffixes to load-suffixes.
12177
12178 * jka-compr.el: Require jka-cmpr-hook.
12179 (jka-compr-info-compress-message, jka-compr-info-compress-program)
12180 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
12181 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
12182 (jka-compr-info-can-append, jka-compr-info-strip-extension)
12183 (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
12184 (jka-compr-info-regexp): Remove. Provided by jka-cmpr-hook.
12185 (jka-compr-uninstall): Remove entries from
12186 jka-compr-added-to-file-coding-system-alist after they are used.
12187 (jka-compr-error): Remove unused var `curbuf'.
12188 (jka-compr-file-local-copy): Remove unused var `notfound'.
12189
12190 2005-11-10 Romain Francoise <romain@orebokech.com>
12191
12192 * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
12193
12194 2005-11-11 Nick Roberts <nickrob@snap.net.nz>
12195
12196 * progmodes/gud.el (gud-menu-map): Move parentheses.
12197 (gdb): New command gud-pv.
12198
12199 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
12200
12201 * tar-mode.el: Remove spurious or unnecessary leading stars
12202 in docstrings.
12203 (tar-header-block-tokenize): Also obey default-file-name-coding-system.
12204 (tar-parse-octal-integer-safe): Use mapc.
12205 (tar-header-block-summarize): Remove unused var `ck'.
12206 (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
12207 cleared before. Obey default-enable-multibyte-characters.
12208 Use mapconcat. Simplify setting of tar-header-offset.
12209 (tar-mode-map): Move initialization inside delcaration.
12210 (tar-flag-deleted): Use `abs'.
12211 (tar-expunge-internal): Remove unused var `line'.
12212 (tar-expunge-internal): Don't hardcode point-min==1.
12213 (tar-expunge): Widen while doing set-buffer-multibyte.
12214 (tar-rename-entry): Use file-name-coding-system.
12215 (tar-alter-one-field): Don't hardcode point-min==1.
12216 (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
12217 (tar-pad-to-blocksize): Don't hardcode point-min==1. Clarify the code.
12218
12219 2005-11-10 Masatake YAMATO <jet@gyve.org>
12220
12221 * add-log.el (add-log-current-defun): Handle class::method
12222 notation of c++. Fix incorrect comment.
12223
12224 2005-11-10 Alan Mackenzie <acm@muc.de>
12225
12226 * help-fns.el (describe-variable): Make C-h v work when a variable
12227 has variable documentation yet is unbound.
12228
12229 2005-11-10 Masatake YAMATO <jet@gyve.org>
12230
12231 * man.el (Man-highlight-references): Set an empty
12232 string to `Man-arguments' if it is nil.
12233 Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
12234
12235 2005-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
12236
12237 * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
12238 commenting conventions.
12239
12240 * cus-dep.el (custom-make-dependencies): Simplify.
12241 Better follow the commenting conventions.
12242
12243 2005-11-09 Richard M. Stallman <rms@gnu.org>
12244
12245 * apropos.el (apropos-pattern): Rename from apropos-regexp.
12246 (apropos-orig-pattern): Rename from apropos-orig-regexp.
12247 All uses changed.
12248 (apropos-rewrite-regexp): Doc fix.
12249 (apropos-variable, apropos-command, apropos, apropos-value):
12250 Change prompt; carry through the argument renaming.
12251
12252 2005-11-09 Luc Teirlinck <teirllm@auburn.edu>
12253
12254 * find-lisp.el: Require dired.
12255 (find-lisp-find-dired-internal): Do not call
12256 `abbreviate-file-name' on DIR.
12257
12258 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
12259
12260 * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
12261
12262 2005-11-09 Nick Roberts <nickrob@snap.net.nz>
12263
12264 * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
12265 when using the speedbar.
12266 (gdb): New command gud-pp.
12267 (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
12268
12269 2005-11-09 Juri Linkov <juri@jurta.org>
12270
12271 * replace.el (occur-excluded-properties): New defcustom.
12272 (occur-1, occur-engine, occur-accumulate-lines): Use it.
12273
12274 2005-11-08 Jay Belanger <belanger@truman.edu>
12275
12276 * calc/calc-units.el (math-convert-units): Replace any composite
12277 unit by its definition.
12278
12279 2005-11-08 Lars Hansen <larsh@soem.dk>
12280
12281 * emacs-lisp/autoload.el (update-directory-autoloads):
12282 Add obsolete function alias.
12283
12284 2005-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
12285
12286 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
12287 comment-indent-function.
12288 (lisp-comment-indent): Replace by an alias for comment-indent-default.
12289
12290 * reveal.el (reveal-post-command): Rework the handling of
12291 reveal-open-spots, so as to be more reliable. There were several
12292 tricky corner cases where an open spot might be lost, or where
12293 a closed spot might end up on the list of open spots.
12294 Only reveal text that's ellipsised.
12295
12296 2005-11-07 Carsten Dominik <dominik@science.uva.nl>
12297
12298 * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
12299
12300 2005-11-07 John Paul Wallington <jpw@gnu.org>
12301
12302 * ibuffer.el (ibuffer): Search iconified frames too when
12303 getting Ibuffer buffer's window.
12304
12305 2005-11-06 Richard M. Stallman <rms@gnu.org>
12306
12307 * progmodes/compile.el (compilation-internal-error-properties):
12308 save-excursion around the computation of MARKER.
12309
12310 2005-11-06 Piet van Oostrum <piet@cs.uu.nl>
12311
12312 * textmodes/flyspell.el (flyspell-external-point-words):
12313 flyspell-get-word returns a list, not just a string.
12314
12315 2005-11-06 John Paul Wallington <jpw@pobox.com>
12316
12317 * ibuffer.el (ibuffer): Search all visible frames when getting
12318 Ibuffer buffer's window.
12319
12320 2005-11-07 Masatake YAMATO <jet@gyve.org>
12321
12322 * man.el (Man-reference-regexp): Accept spaces between
12323 `Man-name-regexp' and `Man-section-regexp'.
12324 (Man-apropos-regexp): New variable.
12325 (Man-abstract-xref-man-page): Use value for `Man-target-string'
12326 if available.
12327 (Man-highlight-references, Man-highlight-references0):
12328 Handle the case when `Man-arguments' includes "-k".
12329 (Man-highlight-references0): Rename the argument `TARGET-POS' to
12330 `TARGET'. `TARGET' can be a number, function or nil.
12331
12332 2005-11-06 Nick Roberts <nickrob@snap.net.nz>
12333
12334 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
12335 (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
12336 (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
12337 (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
12338 (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
12339 (gdb-send-item): Use buffer-local-value and simplify.
12340
12341 2005-11-05 Luc Teirlinck <teirllm@auburn.edu>
12342
12343 * startup.el (command-line): Use `custom-reevaluate-setting' for
12344 `global-font-lock-mode'.
12345
12346 * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
12347 by default, except in batch mode or when the -D option is given.
12348
12349 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
12350 specified keyword args on to `define-minor-mode'. Update docstring.
12351
12352 2005-11-05 Romain Francoise <romain@orebokech.com>
12353
12354 * replace.el (occur-engine): Add marker at end of line, too.
12355
12356 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
12357
12358 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
12359 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
12360 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
12361 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
12362 argument to all these routines, so the passphrase can be managed
12363 externally and passed in to the system.
12364 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
12365 pgg-add-passphrase-to-cache function.
12366
12367 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
12368 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
12369 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
12370 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
12371 argument to all these routines, so the passphrase can be managed
12372 externally and passed in to the system.
12373 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
12374 function.
12375
12376 2005-11-04 Dan Nicolaescu <dann@ics.uci.edu>
12377
12378 * font-lock.el: Don't deal with font-lock-face-attributes here,
12379 move the code ...
12380
12381 * startup.el (command-line): ... here. Use face-spec-set instead
12382 of custom-declare-face.
12383
12384 * faces.el (face-spec-set): Reset the face if spec is not nil.
12385
12386 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
12387
12388 * newcomment.el (comment-region-internal): Box more tightly in the
12389 common case where there's no TAB in the boxed text.
12390
12391 2005-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12392
12393 * info.el (info-tool-bar-map): Use images prev-node, next-node and
12394 up-node.
12395
12396 2005-11-04 Ulf Jasper <ulf.jasper@web.de>
12397
12398 * newsticker.el: Commentary updated. Code formatting changed.
12399 (newsticker-version): Change to "1.9".
12400 (newsticker, newsticker-feed): Doc fix.
12401 (newsticker-url-list): Doc fix. Add option "Weekly".
12402 (newsticker-retrieval-interval): Add option "Weekly".
12403 (newsticker-headline-processing): Doc fix.
12404 (newsticker-auto-mark-filter): Remove.
12405 (newsticker-auto-mark-filter-list): New.
12406 (newsticker-layout, newsticker-sort-method): Doc fix.
12407 (newsticker-hide-old-items-in-newsticker-buffer)
12408 (newsticker-heading-format, newsticker-item-format)
12409 (newsticker-desc-format): Doc fix.
12410 (newsticker-show-all-rss-elements): Remove.
12411 (newsticker-show-all-news-elements): New.
12412 (newsticker-faces, newsticker-ticker): Doc fix.
12413 (remove-from-invisibility-spec): Code formatting.
12414 (newsticker--process-ids): New.
12415 (newsticker-mode): Doc fix.
12416 (newsticker-mode): Change mode-line-format.
12417 (newsticker-start): Remove debug output.
12418 (newsticker-start-ticker): Doc fix. Add autoload cookie.
12419 (newsticker-w3m-show-inline-images): Code formatting.
12420 (newsticker-next-item): Call `force-mode-line-update'.
12421 (newsticker-previous-item): Call `force-mode-line-update'.
12422 (newsticker-next-feed): Call `force-mode-line-update'.
12423 (newsticker-previous-feed): Call `force-mode-line-update'.
12424 (newsticker-mark-all-items-at-point-as-read): Code formatting.
12425 (newsticker-show-old-items): Do not show descs.
12426 (newsticker-hide-entry): Hide too much.
12427 (newsticker-hide-entry, newsticker-show-entry)
12428 (newsticker-toggle-auto-narrow-to-feed): Code formatting.
12429 (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
12430 (newsticker-toggle-auto-narrow-to-item): Code formatting.
12431 (newsticker-set-auto-narrow-to-item): Update buffer immediately.
12432 (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
12433 (newsticker-get-news): Call `force-mode-line-update'.
12434 Collect process ids.
12435 (newsticker--sentinel): Change coding system handling.
12436 Move image retrieval to new functions newsticker--get-logo-url-*.
12437 Move feed parsing to new functions newsticker--parse-*.
12438 Update list of process ids.
12439 (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
12440 (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
12441 (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
12442 (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
12443 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
12444 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
12445 (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
12446 (newsticker--decode-coding-string): Remove.
12447 (newsticker--decode-numeric-entities): Check input. Format code.
12448 (newsticker--remove-whitespace): Check input.
12449 (newsticker--do-forget-preformatted): Doc fix.
12450 (newsticker--decode-rfc822-date): Allow for missing time.
12451 (newsticker--update-process-ids): New.
12452 (newsticker--image-sentinel): Change comment.
12453 (newsticker--image-read): Change error message.
12454 (newsticker--imenu-goto): Doc fix. Show headline title.
12455 (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
12456 (newsticker--buffer-do-insert-text): Clean whitespace in
12457 html-rendered headline title. Code formatting.
12458 Call `newsticker--buffer-print-extra-elements'.
12459 (newsticker--buffer-print-extra-element): Remove.
12460 (newsticker--buffer-print-extra-elements): New.
12461 (newsticker--buffer-do-print-extra-element): New.
12462 (newsticker--buffer-insert-enclosure): Doc fix. Use MBytes for
12463 large sizes.
12464 (newsticker--run-auto-mark-filter)
12465 (newsticker--do-run-auto-mark-filter):
12466 Use `newsticker-auto-mark-filter-list'.
12467
12468 2005-11-04 Ryan Yeske <rcyeske@gmail.com>
12469
12470 * net/rcirc.el: Use split-string OMIT-NULLS argument.
12471 (rcirc-print): Force redisplay before running hooks. Do long
12472 buffer truncation after making new text read-only. Deal with nil
12473 text when decoding strings. If TARGET is nil, use either the
12474 currently selected buffer, if it is an rcirc buffer and of the
12475 same process or the process buffer.
12476 (rcirc-mode): Remove header-line. Recompute short buffer names.
12477 Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
12478 (rcirc-short-buffer-name): Add variable.
12479 (rcirc-kill-buffer-hook): Recompute short buffer names.
12480 Remove nick from private channel.
12481 (rcirc-send-input): Send command text to current-buffer.
12482 Don't clear overlay arrow here.
12483 (rcirc-short-buffer-name): Return a short buffer name.
12484 (rcirc-update-short-buffer-names, rcirc-abbreviate)
12485 (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
12486 buffer-name abbreviations.
12487 (rcirc-kill-buffer-hook-1): Split to make debugging easier.
12488 Do not touch nick-table when killing a parted channel.
12489 (rcirc-window-configuration-change): Rename from rcirc-update-activity.
12490 Clear arrow from current buffer if it is now hidden.
12491 (rcirc-current-buffer): Add variable.
12492 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
12493 (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
12494 Remove -face from names.
12495 (rcirc-update-activity-string): Print "DND" when globally ignoring
12496 activity.
12497 (rcirc-ignore-buffer-activity-flag): Rename from
12498 rcirc-ignore-channel-activity.
12499 (rcirc-ignore-all-activity-flag): Doc fix.
12500 (rcirc-channels): Remove variable.
12501 (rcirc-kill-buffer-hook):
12502 (rcirc-get-buffer-create): Add nick to private channel.
12503 (rcirc-multiline-edit-submit): Remove tabs.
12504 (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
12505 folded.
12506 (rcirc-remove-nick-channel): Bug fix.
12507 (rcirc-toggle-ignore-buffer-activity): Rename from
12508 rcirc-toggle-ignore-channel-activity.
12509 (rcirc-record-activity): Add buffers to the front of the list.
12510 (rcirc-update-activity): Remove killed buffers from list.
12511 (rcirc-process-server-response-1): Remove last argument if it is
12512 null before calling handler.
12513 (rcirc): Add "rcirc" defcustom prefix.
12514 (rcirc-prompt): Simplify default prompt.
12515 Use custom-initialize-default.
12516 (rcirc-private-chats): Remove variable.
12517 (rcirc-prompt): Change initialization.
12518 (rcirc-version): Remove function.
12519 (rcirc-id-string): Add constant.
12520 (rcirc-last-buffer): Remove variable.
12521 (rcirc-buffer-alist): Add variable.
12522 (rcirc-connect): Update variable setup.
12523 (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
12524 (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
12525 default.
12526 (rcirc-handler-generic): Trigger activity.
12527 (rcirc-send-message): Create the buffor of the target.
12528 (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
12529 (rcirc-get-buffer): Just return nil if there is no matching buffer.
12530 (rcirc-multiline-edit-cancel): Remove function.
12531 (rcirc-set-last-buffer): Remove function.
12532 (rcirc-get-any-buffer): Add function.
12533 (rcirc-join-channels): Don't print /join text.
12534 (rcirc-toggle-ignore-channel-activity): Add and update echo area
12535 messages.
12536 (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
12537 (rcirc-handler-NOTICE): Recognize CTCP responses.
12538 (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
12539 constructing TOPIC string for buffers we are not JOINed.
12540 (rcirc-handler-CTCP-response): Add handler.
12541 (rcirc-multiline-edit-submit): Restore the window-configuration
12542 before adjusting point.
12543 (rcirc): Add customization group.
12544 (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
12545 (rcirc-user-full-name, rcirc-startup-channels-alist)
12546 (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
12547 (rcirc-ignore-all-activity-flag, rcirc-time-format)
12548 (rcirc-input-ring-size, rcirc-read-only-flag)
12549 (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
12550 (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
12551 Change defvar to defcustom.
12552 (rcirc-update-prompt): Add optional ALL arg, which will update
12553 prompts in all rcirc buffers. Regexp quote replacement text.
12554 (rcirc-fill-column): Accept frame-width as a value.
12555 (rcirc-set-changed): Add function.
12556 (rcirc-next-active-buffer): Write more meaningful messages.
12557 (rcirc-faces): Add customization group.
12558 (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
12559 (rcirc-nick-in-message-face, rcirc-prompt-face)
12560 (rcirc-mode-line-nick-face): Move into rcirc-faces group.
12561 (with-rcirc-process-buffer): Move before first usage.
12562 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
12563 (rcirc-debug-flag): Rename from `rcirc-log-p'.
12564 (rcirc-debug): Rename from `rcirc-log'.
12565 (rcirc-format-response-string): Do not print `-' chars for a
12566 NOTICE with no sender. Simplify output of server responses.
12567
12568 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
12569
12570 (rcirc-browse-url-map, rcirc-browse-url-at-point)
12571 (rcirc-browse-url-at-mouse, rcirc-mangle-text):
12572 Make urls mouse and RET clickable.
12573
12574 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
12575
12576 * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
12577
12578 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
12579
12580 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
12581 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
12582 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
12583 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
12584 argument to all these routines, so the passphrase can be managed
12585 externally and passed in to the system.
12586 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
12587 pgg-add-passphrase-to-cache function.
12588
12589 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
12590 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
12591 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
12592 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
12593 argument to all these routines, so the passphrase can be managed
12594 externally and passed in to the system.
12595 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
12596 function.
12597
12598 2005-11-04 Edward O'Connor <hober0@gmail.com> (tiny change)
12599
12600 * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
12601 from goto-address-url-regexp.
12602
12603 2005-11-04 Carsten Dominik <dominik@science.uva.nl>
12604
12605 * textmodes/org.el (org-read-date, org-goto-calendar)
12606 (org-recenter-calendar, org-agenda-goto-calendar):
12607 Temporarily clear `calendar-move-hook'.
12608
12609 2005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
12610
12611 * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
12612 merging.
12613
12614 * ediff-util.el (ediff-previous-difference): Don't skip regions that
12615 have merge clashes.
12616
12617 2005-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12618
12619 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
12620 Undo previous change.
12621
12622 * startup.el (command-line): Use `custom-reevaluate-setting' for
12623 mouse-wheel-down-event and mouse-wheel-up-event. Don't call
12624 tty-register-default-colors on Mac.
12625
12626 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
12627
12628 * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
12629 (gdb-buffer-type): Make it automatically buffer local...
12630 (gdb-get-create-buffer): ...and set it accordingly.
12631 (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
12632 actually work.
12633
12634 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
12635
12636 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
12637 not red.
12638
12639 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
12640
12641 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
12642 case GUD buffer is not visible.
12643 (gdb-goto-breakpoint): Try to force display in source buffer.
12644 (gdb-frame-gdb-buffer): Copy other similar functions.
12645 (gdb-restore-windows): Don't display source if not asked for.
12646 (gdb-assembler-buffer-name): Don't capitalise.
12647
12648 2005-11-03 Richard M. Stallman <rms@gnu.org>
12649
12650 * wid-edit.el (key-sequence): New widget type.
12651
12652 * simple.el (set-mark-command-repeat-pop): New variable.
12653 (set-mark-command): Only interpret plan C-@ after a pop as a pop
12654 if set-mark-command-repeat-pop is true.
12655
12656 * info.el (Info-fontify-node): Don't display extra "see" if there
12657 already is one here.
12658
12659 * mouse.el: Fix special handling of DEL after dragging a region:
12660 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
12661 (mouse-region-delete-keys): Change to defcustom. Add [backspace].
12662
12663 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
12664
12665 * textmodes/ispell.el (ispell-command-loop): Change `i' description
12666 not to assume it pertains to an affix.
12667
12668 * textmodes/flyspell.el (flyspell-post-command-hook):
12669 Bind deactivate-mark to prevent deactivation.
12670
12671 2005-11-03 Lars Hansen <larsh@soem.dk>
12672
12673 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
12674 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
12675 dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
12676
12677 2005-11-03 Romain Francoise <romain@orebokech.com>
12678
12679 * net/eudcb-mab.el: Now part of GNU Emacs. Update FSF's address.
12680 Update copyright years.
12681
12682 2005-11-03 Sam Steingold <sds@gnu.org>
12683
12684 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
12685 Use system-type instead of window-system because window-system is not
12686 correctly defined during loadup.
12687
12688 2005-11-02 Mark A. Hershberger <mah@everybody.org>
12689
12690 * xml.el (xml-syntax-table): Allow xml.el to compile in xemacs.
12691 (xml-parse-tag): Join strings separated by a comment properly.
12692
12693 2005-11-02 Andreas Schwab <schwab@suse.de>
12694
12695 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
12696
12697 2005-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
12698
12699 * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
12700 (byte-optimize-pure-func): Quote the eval'd value.
12701
12702 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
12703 Rename from perl-font-lock-syntactic-face-function.
12704 Change the calling convention so it can be used as a font-lock MATCHER.
12705 Do the parse-partial-sexp loop outselves.
12706 (perl-font-lock-syntactic-keywords): Use it.
12707 (perl-mode): Don't set font-lock-syntactic-face-function any more.
12708
12709 2005-11-02 Nick Roberts <nickrob@snap.net.nz>
12710
12711 * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
12712 disassembly buffer too.
12713 (gdb-exited): Remove overlay arrows when execution has finished.
12714 (gdb-info-frames-custom, gdb-info-threads-custom)
12715 (gdb-info-registers-custom): Don't add inappropriate text
12716 properties if inferior is not active.
12717
12718 2005-11-02 Glenn Morris <rgm@gnu.org>
12719
12720 * progmodes/fortran.el (fortran-blink-match):
12721 Use `blink-matching-delay'.
12722
12723 2005-11-02 John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
12724
12725 * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
12726
12727 2005-11-02 Lars Hansen <larsh@soem.dk>
12728
12729 * net/tramp.el (tramp-action-out-of-band): Handle scp message
12730 "Permission denied".
12731
12732 2005-11-01 Richard M. Stallman <rms@gnu.org>
12733
12734 * textmodes/flyspell.el (flyspell-external-point-words):
12735 Pass nil to flyspell-get-word.
12736
12737 2005-11-02 Kim F. Storm <storm@cua.dk>
12738
12739 * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
12740 item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
12741
12742 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
12743
12744 * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
12745 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
12746 (calendar-mouse-print-dates): Add optional `event' argument.
12747 Update interactive-spec.
12748 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
12749 Use `calendar-event-to-date' instead of `event'.
12750
12751 2005-11-02 Masatake YAMATO <jet@gyve.org>
12752
12753 * progmodes/ld-script.el (ld-script-builtins):
12754 Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
12755 "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
12756 (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
12757
12758 2005-11-01 Romain Francoise <romain@orebokech.com>
12759
12760 * vc-sccs.el: Update copyright year.
12761 * ezimage.el: Likewise.
12762
12763 2005-11-01 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
12764
12765 * info.el (Info-fontify-node): Use `string-width' for fontifying
12766 underlined titles.
12767
12768 2005-11-01 Juri Linkov <juri@jurta.org>
12769
12770 * info.el (Info-fontify-node): Downcase node header keywords Node,
12771 Prev, Next, Up before comparison.
12772 (Info-history): Insert absolute directory name, and put invisible
12773 property on it.
12774
12775 2005-11-01 Juri Linkov <juri@jurta.org>
12776
12777 * info.el (Info-file-supports-index-cookies): New variable.
12778 (Info-find-node-2): Check makeinfo version for index cookie support.
12779 (Info-index-nodes): Search for nodes with index cookies only when
12780 Info-file-supports-index-cookies is t. Otherwise, search nodes
12781 with "Index" in the node name.
12782 (Info-index-node): Search index cookie in the current node only when
12783 Info-file-supports-index-cookies is t. Otherwise, check the word
12784 "Index" in the node name.
12785 (Info-find-emacs-command-nodes): Remove code that searches nodes
12786 with "Index" node name in the top menu.
12787
12788 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
12789
12790 * progmodes/scheme.el (scheme-mode-variables): Use the default
12791 comment-indent-function.
12792
12793 * faces.el (face-attribute): Handle the case where a face inherits from
12794 a non-existent face.
12795
12796 * simple.el (eval-expression-print-format): Use lisp-readable syntax
12797 for octal and hexa output, and merge the char into the paren.
12798 (kill-new): Use push.
12799 (copy-to-buffer): Use with-current-buffer.
12800 (completion-setup-function): Move code in loop to remove redundancy.
12801 (minibuffer-local-must-match-map): Don't add bindings that duplicate
12802 those inherited from minibuffer-local-completion-map.
12803
12804 * savehist.el (savehist-mode) <defcustom>:
12805 Use custom-set-minor-mode if available.
12806 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
12807 and emit a message if applicable.
12808
12809 2005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
12810
12811 * savehist.el: Sync up to version 19.
12812 (savehist-mode): New minor mode.
12813 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
12814 (savehist-length): Remove (use history-length instead).
12815 (savehist-file-modes): Rename from savehist-modes.
12816 (savehist-save-hook, savehist-loaded): New vars.
12817 (savehist-load): Use savehist-mode. Try to smooth up transition from
12818 old format to new format.
12819 (savehist-install): Allow savehist-autosave-interval to be nil.
12820 (savehist-save): Run the new hook. Be more careful to only trim the
12821 history variables.
12822 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
12823 (savehist-printable): Print into a buffer rather than char-by-char.
12824
12825 2005-11-01 John Wiegley <johnw@newartisans.com>
12826
12827 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
12828 toggle-ignore keybinding (C-a). The author said it had been
12829 disabled much earlier due to a possible incompatibility, but after
12830 many months of usage I have encountered no problems (and it is a
12831 rather useful option, especially for switching to " *temp*").
12832
12833 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
12834 support for OS/X's AddressBook, by calling out to the open source
12835 program "contacts" (installable through Fink).
12836
12837 * net/eudc.el (eudc-expand-inline): If the
12838 `eudc-multiple-match-handling-method' is set to `all', delete the
12839 query string before inserting the query result.
12840
12841 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
12842 flag, to prevent Eshell from using the system ls when
12843 `eshell-ls-insert-directory' is in used.
12844 (eshell-ls-insert-directory): Disable font-lock in directory
12845 buffer so that Eshell's own fontification is seen. This broke
12846 recently due to changes in font-lock, so this goes back to version
12847 21 behavior.
12848
12849 2005-11-01 Nick Roberts <nickrob@snap.net.nz>
12850
12851 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
12852 (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
12853 (gdb-many-windows): Doc fix.
12854
12855 2005-10-31 Romain Francoise <romain@orebokech.com>
12856
12857 * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
12858
12859 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
12860
12861 * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
12862 that global-font-lock-mode can be enabled by default.
12863
12864 * font-lock.el (font-lock-keywords, font-lock-mode-internal)
12865 (font-lock-add-keywords, font-lock-remove-keywords)
12866 (font-lock-fontify-buffer): Remove autoload cookies.
12867
12868 * jit-lock.el (jit-lock-register): Likewise.
12869
12870 * emacs-lisp/syntax.el (syntax-ppss): Likewise.
12871
12872 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
12873
12874 * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
12875 intact if there is no gud-comint-buffer.
12876
12877 2005-10-31 Luc Teirlinck <teirllm@auburn.edu>
12878
12879 * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
12880 old prompt comint-prompt-read-only is t and GDB commands are
12881 issued from tool bar etc.
12882
12883 2005-10-31 Masatake YAMATO <jet@gyve.org>
12884
12885 * vc.el (vc-directory-exclusion-list): Add "{arch}".
12886
12887 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
12888
12889 * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
12890 (thumbs-thumbsdir): Make .emacs.d if it does not exist.
12891
12892 2005-10-30 Michael Albinus <michael.albinus@gmx.de>
12893
12894 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
12895 starting at beginning of line. Fontification is messed up when
12896 `open-paren-in-column-0-is-defun-start' set to t.
12897 Reported by John Paul Wallington <jpw@pobox.com>.
12898
12899 2005-10-30 Luc Teirlinck <teirllm@auburn.edu>
12900
12901 * comint.el (comint-send-input): Call `comint-update-fence' when
12902 `comint-process-echoes' and `comint-prompt-read-only' are both
12903 non-nil, to avoid leftover read-only newline.
12904
12905 2005-10-30 Richard M. Stallman <rms@gnu.org>
12906
12907 * textmodes/flyspell.el (flyspell-external-point-words):
12908 Detect when WORD can't be checked properly because
12909 flyspell-get-word finds just part of it, and move on.
12910
12911 * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
12912 boundarychar for Polish.
12913 (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
12914 (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
12915
12916 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
12917
12918 * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
12919 (gdb-registers-font-lock-keywords): Delete.
12920 (gdb-registers-mode): Don't fontify.
12921 (gdb-info-registers-custom): Use text properties instead as, in
12922 future, changed register values will use font-lock-warning-face.
12923 (gdb-local-font-lock-keywords): Rename to...
12924 (gdb-locals-font-lock-keywords): ...for consistency.
12925
12926 2005-10-30 Andre Spiegel <spiegel@gnu.org>
12927
12928 * vc.el (vc-switch-backend): Better error message if the buffer is
12929 not visiting a file under version control.
12930
12931 * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
12932
12933 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
12934
12935 * startup.el (command-line): Use ~/.emacs.d/init.el instead of
12936 ~/.emacs.d/.emacs.
12937
12938 2005-10-29 Richard M. Stallman <rms@gnu.org>
12939
12940 * replace.el (occur-mode-mouse-goto): Always go to other window.
12941 (occur-mode-goto-occurrence): Always switch in same window.
12942
12943 * simple.el (undo): Display message at end, not at start.
12944
12945 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
12946 New arg REUSE-CELL.
12947 (cancel-timer-internal): New function.
12948 (timer-event-handler): Use cancel-timer-internal,
12949 and pass the cell it returns to timer-activate...
12950
12951 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
12952 (jit-lock-deferred-fontify, jit-lock-context-fontify)
12953 (jit-lock-after-change): Test memory-full.
12954
12955 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
12956
12957 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
12958 part of the decoded armor to find the key-identifier.
12959 (pgg-gpg-lookup-key-owner): New function to return the
12960 human-readable identifier of a key owner.
12961 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
12962 key itself.
12963 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
12964 the key value) if we have a key and can match it against a secret
12965 key. Also, added a note pointing out fact that the prompt only
12966 indicates the first matching key.
12967
12968 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
12969 pgg-decrypt-region.
12970 (pgg-pending-timers): A new hash for tracking the passphrase cache
12971 timers, so that new ones supercede old ones.
12972 (pgg-add-passphrase-to-cache): Rename from
12973 `pgg-add-passphrase-cache' to reduce confusion (all callers
12974 changed). Modified to cancel old timers when new ones are added.
12975 (pgg-remove-passphrase-from-cache): Rename from
12976 `pgg-remove-passphrase-cache' to reduce confusion (all callers
12977 changed). Modified to cancel old timers when their keys are
12978 removed from the cache.
12979 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
12980 XEmacs, an indirection to delete-itimer.
12981 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
12982 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
12983 users can only check cache without risk of prompting. Correct bug in
12984 notruncate behavior.
12985 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
12986 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
12987 Add informative docstrings.
12988 (pgg-decrypt): Convey provided passphrase in subordinate call to
12989 pgg-decrypt-region.
12990
12991 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
12992 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
12993 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
12994 `passphrase' argument, so the passphrase can be managed externally
12995 and then passed in to the system.
12996
12997 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
12998 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
12999 so the passphrase cache can be used reliably with identifiers
13000 besides a pgp packet's key id.
13001
13002 * pgg-gpg.el (pgg-pgp-encrypt-region)
13003 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
13004 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
13005 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
13006 argument to all these routines, so the passphrase can be managed
13007 externally and passed in to the system.
13008
13009 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
13010 `notruncate' argument, so the passphrase cache can be used
13011 reliably with identifiers besides a pgp packet's key id.
13012
13013 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
13014
13015 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
13016 symmetric encryption.
13017 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
13018 encrypted session key.
13019 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
13020 message ask for the passphrase in a proper way.
13021
13022 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
13023 New user commands for symmetric encryption.
13024
13025 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
13026
13027 * textmodes/conf-mode.el (conf-assignment-sign)
13028 (conf-assignment-regexp): Fix docstrings.
13029 (conf-mode-initialize): New function.
13030 (conf-mode): Remove optional args. Use delay-mode-hooks to
13031 recognize recursive calls.
13032 (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
13033 (conf-space-mode, conf-colon-mode, conf-ppd-mode)
13034 (conf-xdefaults-mode): Use define-derived-mode and
13035 conf-mode-initialize.
13036
13037 2005-10-29 Romain Francoise <romain@orebokech.com>
13038
13039 * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
13040
13041 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
13042
13043 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
13044 part of the decoded armor to find the key-identifier.
13045 (pgg-gpg-lookup-key-owner): New function to return the
13046 human-readable identifier of a key owner.
13047 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
13048 key itself.
13049 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
13050 the key value) if we have a key and can match it against a secret
13051 key. Also, added a note pointing out fact that the prompt only
13052 indicates the first matching key.
13053
13054 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
13055 pgg-decrypt-region.
13056 (pgg-pending-timers): A new hash for tracking the passphrase cache
13057 timers, so that new ones supercede old ones.
13058 (pgg-add-passphrase-to-cache): Rename from
13059 `pgg-add-passphrase-cache' to reduce confusion (all callers
13060 changed). Modified to cancel old timers when new ones are added.
13061 (pgg-remove-passphrase-from-cache): Rename from
13062 `pgg-remove-passphrase-cache' to reduce confusion (all callers
13063 changed). Modified to cancel old timers when their keys are
13064 removed from the cache.
13065 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
13066 XEmacs, an indirection to delete-itimer.
13067 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
13068 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
13069 users can only check cache without risk of prompting. Correct bug in
13070 notruncate behavior.
13071 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
13072 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
13073 Add informative docstrings.
13074 (pgg-decrypt): Convey provided passphrase in subordinate call to
13075 pgg-decrypt-region.
13076
13077 2005-10-20 Ken Manheimer <ken.manheimer+emacs@gmail.com>
13078
13079 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
13080 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
13081 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
13082 `passphrase' argument, so the passphrase can be managed externally
13083 and then passed in to the system.
13084
13085 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
13086 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
13087 so the passphrase cache can be used reliably with identifiers
13088 besides a pgp packet's key id.
13089
13090 * pgg-gpg.el (pgg-pgp-encrypt-region)
13091 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
13092 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
13093 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
13094 argument to all these routines, so the passphrase can be managed
13095 externally and passed in to the system.
13096
13097 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
13098 `notruncate' argument, so the passphrase cache can be used
13099 reliably with identifiers besides a pgp packet's key id.
13100
13101 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
13102
13103 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
13104 symmetric encryption.
13105 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
13106 encrypted session key.
13107 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
13108 message ask for the passphrase in a proper way.
13109
13110 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
13111 New user commands for symmetric encryption.
13112
13113 2005-10-28 Bill Wohler <wohler@newt.com>
13114
13115 * help-mode.el (help-url): New button type. Calls browse-url.
13116 (help-xref-url-regexp): New regexp to recognize URLs in docstring.
13117 Similar to Info nodes: URL `url'.
13118 (help-make-xrefs): Create help-url buttons for
13119 help-xref-url-regexp matches.
13120
13121 2005-10-29 Nick Roberts <nickrob@snap.net.nz>
13122
13123 * tool-bar.el (tool-bar-add-item-from-menu)
13124 (tool-bar-local-item-from-menu): Fix doc strings.
13125
13126 2005-10-28 Romain Francoise <romain@orebokech.com>
13127
13128 * ldefs-boot.el: Update.
13129
13130 * subr.el (locate-library): Move from help-fns.el.
13131 * help-fns.el (locate-library): Move to subr.el.
13132
13133 2005-10-28 Richard M. Stallman <rms@gnu.org>
13134
13135 * net/tramp.el (tramp-completion-mode): defvar moved up.
13136
13137 * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
13138
13139 * tool-bar.el (tool-bar-mode): Delete autoload cookie.
13140
13141 * files.el (find-file-noselect): Use %d to format large file size.
13142
13143 * bindings.el (mode-line-format): Add %e.
13144
13145 * loadup.el ("facemenu"): Load unconditionally.
13146 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
13147 ("x-dnd"): Load, when appropriate.
13148
13149 * startup.el (command-line): Call before-init-hook earlier.
13150 Warn about some bad characters in -u user name.
13151
13152 * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
13153 (flyspell-external-point-words): Error if misspelled word is not found.
13154 Set flyspell-large-region-beg at end of word.
13155
13156 2005-10-28 Andreas Schwab <schwab@suse.de>
13157
13158 * view.el (View-revert-buffer-scroll-page-forward):
13159 Use view-page-size-default.
13160
13161 2005-10-28 Juri Linkov <juri@jurta.org>
13162
13163 * international/quail.el (quail-get-current-str): Translate last
13164 raw character for deterministic input methods.
13165
13166 2005-10-27 Jay Belanger <belanger@truman.edu>
13167
13168 * calc/calc-ext.el: Add functions to autoloads.
13169 (math-identity-matrix-p, math-ident-row-p): New functions.
13170
13171 * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
13172 multiplication by an identity matrix; don't turn multiplication by
13173 an inverse matrix into division.
13174 (math-div-symbol-fancy): Replace division by matrices with
13175 multiplication by inverse.
13176
13177 * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
13178
13179 * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
13180 (calc-writeoutpower): New functions.
13181
13182 2005-10-27 Romain Francoise <romain@orebokech.com>
13183
13184 * replace.el (occur-engine): Include colon in mouse-face highlight.
13185
13186 * dired-x.el: Change Maintainer field.
13187
13188 2005-10-26 Chong Yidong <cyd@stupidchicken.com>
13189
13190 * longlines.el (longlines-mode): Bind after-change-functions to
13191 nil during initial decoding and final encoding.
13192
13193 2005-10-26 Dan Nicolaescu <dann@ics.uci.edu>
13194
13195 * term.el (term-emulate-terminal, term-handle-colors-array)
13196 (term-handle-ansi-escape): Specify the terminfo capabilities
13197 implemented.
13198
13199 2005-10-26 Richard M. Stallman <rms@gnu.org>
13200
13201 * info.el (Info-fontify-node): Fix detection of sentence-break
13202 before *Note.
13203
13204 2005-10-26 Romain Francoise <romain@orebokech.com>
13205
13206 * smerge-mode.el: Add `tools' to file keywords.
13207
13208 2005-10-26 Nick Roberts <nickrob@snap.net.nz>
13209
13210 * progmodes/gud.el (gud-menu-map): Only display gud-until icon
13211 when the fringe is not available.
13212
13213 * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
13214 (def-gdb-auto-update-trigger): Simplify construction.
13215 (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
13216 def-gdb-auto-updated-buffer as gdb-info-locals-handler is
13217 defined explicitly.
13218 (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
13219 def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
13220 defined explicitly.
13221 (gdb-info-locals-custom): Remove as it's a no-op.
13222
13223 2005-10-25 Chong Yidong <cyd@stupidchicken.com>
13224
13225 * longlines.el (longlines-mode): Remove narrowing before
13226 performing the initial decoding or final encoding.
13227
13228 2005-10-25 Romain Francoise <romain@orebokech.com>
13229
13230 * emacs-lisp/find-func.el (find-library-name): Also strip
13231 extension if library name ends in .el, to take advantage of
13232 `find-library-suffixes'.
13233
13234 2005-10-25 Richard M. Stallman <rms@gnu.org>
13235
13236 * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
13237
13238 2005-10-25 Juri Linkov <juri@jurta.org>
13239
13240 * textmodes/texinfo.el (texinfo-mode): Change charset of one
13241 quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
13242
13243 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13244
13245 * play/blackbox.el (blackbox-mode-map): Move init into declaration.
13246 (blackbox-redefine-key): Add argument `map'.
13247
13248 * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
13249 regions when moving the jit-lock-context-unfontify-pos boundary.
13250
13251 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
13252
13253 * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
13254
13255 2005-10-25 Masatake YAMATO <jet@gyve.org>
13256
13257 * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
13258
13259 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
13260
13261 * play/blackbox.el (blackbox-redefine-key): New function.
13262 (blackbox-mode-map): Use it to remap existing bindings for cursor
13263 motion instead of binding literal keys.
13264
13265 2005-10-25 Glenn Morris <rgm@gnu.org>
13266
13267 * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
13268 diary does not end in a newline. Do not assume a blank line at
13269 the start of the diary file.
13270
13271 2005-10-25 Kenichi Handa <handa@m17n.org>
13272
13273 * international/quail.el (quail-translate-key): If the input
13274 method is deterministic and failed to handle the last key, restart
13275 the key handling loop from an appropriate key.
13276
13277 2005-10-25 Michael Albinus <michael.albinus@gmx.de>
13278
13279 * vc.el (vc-dired-mode): Extend comment for binding of
13280 `directory-listing-before-filename-regexp'.
13281
13282 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13283
13284 * textmodes/texinfo.el (texinfo-mode):
13285 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
13286 not to unnecessarily expose emacs-mule's internal char codes.
13287
13288 2005-10-25 Nick Roberts <nickrob@snap.net.nz>
13289
13290 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
13291 Display hand pointer and help-echo on disabled icon too.
13292 (gdb-mouse-until): New function.
13293 (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
13294
13295 2005-10-24 Chong Yidong <cyd@stupidchicken.com>
13296
13297 * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
13298 with 2005-10-23 change to doctor.el.
13299
13300 * finder.el (finder-mode-map): Add follow-link binding.
13301
13302 2005-10-25 Kim F. Storm <storm@cua.dk>
13303
13304 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
13305 to gdb-mouse-toggle-breakpoint-fringe.
13306 (gdb-mouse-toggle-breakpoint-margin): Rename from
13307 gdb-mouse-toggle-breakpoint. Fix doc.
13308 (gdb-mouse-toggle-breakpoint-fringe): New defun.
13309 (gdb-put-string): Add optional SPROPS arg. Add props to string.
13310 (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
13311 string properties also for fringe breakpoint bitmaps.
13312
13313 2005-10-24 Carsten Dominik <dominik@science.uva.nl>
13314
13315 * textmodes/org.el (org-start-icalendar-file): Fix format form.
13316
13317 2005-10-25 Masatake YAMATO <jet@gyve.org>
13318
13319 * simple.el (completion-common-substring):
13320 Use `completion-common-substring' prior to `completion-base-size'.
13321
13322 2005-10-24 Hrvoje Niksic <hniksic@xemacs.org>
13323
13324 * savehist.el: Require CL while compiling.
13325 (savehist-history-variables): Remove.
13326 (savehist-save-minibuffer-history, savehist-additional-variables)
13327 (savehist-minibuffer-history-variables): New vars.
13328 (savehist-save): Use them.
13329 (savehist-uninstall, savehist-minibuffer-hook): New funs.
13330 (savehist-install): New fun, extracted from savehist-load.
13331 (savehist-load): Use them.
13332
13333 2005-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
13334
13335 * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
13336 a dummy doc-string-elt property.
13337 (defalias, defvaralias, define-category): Add a docstring property.
13338
13339 * image.el (defimage):
13340 * widget.el (define-widget):
13341 * custom.el (defface, defcustom): Add `doc-string' declaration.
13342
13343 * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
13344 (defadvice): Add `doc-string' declaration.
13345
13346 * emacs-lisp/byte-run.el (macro-declaration-function):
13347 Handle `doc-string' declarations.
13348 (define-obsolete-function-alias, define-obsolete-variable-alias):
13349 Add `doc-string' declaration.
13350
13351 2005-10-24 Kenichi Handa <handa@m17n.org>
13352
13353 * international/utf-7.el (utf-7): Add autoload cookie.
13354
13355 * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
13356
13357 2005-10-24 Eli Zaretskii <eliz@gnu.org>
13358
13359 * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
13360 list of directories passed to batch-update-autoloads. Add "." to
13361 the list of the echoed directories.
13362
13363 * pgg-def.el:
13364 * pgg-gpg.el:
13365 * pgg-parse.el:
13366 * pgg-pgp.el:
13367 * pgg-pgp5.el:
13368 * pgg.el: Moved here from the gnus subdirectory.
13369
13370 2005-10-24 Nick Roberts <nickrob@snap.net.nz>
13371
13372 * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
13373 in case comint-prompt-read-only is set to t.
13374
13375 * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
13376 in case comint-prompt-read-only is set to t.
13377
13378 2005-10-24 Ulf Jasper <ulf.jasper@web.de>
13379
13380 * calendar/icalendar.el (icalendar-version): Increase to 0.13.
13381 Now a string.
13382 (icalendar-import-format): Handle CLASS, STATUS, URL.
13383 Rename `subject' to `summary'.
13384 (icalendar-import-format-summary): Rename from
13385 `icalendar-import-format-subject'.
13386 (icalendar-import-format-url, icalendar-import-format-status)
13387 (icalendar-import-format-class): New variables.
13388 (icalendar--rris): Take variable argument list.
13389 (icalendar--datestring-to-isodate): Remove unnecessary
13390 calendar-style check when converting dates with explicit month names.
13391 (icalendar-export-region): Change return type of conversion
13392 subroutines. Bury current buffer unless error occurred.
13393 (icalendar--convert-to-ical)
13394 (icalendar--parse-summary-and-rest): New functions.
13395 (icalendar--convert-ordinary-to-ical)
13396 (icalendar--convert-weekly-to-ical)
13397 (icalendar--convert-yearly-to-ical)
13398 (icalendar--convert-block-to-ical)
13399 (icalendar--convert-cyclic-to-ical)
13400 (icalendar--convert-anniversary-to-ical): Change return type.
13401 Strip trailing blanks from subject.
13402 (icalendar--convert-sexp-to-ical): Change return type.
13403 Strip trailing blanks from subject. Handle simple sexp
13404 entries as generated by icalendar.el.
13405 (icalendar--convert-float-to-ical)
13406 (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
13407 (icalendar-import-file): Doc fix.
13408 (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
13409 Correct call to icalendar--rris.
13410 (icalendar--convert-ical-to-diary): Doc fix. Rename `subject' to
13411 `summary'.
13412 (icalendar--add-diary-entry): Rename `subject' to `summary'.
13413
13414 2005-10-24 Romain Francoise <romain@orebokech.com>
13415
13416 * server.el (server-sentinel): Set query-on-exit flag to nil on
13417 new client processes (it isn't inherited from the server process).
13418
13419 * replace.el (occur-engine): Rearrange text properties.
13420
13421 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
13422
13423 * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
13424 case-fold-search is nil.
13425 (debug-help-follow): Use help-xref-interned directly.
13426
13427 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
13428
13429 * thumbs.el (thumbs-image-type): Add .pbm.
13430
13431 2005-10-23 Richard M. Stallman <rms@gnu.org>
13432
13433 * faces.el (inhibit-face-set-after-frame-default): New variable.
13434 (set-face-attribute): Bind it.
13435 (face-set-after-frame-default): Test it.
13436
13437 * help-fns.el (describe-simplify-lib-file-name): New function.
13438 (describe-function-1, describe-variable): Use it.
13439
13440 * faces.el (describe-face): Use describe-simplify-lib-file-name.
13441
13442 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
13443 Eliminate nil as possible value.
13444 (tooltip-hide-delay): Reduce internal-border-width.
13445
13446 * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
13447 (menu-bar-file-menu) <new-file>: Likewise.
13448
13449 * simple.el (line-move-finish): Ignore fields computing LINE-END.
13450
13451 * international/mule.el (load-with-code-conversion):
13452 Pass full file name to `eval-buffer' unless preloading.
13453
13454 * textmodes/flyspell.el (flyspell-large-region):
13455 Call ispell-check-version.
13456
13457 * textmodes/ispell.el (ispell-local-dictionary-overridden):
13458 Fix the make-variable-buffer-local call that was supposed
13459 to be for this variable.
13460 (ispell-aspell-supports-utf8): Doc fix.
13461 (ispell-find-aspell-dictionaries): Preserve elements of
13462 ispell-dictionary-alist for dictionaries that aspell doesn't report.
13463 (ispell-aspell-find-dictionary): Return nil on error.
13464
13465 * play/doctor.el (doctor-doc): Don't say "psychiatrist".
13466 (doctor-symptoms): Likewise.
13467
13468 * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
13469
13470 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
13471
13472 * cus-edit.el (custom-button, custom-button-pressed): New vars.
13473 (custom-raised-buttons): Add :set spec.
13474 (custom-button-unraised, custom-button-pressed-unraised):
13475 New faces, so that custom-raised-buttons actually does something.
13476 (custom-mode): Use custom-button and custom-button-pressed.
13477
13478 * wid-edit.el (widget-specify-button): Don't ignore
13479 widget-mouse-face on graphic terminals.
13480 (widget-move-and-invoke): Cleanup.
13481
13482 2005-10-23 Thien-Thi Nguyen <ttn@gnu.org>
13483
13484 * whitespace.el (whitespace-cleanup): Doc fix.
13485
13486 2005-10-23 Romain Francoise <romain@orebokech.com>
13487
13488 * emulation/viper.el (viper-set-hooks): Quote forms passed to
13489 `eval-after-load' to avoid evaluating their result.
13490
13491 2005-10-23 Michael Albinus <michael.albinus@gmx.de>
13492
13493 * files.el (directory-listing-before-filename-regexp):
13494 New defvar. Replaces `dired-move-to-filename-regexp' from dired.el.
13495
13496 * dired.el (dired-move-to-filename-regexp): Remove.
13497 All occurences replaced by `directory-listing-before-filename-regexp'.
13498
13499 * dired-x.el, locate.el, vc.el:
13500 Replace `dired-move-to-filename-regexp' by
13501 `directory-listing-before-filename-regexp'. In vc.el it is
13502 overwritten locally; maybe this can be handled in files.el too.
13503
13504 * net/ange-ftp.el (ange-ftp-date-regexp): Remove. All occurences
13505 replaced by `directory-listing-before-filename-regexp'.
13506
13507 2005-10-23 Andreas Schwab <schwab@suse.de>
13508
13509 * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
13510 and eval-next-after-load.
13511
13512 2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
13513
13514 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
13515 exist, create it.
13516
13517 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
13518
13519 * allout.el: Remove autoloads for mailcrypt and crypt++.
13520 Require pgg, pgg-gpg during compilation.
13521 (allout-version): Increment version number to 2.1, and use a literal
13522 rather than RCS Id.
13523 (allout-default-encryption-scheme): Remove.
13524 (allout-passphrase-verifier-handling)
13525 (allout-passphrase-verifier-string)
13526 (allout-file-passphrase-verifier-string)
13527 (allout-passphrase-hint-string): Rename -key- to -passphrase-.
13528 (allout-passphrase-hint-handling): Rename and simplify.
13529 (allout-init): Use `find-file-hook' if available, otherwise
13530 `find-file-hooks'.
13531 (allout-mode): Use `write-file-functions' if available, otherwise
13532 `local-write-file-hooks' and, instead of making auto-save-hook
13533 buffer local, make the write-file-hook activity contingent to
13534 allout-mode.
13535 (allout-mode): Use key-binding substitution in the docstring.
13536 (allout-kill-line): Spell-out kill ring data structure mutation
13537 instead of using byte-compiler-complaint-provoking `pop'.
13538 (allout-insert-listified): Use `insert' rather than `insert-string'
13539 (allout-toggle-current-subtree-encryption): Update docstring, adjust
13540 to new gpp-based encryption, use new `allout-encrypted-topic-p'.
13541 (allout-encrypt-string): Totally revamped vis new underlying
13542 encryption facilities.
13543 (allout-mc-activate-passwd): Remove.
13544 (allout-obtain-passphrase): New, more or less replaces
13545 allout-mc-activate-passwd.
13546 (allout-encrypted-key-info): More or less replaces
13547 allout-encrypted-text-type.
13548 (outlineify-sticky, outlinify-sticky): Add autoload cookie.
13549 (my-mark-marker): Use `(featurep 'xemacs)'.
13550
13551 2005-10-23 Lars Hansen <larsh@soem.dk>
13552
13553 * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
13554 (byte-compile-file-form-defmumble, byte-compile-defun)
13555 (byte-compile-defmacro): Use it.
13556 (byte-compile-form): Don't call byte-compile-set-symbol-position
13557 when a byte-compile handler is called.
13558
13559 2005-10-22 Romain Francoise <romain@orebokech.com>
13560
13561 * savehist.el (savehist-history-variables): Add `grep-find-history'.
13562
13563 * subr.el (eval-after-load): Convert library name to an absolute
13564 file name using locate-library, since load-history no longer has
13565 library names in it.
13566
13567 2005-10-22 Richard M. Stallman <rms@gnu.org>
13568
13569 * files.el (make-temp-file): Move from subr.el.
13570 * subr.el (make-temp-file): Move to files.el.
13571
13572 * window.el (get-buffer-window-list): Move from subr.el.
13573 * subr.el (get-buffer-window-list): Move to window.el.
13574
13575 * image.el (image-load-path): Use eval-at-startup to initialize.
13576
13577 * subr.el (eval-at-startup): New macro.
13578
13579 * subr.el: Much rearrangement of functions and division
13580 into pages. No code changes.
13581
13582 2005-10-22 Kenichi Handa <handa@m17n.org>
13583
13584 * tar-mode.el (tar-extract): Be sure to call
13585 find-operation-coding-system if set-auto-coding doesn't find a
13586 coding system.
13587
13588 2005-10-22 Kim F. Storm <storm@cua.dk>
13589
13590 * image.el (image-type-header-regexps): Rename from image-type-regexps.
13591 Change users.
13592 (image-type-file-name-regexps): New defconst.
13593 (image-type-from-data): Simplify loop.
13594 (image-type-from-buffer): New defun.
13595 (image-type-from-file-header): Use it instead of image-type-from-data.
13596 Use image-search-load-path instead of only looking in data-directory.
13597 (image-type-from-file-name): New defun.
13598 (image-search-load-path): Change `pathname' to `filename'.
13599 Make PATH arg optional, default to image-load-path.
13600
13601 2005-10-21 Richard M. Stallman <rms@gnu.org>
13602
13603 * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
13604
13605 * textmodes/paragraphs.el (sentence-end-base): New variable.
13606 (sentence-end): Use sentence-end-base.
13607
13608 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
13609
13610 * font-lock.el (font-lock-default-fontify-region): Check the multiline
13611 property independently from the font-lock-multiline variable.
13612
13613 2005-10-21 Richard M. Stallman <rms@gnu.org>
13614
13615 * emacs-lisp/find-func.el (find-library-name): Doc fix.
13616
13617 * startup.el (command-line): Convert library names
13618 in `load-history' to absolute file names.
13619
13620 * subr.el (symbol-file): Doc fix.
13621
13622 * loadhist.el (file-loadhist-lookup): Call locate-library
13623 instead of find-library-name. Don't try converting
13624 abs file names to library names, since load-history no longer
13625 has library names in it.
13626 (file-dependents, file-provides, file-requires): Doc fixes.
13627
13628 2005-10-21 Juri Linkov <juri@jurta.org>
13629
13630 * progmodes/etags.el (tags-table-mode): New function.
13631 (tags-verify-table): Replace initialize-new-tags-table with
13632 tags-table-mode.
13633
13634 * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
13635 default value.
13636 (desktop-modes-not-to-save): Add tags-table-mode to the
13637 default value.
13638
13639 * info.el (Info-index-next): Add total number of index
13640 alternatives to the message.
13641
13642 * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
13643 backward only space (instead of space and period) before looking
13644 at sentence end.
13645
13646 * simple.el (set-variable): Use user-variable-p instead of symbolp.
13647 Add the old variable value as 4th default-value arg of read-string.
13648
13649 2005-10-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13650
13651 * cus-face.el (custom-declare-face): Make face from X resources
13652 also on Mac.
13653
13654 * disp-table.el (standard-display-g1, standard-display-graphic):
13655 Refuse to use string glyphs also on Mac.
13656 (standard-display-european): Don't set terminal coding system also
13657 on Mac.
13658
13659 * frame.el (display-screens): Use x-display-screens also on Mac.
13660
13661 2005-10-21 Romain Francoise <romain@orebokech.com>
13662
13663 * net/rcirc.el: Now part of GNU Emacs. Update FSF's address.
13664
13665 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
13666
13667 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
13668 and $? into sexps.
13669
13670 * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
13671 warning face on open-paren-in-column-0.
13672
13673 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
13674 boundary case. Fix typo.
13675 Suggested by Martin Rudalics <rudalics@gmx.at>.
13676
13677 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
13678
13679 * textmodes/org.el (org-combined-agenda-icalendar-file)
13680 (org-icalendar-include-todo, org-icalendar-combined-name): New options.
13681 (org-export-icalendar-this-file)
13682 (org-export-icalendar-all-agenda-files)
13683 (org-export-icalendar-combine-agenda-files): New commands.
13684 (org-export-icalendar, org-print-icalendar-entries)
13685 (org-start-icalendar-file, org-finish-icalendar-file)
13686 (org-ical-ts-to-string): New functions.
13687 (org-read-date, org-goto-calendar)
13688 (org-agenda-goto-calendar): Inhibit displaying diary entries by
13689 call to `calendar'.
13690 (orgtbl-setup): Remove the :keys arguments from the menu description.
13691 (org-after-save-iCalendar-file-hook): New variable.
13692
13693 2005-10-21 Kenichi Handa <handa@m17n.org>
13694
13695 * language/vietnamese.el (tcvn-5712): Make it an alias of
13696 vietnamese-tcvn coding-system.
13697
13698 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
13699
13700 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
13701 group id is given.
13702
13703 2005-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
13704
13705 * progmodes/sh-script.el (sh-escaped-line-re): New var.
13706 (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
13707 (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
13708 whose line is either continued or ends with a comment.
13709
13710 2005-10-20 Romain Francoise <romain@orebokech.com>
13711
13712 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
13713
13714 * replace.el (occur-engine): Add follow-link property.
13715
13716 * font-core.el (font-lock-mode): Doc fix.
13717
13718 2005-10-20 Richard M. Stallman <rms@gnu.org>
13719
13720 * net/rcirc.el: New file.
13721
13722 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
13723
13724 * term.el (term-term-name): Initialize to "eterm-color".
13725
13726 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
13727
13728 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
13729 for encryption functionality.
13730 Move allout customization subgroup from `editing' to `outlines' group.
13731 Fix commentary keywords to legitimate ones.
13732 Update author info (using my current email address, obscurified).
13733 (allout-encrypt-string, allout-encryption-produce-work-buffer)
13734 (allout-encrypted-topic-p, allout-encrypted-text-type)
13735 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
13736 (allout-situate-encryption-key-verifier)
13737 (allout-get-encryption-key-verifier, allout-verify-key)
13738 (allout-next-topic-pending-encryption)
13739 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
13740 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
13741 (outline-key-verifier-handling, outline-key-hint-handling)
13742 (outline-encrypt-unencrypted-on-saves): New defcustoms.
13743 (allout-file-key-verifier-string, allout-encryption-scheme)
13744 (allout-key-verifier-string, allout-key-hint-string)
13745 (allout-after-save-decrypt): New variables.
13746 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
13747 (allout-after-saves-handler): New hook functions.
13748 (allout-post-command-business): Do allout-after-save-decrypt.
13749 (allout-enable-file-variable-adjustment): Custom var to enable
13750 mechanism for adding and adjusting settings of Emacs file variables.
13751 (allout-adjust-file-variable, allout-file-vars-section-data):
13752 New functions, implement the mechanism.
13753 (outlineify-sticky): Use the file vars mechanism.
13754 (allout-inhibit-protection, allout-during-write-cue)
13755 (allout-override-protect, allout-before-change-protect): Remove.
13756 (allout-flag-region, allout-open-topic): Adjust read-only text.
13757 (allout-open-line-not-read-only): Add to facilitate read-only
13758 text based protection.
13759 (allout-kill-line): Revise to adjust read-only text, clue the
13760 user about the inhibition.
13761 (allout-unprotected): Use unwind-protect.
13762 (allout-shift-in, allout-shift-out): Disallow manually shifting a
13763 topic deeper than the offspring depth of the previous topic -
13764 avoiding confusing "containment discontinuities".
13765 (allout-reindent-bodies): Fix retention of body relative hanging
13766 indent during promotion of collapsed bodies.
13767 (allout-open-topic): Make it easy to open new topic with same
13768 bullet as current topic - topic creation functions provided with
13769 any universal argument provokes now prompt for bullet, defaulting
13770 to the bullet of the previous topic.
13771 (allout-plain-bullets-string, allout-distinctive-bullets-string):
13772 Plain bullet alternates `.' period and `,' comma only. All other
13773 bullets are relegated to special status (but customizable).
13774 (allout-end-of-entry): Rename from allout-end-of-current-entry
13775 since it actually operates w.r.t. most immediately containing
13776 entry, visible or not.
13777 (allout-hide-current-entry, allout-show-current-entry): Use the
13778 revised version.
13779 (allout-old-expose-topic): Solidify deprecation.
13780 (allout-end-of-subtree): Add so we can span concealed as well
13781 as visible topics.
13782 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
13783 (allout-end-of-current-heading): Tweak to just respect the first line.
13784 (allout-get-body-text): Add.
13785 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
13786 when invoked interactively.
13787 (allout-up-current-level): Use `interactive-p'.
13788 (allout-mode, allout-init): Miscellaneous docstring and
13789 operational refinements, as well as hookups of new encryption stuff.
13790 (allout-beginning-of-current-entry): Now works as advertised.
13791 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
13792 (allout-isearch-rectification): Refine condition for isearching.
13793 (allout-isearch-abort, allout-enwrap-isearch)
13794 (allout-flag-region, my-region-active-p): Relocate some macros.
13795 (allout-title): Fallback title is (buffer-name), not
13796 non-existing (current-buffer-name).
13797 (subst-char-in-string): Define if absent (for some XEmacs versions).
13798
13799 2005-10-20 Jari Aalto <jari.aalto@cante.net>
13800
13801 * mail/sendmail.el (mail-setup-hook, mail-aliases)
13802 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
13803 (mail-citation-prefix-regexp, mail-signature-file)
13804 (mail-default-headers, mail-bury-selects-summary)
13805 (mail-send-nonascii): Add autoload cookies.
13806
13807 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
13808
13809 * frame.el (blink-cursor-mode): Add `mac' to the list of
13810 window-system's that support blinking cursor.
13811
13812 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
13813
13814 * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
13815
13816 2005-10-20 Eli Zaretskii <eliz@gnu.org>
13817
13818 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
13819 Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
13820 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
13821
13822 2005-10-20 Kim F. Storm <storm@cua.dk>
13823
13824 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
13825 (ido-set-current-directory): Don't add / after final @.
13826 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
13827 Explicitly handle ange-ftp completion oddities.
13828 (ido-make-file-list): Don't rotate list at tramp root to avoid
13829 triggering tramp file handler for expand-file-name via get-file-buffer.
13830
13831 2005-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
13832
13833 * savehist.el (savehist-coding-system): Revert to checking XEmacs.
13834
13835 2005-10-19 Jay Belanger <belanger@truman.edu>
13836
13837 * calc/calc-units.el (math-standard-units): Add units, adjust
13838 symbols and update values.
13839 (math-unit-prefixes): Add more prefixes.
13840
13841 2005-10-19 Romain Francoise <romain@orebokech.com>
13842
13843 * bookmark.el (bookmark-menu-heading): New face.
13844 (bookmark-bmenu-list): Use it.
13845 Don't fiddle with `baud-rate' at top-level.
13846
13847 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
13848
13849 * image.el (create-image, find-image): Mention max-image-size in
13850 docstring.
13851
13852 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13853
13854 * savehist.el (savehist-load): Revert to checking XEmacs.
13855
13856 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
13857 Various docstring and line-width fixups.
13858 (conf-mode): Use cond.
13859 Set font-lock-defaults. Don't set comment-use-syntax.
13860
13861 2005-10-18 David Ponce <david@dponce.com>
13862
13863 * tree-widget.el (tree-widget-button-click): New function.
13864 (tree-widget-button-keymap): Use it.
13865
13866 2005-10-18 Romain Francoise <romain@orebokech.com>
13867
13868 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
13869 (bookmark-bmenu-hide-filenames): Add follow-link property.
13870 Improve help-echo text.
13871
13872 * ffap.el (find-file-at-point): Doc fix.
13873
13874 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13875
13876 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
13877
13878 2005-10-18 Masatake YAMATO <jet@gyve.org>
13879
13880 Install to the CVS repository what I forgot to install in my
13881 2005-10-16 changes.
13882
13883 * progmodes/python.el (python-complete-symbol): Pass the common
13884 prefix substring of completion to `display-completion-list'.
13885
13886 * textmodes/org.el (org-complete): Ditto.
13887
13888 2005-10-18 Masatake YAMATO <jet@gyve.org>
13889
13890 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
13891
13892 * woman.el (WoMan-xref-man-page): New button type derived
13893 from `Man-abstract-xref-man-page'.
13894 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
13895
13896 * man.el (Man-abstract-xref-man-page): New button type.
13897 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
13898 (Man-highlight-references): Add new optional argument `xref-man-type'.
13899
13900 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
13901
13902 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
13903
13904 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
13905
13906 * cus-edit.el (Custom-move-and-invoke): Delete.
13907 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
13908
13909 * wid-edit.el (widget-move-and-invoke): New function, from
13910 Custom-move-and-invoke.
13911
13912 2005-10-17 Bill Wohler <wohler@newt.com>
13913
13914 Move all remaining images from lisp/toolbar to etc/images, move
13915 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
13916 the low resolution images in their own directory (low-color).
13917
13918 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*
13919 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*
13920 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*
13921 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*
13922 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*
13923 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*
13924 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
13925
13926 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
13927 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
13928 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
13929 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
13930 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
13931 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
13932 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
13933 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
13934 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
13935 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
13936 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
13937 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
13938 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
13939 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
13940 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
13941
13942 To conform with convention, replace the underscore (_) in the
13943 following image names with dash (-) or (/) as appropriate.
13944
13945 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
13946 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
13947 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
13948 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
13949 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
13950 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
13951 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
13952 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
13953 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
13954 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
13955 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
13956 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
13957 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
13958 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
13959 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
13960
13961 * info.el (info-tool-bar-map): Replace underscores in image names
13962 with dashes.
13963
13964 * makefile.w32-in (WINS): Remove toolbar.
13965
13966 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
13967
13968 * tool-bar.el: Move to lisp from toolbar. Now that
13969 toolbar is empty, it should be deleted when folks run "cvs up -P".
13970
13971 2005-10-18 Jay Belanger <belanger@truman.edu>
13972
13973 * calc/calc-store.el (calc-store-into): Get the proper variable name
13974 to display in message.
13975
13976 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
13977
13978 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
13979 expressions display in speedbar for all buffers when debugging.
13980 (gdb-speedbar-expand-node): Ensure node contraction is always updated.
13981
13982 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
13983 (speedbar-insert-button, speedbar-make-button):
13984 Use add-text-properties.
13985 (speedbar-update-localized-contents)
13986 (speedbar-update-directory-contents)
13987 (speedbar-update-special-contents): Use dolist.
13988 (speedbar-buffer-easymenu-definition): Add a menu separator.
13989
13990 2005-10-17 Jason Rumney <jasonr@gnu.org>
13991
13992 * makefile.w32-in: Use $(lisp) consistently.
13993 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
13994 for shell specific generation of mh-autoloads.
13995
13996 2005-10-17 Richard M. Stallman <rms@gnu.org>
13997
13998 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
13999
14000 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
14001
14002 * jit-lock.el (jit-lock-fontify-now):
14003 Move jit-lock-context-unfontify-pos to avoid wasted work.
14004
14005 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
14006
14007 * net/tramp.el (tramp-completion-mode): New defvar. Used in
14008 `tramp-completion-mode' for checking if we are in completion mode.
14009 (tramp-completion-handle-file-name-all-completions): Reorder code
14010 in order to complete for file names only in case there are no
14011 method/user/host completions. This is necessary for cooperation
14012 with ido. Reported by Kim F. Storm <storm@cua.dk>.
14013
14014 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
14015
14016 * longlines.el (longlines-search-forward)
14017 (longlines-search-backward): Match any number of spaces.
14018
14019 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
14020
14021 * diff-mode.el (diff-mode): Doc fix.
14022
14023 2005-10-16 David Reitter <david.reitter@gmail.com>
14024
14025 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
14026 as default on darwin and windows systems.
14027
14028 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
14029
14030 * arc-mode.el (archive-zip-extract): Doc fix.
14031
14032 2005-10-16 Romain Francoise <romain@orebokech.com>
14033
14034 * mouse.el (mouse-1-click-follows-link): Doc fix.
14035
14036 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
14037
14038 * savehist.el: Don't require CL at runtime.
14039 (savehist-xemacs): Remove.
14040 (savehist-coding-system): Use utf-8 if present, regardless of religion.
14041 (savehist-no-conversion): Use (featurep 'xemacs).
14042 (savehist-load): Check existence of start-itimer rather than XEmacs.
14043 Use an idle timer.
14044 (savehist-process-for-saving): Replace use of CL funs `subseq' and
14045 `delete-if-not'.
14046
14047 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
14048
14049 * savehist.el: Newer version.
14050 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
14051 (savehist-last-checksum, savehist-no-conversion): New vars.
14052 (savehist-autosave, savehist-process-for-saving, savehist-printable):
14053 New functions.
14054 (savehist-load, savehist-save): Use them.
14055 (savehist-delimit): Remove.
14056
14057 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
14058
14059 * progmodes/compile.el (compilation-goto-locus): Display the
14060 compilation buffer first and the source buffer second, in case they're
14061 in overlapping frames. Don't raise the compilation frame if it was the
14062 selected window upon entry. Pass the `other-window' arg to
14063 pop-to-buffer.
14064
14065 * info.el (Info-fontify-node): Use dolist.
14066 Change add-text-properties to put-text-property.
14067
14068 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14069
14070 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
14071 bound of search.
14072
14073 2005-10-16 Masatake YAMATO <jet@gyve.org>
14074
14075 * dabbrev.el (dabbrev-completion): Pass the common
14076 prefix substring of completion to `display-completion-list'.
14077
14078 * filecache.el (file-cache-minibuffer-complete)
14079 (file-cache-complete): Ditto.
14080
14081 * tempo.el (tempo-display-completions): Ditto.
14082
14083 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
14084
14085 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
14086
14087 * eshell/em-hist.el (eshell-list-history): Ditto.
14088
14089 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
14090
14091 * mail/mailalias.el (mail-complete): Ditto.
14092
14093 * progmodes/etags.el (complete-tag): Ditto.
14094
14095 * progmodes/make-mode.el (makefile-complete): Ditto.
14096
14097 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
14098
14099 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
14100
14101 * progmodes/pascal.el (pascal-complete-word)
14102 (pascal-show-completions): Ditto.
14103
14104 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
14105
14106 * simple.el (completion-common-substring): New variable.
14107 (completion-setup-function): Use `completion-common-substring'
14108 to put faces.
14109
14110 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14111
14112 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
14113 (x-get-selection, mac-select-convert-to-string): Convert from/to
14114 UTF-16 clipboard data as in native byte order, no BOM.
14115
14116 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
14117
14118 * progmodes/gud.el (gud-tool-bar-map): Rename the images
14119 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
14120 (gud-sentinel): Use speedbar-frame to check for speedbar.
14121
14122 2005-10-15 Richard M. Stallman <rms@gnu.org>
14123
14124 * savehist.el: New file.
14125
14126 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
14127
14128 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
14129 Fix bug in \bf fontification.
14130
14131 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
14132
14133 * pcvs.el (cvs-edit-log-files): New var.
14134 (cvs-mode-edit-log): New arg `file'.
14135 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
14136 Instead force the use of the original file and nothing else.
14137 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
14138 the cvs-minor-wrap-function is set.
14139 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
14140
14141 2005-10-14 Bill Wohler <wohler@newt.com>
14142
14143 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
14144 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
14145 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
14146 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
14147 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
14148 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
14149 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
14150 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
14151 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
14152 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
14153 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
14154 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
14155 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
14156 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
14157 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
14158
14159 * progmodes/gud.el (gud-tool-bar-map): Rename the images
14160 appropriately (for example, gud-break to gud/break).
14161
14162 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
14163
14164 * longlines.el (longlinges-search-function)
14165 (longlines-search-forward, longlines-search-backward): New functions.
14166 (longlines-mode): Set isearch-search-fun-function to
14167 longlinges-search-function.
14168
14169 * mouse.el (mouse-drag-region-1): Handle the case where a
14170 double-click event is bound to an arbitrary function.
14171
14172 2005-10-14 David Ponce <david@dponce.com>
14173
14174 * recentf.el (recentf-track-opened-file)
14175 (recentf-track-closed-file, recentf-update-menu)
14176 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
14177 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
14178 mouse-1-click-follows-link.
14179
14180 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14181
14182 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
14183 Gnome file-manager.png. Suggested by
14184 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
14185
14186 * toolbar/README: Add diropen.xpm.
14187
14188 2005-10-13 Bill Wohler <wohler@newt.com>
14189
14190 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
14191 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
14192
14193 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
14194
14195 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
14196 Don't waste the byte-compiler's time on constant data.
14197
14198 2005-10-13 Kenichi Handa <handa@m17n.org>
14199
14200 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
14201 byte with `escape-glyph' face.
14202
14203 * international/fontset.el (ccl-encode-unicode-font):
14204 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
14205 Handle the case that ucs-mule-to-mule-unicode translates a character to
14206 ASCII (usually for IPA characters).
14207
14208 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14209
14210 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
14211 Don't hide the underline of titles if font-lock-mode is disabled.
14212
14213 2005-10-12 Bill Wohler <wohler@newt.com>
14214
14215 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
14216 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
14217 files in MH-E-SRC have been updated.
14218 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
14219
14220 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14221
14222 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
14223 (mixal-mode-syntax-table): Add \n as end-comment.
14224 (mixal-operation-codes-alist): Immediately initialize to full value.
14225 (mixal-add-operation-code): Remove.
14226 (mixal-describe-operation-code): Make the arg non-optional.
14227 Use the interactive spec instead.
14228 Use mixal-operation-codes-alist rather than mixal-operation-codes.
14229 (mixal-font-lock-keywords): Don't highlight comments here any more.
14230 (mixal-font-lock-syntactic-keywords): New var.
14231 (mixal-mode): Use it. Fix comment-start-skip.
14232
14233 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14234
14235 * startup.el (command-line-x-option-alist): -nb => -nbi
14236
14237 2005-10-12 Kim F. Storm <storm@cua.dk>
14238
14239 * startup.el (fancy-splash-default-action): Discard mouse click in
14240 the splash screen window, as it has no sensible meaning in the
14241 next window to be selected. Fixes error reported by Jan D.
14242
14243 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
14244
14245 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
14246
14247 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14248
14249 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
14250 Try to fix up minor layout issues like indentation, line break, etc...
14251 (mixal-mode-syntax-table): Don't try to specify comment syntax,
14252 because it doesn't work.
14253 (mixal-operation-codes): Add some more codes.
14254 (mixal-font-lock-keywords): Process comments here.
14255 (mixal-mode): mixasm no longer needs -g option.
14256
14257 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
14258
14259 * progmodes/sh-script.el (sh-tmp-file):
14260 Use mktemp -t. Finish support for es and rc shells.
14261
14262 2005-10-11 Jay Belanger <belanger@truman.edu>
14263
14264 * calc/calcalg2.el (calc-integral): With an argument, compute the
14265 definite integral.
14266
14267 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
14268
14269 * mouse.el (mouse-drag-region-1): Don't try to catch a
14270 double-click when doing follow-link (it's overridden anyway).
14271
14272 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
14273
14274 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
14275 (autoload-print-form-outbuf): Add docstring.
14276
14277 2005-10-11 Juri Linkov <juri@jurta.org>
14278
14279 * info.el (Info-mode-menu): Delete menu item "Edit".
14280 (Info-mode): Delete description of Info-edit from docstring,
14281 and rearrange descriptions of Info commands in the order
14282 they are documented in the Info manual.
14283
14284 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14285
14286 * calendar/appt.el (appt-check): Use diary-selective-display var.
14287
14288 2005-10-10 Richard M. Stallman <rms@gnu.org>
14289
14290 * net/newsticker.el (newsticker-start, newsticker-show-news):
14291 Add autoload cookies.
14292
14293 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
14294
14295 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
14296
14297 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
14298
14299 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
14300
14301 2005-10-10 Jay Belanger <belanger@truman.edu>
14302
14303 * calc/calc-arith.el (math-check-known-scalarp)
14304 (math-check-known-matrixp): Check the values of arguments that are
14305 variables.
14306 (math-check-known-square-matrixp): New function.
14307 (math-known-square-matrixp): Use math-check-known-square-matrixp.
14308 (math-super-types): Add sqmatrix type.
14309
14310 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
14311 mode name `square' to `sqmatrix'.
14312
14313 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
14314 mode name `square' to `sqmatrix'.
14315
14316 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
14317
14318 * progmodes/etags.el (select-tags-table-mode): Don't use
14319 selective-display.
14320 (tags-select-tags-table): Pass `button' to the action function.
14321 (select-tags-table): Place the side-info on button properties rather
14322 than in hidden text. Abbreviate file names.
14323 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
14324 (select-tags-table-select): Add `button' argument.
14325 Get side-info from the button property rather than from hidden text.
14326
14327 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
14328
14329 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
14330 (gud-speedbar-buttons): Preserve point if possible.
14331 (gud-sentinel): Restore previous speedbar display type.
14332
14333 * progmodes/gdb-ui.el (gdba): Improve diagram.
14334 (def-gdb-auto-update-handler, gdb-info-locals-handler)
14335 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
14336 Call get-buffer-window once.
14337
14338 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
14339
14340 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
14341 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
14342 (pascal-indent-command): Remove unused var `ind'.
14343 (pascal-indent-case): Remove unused var `oldpos'.
14344 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
14345 since it's now used as a proper minor mode map.
14346 (pascal-outline): Rename to pascal-outline-mode.
14347 (pascal-outline-mode): Use define-minor-mode.
14348 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
14349 selective-display.
14350
14351 2005-10-10 Andreas Schwab <schwab@suse.de>
14352
14353 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
14354 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
14355
14356 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
14357 outside source directory.
14358
14359 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
14360
14361 * textmodes/org.el (org-mode-map): Explicit definition of `C-c
14362 C-x' as a prefix.
14363 (orgtbl-mode-map): Full keymap instead of sparse, because all
14364 `self-insert-command' keys are redefined in this map.
14365 (org-export-as-html): Specify charset for HTML file, by taking it
14366 from the coding system.
14367
14368 2005-10-10 Kenichi Handa <handa@m17n.org>
14369
14370 * textmodes/flyspell.el (flyspell-check-word-p):
14371 If unread-command-events is non-empty, don't call sit-for.
14372
14373 2005-10-09 Richard M. Stallman <rms@gnu.org>
14374
14375 * font-lock.el (font-lock-syntactic-keywords)
14376 (font-lock-keywords): Doc fixes.
14377
14378 * textmodes/flyspell.el (flyspell-external-point-words):
14379 Simplify logic, and don't try to check for consecutive appearances
14380 of one incorrect word.
14381
14382 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
14383
14384 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
14385 separator.
14386
14387 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
14388 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
14389 (gud-expansion-speedbar-buttons): New function.
14390 (gud-speedbar-buttons): Check for gud-comint-buffer.
14391
14392 2005-10-09 Bill Wohler <wohler@newt.com>
14393
14394 * Makefile.in (updates): Add mh-loaddefs dependency.
14395
14396 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
14397
14398 * speedbar.el (speedbar-file-key-map): Fix typo.
14399
14400 2005-10-09 Daniel Brockman <daniel@brockman.se>
14401
14402 * cus-start.el (line-spacing): Add custom spec.
14403
14404 2005-10-09 Romain Francoise <romain@orebokech.com>
14405
14406 * textmodes/ispell.el (ispell-check-version): Fix last change.
14407
14408 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14409
14410 * term/x-win.el: Remove -i, --icon-type from comment.
14411
14412 * startup.el (command-line-x-option-alist): Remove options -i,
14413 -itype, --icon-type, added -nb, --no-bitmap-icon
14414
14415 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
14416
14417 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
14418 instead of :active.
14419
14420 2005-10-08 Eric Hanchrow <offby1@blarg.net> (tiny change)
14421
14422 * textmodes/ispell.el (ispell-check-version):
14423 Ignore hyphen, and all that follows, in aspell's version text.
14424
14425 2005-10-08 Jay Belanger <belanger@truman.edu>
14426
14427 * calc/calc-arith.el (math-known-square-matrixp): New function.
14428 (math-pow-fancy): Check for matrices before distributing exponent
14429 across products.
14430
14431 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
14432 fullscreen keypad. Suggested by Luc Teirlinck.
14433 (calc-keypad-show-input): Add space for formatting.
14434
14435 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
14436 Add square matrix option.
14437
14438 * calc/calc-poly.el (math-expand-term): Check for matrices instead
14439 of checking calc-matrix-mode when deciding how to expand.
14440
14441 * calc/calc.el (calc-set-mode-line): Add square matrix option.
14442
14443 2005-10-08 Lars Hansen <larsh@soem.dk>
14444
14445 * net/tramp.el (tramp-perl-directory-files-and-attributes):
14446 Add error handling.
14447 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
14448
14449 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
14450
14451 Sync with Tramp 2.0.51.
14452
14453 * net/tramp.el (tramp-handle-set-visited-file-modtime)
14454 (tramp-handle-insert-file-contents, tramp-handle-write-region):
14455 Insert special handling for `last-coding-system-used', again
14456 it still seems to be necessary (unlike stated before).
14457 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
14458 (tramp-password-prompt-regexp): There might be other words before
14459 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
14460 (tramp-chunksize): Improve docstring.
14461 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
14462 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
14463 Christian Joergensen <bugs@razor.dk>.
14464
14465 2005-10-07 Glenn Morris <rgm@gnu.org>
14466
14467 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
14468 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
14469 precision'.
14470
14471 2005-10-07 Romain Francoise <romain@orebokech.com>
14472
14473 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
14474 (ibuffer-do-shell-command-pipe-replace)
14475 (ibuffer-do-shell-command-file, ibuffer-do-eval)
14476 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
14477 (ibuffer-do-revert, ibuffer-do-replace-regexp)
14478 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
14479 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
14480 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
14481 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
14482 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
14483 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
14484 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
14485 Autoload file sans suffix.
14486
14487 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
14488
14489 2005-10-07 David Ponce <david@dponce.com>
14490
14491 * recentf.el (recentf-menu-open-all-flag): New option.
14492 (recentf-digit-shortcut-command-name): New function.
14493 (recentf--shortcuts-keymap): New variable.
14494 (recentf-menu-shortcuts): New variable.
14495 (recentf-make-menu-items): Initialize it. Replace the "More..."
14496 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
14497 (recentf-menu-value-shortcut): New function.
14498 (recentf-make-menu-item): Use it. No more in-lined.
14499 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
14500 (recentf-open-most-recent-file): Rename from
14501 `recentf-open-file-with-key'. Don't depend on key binding.
14502 (recentf-mode-map): New variable.
14503 (recentf-mode): Use it.
14504
14505 2005-10-06 Bill Wohler <wohler@newt.com>
14506
14507 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
14508
14509 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
14510 (MH-E-SRC): New. Used by mh-autoloads.
14511 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
14512 files in MH-E-SRC have been updated.
14513 (compile, recompile, bootstrap): Depend on mh-autoloads.
14514
14515 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
14516
14517 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
14518 gud-break and gud-remove icons when the fringe is not available.
14519
14520 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
14521 Typo.
14522
14523 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
14524
14525 * play/zone.el (zone): Wrap body with save-window-excursion.
14526
14527 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
14528
14529 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
14530 Use the new `list-only' arg to diary-list-entries.
14531
14532 * calendar/diary-lib.el: Use overlays rather than selective-display.
14533 (diary-selective-display): New var.
14534 (diary-header-line-format): Use it.
14535 (diary-list-entries): Add argument `list-only'.
14536 Put the buffer in diary-mode. Don't add \^M at beg and end.
14537 Replace \^M by invisible overlays.
14538 (diary-unhide-everything): Replace \^M by invisible overlays.
14539 (print-diary-entries): Look for overlays rather than \^M.
14540 Add a space to the temp buffer name.
14541 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
14542 Put the buffer in diary-mode.
14543 (list-sexp-diary-entries): Replace \^M by invisible overlays.
14544 (diary-anniversary): Make the year arg optional.
14545 (diary-time-regexp): New const.
14546 (diary-font-lock-keywords): Use it to accept a few more time formats.
14547
14548 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
14549
14550 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
14551
14552 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
14553 Fix bug introduced 2005-07-03: Use (car (last ...))
14554 to faithfully reproduce replaced artist-last.
14555 (artist-set-arrow-points-for-poly): Likewise.
14556 Suggested by Johan Bockg\e,Ae\e(Brd.
14557
14558 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
14559
14560 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
14561 * wid-edit.el (widget):
14562 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
14563 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
14564
14565 2005-10-06 Kenichi Handa <handa@m17n.org>
14566
14567 * international/mule-cmds.el (set-language-environment):
14568 Fix setting up of case-table for unibyte mode.
14569
14570 * simple.el (what-cursor-position): If the character is displayed
14571 by some `display' text property, show that. Don't use
14572 single-key-description for eight-bit characters in multibyte mode.
14573
14574 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
14575
14576 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
14577 (gdb-ann3): Set it.
14578 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
14579 (gdb-info-frames-custom): Use inverse-video for first five
14580 characters of selected frame only.
14581 (gdb-get-frame-number): Select frame even when point is on frame
14582 number.
14583
14584 2005-10-06 Masatake YAMATO <jet@gyve.org>
14585
14586 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
14587 Put `font-lock-function-name-face'.
14588 (gdb-info-frames-custom): Put `font-lock-function-name-face'
14589 and `font-lock-variable-name-face'
14590 (gdb-registers-font-lock-keywords): New font lock keywords definition.
14591 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
14592 (gdb-memory-font-lock-keywords): New font lock keywords definition.
14593 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
14594 (gdb-local-font-lock-keywords): New font lock keywords definition.
14595 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
14596 (gdb-threads-font-lock-keywords): New font lock keywords definition.
14597 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
14598
14599 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
14600
14601 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
14602 (ediff-merge-region-is-non-clash-to-skip): Previously called
14603 ediff-merge-region-is-non-clash.
14604
14605 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
14606 Use insert-buffer-substring.
14607
14608 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
14609 selecting files to patch. Also bug fixes.
14610
14611 * ediff-util.el (ediff-setup): Bug fix.
14612 (ediff-next-difference): Never skip clashes that differ in white
14613 space only.
14614
14615 * ediff-wind.el (ediff-setup-control-frame)
14616 (ediff-destroy-control-frame): Check the menubar feature.
14617
14618 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
14619 (viper-refresh-mode-line): Use make-local-variable to localize
14620 some vars instead of make-variable-buffer-local. Suggested by
14621 Stefan Monnier.
14622
14623 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
14624 (viper-restore-cursor-type, viper-set-insert-cursor-type):
14625 Use make-local-variable instead of make-variable-buffer-local.
14626 Suggested by Stefan Monnier.
14627
14628 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
14629 (viper-comint-mode-hook): Use make-local-variable on
14630 require-final-newline.
14631 (viper-non-hook-settings): Don't use make-variable-buffer-local.
14632
14633 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
14634
14635 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
14636 also the second char of a comment-start sequence.
14637 (scheme-sexp-comment-syntax-table): New var.
14638 (lambda, define): Set their scheme-doc-string-elt property.
14639 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
14640 Use lisp-font-lock-syntactic-face-function now that it properly
14641 handles |...| symbols.
14642 (scheme-mode-variables): Set lisp-doc-string-elt-property,
14643 parse-sexp-lookup-properties and font-lock-extra-managed-props.
14644
14645 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
14646 bit from # to |.
14647 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
14648
14649 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
14650 (lisp-doc-string-elt-property): New var.
14651 (lisp-font-lock-syntactic-face-function): Use it.
14652 Rewrite to recognize docstrings even for forms not at toplevel.
14653
14654 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
14655 annotation on the | part of #| rather than on the # part.
14656 (scheme-font-lock-syntactic-face-function): New function, to
14657 distinguish strings from |...| symbols.
14658 (scheme-mode-variables): Use it. Also fix up the font-lock-time
14659 syntax-table so that #|...|# is properly highlighted.
14660
14661 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
14662 Don't mark as docstring the 3rd elem of an unknown toplevel form.
14663
14664 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
14665
14666 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
14667 and C-e.
14668
14669 * emacs-lisp/eldoc.el: Move comments into docstrings.
14670 (eldoc-message-commands): Initialize in its declaration.
14671 Add move-beginning-of-line and move-end-of-line.
14672 (eldoc-add-command, eldoc-add-command-completions)
14673 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
14674
14675 * outline.el (outline-mark-subtree): Activate the mark.
14676
14677 * calendar/appt.el (appt-time-regexp): New var.
14678 (appt-add, appt-make-list): Use it.
14679 (appt-convert-time): Clean up.
14680
14681 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
14682 Don't set any syntax-table property here.
14683 (tex-font-lock-verb): New function. Do it here.
14684 (tex-font-lock-syntactic-keywords): Use it.
14685
14686 2005-10-04 Richard M. Stallman <rms@gnu.org>
14687
14688 * wid-edit.el (widget-file-complete): Get the widget start point
14689 the right way. Default directory to `/' if file has none.
14690
14691 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
14692
14693 * textmodes/flyspell.el (flyspell-mode-on):
14694 Call ispell-maybe-find-aspell-dictionaries.
14695
14696 * textmodes/ispell.el (ispell-word, ispell-region):
14697 Call ispell-maybe-find-aspell-dictionaries.
14698 (ispell-accept-buffer-local-defs):
14699 Don't call ispell-maybe-find-aspell-dictionaries
14700
14701 2005-10-04 Richard M. Stallman <rms@gnu.org>
14702
14703 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
14704
14705 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
14706
14707 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
14708 instead of `fboundp' in order to allow for anonymous functions.
14709
14710 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
14711
14712 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
14713 case the user clicks on the link while another window is selected.
14714 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
14715
14716 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
14717 functionality.
14718 (dframe-help-echo): Save point in case mouse tracking is off.
14719
14720 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
14721
14722 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
14723
14724 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14725
14726 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
14727 not change the global value of those vars.
14728
14729 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
14730 make-local-variable which we do not need any more.
14731
14732 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
14733
14734 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
14735 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
14736 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
14737 (speedbar-path-line): Define obsolete aliases.
14738 (speedbar-line-directory): Doc fix.
14739
14740 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
14741 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
14742 instead of speedbar-line-path.
14743
14744 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14745
14746 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
14747 to nil if dropping on a window. Handle dropping on a minibuffer window
14748 like dropping on a non-window part of Emacs.
14749
14750 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14751
14752 * net/ange-ftp.el: Use with-current-buffer.
14753 (ange-ftp-insert-directory): Do not follow symlinks any more.
14754
14755 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
14756 Remove interactive spec.
14757
14758 2005-10-03 Kim F. Storm <storm@cua.dk>
14759
14760 * ido.el (ido-mode): Use custom-initialize-set.
14761
14762 2005-10-02 Richard M. Stallman <rms@gnu.org>
14763
14764 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
14765 Use insert-buffer-substring.
14766
14767 * net/tramp.el: Pacify byte compiler warnings in pacification code.
14768 (tramp-handle-file-local-copy): Use insert-buffer-substring.
14769
14770 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14771
14772 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
14773 in last change.
14774 (ange-ftp-insert-directory): Fix up the search for the case where
14775 `file' is absolute.
14776
14777 2005-10-02 Romain Francoise <romain@orebokech.com>
14778
14779 * progmodes/compile.el (compile-goto-error): Delete extra paren.
14780
14781 2005-10-02 Andreas Schwab <schwab@suse.de>
14782
14783 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
14784 directory component in the session info.
14785
14786 2005-10-01 Richard M. Stallman <rms@gnu.org>
14787
14788 * comint.el (comint-redirect-subvert-readonly): Doc fix.
14789
14790 * simple.el (next-error-internal): New function.
14791
14792 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
14793 (compilation-start): Pass new arg to compilation-buffer-name.
14794 (compile-goto-error): Use next-error-internal.
14795
14796 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
14797
14798 * speedbar.el: Remove RCS tag.
14799 (speedbar-check-read-only): Handle non-existent files.
14800
14801 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
14802
14803 * info.el (Info-speedbar-hierarchy-buttons)
14804 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
14805
14806 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14807
14808 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
14809 Do not match newline.
14810 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
14811 (bibtex-summary): Remove unnecessary save-excursion.
14812 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
14813
14814 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14815
14816 * term/mac-win.el: Add charset info for "iso10646-1".
14817 Modify default fontset to use ATSUI-compatible fonts for some charsets
14818 if available.
14819
14820 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
14821
14822 * speedbar.el: Re-apply arch tag.
14823 (speedbar-version): Rename to version 1.0. Suggested by Eric
14824 M. Ludlam.
14825 Reapply two changes from Emacs CVS' version of speedbar lost
14826 during the merge:
14827 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
14828 (speedbar-frame-parameters): Improve customize type.
14829
14830 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
14831
14832 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
14833 (ange-ftp-file-directory-p): Fix the symlink case.
14834 (ange-ftp-insert-directory): When listing a single file, get a list of
14835 the parent buffer and extract the relevant line. Inspired from a patch
14836 by Katsumi Yamaoka <yamaoka@jpl.org>.
14837 (ange-ftp-file-name-sans-versions): Simplify.
14838
14839 2005-09-30 Bill Wohler <wohler@newt.com>
14840
14841 Move MH-E image files from toolbar and mail directories into
14842 etc/images.
14843
14844 * mail/reply2.*: Move to etc/images/mail/reply*.
14845
14846 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
14847 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
14848 etc/images.
14849
14850 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
14851 * toolbar/reply*: Move to etc/images/mail.
14852
14853 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
14854
14855 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
14856
14857 * speedbar.el: New version 1.0pre3.
14858
14859 Frame management code (including timer, and mouse click specifics)
14860 moved to dframe.el:
14861 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
14862 (speedbar-timer): Removed. Use dframe-timer.
14863 (speedbar-close-frame): Removed. Use dframe-close-frame.
14864 (speedbar-activity-change-focus-flag): Removed. Use
14865 dframe-activity-change-focus-flag.
14866 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
14867 dframe-update-speed.
14868
14869 (speedbar-current-frame): New macro. Use this instead of the
14870 variable speedbar-frame.
14871
14872 (speedbar-use-images, speedbar-expand-image-button-alist)
14873 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
14874
14875 (speedbar-find-image-on-load-path): Removed. Replaced by
14876 defezimage in ezimage.el.
14877 (speedbar-expand-image-button-alist): Removed. Replaced by
14878 ezimage-expand-image-button-alist in ezimage.el.
14879
14880 (speedbar-ignored-directory-regexp)
14881 (speedbar-add-ignored-directory-regexp)
14882 (speedbar-ignored-directory-expressions)
14883 (speedbar-line-directory, speedbar-buffers-line-directory)
14884 (speedbar-directory-line, speedbar-buffers-line-directory):
14885 Renamed, replacing `path' with `directory'.
14886
14887 (speedbar-create-directory, speedbar-expand-line-descendants)
14888 (speedbar-toggle-line-expansion)
14889 (speedbar-contract-line-descendants): New commands.
14890
14891 (speedbar-query-confirmation-method, speedbar-select-frame-method)
14892 (speedbar-use-tool-tips-flag): New options.
14893
14894 (speedbar-check-read-only, speedbar-require-version)
14895 (speedbar-insert-separator, speedbar-buffers-tail-notes)
14896 (speedbar-handle-delete-frame, speedbar-try-completion)
14897 (speedbar-update-localized-contents): New functions.
14898
14899 (speedbar-incompatible-version, speedbar-ro-to-do-point)
14900 (speedbar-object-read-only-indicator): New variables.
14901
14902 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
14903 New hooks.
14904
14905 (speedbar-separator-face): New face.
14906
14907 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
14908 (speedbar-ignored-modes): Add fundamental-mode.
14909 (speedbar-directory-unshown-regexp): Add . directories.
14910
14911 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
14912 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
14913 `]' for full expand/close.
14914 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
14915
14916 (speedbar-check-vc): Support hidden files.
14917 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
14918 (speedbar-this-file-in-vc): Use vc-state if available. If VC
14919 state is nil, it is not checked out.
14920
14921 (speedbar-line-text, speedbar-line-token): Support expand buttons
14922 with no text.
14923 (speedbar-refresh): Universal argument acts as power-click.
14924 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
14925 that buffer to get variable values.
14926
14927 And many other bugfixes.
14928
14929 * dframe.el, ezimage.el, sb-image.el: New files.
14930
14931 * sb-*.xpm: Remove files. New image files installed into
14932 etc/images/ezimage.
14933
14934 2005-09-30 Kenichi Handa <handa@m17n.org>
14935
14936 * ps-mule.el (ps-mule-show-warning): If a character is in
14937 ps-print-translation-table, don't treat it as non-printable.
14938
14939 2005-09-30 David Ponce <david@dponce.com>
14940
14941 * tree-widget.el (tree-widget-themes-load-path): New variable.
14942 (tree-widget-themes-directory): Doc fix.
14943 (tree-widget-image-formats) [Emacs]: Doc fix.
14944 (tree-widget--locate-sub-directory): New function.
14945 (tree-widget-themes-directory): Use it.
14946
14947 * recentf.el (recentf-filename-handlers): Rename from
14948 `recentf-filename-handler'. Allow a list of functions.
14949 (recentf-menu-items-for-commands): Fix :help strings.
14950 (recentf-apply-filename-handlers): New function.
14951 (recentf-expand-file-name): Use it.
14952 (recentf-cleanup): Remove duplicates too.
14953
14954 2005-09-29 Juri Linkov <juri@jurta.org>
14955
14956 * faces.el: Rearrange face definitions to be in the same order as
14957 their face descriptions in "(emacs)Standard Faces".
14958
14959 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
14960
14961 * tooltip.el (tooltip): Add group `basic-faces'.
14962
14963 * buff-menu.el (Buffer-menu-buffer): Remove group
14964 `font-lock-highlighting-faces'.
14965
14966 * progmodes/compile.el (compilation-error, compilation-warning)
14967 (compilation-info, compilation-line-number, compilation-column-number):
14968 Change group from `font-lock-highlighting-faces' to `compilation'.
14969
14970 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
14971 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
14972 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
14973 (vhdl-font-lock-reserved-words-face)
14974 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
14975 `font-lock-highlighting-faces'.
14976
14977 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
14978
14979 2005-09-28 Kim F. Storm <storm@cua.dk>
14980
14981 * emulation/cua-base.el: Set CUA move property on additional commands:
14982 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
14983 forward-sexp, backward-sexp, forward-list, backward-list.
14984
14985 2005-09-28 Romain Francoise <romain@orebokech.com>
14986
14987 * comint.el (comint-show-output): Really set point at the
14988 beginning of the output when not using `comint-use-prompt-regexp'.
14989
14990 2005-09-27 Jay Belanger <belanger@truman.edu>
14991
14992 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
14993 in TeX mode.
14994
14995 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
14996
14997 * textmodes/org.el (org-table-sum): Fix format string.
14998
14999 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
15000 Quote face names.
15001
15002 2005-09-26 Romain Francoise <romain@orebokech.com>
15003
15004 * isearch.el (isearch-forward-regexp): Close doc string.
15005
15006 2005-09-25 Richard M. Stallman <rms@gnu.org>
15007
15008 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
15009
15010 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
15011
15012 * progmodes/compile.el (compilation-error-properties):
15013 When getting the file from the previous error message,
15014 correctly decode the new data format.
15015
15016 * progmodes/cc-cmds.el (c-electric-paren):
15017 Call old-blink-paren only for close-paren.
15018
15019 2005-09-24 Andreas Schwab <schwab@suse.de>
15020
15021 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
15022 condition.
15023
15024 2005-09-25 Romain Francoise <romain@orebokech.com>
15025
15026 * dired-aux.el (dired-copy-file-recursive):
15027 * dired.el (dired-delete-file):
15028 * ediff-mult.el (ediff-dir-diff-copy-file):
15029 * ediff-util.el (ediff-test-save-region):
15030 * forms.el (forms-mode):
15031 * ido.el (ido-file-internal, ido-delete-file-at-head):
15032 * log-edit.el (log-edit-done):
15033 * ses.el (ses-yank-resize):
15034 * play/gomoku.el (gomoku-human-plays, gomoku)
15035 (gomoku-human-resigns, gomoku-prompt-for-other-game)
15036 (gomoku-offer-a-draw):
15037 * play/landmark.el (lm-human-resigns, lm):
15038 * net/eudcb-ldap.el (eudc-ldap-check-base):
15039 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
15040 * progmodes/ebrowse.el (ebrowse-find-pattern):
15041 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
15042 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
15043 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
15044
15045 * vc.el (vc-delete-file):
15046 * play/gomoku.el (gomoku-terminate-game, gomoku)
15047 (gomoku-prompt-for-move, gomoku-human-takes-back):
15048 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
15049 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
15050
15051 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
15052
15053 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
15054 color rxvt terminals by using the code xterm.el used to use before
15055 2005-04-09 in order to match the colors used by rxvt.
15056
15057 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
15058
15059 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
15060 colors rxvt-unicode terminals by using the same code as xterm.el.
15061
15062 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
15063
15064 * textmodes/tex-mode.el (tex-font-lock-append-prop)
15065 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
15066 new symbol used for the tex-verbatim face.
15067
15068 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
15069
15070 * woman.el (woman-file-name):
15071 * wid-edit.el (widget-file-prompt-value)
15072 (widget-coding-system-prompt-value):
15073 * w32-fns.el (set-w32-system-coding-system):
15074 * vc.el (vc-version-diff, vc-annotate):
15075 * textmodes/reftex-auc.el (reftex-arg-cite)
15076 (reftex-arg-index-tag):
15077 * textmodes/refer.el (refer-get-bib-files):
15078 * textmodes/artist.el (artist-figlet-choose-font):
15079 * terminal.el (terminal-emulator):
15080 * replace.el (occur-read-primary-args):
15081 * rect.el (string-rectangle, string-insert-rectangle):
15082 * ps-print.el (ps-print-preprint):
15083 * progmodes/pascal.el (pascal-goto-defun):
15084 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
15085 * progmodes/compile.el (compilation-find-file):
15086 * printing.el (pr-interactive-n-up):
15087 * play/animate.el (animate-birthday-present):
15088 * net/rcompile.el (remote-compile):
15089 * man.el (man, Man-goto-section, Man-follow-manual-reference):
15090 * mail/rmailsum.el (rmail-summary-search-backward)
15091 (rmail-summary-search):
15092 * mail/rmailout.el (rmail-output-read-rmail-file-name)
15093 (rmail-output-read-file-name):
15094 * mail/rmail.el (rmail-search, rmail-search-backwards):
15095 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
15096 * locate.el (locate):
15097 * international/quail.el (quail-show-keyboard-layout):
15098 * international/mule.el (set-buffer-file-coding-system)
15099 (revert-buffer-with-coding-system, set-file-name-coding-system)
15100 (set-terminal-coding-system, set-keyboard-coding-system)
15101 (set-next-selection-coding-system):
15102 * international/mule-diag.el (describe-coding-system)
15103 (describe-font, describe-fontset):
15104 * international/mule-cmds.el (universal-coding-system-argument)
15105 (search-unencodable-char, describe-input-method)
15106 (set-language-environment, describe-language-environment):
15107 * international/codepage.el (codepage-setup):
15108 * international/code-pages.el (codepage-setup):
15109 * info.el (Info-search, Info-follow-reference)
15110 (Info-search-backward):
15111 * emacs-lisp/advice.el (ad-read-advised-function)
15112 (ad-read-advice-class, ad-clear-cache, ad-activate)
15113 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
15114 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
15115 (ad-read-regexp):
15116 * ediff-util.el (ediff-toggle-regexp-match):
15117 * ediff-ptch.el (ediff-prompt-for-patch-file):
15118 * dired-aux.el (dired-diff):
15119 * diff.el (diff):
15120 * cus-edit.el (custom-variable-prompt):
15121 * calendar/timeclock.el (timeclock-ask-for-project):
15122 * calc/calcalg3.el (calc-get-fit-variables):
15123 * calc/calc-store.el (calc-edit-variable)
15124 (calc-permanent-variable):
15125 * vc-mcvs.el (vc-mcvs-register):
15126 * shadowfile.el (shadow-define-literal-group):
15127 * woman.el (woman-file-name):
15128 * vc.el (vc-version-diff, vc-merge):
15129 * textmodes/reftex-index.el (reftex-index-complete-tag):
15130 * format.el (format-decode-buffer, format-decode-region):
15131 * emulation/viper-cmd.el (viper-read-string-with-history):
15132 * emacs-lisp/debug.el (cancel-debug-on-entry):
15133 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
15134 * ediff.el (ediff-merge-revisions)
15135 (ediff-merge-revisions-with-ancestor, ediff-revision):
15136 * completion.el (interactive-completion-string-reader):
15137 * calc/calc-prog.el (calc-user-define-formula):
15138 Follow convention for reading with the minibuffer.
15139
15140 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
15141
15142 * progmodes/python.el (python-describe-symbol): Add globals() and
15143 locals() to the arguments of emacs.ehelp.
15144
15145 2005-09-24 Magnus Henoch <mange@freemail.hu>
15146
15147 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
15148 New function, code extracted from ispell-valid-dictionary-list.
15149 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
15150 Call it.
15151
15152 2005-09-24 Eli Zaretskii <eliz@gnu.org>
15153
15154 * subr.el (version-regexp-alist): Extend valid syntax for version
15155 strings: allow any of the characters -,_,+ to separate the
15156 alpha/beta/rc part from the version part. Doc fix.
15157 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
15158
15159 2005-09-23 David Reitter <david.reitter@gmail.com>
15160
15161 * mail/mailclient.el: New file.
15162
15163 2005-09-23 Richard M. Stallman <rms@gnu.org>
15164
15165 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
15166 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
15167 Doc fixes.
15168
15169 * progmodes/cc-mode.el (c-font-lock-init):
15170 Specify font-lock-lines-before.
15171
15172 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
15173
15174 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
15175 whole conflict.
15176
15177 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
15178
15179 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
15180 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
15181 of `remap' feature when available. Additional key bindings for
15182 better tty support.
15183 (org-mode-restart, org-force-self-insert): New commands.
15184 (org-time-stamp-inactive): New command.
15185 (org-remap): New function.
15186 (org-table-auto-blank-field, org-level-color-stars-only): New options.
15187 (org-enable-fixed-width-editor): Move to `org-structure'
15188 customization group.
15189 (org-self-insert-command, orgtbl-self-insert-command): Modify to
15190 blank field after field motion commands.
15191
15192 2005-09-23 Kenichi Handa <handa@m17n.org>
15193
15194 * international/mule-cmds.el (set-language-environment):
15195 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
15196 have to call utf-translate-cjk-load-tables.
15197
15198 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
15199
15200 * mouse.el (mouse-move-drag-overlay): Fix last change.
15201
15202 2005-09-22 David Ponce <david@dponce.com>
15203
15204 * tree-widget.el (tree-widget-value-create): Fix previous change.
15205
15206 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
15207
15208 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
15209
15210 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
15211
15212 * mouse.el (mouse-move-drag-overlay): New function.
15213 (mouse-drag-region-1): Use it.
15214 Try to simplify a bit the state handling. Handle clicks on links
15215 inside intangible areas.
15216 (mouse-save-then-kill): Minor simplification.
15217 (mouse-secondary-overlay): Make it always non-nil instead of
15218 recreating it each time.
15219 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
15220 (mouse-kill-secondary, mouse-secondary-save-then-kill):
15221 Simplify accordingly.
15222
15223 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
15224
15225 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
15226
15227 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
15228
15229 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
15230 (ediff-file-name-sans-prefix): Treat nil as an empty string.
15231 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
15232 to patch.
15233
15234 * ediff-util.el: Use insert-buffer-substring.
15235
15236 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
15237
15238 * emulation/viper-cmd.el (viper-change-state): Don't move over the
15239 field boundaries in the minibuffer.
15240 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
15241 (viper-minibuffer-post-command-hook): New hook.
15242 (viper-line): Don't move cursor at bolp.
15243
15244 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
15245
15246 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
15247 avoid compiler warnings.
15248
15249 * emulation/viper-macs.el (ex-map): Better messages.
15250
15251 * emulation/viper-utils.el (viper-beginning-of-field): New function.
15252
15253 * emulation/viper.el: Replace make-variable-buffer-local with
15254 viper-make-variable-buffer-local everywhere, to avoid warnings.
15255
15256 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
15257
15258 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
15259 Delete unused var `old-selected-window'.
15260 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
15261 (mouse-drag-secondary): Delete unused var `start-frame'.
15262
15263 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
15264
15265 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
15266
15267 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
15268
15269 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
15270 Re-indent within 80 columns. Use inhibit-read-only.
15271
15272 2005-09-19 Romain Francoise <romain@orebokech.com>
15273
15274 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
15275
15276 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
15277
15278 * font-lock.el (font-lock-default-fontify-region): Don't add a line
15279 unconditionally, since the after-change-function already did it.
15280
15281 2005-09-19 Miles Bader <miles@gnu.org>
15282
15283 * net/newsticker.el: Get rid of CVS keyword.
15284
15285 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan+sf@dd.chalmers.se>
15286
15287 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
15288 The prompt is formatted later.
15289
15290 2005-09-19 David Ponce <david@dponce.com>
15291
15292 * tree-widget.el (tree-widget-value-create): Save the converted
15293 tree :node widget.
15294
15295 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
15296
15297 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
15298 variable `message'.
15299
15300 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
15301
15302 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
15303 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
15304 <slawomir.nowaczyk.847@student.lu.se>.
15305
15306 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
15307
15308 * image.el (image-load-path): Use symbol `data-directory' instead
15309 of its value, for backward compatibility with packages that bind
15310 it during `find-image'. Suggested by Katsumi Yamaoka.
15311 (image-search-load-path): Handle symbols whose values are strings.
15312
15313 2005-09-18 Romain Francoise <romain@orebokech.com>
15314
15315 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
15316 with-current-buffer form in save-excursion.
15317
15318 2005-09-18 Deepak Goel <deego@gnufans.org>
15319
15320 * apropos.el (apropos-command): Fix `message' call: first arg
15321 should be a format spec. In this and all other cases that appear
15322 below and elsewhere in the source code, I made a change only when
15323 two conditions were satisfied: [1] I can think of a possibility
15324 that the arguments would cause an error, for example, the code in
15325 question relies on external variables such as filenames. [2] I
15326 was sure that the arg to `message' could not have been nil in the code.
15327
15328 * textmodes/tildify.el (tildify-region): Ditto.
15329
15330 * textmodes/reftex-index.el (reftex-index-change-entry)
15331 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
15332 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
15333 * textmodes/org.el (org-complete, org-deadline, org-schedule)
15334 (org-priority, org-table-sum):
15335 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
15336 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
15337 (flyspell-word, flyspell-display-next-corrections):
15338 * textmodes/bibtex.el (bibtex-print-help-message):
15339 * textmodes/artist.el (artist-key-set-point-poly):
15340 * term/mac-win.el (mac-services-insert-text):
15341 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
15342 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
15343 (vhdl-port-paste-testbench, vhdl-compose-new-component)
15344 (vhdl-compose-configuration):
15345 * progmodes/sh-script.el (sh-blink, sh-show-indent)
15346 (sh-set-indent, sh-learn-line-indent):
15347 * progmodes/ps-mode.el (ps-mode-target-column):
15348 * progmodes/idlwave.el (idlwave-make-tags)
15349 (idlwave-scan-library-catalogs):
15350 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
15351 * progmodes/gud.el (gud-jdb-analyze-source):
15352 * progmodes/flymake.el (flymake-log):
15353 * progmodes/ebnf2ps.el (ebnf-generate-region):
15354 * progmodes/cmacexp.el (c-macro-expansion):
15355 * progmodes/ada-xref.el (ada-treat-cmd-string):
15356 * progmodes/ada-mode.el (ada-create-case-exception-substring)
15357 (ada-justified-indent-current, ada-batch-reformat):
15358 * play/zone.el (zone):
15359 * play/landmark.el (lm-move):
15360 * play/decipher.el (decipher-show-alphabet):
15361 * net/newsticker.el (newsticker--display-jump)
15362 (newsticker--display-scroll):
15363 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
15364 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
15365 * mail/feedmail.el (feedmail-dump-message-to-queue):
15366 * eshell/esh-proc.el (eshell-remove-process-entry):
15367 * emulation/ws-mode.el (ws-last-error):
15368 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
15369 (viper-record-kbd-macro):
15370 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
15371 * emacs-lisp/lisp-mnt.el (lm-report-bug):
15372 * emacs-lisp/find-func.el (find-function-noselect):
15373 * calendar/timeclock.el (timeclock-status-string)
15374 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
15375 (timeclock-when-to-leave-string):
15376 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
15377 * calc/calc-units.el (calc-enter-units-table):
15378 * calc/calc-mode.el (calc-mode-record-mode):
15379 * woman.el (woman-mini-help):
15380 * wdired.el (wdired-change-to-wdired-mode):
15381 * vc.el (vc-retrieve-snapshot):
15382 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
15383 * startup.el (display-startup-echo-area-message):
15384 * simple.el (set-goal-column):
15385 * ses.el (ses-command-hook, ses-recalculate-cell):
15386 * server.el (server-process-filter):
15387 * printing.el (pr-interface-txt-print, pr-interface-printify)
15388 (pr-interface-ps):
15389 * pcvs.el (cvs-help):
15390 * log-edit.el (log-edit, log-edit-mode-help):
15391 * iswitchb.el (iswitchb-possible-new-buffer):
15392 * isearch.el (isearch-edit-string):
15393 * image-mode.el (image-mode, image-minor-mode):
15394 * ibuf-macs.el (define-ibuffer-filter):
15395 * hi-lock.el (hi-lock-find-patterns):
15396 * files.el (toggle-read-only):
15397 * ediff-util.el (ediff-copy-diff)
15398 (ediff-write-merge-buffer-and-maybe-kill):
15399 * echistory.el (Electric-history-undefined):
15400 * dnd.el (dnd-insert-text):
15401 * dired-aux.el (dired-query):
15402 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
15403 * bookmark.el (bookmark-bmenu-locate):
15404 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
15405 Fix `message' calls to ensure first arg is a format string.
15406 The change was made only when these two conditions were satisfied:
15407 [1] when there is a possibility that the arguments would cause an error
15408 for example, if the code in question relies on external variables
15409 such as filenames, and
15410 [2] if the arg to `message' could not have been nil in the code.
15411
15412 * pcomplete.el (pcomplete--help): Fix `message' format spec.
15413 Not having a %s would be weird, though not technically wrong.
15414
15415 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15416
15417 * term/mac-win.el (mac-add-charset-info): Doc fix.
15418
15419 2005-09-17 Romain Francoise <romain@orebokech.com>
15420
15421 * shell.el (shell-resync-dirs): Handle echoing processes more
15422 reliably. Don't insert resync command if `comint-process-echoes'
15423 is non-nil.
15424
15425 2005-09-17 Magnus Henoch <mange@freemail.hu>
15426
15427 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
15428 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
15429 aspell versions >= 0.60.
15430 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
15431 only if ispell-aspell-supports-utf8 is non-nil.
15432
15433 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
15434
15435 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
15436 buffer-local value to lisp-indent-function.
15437
15438 2005-09-17 Milan Zamazal <pdm@zamazal.org>
15439
15440 * progmodes/glasses.el (glasses-make-readable): If
15441 glasses-separator differs from underscore, put appropriate
15442 overlays over underscore characters.
15443 (glasses-convert-to-unreadable): If glasses-separator differs from
15444 underscore, try to convert glasses-separator characters to
15445 underscores.
15446
15447 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
15448
15449 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
15450 Use with-syntax-table and dolist.
15451
15452 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
15453
15454 * textmodes/reftex-auc.el:
15455 * textmodes/reftex-cite.el:
15456 * textmodes/reftex-dcr.el:
15457 * textmodes/reftex-global.el:
15458 * textmodes/reftex-parse.el:
15459 * textmodes/reftex-ref.el:
15460 * textmodes/reftex-sel.el:
15461 * textmodes/reftex-toc.el:
15462 * textmodes/reftex-vars.el:
15463 * textmodes/reftex.el: Small changes to remove compiler warnings.
15464
15465 * textmodes/reftex-index.el: Likewise.
15466 (reftex-query-index-phrase): More efficient use of markers.
15467
15468 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
15469
15470 * image.el (image-load-path): New variable.
15471 (image-search-load-path): New function.
15472 (find-image): Search for images in `image-load-path'.
15473
15474 2005-09-15 Richard M. Stallman <rms@gnu.org>
15475
15476 * follow.el: Change Maintainer field.
15477
15478 2005-09-15 David Ponce <david@dponce.com>
15479
15480 * recentf.el (recentf-save-file-modes): New option.
15481 (recentf-save-list): Use it.
15482
15483 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
15484
15485 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
15486 (mode-line-mule-info, mode-line-modified): Move bindings from
15487 mouse-3 to mouse-1.
15488
15489 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
15490
15491 * simple.el (sendmail-user-agent-compose): Revert last change.
15492
15493 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
15494
15495 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
15496 Use with-current-buffer.
15497 (ange-ftp-gwp-start): Remove unused var `gw-user'.
15498 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
15499 (ange-ftp-insert-directory): Remove unused var `short'.
15500 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
15501
15502 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
15503 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
15504
15505 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
15506 (check-calendar-holidays, diary-list-entries): Autoload.
15507 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
15508 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
15509
15510 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
15511 which mistakenly removed a call to display-buffer.
15512
15513 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
15514
15515 * obsolete/iso-insert.el: Move to obsolete/ from international/.
15516
15517 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
15518
15519 * progmodes/hideshow.el
15520 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
15521 (hs-allow-nesting): New user var.
15522 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
15523 (hs-hide-block-at-point): When nesting allowed,
15524 if there is already an overlay in place, delete it.
15525 (hs-safety-is-job-n): Delete func; remove call sites.
15526 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
15527 (hs-overlay-at): New func.
15528 (hs-already-hidden-p, hs-show-block): Use it.
15529 (hs-hide-all): Don't pre-clean if nesting allowed.
15530 (hs-show-all): Temporarily disallow
15531 nesting around call to `hs-discard-overlays'.
15532
15533 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
15534
15535 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
15536 Delete unused local var.
15537
15538 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
15539
15540 * help-fns.el (describe-categories): "?\ " -> "?\s".
15541 (help-do-arg-highlight): Recognize also ARG-n, as in
15542 `move-to-left-margin' (ARG+n is already recognized). Simplify.
15543
15544 * international/codepage.el (dos-unsupported-char-glyph):
15545 * net/newsticker.el (tool-bar-map, w3-mode-map)
15546 (w3m-minor-mode-map):
15547 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
15548 (ent-alist):
15549 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
15550
15551 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
15552
15553 * custom.el (custom-push-theme): Handle the case where a symbol is
15554 bound but face properties have not yet been assigned.
15555
15556 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
15557 Fix behavior if noerase is `t' and there is no mail buffer.
15558
15559 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
15560 if `continue' is nil, rather than signal an error.
15561
15562 2005-09-12 Richard M. Stallman <rms@gnu.org>
15563
15564 * font-lock.el (font-lock-keywords): Add autoload.
15565
15566 * help-fns.el (describe-variable): Rearrange to put source link
15567 in a predictable place.
15568
15569 * net/newsticker.el: New file.
15570
15571 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15572
15573 * calendar/calendar.el (calendar-for-loop): Add edebug info.
15574 (calendar-basic-setup): Use the new nil arg.
15575 (number-of-diary-entries): Move to diary-lib.el.
15576
15577 * calendar/diary-lib.el: Use with-current-buffer, match-string.
15578 (diary-list-entries): Use with-syntax-table and dolist.
15579 Rename from list-diary-entries.
15580 Use number-of-diary-entries if `number' is nil.
15581 (diary, diary-view-entries): Use this new name and new nil arg value.
15582 (number-of-diary-entries): Move from calendar.el.
15583 (diary-unhide-everything): New function.
15584 (include-other-diary-files, fancy-diary-display)
15585 (diary-show-all-entries, make-diary-entry): Use it.
15586 (diary-mail-entries): Use buffer-string.
15587 (mark-diary-entries): Fix long standing paren typo.
15588 (diary-sexp-entry): Use count-lines.
15589 (make-diary-entry): Avoid `previous-line'.
15590 (diary-mode-map): New var.
15591 (diary-mode): Redraw cal after saving. Setup header-line.
15592 (fancy-diary-display-mode): Use local-set-key.
15593
15594 * startup.el (command-line): Try calling various terminal-init-foo-bar
15595 functions by stripping hyphenated suffixes from $TERM.
15596
15597 * files.el (normal-mode): Check boundness of font-lock-keywords.
15598
15599 2005-09-12 Richard M. Stallman <rms@gnu.org>
15600
15601 * progmodes/compile.el: Don't decide a file's directory
15602 until the user actually tries to go there.
15603 (compilation-next-error-function):
15604 Pass compilation-find-file the directory from the file-struct.
15605 (compilation-internal-error-properties): Separate local FILE-STRUCT
15606 from FILE. Doc the args better. Rename arg FMT to FMTS.
15607 (compilation-find-file): Arg DIR renamed to DIRECTORY.
15608 Expand it, and if nil, use default-directory.
15609 (compilation-get-file-structure): Don't mix specified directory
15610 with default directory. Put specified directory into
15611 file-struct. Don't make the file name absolute.
15612
15613 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
15614 (compile-command): Add autoload.
15615 (compilation-disable-input): Add autoload.
15616
15617 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
15618
15619 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
15620 strings of the variables it can override.
15621 (time-stamp): New (as yet undocumented) time-stamp-format escapes
15622 %Q and %q, for fully-qualified domain name and unqualified host name.
15623
15624 2005-09-11 Kim F. Storm <storm@cua.dk>
15625
15626 * emacs-lisp/authors.el (authors-aliases): Update list.
15627 (authors-fixed-entries): Update mldrag.el entry.
15628
15629 2005-09-10 Alan Mackenzie <acm@muc.de>
15630
15631 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
15632 from the region narrowed to.
15633
15634 2005-09-10 Magnus Henoch <mange@freemail.hu>
15635
15636 * textmodes/ispell.el (ispell-check-version): Signal an error if
15637 aspell version is less than 0.60.
15638
15639 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
15640
15641 * progmodes/octave-inf.el (inferior-octave-startup):
15642 Resync current dir at the end.
15643
15644 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
15645
15646 * woman.el (woman-topic-at-point-default):
15647 Rename to woman-use-topic-at-point-default.
15648 (woman-topic-at-point): Rename to woman-use-topic-at-point.
15649 (woman-file-name): Reflect renames above. Automatically use the
15650 word at point as topic if woman-use-topic-at-point is non-nil.
15651 Otherwise offer it as default but don't insert it in the
15652 minibuffer. Also use `test-completion' instead of `assoc' as
15653 suggested by Stefan Monnier.
15654
15655 2005-09-10 Andre Spiegel <spiegel@gnu.org>
15656
15657 * vc.el (vc-directory, vc-update-change-log): Throw an error on
15658 the attempt to do it over Tramp. This is not yet supported.
15659
15660 2005-09-10 Eli Zaretskii <eliz@gnu.org>
15661
15662 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
15663 (menu-bar-non-minibuffer-window-p): New functions.
15664 ("Split Window", "Save As..."): Use them.
15665 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
15666 ("Print Buffer", "Truncate Long Lines in this Buffer"):
15667 Use menu-bar-menu-frame-live-and-visible-p.
15668 ("Save Buffer", "Insert File", "Open Directory...")
15669 ("Open File...", "Visit New File..."):
15670 Use menu-bar-non-minibuffer-window-p.
15671 (kill-this-buffer-enabled-p, dired <menu-enable>):
15672 Use menu-bar-non-minibuffer-window-p.
15673
15674 2005-09-09 Eli Zaretskii <eliz@gnu.org>
15675
15676 * cus-start.el (all): Don't complain about fringe-related
15677 built-ins if fringes are not supported. Ditto about
15678 selection-related built-ins. Fix the test for GTK-related built-ins.
15679
15680 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
15681 ("Postscript Print Buffer", "Print Region", "Save As...")
15682 ("Save", "Insert File...", "Open Directory...")
15683 ("Open File...", "Visit New File..."")
15684 ("Truncate Long Lines in this Buffer"): Don't look at
15685 menu-updating-frame if this display does not support multiple frames.
15686
15687 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
15688
15689 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
15690
15691 2005-09-09 Emilio Lopes <eclig@gmx.net>
15692
15693 * woman.el: Format- and whitespace-related changes.
15694
15695 2005-09-09 Eli Zaretskii <eliz@gnu.org>
15696
15697 * woman.el: Fix my email address.
15698
15699 2005-09-08 Richard M. Stallman <rms@gnu.org>
15700
15701 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
15702 (sh-mode): Locally set skeleton-pair-default-alist.
15703
15704 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
15705
15706 * progmodes/flymake.el: Require `compile' unconditionally.
15707
15708 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
15709
15710 * woman.el (woman-file-name): Provide a default, not initial input.
15711
15712 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
15713
15714 * font-lock.el (font-lock-support-mode): Doc fix.
15715
15716 * descr-text.el (describe-property-list): Handle non-symbol prop names.
15717
15718 2005-09-08 Richard M. Stallman <rms@gnu.org>
15719
15720 * simple.el (blink-matching-open): Get rid of text props from
15721 the string shown in echo area. Don't permanently set point.
15722 Some rearrangements.
15723
15724 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
15725
15726 * recentf.el (recentf-filename-handler): Add custom choice
15727 `abbreviate-file-name'.
15728
15729 * msb.el (msb--very-many-menus): Fix typo.
15730
15731 * disp-table.el (standard-display-european): Don't set
15732 enable-multibyte-characters to nil.
15733
15734 2005-09-08 David Ponce <david@dponce.com>
15735
15736 * recentf.el (recentf-show-file-shortcuts-flag): New option.
15737 (recentf-expand-file-name): Doc fix.
15738 (recentf-dialog-mode-map): Define digit shortcuts.
15739 (recentf--files-with-key): New variable.
15740 (recentf-show-digit-shortcut-filter): New function.
15741 (recentf-open-files-items): New function.
15742 (recentf-open-files): Use it.
15743 (recentf-open-file-with-key): New command.
15744
15745 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
15746
15747 * buff-menu.el (Buffer-menu-sort-by-column): New function.
15748 Suggested by Kim F. Storm.
15749 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
15750 (Buffer-menu-make-sort-button): Use global keymap.
15751
15752 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
15753
15754 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
15755 (Man-getpage-in-background-advice): Remove defadvice; it isn't
15756 necessary any longer with the remapped command.
15757 (Man-bgproc-sentinel-advice): Remove defadvice which counts
15758 formatting time only.
15759
15760 * net/tramp.el (tramp-action-password)
15761 (tramp-multi-action-password): Compile the password prompt from
15762 `method', `user' and `host'. Sometimes it isn't obvious which
15763 password to enter, for example with remote files offered by
15764 recentf.el, or with multiple steps. Suggested by Robert Marshall
15765 <robert@chezmarshall.freeserve.co.uk>.
15766
15767 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
15768
15769 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
15770 Fix regexp for when "s///" is at the beginning of line.
15771
15772 2005-09-07 Jay Belanger <belanger@truman.edu>
15773
15774 * calc/calc-poly.el (math-expand-term): Multiply out any powers
15775 when in matrix mode.
15776
15777 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
15778
15779 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
15780 non-anonymous functions.
15781
15782 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
15783
15784 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
15785 when using a header line. Otherwise, use mouse-1-click-follows-link.
15786
15787 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
15788 can't be moved; don't signal an error.
15789
15790 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
15791
15792 * cus-theme.el (custom-theme-write-faces): Save the current face
15793 spec, not the defface spec.
15794
15795 * custom.el (custom-known-themes): Clarify meaning of "standard".
15796 (custom-push-theme): Save old values in the standard theme.
15797 (disable-theme): Correct typo.
15798 (custom-face-theme-value) Deleted unused function.
15799 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
15800
15801 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
15802
15803 * progmodes/compile.el (compilation-goto-locus): Take into account
15804 iconified frames when determining whether the buffer is
15805 already visible.
15806 Don't reset window height if the window already existed.
15807
15808 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
15809
15810 * custom.el (load-theme): Rename from require-theme.
15811 Add interactive spec.
15812 (enable-theme): Rename from custom-enable-theme.
15813 Add interactive spec.
15814 (disable-theme): Rename from custom-disable-theme.
15815 Add interactive spec.
15816 (custom-make-theme-feature): Doc fix.
15817 (custom-theme-directory): Doc fix.
15818 (provide-theme): Call enable-theme.
15819
15820 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
15821
15822 * obsolete/lazy-lock.el (lazy-lock-mode):
15823 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
15824 font-lock-mode if it's off. Print a warning instead.
15825
15826 * progmodes/compile.el (compilation-start): Ignore errors if the
15827 process died before we get to send-eof.
15828
15829 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
15830 Undo last change. Enclosing the result in quotes broke things on Unix
15831 since tex-send-command passes it through shell-quote-argument.
15832 (tex-send-command): Pass `file' through convert-standard-filename
15833 when possible.
15834 (tex-uptodate-p): Handle the case where TeX hasn't put additional
15835 info in a transcript.
15836
15837 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
15838
15839 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
15840 fix compilation warning. Reorder the key definitions to group
15841 together keys emitted by the current version of xterm.
15842
15843 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
15844 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
15845 Reorder predicates to correct min-color usage.
15846
15847 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
15848
15849 * longlines.el (longlines-mode): Inhibit read-only when encoding.
15850 Kill local variables when longlines-mode is turned off.
15851
15852 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
15853
15854 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
15855
15856 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
15857
15858 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
15859
15860 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
15861 (font-lock-lines-before): Change default to being inactive.
15862 (font-lock-default-fontify-region): Obey font-lock-lines-before.
15863 (font-lock-after-change-function): Don't handle f-l-lines-before here.
15864
15865 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
15866
15867 * net/tramp.el (tramp-handle-make-auto-save-file-name):
15868 Deactivate temporarily advice if active (not needed for Emacs 22,
15869 but for backwards compatibility).
15870 (tramp-exists-file-name-handler): Rewrite. First implementation
15871 was too simple.
15872 (tramp-advice-make-auto-save-file-name):
15873 Call `tramp-handle-make-auto-save-file-name' (again, just for
15874 backwards compatibility).
15875
15876 2005-08-31 Reto Zimmermann <reto@gnu.org>
15877
15878 * progmodes/vhdl-mode.el
15879 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
15880 (vhdl-end-p): Fix indentation bug "else" after "-- when".
15881 (vhdl-set-default-project): New function (easier setting of default).
15882 (vhdl-port-copy): Handle extended identifiers for generics.
15883 (vhdl-compiler-alist): Better description for error message regexp.
15884 (vhdl-make): Query for target, use previous as default.
15885 (vhdl-port-copy): Fix port copy for port names starting with "signal".
15886 (vhdl-font-lock-keywords-2): Fix fontification for record
15887 el. assign.
15888 (vhdl-speedbar-make-subpack-line): Add package body link.
15889 (vhdl-generate-makefile-1): Not include itself as dependency.
15890 (vhdl-font-lock-init): Highlight c-preprocessor directives.
15891 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
15892 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
15893 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
15894 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
15895 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
15896 (vhdl-import-project): Add string argument for `error'.
15897 (vhdl-compose-configuration)
15898 (vhdl-compose-configuration-architecture): Add configuration
15899 declaration generation.
15900 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
15901 (vhdl-trailer-re): Add "record" keyword (better indentation).
15902 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
15903 "[^ \t-\"]+".
15904 (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
15905 (vhdl-testbench-entity-file-name)
15906 (vhdl-testbench-architecture-file-name): Allow separate
15907 customization of testbench file names.
15908 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
15909 (vhdl-get-visible-signals): Allow newline within alias declaration.
15910 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
15911 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
15912 (member-ignore-case): Alias for missing function in XEmacs.
15913 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
15914 (vhdl-update-sensitivity-list): Ignore case on read signals.
15915 (vhdl-replace-string): Adjust case only for file names.
15916 (vhdl-update-sensitivity-list): Fix search for read signals.
15917 (vhdl-update-sensitivity-list): Exclude formal parameters.
15918 (vhdl-get-visible-signals): Include aliases of signals.
15919 (vhdl-get-visible-signals): Fix signal name searching.
15920 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
15921 (vhdl-fixup-whitespace-region): Fix for character
15922 literals (e.g. `:').
15923
15924 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
15925
15926 * ansi-color.el (comint-last-output-start):
15927 * bs.el (font-lock-verbose):
15928 * diff-mode.el (add-log-buffer-file-name-function):
15929 * dired-x.el (vm-folder-directory):
15930 * faces.el (help-xref-stack-item):
15931 * files.el (font-lock-keywords):
15932 * find-lisp.el (dired-buffers, dired-subdir-alist):
15933 * ido.el (cua-inhibit-cua-keys):
15934 * log-view.el (cvs-minor-wrap-function):
15935 * outline.el (font-lock-warning-face):
15936 * simple.el (compilation-current-error):
15937 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
15938 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
15939 * tooltip.el (comint-prompt-regexp):
15940 * w32-fns.el (explicit-shell-file-name):
15941 * term/mac-win.el (mac-charset-info-alist)
15942 (mac-services-selection, mac-system-script-code):
15943 * term/tty-colors.el (msdos-color-values):
15944 * term/w32-win.el (xlfd-regexp-registry-subnum):
15945 * term/x-win.el (x-keysym-table, x-selection-timeout)
15946 (x-session-id, x-session-previous-id):
15947 * textmodes/ispell.el (mail-yank-prefix):
15948 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
15949 * textmodes/org.el (calc-embedded-close-formula)
15950 (calc-embedded-open-formula)
15951 (font-lock-unfontify-region-function):
15952 * textmodes/reftex-global.el (isearch-next-buffer-function)
15953 (TeX-master):
15954 * textmodes/reftex.el (font-lock-keywords):
15955 * textmodes/tex-mode.el (font-lock-comment-face)
15956 (font-lock-doc-face):
15957 * textmodes/texinfo.el (outline-heading-alist):
15958 Add defvars.
15959
15960 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
15961 (artist-spray-chars, artist-mode-init, artist-replace-string)
15962 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
15963 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
15964 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
15965
15966 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
15967 (conf-align-assignments): "?\ " -> "?\s".
15968
15969 * textmodes/reftex-index.el (TeX-master): Add defvar.
15970 (reftex-index-phrases-marker): Move up defvar.
15971
15972 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
15973 (reftex-toc-include-labels-indicator)
15974 (reftex-toc-include-index-indicator)
15975 (reftex-toc-max-level-indicator): Move up declarations.
15976
15977 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
15978 of args to `tramp-run-real-handler', even if it's empty in this case.
15979
15980 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15981
15982 * dired.el (dired-move-to-filename-regexp): Add date format for
15983 Mac OS X 10.3 in East Asian locales.
15984
15985 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
15986
15987 * files.el (make-auto-save-file-name): Add file name handler call
15988 if applicable.
15989
15990 * net/tramp.el (tramp-file-name-handler-alist)
15991 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
15992 (tramp-handle-make-auto-save-file-name): Rename from
15993 `tramp-make-auto-save-file-name'.
15994 (tramp-exists-file-name-handler): New defun.
15995 (tramp-advice-make-auto-save-file-name): Make defadvice only when
15996 `make-auto-save-file-name' is not a magic file name operation.
15997
15998 2005-08-30 Richard M. Stallman <rms@gnu.org>
15999
16000 * files.el (risky-local-variable-p):
16001 Match `-predicates' and `-commands.
16002
16003 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
16004 (custom-save-all): Visit the file if necessary;
16005 kill the buffer if we created it.
16006 (custom-save-delete): Don't visit file or kill buffer here.
16007
16008 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
16009
16010 * textmodes/org.el (org-special-keyword): New face.
16011 (org-table-copy-down, org-table-eval-formula)
16012 (org-table-recalculate, org-init-section-numbers):
16013 Use `string-to-number' instead of `string-to-int'.
16014 (org-get-location): Use `insert-buffer-substring' instead of
16015 `insert-buffer'.
16016 (org-modify-diary-entry-string): New function.
16017 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
16018 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
16019 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
16020 active region.
16021 (org-export-as-html): Handle QUOTE keyword.
16022 (org-quote-string): New option.
16023 (org-bookmark-jump-unhide): New function, used for
16024 `bookmark-after-jump-hook'.
16025 (org-diary-default-entry): Apply only when not called through
16026 `org-agenda'.
16027
16028 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
16029
16030 * net/eudc.el (mode-popup-menu):
16031 * play/handwrite.el (ps-printer-name, ps-lpr-command):
16032 * progmodes/ada-mode.el (compile-auto-highlight)
16033 (skeleton-further-elements):
16034 * progmodes/autoconf.el (font-lock-syntactic-keywords):
16035 * progmodes/cmacexp.el (msdos-shells):
16036 * progmodes/compile.el (font-lock-extra-managed-props)
16037 (font-lock-keywords, font-lock-maximum-size)
16038 (font-lock-support-mode):
16039 * progmodes/grep.el (font-lock-lines-before):
16040 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
16041 * progmodes/mixal-mode.el (compile-command):
16042 * progmodes/perl-mode.el (font-lock-comment-face)
16043 (font-lock-doc-face, font-lock-string-face):
16044 * progmodes/prolog.el (comint-prompt-regexp):
16045 * progmodes/sh-script.el (font-lock-comment-face)
16046 (font-lock-set-defaults, font-lock-string-face):
16047 * progmodes/sql.el (font-lock-keyword-face)
16048 (font-lock-set-defaults, font-lock-string-face):
16049 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
16050 (itimer-version, lazy-lock-defer-contextually)
16051 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
16052 Add defvars.
16053
16054 * progmodes/cperl-mode.el (cperl-electric-lbrace)
16055 (cperl-electric-keyword, cperl-electric-pod)
16056 (cperl-electric-backspace, cperl-forward-re)
16057 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
16058 (vc-rcs-header, vc-sccs-header): Add defvars.
16059
16060 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
16061 (font-lock-syntactic-keywords, gud-find-expr-function):
16062 Add defvars.
16063
16064 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
16065 (gdb-frame-parameters): Declare before use.
16066
16067 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
16068 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
16069 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
16070 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
16071
16072 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
16073 (idlwave-help-with-source): Use `insert-buffer-substring', not
16074 `insert-buffer'.
16075
16076 2005-08-29 Juri Linkov <juri@jurta.org>
16077
16078 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
16079 Put outline-back-to-heading function call inside save-excursion.
16080
16081 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
16082
16083 * man.el (Man-init-defvars, Man-translate-references)
16084 (Man-support-local-filenames, Man-highlight-references):
16085 * progmodes/sql.el (sql-interactive-mode):
16086 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
16087
16088 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
16089 (compilation-mode-font-lock-keywords): Add defvars.
16090 (checkdoc-interactive-loop): "?\ " -> "?\s".
16091
16092 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
16093 (font-lock-doc-face, font-lock-string-face)
16094 (font-lock-keywords-case-fold-search): Add defvars.
16095 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
16096
16097 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
16098 Don't pass X and Y (they are ignored anyway).
16099 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
16100 (mouse-delete-window): Make arguments optional.
16101
16102 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
16103 (caesar-translate-table, minor-modes, news-buffer-save)
16104 (news-group-name, news-minor-modes): Add defvars.
16105
16106 * emacs-lisp/lselect.el (mouse-highlight-priority)
16107 (x-lost-selection-functions, zmacs-regions):
16108 * emacs-lisp/pp.el (font-lock-verbose):
16109 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
16110 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
16111 (ses-mode-map):
16112 * emacs-lisp/tcover-unsafep.el (safe-functions):
16113 * international/mule-cmds.el (mac-system-coding-system)
16114 (mac-system-locale):
16115 * language/ethio-util.el (rmail-current-message)
16116 (rmail-message-vector):
16117 * language/thai-util.el (thai-auto-composition-mode):
16118 * mail/metamail.el (rmail-current-message, rmail-message-vector):
16119 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
16120 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
16121 (vm-primary-inbox, vm-spool-files):
16122 * mail/rmail.el (deleted-head, font-lock-fontified)
16123 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
16124 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
16125 (total-messages):
16126 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
16127 (rmail-summary-mode-map):
16128 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
16129 (rmail-last-label, rmail-last-multi-labels)
16130 (rmail-summary-vector, rmail-total-messages):
16131 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
16132 * mail/rmailsum.el (msgnum):
16133 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
16134 (rmail-current-message):
16135 * obsolete/fast-lock.el (font-lock-face-list):
16136 * obsolete/rnewspost.el (mail-reply-buffer):
16137 * obsolete/scribe.el (compile-command):
16138 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
16139
16140 2005-08-28 John Paul Wallington <jpw@gnu.org>
16141
16142 * ibuf-ext.el (ibuffer-auto-update-changed):
16143 Use `frame-or-buffer-changed-p' to check whether we need to update.
16144 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
16145 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
16146 as a `frame-or-buffer-changed-p' state vector instead.
16147
16148 2005-08-27 Romain Francoise <romain@orebokech.com>
16149
16150 * textmodes/makeinfo.el (makeinfo-compile):
16151 Use `compilation-start'. Set `next-error-function' according to
16152 `disable-errors'.
16153 (makeinfo-next-error): New function.
16154 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
16155 (makeinfo-buffer): Likewise.
16156
16157 * progmodes/compile.el (compilation-start): Add autoload cookie.
16158
16159 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
16160 * textmodes/sgml-mode.el: Likewise.
16161 * progmodes/python.el: Likewise.
16162
16163 2005-08-27 Eli Zaretskii <eliz@gnu.org>
16164
16165 * simple.el (blink-matching-paren-distance): Document the meaning
16166 of nil value, and allow to customize to nil.
16167
16168 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
16169 command.com, not command.exe.
16170
16171 2005-08-26 John Wiegley <johnw@newartisans.com>
16172
16173 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
16174 code around a bit so that an extraneous nil argument is not added
16175 to a command when no args are given.
16176
16177 * eshell/esh-arg.el (eshell-parse-double-quote): If a
16178 double-quoted argument resolves to nil, return it as an empty
16179 string rather than as nil. This made it impossible to pass "" to
16180 a shell script as a null string argument.
16181
16182 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
16183
16184 * outline.el (outline-invent-heading): New fun.
16185 (outline-promote, outline-demote): Use it.
16186 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
16187 (outline-end-of-subtree): Remove unused var `opoint'.
16188
16189 2005-08-26 David Reitter <david.reitter@gmail.com>
16190
16191 * menu-bar.el (truncate-lines, write-file, print-buffer)
16192 (ps-print-buffer-faces, ps-print-buffer, split-window):
16193 Disable menu items when the frame they refer to is invisible, or when
16194 they refer to a buffer and the minibuffer is selected.
16195
16196 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
16197
16198 * progmodes/flymake.el (flymake-highlight-err-lines):
16199 Use save-excursion around flymake-highlight-line to preserve point.
16200
16201 2005-08-26 Eli Zaretskii <eliz@gnu.org>
16202
16203 * progmodes/octave-mod.el: Change Author and Maintainer address.
16204 (octave-maintainer-address): Change Kurt's email address.
16205 * progmodes/octave-inf.el: Change Author and Maintainer address.
16206 * progmodes/octave-hlp.el: Change Author and Maintainer address.
16207
16208 2005-08-26 Kim F. Storm <storm@cua.dk>
16209
16210 * subr.el (version-list-<, version-list-<=, version-list-=):
16211 Rename from integer-list-*.
16212 (version-list-not-zero): Likewise. Fix while loop.
16213 (version=): Use version-list-= instead of string-equal.
16214
16215 2005-08-26 Richard M. Stallman <rms@gnu.org>
16216
16217 * outline.el (outline-promote): Try shortening the heading.
16218 As last resort, read the heading to use.
16219 (outline-demote): As last resort, read the heading to use.
16220
16221 2005-08-26 Romain Francoise <romain@orebokech.com>
16222
16223 * progmodes/compile.el (compilation-start): Doc fix.
16224
16225 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
16226 (antlr-font-lock-additional-keywords): Fix reference to
16227 `antlr-font-lock-literal-regexp' erroneously changed during the
16228 mass face rename.
16229 (antlr-run-tool): Use `compilation-start'.
16230
16231 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
16232 instead of the obsolete `compile-internal'.
16233
16234 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
16235
16236 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
16237 (number, original-date):
16238 * calendar/cal-china.el (date):
16239 * calendar/cal-coptic.el (date):
16240 * calendar/cal-french.el (date):
16241 * calendar/cal-hebrew.el (date, entry, number, original-date):
16242 * calendar/cal-islam.el (date, number, original-date):
16243 * calendar/cal-iso.el (date):
16244 * calendar/cal-julian.el (date):
16245 * calendar/cal-mayan.el (date):
16246 * calendar/cal-menu.el (date, event):
16247 * calendar/cal-persia.el (date):
16248 * calendar/lunar.el (date):
16249 * calendar/solar.el (date): Add defvars.
16250
16251 * emerge.el:
16252 * ibuffer.el:
16253 * info-xref.el:
16254 * obsolete/bg-mouse.el:
16255 * obsolete/sun-curs.el:
16256 * obsolete/swedish.el: Move the `defvar's to the top level.
16257
16258 * smerge-mode.el (smerge-refined-change): Add :group.
16259
16260 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
16261
16262 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
16263 (smerge-keep-n): Remove props.
16264 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
16265 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
16266 now that it's done in smerge-keep-n.
16267 (smerge-refined-change): New face.
16268 (smerge-refine-chopup-region, smerge-refine-highlight-change)
16269 (smerge-refine): New funs.
16270 (smerge-basic-map): Bind smerge-refine.
16271
16272 2005-08-25 Juri Linkov <juri@jurta.org>
16273
16274 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
16275 compilation-process-setup-function and compilation-disable-input
16276 in grep-mode instead of let-bindings in grep.
16277
16278 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
16279 Delete "Automatic File De/compression" (auto-compression-mode).
16280
16281 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
16282
16283 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
16284 Silence warning about non-existent variable.
16285
16286 2005-08-25 Richard M. Stallman <rms@gnu.org>
16287
16288 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
16289 Rename "Describe Key" to "Describe Key or Mouse Operation".
16290
16291 * mail/mailalias.el (build-mail-aliases): Delete comments
16292 from the contents before processing them.
16293
16294 * isearch.el (isearch-edit-string): Erase the Search prompt
16295 if user enters an empty string and there is no default.
16296
16297 * comint.el (comint-file-name-prefix): Add autoload.
16298
16299 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
16300
16301 * subr.el (play-sound): Rearrange to avoid warning.
16302
16303 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
16304
16305 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
16306 New hook.
16307 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
16308
16309 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
16310
16311 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
16312
16313 * custom.el (custom-theme-set-variables): Sort minor modes last.
16314
16315 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16316
16317 * subr.el (version-separator, version-regexp-alist): New vars used by
16318 version comparison funs.
16319 (integer-list-<, integer-list-=, integer-list-<=)
16320 (integer-list-not-zero): New funs for integer list comparison.
16321 (version-to-list, version=, version<, version<=): New funs for version
16322 comparison.
16323
16324 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
16325
16326 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
16327 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
16328 time to silence the byte-compiler.
16329
16330 * ibuffer.el (ibuffer-compile-make-eliding-form)
16331 (ibuffer-check-formats): Use `with-no-warnings' to hide references
16332 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
16333 so it's silly to get warnings for it).
16334 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
16335 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
16336 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
16337 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
16338 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
16339 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
16340 Defvar at compile time.
16341 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
16342 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
16343 Declare them before use.
16344
16345 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
16346 (info-xref-good, info-xref-bad): Defvar at compile time.
16347
16348 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
16349 Use `let*' instead of `let'.
16350
16351 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
16352 (*mouse-y*, menu, char): Defvar at compile time.
16353 (sc::menu): Declare it before use.
16354 (sc::pack-one-line): Use `let', not `let*'.
16355
16356 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
16357 (mail-send-hook): Defvar at compile time.
16358
16359 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
16360 Defvar at compile time.
16361
16362 * term/sun-mouse.el (current-global-mousemap)
16363 (current-local-mousemap): Declare them before use.
16364
16365 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
16366
16367 * bookmark.el (bookmark-after-jump-hook): New hook.
16368 (bookmark-jump): Run `bookmark-after-jump-hook'.
16369
16370 2005-08-23 Juri Linkov <juri@jurta.org>
16371
16372 * faces.el (minibuffer-prompt): Doc fix.
16373
16374 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
16375
16376 * progmodes/xscheme.el: Trivial changes to silence warnings.
16377 (xscheme-previous-mode, xscheme-previous-process-state):
16378 Add defvars.
16379 (xscheme-last-input-end, xscheme-process-command-line)
16380 (xscheme-process-name, xscheme-buffer-name)
16381 (xscheme-expressions-ring-max, xscheme-expressions-ring)
16382 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
16383 (xscheme-control-g-synchronization-p)
16384 (xscheme-control-g-disabled-p, xscheme-string-receiver)
16385 (default-xscheme-runlight, xscheme-runlight)
16386 (xscheme-runlight-string, xscheme-process-filter-state)
16387 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
16388 Move to beginning of file.
16389 (scheme-interaction-mode-commands-alist)
16390 (scheme-interaction-mode-map, scheme-debugger-mode-map):
16391 Declare them before use. Note: the initialization code for the
16392 variables has not been moved because it uses functions that reference
16393 the variables.
16394 (xscheme-control-g-message-string, xscheme-process-filter-alist)
16395 (xscheme-prompt-for-expression-map): Declare them before use.
16396 (scheme-debugger-mode-commands): "?\ " -> "?\s".
16397
16398 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
16399
16400 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
16401
16402 2005-08-22 Juri Linkov <juri@jurta.org>
16403
16404 * faces.el (set-face-underline): Delete this duplicate function
16405 and make an obsolete alias to set-face-underline-p.
16406 (set-face-underline-p): Use docstring of set-face-underline.
16407 (describe-face): Create hyperlink to parent face.
16408
16409 * info.el (Info-insert-dir): Use save-excursion around
16410 insert-buffer-substring.
16411 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
16412 (Info-escape-percent): Delete function.
16413 (Info-fontify-node): Replace Info-escape-percent by
16414 replace-regexp-in-string with REP arg set to lambda that
16415 duplicates `%' and preserves text properties.
16416
16417 * progmodes/compile.el (compilation-disable-input): Doc fix.
16418 (define-compilation-mode): Doc fix and refill.
16419 (kill-compilation): Use `mode-name' in the error message.
16420 (compilation-find-file): Use `compilation-error' in the
16421 read-file-name's prompt.
16422
16423 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
16424
16425 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
16426 (smerge-auto-leave): Make undo re-enable the mode.
16427 (debug-ignored-errors): Add the user-error of impossible resolution.
16428 (smerge-resolve): Move things around a bit, in preparation for later.
16429 (smerge-diff): Don't fail if the buffer has no associated file.
16430 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
16431 (smerge-conflict-overlay): New function.
16432 (smerge-match-conflict): Don't add text properties here.
16433 (smerge-find-conflict): Instead, add an overlay here.
16434 Also check for the case where we're inside a conflict already, so as to
16435 obviate the need for font-lock-multiline, which is unbearably slow with
16436 large conflicts and ciomplex font-lock patterns.
16437 (smerge-remove-props): Remove overlay rather than text-properties.
16438 (smerge-mode): Don't set font-lock-multiline.
16439 Remove overlays when turned off.
16440
16441 2005-08-21 Kim F. Storm <storm@cua.dk>
16442
16443 * ido.el (ido-ignore-item-p): Use save-match-data.
16444 Bind case-fold-search to ido-case-fold locally.
16445
16446 2005-08-20 Richard M. Stallman <rms@gnu.org>
16447
16448 * files.el (normal-mode): If font lock is on, turn it off and on.
16449
16450 * subr.el (replace-regexp-in-string): Doc fix.
16451
16452 * startup.el (command-line-1): Don't suppress startup screen
16453 due to existing processes.
16454
16455 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
16456
16457 * progmodes/compile.el (compilation-disable-input): Default to nil.
16458
16459 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
16460
16461 * progmodes/compile.el (compilation-disable-input): New defcustom.
16462 (compilation-start): If compilation-disable-input is non-nil, send
16463 EOF to the compilation process.
16464
16465 2005-08-20 Eli Zaretskii <eliz@gnu.org>
16466
16467 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
16468 Run the argument of tex-shell-cd-command through
16469 convert-standard-filename, to get the correct style of slashes on
16470 Windows, and enclose the result in quotes, in case the file name
16471 includes whitespace or other special characters.
16472
16473 2005-08-19 Andreas Schwab <schwab@suse.de>
16474
16475 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
16476 process.
16477
16478 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
16479
16480 * cus-start.el (minibuffer-prompt-properties): Correct typo.
16481
16482 2005-08-18 Kim F. Storm <storm@cua.dk>
16483
16484 * scroll-lock.el: Fix errors due to incorrect line wrapping.
16485
16486 2005-08-18 Richard M. Stallman <rms@gnu.org>
16487
16488 * scroll-lock.el: New file.
16489
16490 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
16491
16492 * dired.el (dired-move-to-end-of-filename):
16493 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
16494
16495 2005-08-18 Kim F. Storm <storm@cua.dk>
16496
16497 * ido.el (ido-everywhere): Fix defcustom :set function to disable
16498 rather than toggle mode when custom value is nil.
16499 (ido-everywhere): Fix defun doc string.
16500
16501 2005-08-17 Richard M. Stallman <rms@gnu.org>
16502
16503 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
16504 as tag instead of "Inviolable".
16505
16506 2005-08-17 Kim F. Storm <storm@cua.dk>
16507
16508 * windmove.el (windmove-coordinates-of-position): Remove.
16509 (windmove-coordinates-of-window-position): Remove.
16510 (windmove-reference-loc): Use posn-at-point instead.
16511
16512 * subr.el (insert-for-yank-1): Doc fix.
16513
16514 * ido.el (ido-enter-matching-directory): Rename from
16515 ido-enter-single-matching-directory. Change `slash' choice to
16516 `only'. Add `first' choice.
16517 (ido-exhibit): Adapt to above changes.
16518
16519 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
16520
16521 * Makefile.in: Expand comment about building loaddefs.el.
16522
16523 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
16524
16525 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
16526 Comment use of defadvice.
16527
16528 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
16529
16530 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
16531
16532 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
16533 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
16534 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
16535 * progmodes/idlw-shell.el, progmodes/ld-script.el,
16536 * progmodes/which-func.el, ruler-mode.el, strokes.el,
16537 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
16538 for backward compatibility for faces that did not appear in the
16539 previous Emacs release.
16540
16541 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
16542
16543 2005-08-15 Kim F. Storm <storm@cua.dk>
16544
16545 * emulation/cua-base.el (cua-delete-region): Return t if
16546 deleted region was non-empty.
16547 (cua-replace-region): Inhibit overwrite-mode for
16548 self-insert-command if replaced region was non-empty.
16549 (cua--explicit-region-start, cua--status-string): Make them
16550 buffer-local at top-level...
16551 (cua-mode): ...rather than when mode is enabled.
16552
16553 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
16554
16555 * progmodes/vhdl-mode.el (vhdl-emacs-21):
16556 Set t for Emacs 21, 22, and so on.
16557
16558 2005-08-15 David Ponce <david@dponce.com>
16559
16560 * tree-widget.el: Update Commentary header.
16561 (tree-widget-theme): Doc fix.
16562 (tree-widget-space-width): New option.
16563 (tree-widget-image-properties): Look up in the default theme too.
16564 (tree-widget--cursors): Only for images with arrow pointer shape.
16565 (tree-widget-lookup-image): Pointer shape is hand by default.
16566 (tree-widget-icon): Rename generic icon widget from
16567 `tree-widget-control'.
16568 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
16569 derive from `tree-widget-icon'.
16570 (tree-widget-handle): Improve default look and feel of the text
16571 representation.
16572 (tree-widget): Rename :*-control properties to :*-icon properties.
16573 Add :action and :help-echo properties.
16574 (tree-widget-after-toggle-functions): Move.
16575 (tree-widget-close-node, tree-widget-open-node): Remove.
16576 (tree-widget-before-create-icon-functions): New hook.
16577 (tree-widget-value-create): Update to allow customization of icons
16578 and nodes at run-time via that new hook.
16579 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
16580 (tree-widget-icon-action, tree-widget-icon-help-echo)
16581 (tree-widget-action, tree-widget-help-echo): New functions.
16582
16583 2005-08-15 Kim F. Storm <storm@cua.dk>
16584
16585 * ido.el (ido-buffer-internal): Use with-no-warnings.
16586 (ido-make-merged-file-list): Use while-no-input.
16587
16588 2005-08-15 Richard M. Stallman <rms@gnu.org>
16589
16590 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
16591 (flyspell-large-region): Fix doc and custom type.
16592
16593 2005-08-14 Richard M. Stallman <rms@gnu.org>
16594
16595 * files.el (interpreter-mode-alist): Doc fix.
16596
16597 * mail/rmail.el (rmail-nonignored-headers): New variable.
16598 (rmail-clear-headers): Use it.
16599 (rmail-reply): Better handling of mail-followup-to header.
16600
16601 * progmodes/sh-script.el (sh-font-lock-keywords-var):
16602 Rename variable from sh-font-lock-keywords. In the `shell' entry,
16603 don't try to refer to executable-font-lock-keywords.
16604 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
16605 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
16606 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
16607 (sh-mode): Set comment-start-skip, local-abbrev-table,
16608 imenu-case-fold-search.
16609 (sh-set-shell): Don't set them here.
16610 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
16611 Don't cache the results in the original alist; don't ever modify
16612 that alist.
16613
16614 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
16615
16616 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
16617 empty.
16618
16619 2005-08-15 Andreas Schwab <schwab@suse.de>
16620
16621 * desktop.el: Put autoload cookie at risky-local-variable declarations.
16622
16623 * dired.el, info.el, mail/rmail.el: Revert last change.
16624
16625 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
16626
16627 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
16628 modification in `eval-after-load' form.
16629 * info.el: Likewise.
16630 * mail/rmail.el: Likewise.
16631
16632 2005-08-14 Juri Linkov <juri@jurta.org>
16633
16634 * progmodes/compile.el (compilation-mode-font-lock-keywords):
16635 Remove highlighting of "Compilation started". Highlight only
16636 the word "finished" in "Compilation finished". Add highlighting
16637 of "interrupt", "killed", "terminated" and the exit code.
16638 (compilation-start): Add newline after header. Use exactly the
16639 same time stamp format as the finishing message.
16640 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
16641
16642 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
16643 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
16644 Add highlighting of "interrupt", "killed", "terminated".
16645
16646 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
16647 enabled and the current command is self-insert-command, call it
16648 explicitly with overwrite-mode bound to nil, to not allow it
16649 to delete the character after the selected region.
16650
16651 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
16652
16653 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
16654 move-end-of-line, end-of-line, and beginning-of-line to the list
16655 of commands after which the echo area is updated.
16656
16657 2005-08-12 Eli Zaretskii <eliz@gnu.org>
16658
16659 * cus-edit.el (custom-save-all, custom-save-delete):
16660 Bind recentf-exclude to exclude custom-file.
16661
16662 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
16663
16664 * mail/rmailsum.el (rmail-summary-end-of-message): New command
16665 to go to the bottom of the mail message. Added to
16666 `rmail-summary-mode-map' with key "/".
16667 (rmail-summary-show-message): New (internal) function for use by
16668 both `rmail-summary-beginning/end-of-message'.
16669 (rmail-summary-beginning-of-message): Change to use
16670 rmail-summary-show-message.
16671
16672 * mail/rmail.el (rmail-end-of-message): New command to go to the
16673 end of the current message. Added to `rmail-mode-map' with key "/".
16674 (rmail-beginning-of-message): Fix to work as documented.
16675 (rmail-mode): Change documentation.
16676
16677 * progmodes/compile.el (compilation-start): Add the line
16678 "Compilation started" with compilation start time.
16679 (compilation-mode-font-lock-keywords): Add `started' to keywords.
16680
16681 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
16682
16683 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
16684 of menu items.
16685
16686 2005-08-11 Richard M. Stallman <rms@gnu.org>
16687
16688 * simple.el (pop-global-mark): Reverse test of widen-automatically.
16689
16690 * battery.el (battery-status-function): Don't use ignore-errors.
16691
16692 2005-08-11 Lute Kamstra <lute@gnu.org>
16693
16694 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
16695 define-obsolete-variable-alias.
16696
16697 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
16698
16699 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
16700 (ange-ftp-send-cmd): Revert last change, and expand
16701 the comment explaining the problem.
16702
16703 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
16704
16705 * ldefs-boot.el: Update.
16706
16707 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
16708 item to "Time, Load and Mail". Change help echo text.
16709
16710 * time.el (display-time-use-mail-icon, display-time-format)
16711 (display-time-string-forms): Shorten first line of docstrings.
16712
16713 2005-08-10 Lars Hansen <larsh@soem.dk>
16714
16715 * desktop.el (desktop-buffer-mode-handlers):
16716 Make non-customizable. Add autoload cookie. Change initial value to
16717 nil; add elements in respective modules instead. Fix doc string.
16718 (desktop-load-file): New function.
16719 (desktop-minor-mode-handlers): New autoloaded variable.
16720 (desktop-create-buffer): Call minor mode handlers.
16721 Use desktop-load-file to load major and minor mode modules prior to
16722 checking for a handler.
16723 (desktop-save): Don't add nil to desktop-minor-modes for minor
16724 modes with nil function in desktop-minor-mode-table. Don't delete
16725 desktop file before rewriting it.
16726 (desktop-locals-to-save): Add autoload cookie. Don't make
16727 automatically buffer-local. Add variables column-number-mode,
16728 size-indication-mode, indent-tabs-mode,
16729 indicate-buffer-boundaries, indicate-empty-lines and
16730 show-trailing-whitespace.
16731 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
16732 regexps. Don't use desktop-clear-preserve-buffers-regexp.
16733 (desktop-clear-preserve-buffers-regexp): Delete.
16734 (desktop-clear-preserve-buffers): Update initial value and docstring.
16735 (desktop-save-buffer): Fix doc string.
16736
16737 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
16738 (hilit-chg-desktop-restore): New function.
16739 (highlight-changes-mode): Add highlight-changes-mode to
16740 desktop-locals-to-save.
16741
16742 * dired.el: Add handler to desktop-buffer-mode-handlers.
16743 (dired-restore-desktop-buffer): Remove autoload cookie.
16744 (dired-mode): Add autoload cookie.
16745
16746 * info.el: Add handler to desktop-buffer-mode-handlers.
16747 (Info-restore-desktop-buffer): Remove autoload cookie.
16748 (Info-mode): Add autoload cookie.
16749
16750 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
16751 (mh-restore-desktop-buffer): Remove autoload cookie.
16752 (mh-folder-mode): Add autoload cookie.
16753
16754 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
16755 (rmail-restore-desktop-buffer): Remove autoload cookie.
16756
16757 2005-08-11 Masatake YAMATO <jet@gyve.org>
16758
16759 * hexl.el (hexl-address-region):
16760 (hexl-ascii-region, hexl-font-lock-keywords):
16761 (hexl-highlight-line-range): Use the term "region"
16762 instead of "area" for consistency with the other symbols
16763 defined in hexl.el.
16764
16765 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
16766
16767 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
16768 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
16769 out by Juri Linkov). Add `display-battery-mode'.
16770
16771 2005-08-09 Juri Linkov <juri@jurta.org>
16772
16773 * progmodes/compile.el (compilation-mode-font-lock-keywords):
16774 Remove `-text' from face variable names.
16775 (compilation-error-file-name, compilation-warning-file-name)
16776 (compilation-info-file-name): Delete faces.
16777 (compilation-line-number, compilation-column-number):
16778 Remove face underlining.
16779 (compilation-message-face): Set to `underline' value by default.
16780 (compilation-error-face, compilation-warning-face)
16781 (compilation-info-face): Remove `-file-name' from face names.
16782 (compilation-error-text-face, compilation-warning-text-face)
16783 (compilation-info-text-face): Delete face variables.
16784 (compilation-text-face): Delete function.
16785
16786 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
16787 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
16788 (grep-error-face): Set to `compilation-error' instead of
16789 `compilation-error-face' (which is redefined to `grep-hit-face' in
16790 grep buffers).
16791 (grep-mode-font-lock-keywords): Remove `-text' from face variable
16792 names. Use `grep-error-face' instead of `compilation-error-text-face'.
16793
16794 * dired-aux.el (dired-do-query-replace-regexp):
16795 Use `query-replace-read-args'.
16796
16797 * replace.el (query-replace-read-from, query-replace-read-to)
16798 (query-replace-read-args): Rename arg `string' to `prompt'.
16799
16800 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
16801
16802 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
16803
16804 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
16805 uploading files.
16806 (ange-ftp-canonize-filename): Handle file names beginning with ~
16807 correctly.
16808
16809 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
16810
16811 * textmodes/fill.el (canonically-space-region)
16812 (fill-context-prefix, fill-french-nobreak-p)
16813 (fill-delete-newlines, fill-comment-paragraph)
16814 (justify-current-line): "?\ " -> "?\s".
16815
16816 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
16817
16818 * textmodes/fill.el (fill-nonuniform-paragraphs):
16819 Improve argument/docstring consistency.
16820
16821 2005-08-09 Richard M. Stallman <rms@gnu.org>
16822
16823 * textmodes/ispell.el (ispell-word): More fboundp checks.
16824
16825 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
16826 (find-file-noselect-1): Call it here, only if RAWFILE.
16827 (normal-mode): Always set some major mode.
16828 (save-some-buffers-action-alist): Change some explanation strings.
16829 (file-name-non-special): In the `quote' method, use unwind-protect.
16830
16831 2005-08-09 Magnus Henoch <mange@freemail.hu>
16832
16833 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
16834 (ispell-have-aspell-dictionaries): New variable.
16835 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
16836 (ispell-get-aspell-config-value): New function.
16837 (ispell-aspell-find-dictionary): New function.
16838 (ispell-aspell-add-aliases): New function.
16839 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
16840 appropriate. Don't look for ispell dictionaries if we use aspell.
16841 (ispell-menu-map): Don't build a submenu of dictionaries.
16842
16843 2005-08-09 Richard M. Stallman <rms@gnu.org>
16844
16845 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
16846 (sql-read-passwd): Use read-passwd.
16847
16848 * progmodes/idlw-toolbar.el (idlwave-toolbar)
16849 (idlwave-toolbar-is-possible): Add defvars.
16850
16851 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
16852 Avoid warnings.
16853
16854 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
16855 (idlwave-system-class-info, idlwave-executive-commands-alist):
16856 Use defvar.
16857
16858 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
16859
16860 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
16861 Avoid warnings.
16862
16863 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
16864 and content-type: headers.
16865
16866 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
16867
16868 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
16869 and rename some of them to be more self-explanatory.
16870
16871 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
16872
16873 * startup.el (command-line-1): Implement -scriptload.
16874
16875 * replace.el (occur-engine): Initial *Occur* output not undoable.
16876
16877 * menu-bar.el (menu-bar-file-menu): Rename some menu items
16878 and improve help strings.
16879
16880 * isearch.el (isearch-repeat): When changing direction,
16881 mark search successful.
16882
16883 * ediff-init.el: Use (featurep 'xemacs).
16884
16885 * comint.el (send-invisible): Identify buffer, if not selected.
16886
16887 * align.el: Delete autoload for c-guess-basic-syntax.
16888
16889 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
16890
16891 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
16892 Improve argument/docstring consistency. Doc fixes.
16893 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
16894 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
16895 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
16896 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
16897 (r2bv-organization, r2bv-pages, r2bv-primary-author)
16898 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
16899 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
16900 Defvar at compile time.
16901
16902 2005-08-09 Juri Linkov <juri@jurta.org>
16903
16904 * info.el: Replace `info' with upper-case `Info' where appropriate.
16905 (info-title-1, info-title-2, info-title-3, info-title-4)
16906 (info-menu-header): Move up face definitions.
16907 (info-menu-star): Rename from `info-menu-5'.
16908 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
16909 (Info-fontify-visited-nodes): Fix docstring.
16910 (Info-hide-note-references): Fix docstring.
16911 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
16912 menu items in the same way as on cross-references.
16913 (info-apropos): Fix sorting order and formatting to be like in the
16914 stand-alone Info browser. Display error messages for 1 sec.
16915 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
16916 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
16917 from the menu bar.
16918 (Info-insert-dir): Restore point after calling
16919 `insert-buffer-substring'.
16920
16921 2005-08-08 Richard M. Stallman <rms@gnu.org>
16922
16923 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
16924 (recompute-lucid-menubar): Add defvars.
16925
16926 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
16927
16928 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
16929
16930 * net/net-utils.el (run-dig): Rename from `dig'.
16931
16932 * play/gametree.el (gametree-mode): Use make-local-variable,
16933 not make-variable-buffer-local.
16934
16935 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
16936
16937 * ansi-color.el (ansi-color-make-extent)
16938 (ansi-color-set-extent-face): Use fboundp, not functionp.
16939
16940 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
16941 not make-variable-buffer-local.
16942
16943 * bookmark.el (Info-current-file): Add defvar.
16944 (bookmark-jump-noselect): Use with-no-warnings.
16945
16946 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
16947
16948 * ebuff-menu.el (Helper-return-blurb): Add defvar.
16949
16950 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
16951
16952 * find-file.el (ada-procedure-start-regexp)
16953 (ada-package-start-regexp): Add defvars.
16954
16955 * info.el (Info-insert-dir): Use insert-buffer-substring.
16956
16957 * xml.el (xml-att-def-re): Add defvar.
16958
16959 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
16960 calling convention.
16961
16962 * subr.el (while-no-input): Return t if there is input.
16963
16964 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
16965
16966 * cus-start.el (all): Add `overflow-newline-into-fringe'.
16967
16968 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
16969
16970 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
16971 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
16972
16973 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
16974
16975 * cmuscheme.el (scheme-start-file): Replace reference to
16976 `user-emacs-directory' by "~/.emacs.d/".
16977
16978 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
16979
16980 * info.el (Info-dir-remove-duplicates): Avoid case folding
16981 in loop; instead, keep downcased strings for comparison.
16982 Suggested by Helmut Eller.
16983
16984 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
16985
16986 Sync with Tramp 2.0.50.
16987
16988 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
16989 XEmacs case; not necessary anymore.
16990 (tramp-user-regexp): Allow "@" as part of user name.
16991 (tramp-handle-set-visited-file-modtime)
16992 (tramp-handle-insert-file-contents)
16993 (tramp-handle-write-region): No special handling for
16994 `last-coding-system-used, because this is done in
16995 `tramp-accept-process-output' now.
16996 (tramp-accept-process-output): New defun.
16997 (tramp-process-one-action, tramp-process-one-multi-action)
16998 (tramp-wait-for-regexp, tramp-wait-for-output)
16999 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
17000 Howells <dhowells@redhat.com>.
17001 (clear-visited-file-modtime): Defadvice removed. The check for
17002 unset buffer's modtime does not need to be based on
17003 `tramp-buffer-file-attributes'. Suggested by RMS.
17004 (tramp-message): Insert "\n" if not being at beginning of line.
17005 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
17006 sequence with same logic.
17007 (tramp-completion-handle-expand-file-name): Discard call of
17008 `tramp-drop-volume-letter'. It is not necessary, and there have
17009 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
17010 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
17011 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
17012 should always be visible.
17013 (tramp-handle-insert-directory, tramp-setup-complete)
17014 (tramp-set-process-query-on-exit-flag)
17015 (tramp-append-tramp-buffers): Pacify byte-compiler.
17016 (tramp-bug): Delete non-existing variables from list.
17017 Apply `tramp-load-report-modules' as pre-hook.
17018 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
17019 `shell-prompt-pattern' because of non-7bit characters.
17020 Reported by Sebastian Luque <sluque@mun.ca>.
17021 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
17022 (tramp-match-string-list): Remove function.
17023 (tramp-wait-for-regexp): Remove call of that function.
17024 Suggested by Kim F. Storm <storm@cua.dk>.
17025 (tramp-set-auto-save-file-modes): Use octal integer code #o600
17026 instead of octal character code ?\600. The latter resulted in a
17027 syntax error with XEmacs.
17028
17029 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
17030 XEmacs case; not necessary anymore.
17031 (tramp-smb-handle-write-region): No special handling for
17032 `last-coding-system-used, because this is done in
17033 `tramp-accept-process-output' now.
17034 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
17035
17036 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
17037
17038 * wid-edit.el (widget-choice-value-create):
17039 Unconditionally respect user choice. Set :explicit-choice back to nil
17040 when no longer needed.
17041 (widget-choice-action): Unconditionally respect user choice.
17042 Eliminate :explicit-choice-value.
17043
17044 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
17045
17046 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
17047 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
17048 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
17049 running new function `toggle-indicate-empty-lines'.
17050 Rename "Customize" item to "Customize fringe".
17051 Rename "Indicators" item to "Buffer boundaries" and change help echo.
17052 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
17053 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
17054 Delete "Empty lines only" item.
17055 (menu-bar-showhide-fringe-ind-customize): New function.
17056 (menu-bar-showhide-fringe-ind-mixed)
17057 (menu-bar-showhide-fringe-ind-box)
17058 (menu-bar-showhide-fringe-ind-right)
17059 (menu-bar-showhide-fringe-ind-left)
17060 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
17061 instead of `fringe-indicators'.
17062
17063 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
17064
17065 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
17066 Change the date of last update.
17067
17068 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
17069
17070 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
17071 (viper-exec-yank, viper-put-back): Don't display modification msg
17072 if in the minibuffer.
17073
17074 * viper-init.el (viper-replace-overlay-cursor-color)
17075 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
17076 Make variables frame local.
17077
17078 * viper-util.el (viper-append-filter-alist): Use append instead of
17079 nconc.
17080
17081 * viper.el (viper-vi-state-mode-list)
17082 (viper-emacs-state-mode-list): Move help-mode and
17083 completion-list-mode from the first list to the second.
17084 (viper-mode): Docstring.
17085 (viper-go-away, viper-non-hook-settings): Don't localize
17086 minor-mode-alist in newer Emacsen. Add advice to
17087 set-cursor-color. Don't bind "\C-c\\".
17088
17089 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
17090
17091 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
17092 (scheme-macro-expand-command): New user options.
17093 (scheme-trace-procedure, scheme-expand-current-form): New commands.
17094 (scheme-form-at-point, scheme-start-file)
17095 (scheme-interactively-start-process): New functions.
17096 (scheme-get-process): New function, extracted from `scheme-proc'.
17097 (run-scheme): Call `scheme-start-file' to get start file, and pass
17098 it to `make-comint'.
17099 (switch-to-scheme, scheme-proc):
17100 Call `scheme-interactively-start-process' if no Scheme buffer/process
17101 is available.
17102
17103 2005-08-06 Juri Linkov <juri@jurta.org>
17104
17105 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17106 Use `compilation-text-face', `compilation-info-text-face' and
17107 `compilation-error-text-face' instead of `font-lock-keyword-face'.
17108 (compilation-error): New face.
17109 (compilation-error-file-name): Inherit from
17110 `compilation-error' instead of `font-lock-warning-face'.
17111 (compilation-warning-file-name): Inherit from
17112 `compilation-warning' instead of `font-lock-warning-face'.
17113 (compilation-info, compilation-error-file-name)
17114 (compilation-warning-file-name, compilation-info-file-name)
17115 (compilation-line-number, compilation-column-number): Doc fix.
17116 (compilation-error-text-face, compilation-warning-text-face)
17117 (compilation-info-text-face): New face variables.
17118 (compilation-line-face, compilation-column-face)
17119 (compilation-enter-directory-face)
17120 (compilation-leave-directory-face): Doc fix.
17121 (compilation-text-face): New function.
17122
17123 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
17124 instead of 1 to display binary file names as info file links.
17125 (grep-error-face): Use `compilation-error-face' instead of
17126 `font-lock-keyword-face'.
17127 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
17128 and `compilation-warning-text-face' instead of
17129 `font-lock-keyword-face'. Use `compilation-error-text-face'
17130 instead of `grep-error-face'.
17131
17132 2005-08-05 Kenichi Handa <handa@m17n.org>
17133
17134 * international/code-pages.el: Add autoload cookies for all coding
17135 systems.
17136
17137 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
17138
17139 * cus-start.el (all): Put undo.c where it alphabetically belongs.
17140
17141 2005-08-04 Juri Linkov <juri@jurta.org>
17142
17143 * progmodes/compile.el (compilation-mode-map):
17144 * progmodes/grep.el (grep-mode-map):
17145 Bind TAB to `compilation-next-error' and [backtab] to
17146 `compilation-previous-error'.
17147
17148 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
17149 matching line numbers, column numbers and their ranges with regexp
17150 matching only line numbers.
17151 (grep-context-face): New face variable.
17152 (grep-mode-font-lock-keywords): Use it.
17153
17154 * faces.el (read-face-name): Delete duplicate faces.
17155
17156 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
17157
17158 * thumbs.el (thumbs-find-image): Don't make variables
17159 automatically buffer local.
17160 (thumbs-current-tmp-filename, thumbs-current-image-filename)
17161 (thumbs-image-num): Make automatically buffer local.
17162 (thumbs-show-thumbs-list): Use `make-local-variable', not
17163 `make-variable-buffer-local'.
17164 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
17165
17166 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
17167 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
17168 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
17169 (bother, bye, canyou, chatlst, continue, deathlst, describe)
17170 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
17171 (feelings-about, foullst, found, hello, history, howareyoulst)
17172 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
17173 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
17174 (neglst, obj, object, owner, please, problems, qlist)
17175 (random-adjective, relation, remlst, repetitive-shortness)
17176 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
17177 (shortlst, something, sportslst, stallmanlst, states, subj)
17178 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
17179 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
17180 Defvar at compile time.
17181
17182 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
17183 not `make-variable-buffer-local'.
17184
17185 2005-08-02 Kim F. Storm <storm@cua.dk>
17186
17187 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
17188 rectangle overlay in selected window.
17189
17190 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
17191
17192 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
17193 instead of display group. Make `indicate-buffer-boundaries'
17194 customizable through Custom.
17195
17196 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
17197
17198 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
17199 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
17200 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
17201 (gdb-put-string): Fix typos in docstrings.
17202
17203 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
17204
17205 Update copyright notices of files in progmodes directory for
17206 release of Emacs 22.1.
17207
17208 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
17209
17210 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
17211 Don't barf if the GUD buffer has been killed.
17212
17213 2005-08-01 Kim F. Storm <storm@cua.dk>
17214
17215 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
17216
17217 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
17218
17219 * simple.el (next-error-follow-minor-mode):
17220 make-variable-buffer-local -> make-local-variable.
17221
17222 * emacs-lisp/cl-extra.el: Require CL also when compiling.
17223
17224 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
17225 (byte-compile-form-make-variable-buffer-local): New functions to warn
17226 about misuses of make-variable-buffer-local where make-local-variable
17227 was meant.
17228
17229 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
17230
17231 * bs.el (bs-attributes-list): Doc fix.
17232 (bs): Update url-link.
17233
17234 * desktop.el (desktop-save-buffer): Fix typos in docstring.
17235 (desktop-load-default): Simplify.
17236
17237 * ibuffer.el (ibuffer-columnize-and-insert-list)
17238 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
17239 (ibuffer-unmark-all, ibuffer-toggle-marks)
17240 (ibuffer-unmark-forward, ibuffer-unmark-backward)
17241 (ibuffer-compile-make-format-form, ibuffer-format-column)
17242 (ibuffer-current-buffers-with-marks)
17243 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
17244 (ibuffer): Doc fix.
17245 (ibuffer-mode): Fix typo in docstring.
17246 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
17247 with `define-obsolete-variable-alias'.
17248 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
17249
17250 2005-07-29 Kenichi Handa <handa@m17n.org>
17251
17252 * international/mule-cmds.el (select-message-coding-system):
17253 Be sure to use LF for end-of-line. If no coding system is decided,
17254 return iso-8859-1-unix.
17255
17256 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
17257
17258 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
17259 (ange-ftp-pending-error-line): New vars.
17260 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
17261 to handle the non-fatal no-route-to-host messages.
17262 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
17263
17264 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
17265
17266 * isearch.el (isearch-mode-map, isearch-other-meta-char)
17267 (isearch-quote-char, isearch-printing-char)
17268 (isearch-text-char-description): "?\ " -> "?\s".
17269 (isearch-lazy-highlight-cleanup)
17270 (isearch-lazy-highlight-initial-delay)
17271 (isearch-lazy-highlight-interval)
17272 (isearch-lazy-highlight-max-at-a-time)
17273 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
17274 Declare with define-obsolete-*-alias macros.
17275 (isearch-forward): Fix typo in docstring.
17276 (search-invisible, search-ring-yank-pointer)
17277 (regexp-search-ring-yank-pointer): Doc fixes.
17278
17279 * recentf.el (recentf-menu-append-commands-p): Declare with
17280 `define-obsolete-variable-alias'.
17281 (recentf-max-saved-items, recentf-menu-filter)
17282 (recentf-arrange-by-rule-subfilter): Doc fixes.
17283 (recentf-menu-append-commands-flag)
17284 (recentf-initialize-file-name-history, recentf-expand-file-name)
17285 (recentf-clear-data): Fix typos in docstrings.
17286
17287 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
17288
17289 * progmodes/gdb-ui.el: Smarten comments.
17290 (gdb-info-breakpoints-custom): Use nowarn when finding file.
17291
17292 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
17293
17294 * term/apollo.el (terminal-init-apollo): New function containing
17295 all former top level forms in the file.
17296 * term/bobcat.el (terminal-init-bobcat):
17297 * term/cygwin.el (terminal-init-cygwin):
17298 * term/iris-ansi.el (terminal-init-iris-ansi):
17299 * term/linux.el (terminal-init-linux):
17300 * term/news.el (terminal-init-news):
17301 * term/rxvt.el (terminal-init-rxvt):
17302 * term/sun.el (terminal-init-sun):
17303 * term/tvi970.el (terminal-init-tvi970):
17304 * term/vt100.el (terminal-init-vt100):
17305 * term/vt102.el (terminal-init-vt102):
17306 * term/vt125.el (terminal-init-vt125):
17307 * term/vt200.el (terminal-init-vt200):
17308 * term/vt201.el (terminal-init-vt201):
17309 * term/vt220.el (terminal-init-vt220):
17310 * term/vt240.el (terminal-init-vt240):
17311 * term/vt300.el (terminal-init-vt300):
17312 * term/vt320.el (terminal-init-vt320):
17313 * term/vt400.el (terminal-init-vt400):
17314 * term/vt420.el (terminal-init-vt420):
17315 * term/wyse50.el (terminal-init-wyse50):
17316 * term/xterm.el (terminal-init-xterm): Likewise.
17317
17318 * term/README: Describe the terminal-init-* functionality.
17319
17320 * startup.el (command-line): After loading the terminal initialization
17321 file call the corresponding terminal initialization function.
17322
17323 2005-07-27 Kenichi Handa <handa@m17n.org>
17324
17325 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
17326 negative.
17327
17328 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
17329 (ps-mule-composition-prologue): Fix for the case that
17330 RelativeCompose is false.
17331
17332 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
17333
17334 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
17335
17336 * descr-text.el (describe-char): Handle the case where the list of
17337 chars is displayed in a separate frame.
17338 Be a bit more discriminating when looking for the char.
17339
17340 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
17341
17342 * bookmark.el (bookmark-automatically-show-annotations)
17343 (bookmark-read-annotation-text-func): Doc fixes.
17344 (bookmark-save): Improve argument/docstring consistency.
17345 (bookmark-get-bookmark, bookmark-get-bookmark-record)
17346 (bookmark-alist-from-buffer)
17347 (bookmark-upgrade-file-format-from-0)
17348 (bookmark-grok-file-format-version)
17349 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
17350 (bookmark-read-annotation-mode)
17351 (bookmark-insert-current-bookmark, bookmark-jump)
17352 (bookmark-exit-hook): Fix typos in docstrings.
17353 (bookmark-exit-hooks): Define as obsolete alias.
17354 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
17355 not `bookmark-exit-hooks'. Fix docstring.
17356 (bookmark-bmenu-select): "?\ " -> "?\s".
17357
17358 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
17359
17360 * startup.el (command-line): Fix typo.
17361
17362 2005-07-24 Richard M. Stallman <rms@gnu.org>
17363
17364 * tooltip.el (tooltip-mode): Test emacs-basic-display,
17365 not emacs-quick-startup.
17366
17367 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
17368
17369 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
17370 (reb-next-match, reb-show-subexp): Use `with-selected-window'
17371 instead of `reb-with-current-window'.
17372 (reb-prev-match): Likewise. Also, don't move left if the search
17373 was unsuccessful.
17374 (reb-initialize-buffer): New function.
17375 (re-builder, reb-change-syntax): Use it.
17376
17377 * man.el (Man-goto-page): Make second argument NOERROR optional.
17378
17379 2005-07-23 Richard M. Stallman <rms@gnu.org>
17380
17381 * man.el (Man-bgproc-sentinel): Check here for failure to find
17382 any man page in the output, and report the error here.
17383 (Man-arguments): Make it permanent local.
17384 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
17385 (Man-mode): Pass t for NOERROR.
17386
17387 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
17388 (grep-mode-font-lock-keywords):
17389 Don't use compilation-...-face for messages that are not file names.
17390
17391 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17392 Don't use compilation-...-face for messages that are not file names.
17393
17394 2005-07-22 Juri Linkov <juri@jurta.org>
17395
17396 * startup.el (normal-splash-screen): Update menu name.
17397
17398 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
17399
17400 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
17401
17402 * term/xterm.el: Load term/rxvt if the terminal is actually an
17403 rxvt terminal.
17404 (xterm-rxvt-set-background-mode): Remove, not used anymore.
17405
17406 * term/rxvt.el (function-key-map): Use substitute-key-definition
17407 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
17408
17409 * term/cygwin.el: New file.
17410
17411 2005-07-22 Kim F. Storm <storm@cua.dk>
17412
17413 * image-file.el (insert-image-file, image-file-yank-handler):
17414 Fix last change to maintain a (unique) yank-handler on yanked images.
17415
17416 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
17417
17418 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
17419 of the file size (as in "177B" for 177 bytes). This happens with
17420 "ls -lh" on FreeBSD.
17421
17422 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
17423
17424 * hilit-chg.el (highlight-changes-global-initial-state)
17425 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
17426 (hilit-chg-fixup, highlight-changes-mode):
17427 Fix typos in docstrings.
17428 (highlight-changes-global-modes, highlight-changes-rotate-faces):
17429 Doc fixes.
17430
17431 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
17432
17433 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
17434 mode function using `eval-after-load'.
17435
17436 2005-07-21 Kim F. Storm <storm@cua.dk>
17437
17438 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
17439 included when reporting an emacs crash, and tell about the DEBUG file.
17440
17441 * image-file.el (insert-image-file): Add yank-handler.
17442 (image-file-yank-handler): Yank handler to make unique copies of
17443 images when they are yanked into a buffer next to each other.
17444
17445 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
17446
17447 * comint.el (comint-use-prompt-regexp, comint-send-input)
17448 (comint-source-default, comint-extract-string)
17449 (comint-get-source, comint-word, comint-completion)
17450 (comint-source, comint-prompt-read-only, comint-update-fence):
17451 Fix typos in docstrings.
17452 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
17453 Declare with define-obsolete-*-alias macros.
17454 (comint-previous-matching-input-from-input)
17455 (comint-next-matching-input-from-input)
17456 (comint-previous-matching-input, comint-next-matching-input)
17457 (comint-forward-matching-input):
17458 Improve argument/docstring consistency.
17459
17460 * desktop.el (desktop-clear-preserve-buffers-regexp):
17461 Also preserve the *server* buffer.
17462
17463 * simple.el (clone-indirect-buffer): Doc fix.
17464 (fixup-whitespace, just-one-space)
17465 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
17466 (next-error, next-error-highlight)
17467 (next-error-highlight-no-select, next-error-last-buffer)
17468 (next-error-buffer-p, next-error-find-buffer, next-error)
17469 (previous-error, next-error-no-select, previous-error-no-select)
17470 (open-line, split-line, minibuffer-prompt-width, kill-new)
17471 (binary-overwrite-mode): Fix typos in docstrings.
17472 (set-fill-column): Fix typo in message.
17473
17474 * skeleton.el (skeleton-proxy-new): Doc fix.
17475
17476 * strokes.el (strokes-load-hook): Doc fix.
17477 (strokes-grid-resolution, strokes-get-grid-position)
17478 (strokes-renormalize-to-grid, strokes-read-stroke)
17479 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
17480 (strokes-global-map): Fix typos in docstrings.
17481 (strokes-help): Doc fix. Fix help message and pass it through
17482 `substitute-command-keys'.
17483
17484 * tempo.el (tempo-insert-prompt, tempo-interactive)
17485 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
17486 (tempo-insert-string-functions, tempo-local-tags)
17487 (tempo-define-template, tempo-insert-template)
17488 (tempo-insert-prompt-compat, tempo-is-user-element)
17489 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
17490 Fix typos in docstrings.
17491
17492 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
17493 (vcursor-key-bindings, vcursor-use-vcursor-map)
17494 (vcursor-find-window, vcursor-scroll-down)
17495 (vcursor-disable, vcursor-beginning-of-buffer)
17496 (vcursor-end-of-buffer): Fix typos in docstrings.
17497 (vcursor-relative-move, vcursor-get-char-count):
17498 Improve argument/docstring consistency.
17499
17500 * version.el: "?\ " -> "?\s".
17501
17502 * wid-edit.el (widget-default-create, widget-after-change)
17503 (widget-default-format-handler, widget-checklist-add-item)
17504 (widget-radio-add-item, widget-choose, widget-specify-secret)
17505 (widget-field-value-create, widget-field-value-get)
17506 (widget-editable-list-format-handler)
17507 (widget-editable-list-entry-create, widget-group-value-create)
17508 (widget-documentation-link-add)
17509 (widget-documentation-string-value-create): "?\ " -> "?\s".
17510 (widget-convert-text): Doc fix.
17511 (widget-narrow-to-field, widget-field-find)
17512 (widget-url-link-action, widget-emacs-library-link-action)
17513 (widget-color-notify): Fix typos in docstrings.
17514
17515 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
17516 (x-select-text, set-w32-system-coding-system)
17517 (w32-add-charset-info): Fix typos in docstrings.
17518
17519 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
17520 (cua-enable-cua-keys, cua-use-hyper-key)
17521 (cua-virtual-rectangle-edges): Fix typos in docstrings.
17522 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
17523
17524 * net/tramp.el (tramp-handle-load): Fix typo in error message.
17525
17526 * emacs-lisp/re-builder.el (regexp-builder): Declare with
17527 `defalias' instead of faking it.
17528
17529 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
17530 (eshell-ls-missing, eshell-ls-dired-initial-args)
17531 (eshell-ls-use-in-dired): Fix typos in docstrings.
17532
17533 2005-07-20 Kim F. Storm <storm@cua.dk>
17534
17535 * emulation/cua-base.el (cua-mode): Improve doc string.
17536
17537 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
17538
17539 * abbrev.el (expand-region-abbrevs): Doc fix.
17540 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
17541 Improve argument/docstring consistency.
17542
17543 * arc-mode.el (archive-get-descr, archive-alternate-display):
17544 Doc fixes.
17545 (archive-l-e): Improve argument/docstring consistency.
17546 (archive-tmpdir, archive-unixdate, archive-unixtime)
17547 (archive-chmod-entry): Fix typos in docstrings.
17548 (archive-unflag, archive-unflag-backwards)
17549 (archive-unmark-all-files): "?\ " -> "?\s".
17550
17551 * buff-menu.el (Buffer-menu-unmark): Doc fix.
17552 (Buffer-menu-not-modified, Buffer-menu-execute)
17553 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
17554 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
17555
17556 * composite.el (compose-string, encode-composition-rule)
17557 (compose-last-chars): Fix typos in docstrings.
17558
17559 * desktop.el (desktop-enable, desktop-basefilename):
17560 Declare with `define-obsolete-variable-alias'.
17561 (desktop-internal-v2s): Don't quote keywords.
17562 (desktop-clear): "?\ " -> "?\s".
17563
17564 * dired.el (dired-align-file, dired-flag-backup-files)
17565 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
17566 (dired-listing-switches, dired-ls-F-marks-symlinks)
17567 (dired-dwim-target, dired-load-hook, dired-mode-hook)
17568 (dired-directory, dired-faces, dired, dired-revert)
17569 (dired-mode, dired-summary, dired-view-file)
17570 (dired-copy-filename-as-kill, dired-delete-file)
17571 (dired-no-confirm, dired-unmark-all-marks)
17572 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
17573 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
17574 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
17575 Fix typos in message strings.
17576
17577 * dired-x.el (virtual-dired): Declare with `defalias'.
17578 (dired-mark-unmarked-files, dired-local-variables-file)
17579 (dired-omit-here-always): Doc fix.
17580 (dired-omit-mode, dired-find-subdir)
17581 (dired-enable-local-variables, dired-clean-up-buffers-too)
17582 (dired-extra-startup, dired-mark-extension, dired-jump)
17583 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
17584 (dired-smart-shell-command, dired-guess-shell-alist-user)
17585 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
17586 (dired-x-bind-find-file, dired-x-submit-report):
17587 Fix typos in docstrings.
17588 (dired-mark-unmarked-files): "?\ " -> "?\s".
17589
17590 * dirtrack.el (dirtrack-list): Fix typos in docstring.
17591
17592 * faces.el (describe-face): "?\ " -> "?\s".
17593 (read-all-face-attributes, read-face-font, modify-face)
17594 (face-attr-construct, italic): Fix typos in docstrings.
17595 (frame-update-face-colors): Declare with
17596 `define-obsolete-function-alias'.
17597
17598 * files.el (find-file-noselect, recode-file-name): Doc fixes.
17599 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
17600 (magic-mode-alist, buffer-file-numbers-unique)
17601 (write-file-functions, get-free-disk-space):
17602 Fix typos in docstrings.
17603 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
17604 (write-contents-hooks, write-file-hooks):
17605 Declare with `define-obsolete-variable-alias'.
17606
17607 * forms-d2.el (arch-rj): Fix typo in docstrings.
17608 (arch-tocol): Likewise. "?\ " -> "?\s".
17609
17610 * frame.el (set-frame-font, cursor-in-non-selected-windows):
17611 Fix typo in docstring.
17612 (set-screen-width, set-screen-height): Delete redundant info in
17613 doctrings.
17614 (new-frame, screen-height, screen-width): Declare with
17615 `define-obsolete-function-alias'.
17616 (delete-frame-hook, blink-cursor): Declare with
17617 `define-obsolete-variable-alias'.
17618
17619 * paths.el (prune-directory-list): Fix typos in docstring.
17620
17621 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
17622 (cvs-prefix-get): Fix typos in docstrings.
17623
17624 * ps-print.el (ps-extend-face-list, ps-extend-face)
17625 (ps-print-background-image): Fix typos in docstrings.
17626 (ps-default-fg, ps-default-bg): Doc fixes.
17627
17628 * s-region.el (s-region-bind): Doc fix.
17629 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
17630
17631 * textmodes/org.el (org-table-formula-substitute-names)
17632 (org-table-get-vertical-vector): Doc fixes.
17633 (org-table-recalculate): Remove unused argument to `message'.
17634
17635 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
17636
17637 * textmodes/org.el (org-table-column-names)
17638 (org-table-column-name-regexp)
17639 (org-table-named-field-locations): New variables.
17640 (org-archive-subtree): Protect `this-command' when calling
17641 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
17642 the kill buffer.
17643 (org-complete): Remove fixed-formula completion.
17644 (org-edit-formulas-map): New variable.
17645 (org-table-edit-formulas): New command.
17646 (org-finish-edit-formulas, org-abort-edit-formulas)
17647 (org-show-variable, org-table-get-vertical-vector): New functions.
17648 (org-table-maybe-eval-formula): Handle `:=' fields.
17649 (org-table-get-stored-formulas, org-table-store-formulas)
17650 (org-table-get-formula, org-table-modify-formulas)
17651 (org-table-replace-in-formulas): Handle named field formulas.
17652 (org-table-get-specials): Store locations of named fields.
17653
17654 2005-07-19 Juri Linkov <juri@jurta.org>
17655
17656 * progmodes/grep.el (grep-regexp-alist)
17657 (grep-mode-font-lock-keywords, grep-process-setup):
17658 Use default GNU grep match color "01;31m" instead of "01;41m".
17659 (grep-regexp-alist, grep-mode-font-lock-keywords):
17660 Use `\\[[0-9]*m' instead of `\\[00m'.
17661 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
17662 sgr_start where its handling is more important. Use the real
17663 length of sgr_start instead of constant 8.
17664 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
17665 specially. Delete all remaining escape sequences.
17666 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
17667 (grep-regexp-alist): Make hyperlink only for binary file name
17668 instead of the whole line.
17669 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
17670 (grep-mode): Add autoload.
17671
17672 * emacs-lisp/find-func.el (find-function-regexp):
17673 Add `define-compilation-mode'.
17674
17675 2005-07-19 Juri Linkov <juri@jurta.org>
17676
17677 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
17678 (compare-windows-sync-string-size, compare-windows-recenter)
17679 (compare-windows-highlight, compare-windows): Add version 22.1.
17680 (compare-windows) <defface>: Inherit from lazy-highlight instead
17681 of duplicating its default value.
17682
17683 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
17684 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
17685
17686 * descr-text.el (describe-char): Create link buttons for `charset'
17687 and `code point'. Add the current input method name with a link
17688 button to `to input' field. Print face names of display table
17689 characters in `The display table entry is displayed by' section
17690 instead of printing face-id in the `display' field.
17691 Guess hardcoded faces and create a link button for them.
17692 Skip empty fields when calculating max-width.
17693 Treat `widget-create' specially while inserting strings from the
17694 collected field list.
17695 (describe-char-after): Made obsolete in version 22.1, not 21.5.
17696
17697 * diff-mode.el (diff-file-header): Change foreground color from
17698 yellow to green on light backgrounds.
17699 (diff-context): Inherit from `shadow' only for color/grayscale
17700 with more than 88 colors.
17701 (diff-indicator-removed, diff-indicator-added)
17702 (diff-indicator-changed): New faces.
17703 (diff-font-lock-keywords): Use new faces. Regroup rules.
17704 Add "^---$" for `normal' diff format. Fontify `#' lines with
17705 font-lock-comment-delimiter-face and font-lock-comment-face.
17706 Add `#' to ^[^...] in the rule for `diff-context-face'.
17707
17708 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
17709 a button-like box. Inherit from `highlight' on low colors.
17710 (shadow): Use shades of gray only for color/grayscale with
17711 more than 88 colors. Use green for light backgrounds with
17712 8 colors, and yellow for dark backgrounds with 8 colors.
17713
17714 * font-lock.el (font-lock-regexp-grouping-backslash):
17715 Don't inherit from escape-glyph (use bold for all cases).
17716
17717 * info.el (info-xref-visited): Use light foreground color `violet'
17718 for dark backgrounds instead of dark color `magenta3'.
17719 (info-title-1): Use `yellow' color for dark backgrounds.
17720
17721 * isearch.el (isearch): Use not-too-dark magenta3 instead of
17722 too-light magenta2.
17723
17724 * replace.el (match): Use slightly more light RoyalBlue3 instead
17725 of dark RoyalBlue4.
17726
17727 * wid-edit.el (widget-inactive): Inherit from `shadow'.
17728
17729 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
17730
17731 * novice.el (disabled-command-hook): Declare it with
17732 `define-obsolete-variable-alias'.
17733
17734 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
17735 (desktop-buffer-misc-functions, desktop-buffer-handlers)
17736 (desktop-load-default): Add release to obsolescence info.
17737 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
17738 (desktop-append-buffer-args, desktop-read):
17739 Fix typos in docstrings.
17740 (desktop-kill): Fix typo in message.
17741 (desktop-save): Doc fix.
17742
17743 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
17744
17745 * viper-cmd.el (viper-escape-to-state): Bug fix.
17746 (viper-envelop-ESC-key): Change the definition of fast
17747 keysequence so it'll work with keyboard macros.
17748
17749 * ediff.el (ediff-patch-buffer): Change the docstring.
17750
17751 2005-07-19 Kenichi Handa <handa@m17n.org>
17752
17753 * international/mule-cmds.el (select-safe-coding-system): Try to
17754 use an auto-coding (if any) before anything else. If the found
17755 auto-coding is invalid, show a warning message.
17756
17757 * international/mule.el (find-auto-coding): New function created
17758 by modifying the body of set-auto-coding.
17759 (set-auto-coding): Use find-auto-coding to find a coding.
17760
17761 2005-07-18 Richard M. Stallman <rms@gnu.org>
17762
17763 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
17764 not isearch-mode-end-hook-error.
17765 (allout-before-change-protect): Fix error message.
17766
17767 2005-07-18 Juri Linkov <juri@jurta.org>
17768
17769 * allout.el (allout-mode):
17770 * calculator.el (calculator-copy):
17771 * custom.el (custom-known-themes):
17772 * dired.el (dired-desktop-buffer-misc-data)
17773 (dired-restore-desktop-buffer):
17774 * dired-x.el (dired-omit-marker-char):
17775 * files.el (basic-save-buffer):
17776 * font-core.el (font-lock-mode):
17777 * calendar/calendar.el (calendar-goto-hebrew-date)
17778 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
17779 (calendar-goto-persian-date):
17780 * language/ethio-util.el (ethio-sera-to-fidel-region):
17781 * textmodes/picture.el (picture-mode):
17782 Delete duplicate duplicate words.
17783
17784 2005-07-18 Juri Linkov <juri@jurta.org>
17785
17786 * isearch.el (isearch-mode-map): Remove key bindings for regexp
17787 chars * ? } |.
17788 (isearch-fallback): Don't call `isearch-process-search-char'.
17789 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
17790 (isearch-process-search-char): Call `isearch-fallback' for regexp
17791 chars * ? } |.
17792 (isearch-return-char): Make obsolete with `make-obsolete' instead
17793 of simply documenting it as obsolete in the docstring.
17794 (isearch-fallback): Refill docstring.
17795
17796 * international/isearch-x.el
17797 (isearch-process-search-multibyte-characters): Remove unneeded
17798 `concat'. Add intermediate values to `junk-hist' instead of
17799 `minibuffer-history'. Test the length of `str'.
17800
17801 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
17802
17803 * allout.el (allout-resolve-xref): Fix typos in error strings.
17804 (allout-before-change-protect): Remove unneeded `concat'.
17805
17806 * array.el (array-mode, array-reconfigure-rows)
17807 (untabify-backward): Fix typos in docstrings.
17808 (array-reconfigure-rows): Use `insert-buffer-substring', not
17809 `insert-buffer'.
17810
17811 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
17812 * progmodes/ada-mode.el (ada-make-body):
17813 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
17814
17815 * dired.el (dired-log):
17816 * tar-mode.el (tar-subfile-save-buffer):
17817 * play/zone.el (zone-pgm-stress-destress):
17818 Use `insert-buffer-substring', not `insert-buffer'.
17819
17820 2005-07-17 Simon Josefsson <jas@extundo.com>
17821
17822 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
17823
17824 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
17825
17826 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
17827 Add plain auth method.
17828 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
17829
17830 2005-07-17 Kim F. Storm <storm@cua.dk>
17831
17832 * ido.el (dired-other-window): Add ido property.
17833
17834 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
17835
17836 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
17837 Fix typo in docstring.
17838 (byte-compile-interactive-only-functions): Add `insert-buffer' and
17839 `insert-file-literally'.
17840
17841 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
17842 info and delete redundant message. Doc fix.
17843 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
17844 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
17845
17846 2005-07-16 Richard M. Stallman <rms@gnu.org>
17847
17848 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
17849 (byte-compile-and): Use byte-compile-and-recursion.
17850 (byte-compile-or-recursion): New function.
17851 (byte-compile-or): Use that.
17852 (byte-compile-if): Guard the else-clause too.
17853 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
17854
17855 * isearch.el (isearch-mode-end-hook-quit): New variable.
17856 (isearch-done): Bind it.
17857 (isearch-mode-end-hook): Doc fix.
17858
17859 * allout.el (allout-isearch-did-quit): Variable deleted.
17860 (allout-real-isearch-abort): Function name no longer used.
17861 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
17862 (allout-isearch-rectification): isearch-mode always exists.
17863 Don't set allout-isearch-did-quit.
17864 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
17865 allout-isearch-did-quit.
17866 (allout-enwrap-isearch): Just add the hook.
17867 (allout-isearch-abort): Function deleted.
17868 (allout-pre-command-business): Avoid warning.
17869
17870 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
17871 Correctly avoid warnings.
17872 (pascal-outline): Likewise.
17873
17874 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
17875
17876 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
17877
17878 * play/tetris.el (tetris-mode): Avoid warning.
17879
17880 * play/snake.el (snake-mode): Avoid warning.
17881
17882 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
17883 (gamegrid-set-display-table): Avoid warning.
17884 (gamegrid-set-timer): Likewise.
17885 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
17886 (gamegrid-add-score-with-update-game-score-1): Take FILE
17887 as argument.
17888 (gamegrid-add-score-with-update-game-score): Pass that argument.
17889 Rename have-shared-game-dir to gamegrid-shared-game-dir.
17890
17891 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
17892
17893 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
17894 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
17895
17896 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
17897 and insert-file.
17898
17899 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
17900 (sc-ask): Avoid warnings.
17901
17902 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
17903 (eshell-hist-initialize): Use that var the natural way.
17904
17905 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
17906
17907 * emacs-lisp/re-builder.el (reb-cook-regexp):
17908 Avoid warning calling lre-compile-string.
17909 (reb-color-display-p): Avoid warning.
17910
17911 * calculator.el (calculator-last-input): Guard uses
17912 of event-key and key-press-event-p.
17913 (event-key, key-press-event-p): Delete definitions.
17914
17915 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
17916 (find-gc-source-directory, find-gc-subrs-callers)
17917 (find-gc-noreturn-list, find-gc-source-files)
17918 (find-gc-subrs-called): Vars renamed and defvar'd.
17919
17920 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
17921 (checkdoc-overlay-put, checkdoc-delete-overlay)
17922 (checkdoc-overlay-start, checkdoc-overlay-end)
17923 (checkdoc-mode-line-update, checkdoc-char=):
17924 Define such that compiler knows they are defined.
17925 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
17926 (checkdoc-read-event): Delete. Use read-event directly.
17927
17928 * whitespace.el (whitespace-make-overlay)
17929 (whitespace-overlay-put, whitespace-delete-overlay)
17930 (whitespace-overlay-start, whitespace-overlay-end):
17931 Define such that compiler knows they are defined.
17932 (whitespace): Move conditional inside.
17933
17934 * tempo.el (tempo-insert-template): Suppress warning.
17935
17936 * ediff-diff.el (longlines-mode): Add defvar.
17937
17938 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
17939
17940 * server.el: Bind "C-x #" in a way that works even if C-x is
17941 redefined to a command key, not a prefix key.
17942
17943 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
17944
17945 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
17946 cl-make-type-test till execution time.
17947
17948 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
17949
17950 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
17951 arg ARG and use it.
17952
17953 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
17954
17955 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
17956
17957 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
17958
17959 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
17960 a defcustom with two :set or :type keywords.
17961
17962 2005-07-15 Richard M. Stallman <rms@gnu.org>
17963
17964 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17965 Don't give ^M comment-end syntax.
17966
17967 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
17968
17969 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
17970 Don't consider gdbmi (gdb-mi.el has its own update functions).
17971 (gdb-var-delete): Make it work for gdbmi as well.
17972 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
17973
17974 * progmodes/gud.el (etags, sdb): Only require etags when needed.
17975 (gud-speedbar-menu-items): Correct logic for enabling items.
17976
17977 2005-07-15 Kim F. Storm <storm@cua.dk>
17978
17979 * ido.el: Fix commentary.
17980 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
17981 Use with-no-warnings around ffap-guesser.
17982 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
17983 Let bind minibuffer-completing-file-name to t.
17984
17985 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
17986
17987 * startup.el (site-run-file, keyboard-type): Doc fixes.
17988 (command-line): Check for "--basic-display" argument; also for
17989 "--quick", not "--bare-bones" (which was renamed).
17990 (fancy-splash-text): Add missing item "Getting New Versions".
17991 (normal-splash-screen): Fix typos and improve consistency with
17992 `fancy-splash-text'. Update copyright year.
17993
17994 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
17995 valid binding for `help-char'.
17996
17997 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
17998
17999 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
18000
18001 * term.el (term-mode): Disable cua-mode for term buffers.
18002
18003 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
18004
18005 * add-log.el (add-log-mailing-address, change-log-merge):
18006 Doc fixes.
18007 (change-log-get-method-definition): Fix typo in docstring.
18008
18009 2005-07-14 Kim F. Storm <storm@cua.dk>
18010
18011 * emulation/cua-base.el:
18012 (cua--pre-command-handler-1, cua--pre-command-handler)
18013 (cua--post-command-handler-1, cua--post-command-handler):
18014 Split in two. Check (buffer local) value of cua-mode.
18015 (cua-selection-mode): New command.
18016
18017 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
18018
18019 * custom.el (custom-initialize-safe-set)
18020 (custom-initialize-safe-default): Doc fixes.
18021
18022 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
18023 and simplify :init-value again.
18024
18025 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
18026 and simplify :init-value again. Delete autoload.
18027
18028 * startup.el (command-line): Use `custom-reevaluate-setting' again
18029 for tooltip-mode.
18030
18031 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
18032 a defcustom with two :initialize keywords.
18033
18034 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
18035
18036 * allout.el (my-mark-marker, allout-isearch-prior-pos)
18037 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
18038 (allout-post-command-business, allout-flag-region)
18039 (isearch-reenable-font-lock, allout-yank)
18040 (allout-insert-latex-header, allout-insert-latex-trailer)
18041 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
18042 (allout-latex-verb-quote): Fix typos in docstrings.
18043 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
18044 (allout-unprotected, allout-prefix-data):
18045 Improve argument/docstring consistency.
18046 (allout-chart-subtree): Fix argument spec.
18047 (allout-open-topic): Rename `use_sib_bullet' argument to
18048 `use-sib-bullet'. Doc fix.
18049
18050 * whitespace.el (whitespace-check-buffer-leading)
18051 (whitespace-check-buffer-trailing)
18052 (whitespace-check-buffer-indent)
18053 (whitespace-check-buffer-spacetab)
18054 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
18055 (whitespace-check-leading-whitespace)
18056 (whitespace-check-trailing-whitespace)
18057 (whitespace-check-spacetab-whitespace)
18058 (whitespace-check-indent-whitespace)
18059 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
18060 (whitespace-modes): Fix typos in docstrings.
18061 (defgroup, defcustom): Doc fixes.
18062
18063 * winner.el (winner-mode, winner-boring-buffers)
18064 (winner-pending-undo-ring): Doc fixes.
18065 (winner-ring): Remove unneeded `progn'.
18066 (winner-equal): `defsubst' it.
18067 (winner-redo): Fix message.
18068
18069 2005-07-13 Kim F. Storm <storm@cua.dk>
18070
18071 * simple.el (line-move-1): Always use vertical-motion to
18072 do the last (or only) line move to ensure some movement.
18073 Undo 2005-06-23 change--don't check for overlays.
18074
18075 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18076
18077 * term/mac-win.el (ccl-encode-mac-roman-font)
18078 (ccl-encode-mac-centraleurroman-font)
18079 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
18080 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
18081 Change charset-id boundary of dimension to ?\xef.
18082 (mac-char-fontspec-list): New constant.
18083 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
18084 argument. Nil uses itself as family in font-spec. Previous
18085 behavior for nil is now provided by non-nil non-string argument.
18086 All callers changed. Add font-specs for Mac fonts to
18087 "fontset-default" unless iso8859-1 fonts are installed.
18088
18089 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
18090
18091 * progmodes/sh-script.el (sh-get-indent-info): Only indent
18092 a continuation line if the \ is preceded by SPC or TAB.
18093 (sh-get-indent-info): Simplify.
18094 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
18095 Use with-current-buffer.
18096
18097 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
18098 when the matched text is empty.
18099
18100 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
18101
18102 * startup.el (command-line): Revert to previous handling of
18103 tooltip-mode. Explain in comment why the complexity is needed.
18104
18105 * tooltip.el (tooltip-mode): Revert to previous implementation of
18106 its defcustom.
18107
18108 * frame.el (blink-cursor-mode): Revert to previous implementation
18109 of its defcustom. Update comment.
18110
18111 2005-07-12 Lars Hansen <larsh@soem.dk>
18112
18113 * desktop.el: Update e-mail address.
18114
18115 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18116
18117 * term/mac-win.el (mac-services-mail-selection)
18118 (mac-services-mail-to): New functions.
18119 (mac-application-menu-map): Bind them.
18120
18121 2005-07-12 wulei <milton@wulei.net> (tiny change)
18122
18123 * progmodes/gdb-ui.el: Add note about buffering with Windows.
18124
18125 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
18126
18127 * custom.el (custom-reevaluate-setting): Doc fix.
18128
18129 2005-07-11 Jay Belanger <belanger@truman.edu>
18130
18131 * calc/calc.el (calc-embedded-announce-formula-alist)
18132 (calc-embedded-open-close-plain-alist)
18133 (calc-embedded-open-close-mode-alist): Add checks for additional
18134 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
18135
18136 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
18137
18138 * custom.el (custom-enable-theme): Don't add theme to
18139 `custom-enabled-themes' with `push' because there is no
18140 setf-method for `delq'.
18141
18142 2005-07-11 Richard M. Stallman <rms@gnu.org>
18143
18144 * custom.el (custom-declare-variable): Doc fix.
18145
18146 * dired-aux.el (dired-compare-directories): Remove "." and ".."
18147 from the alists.
18148
18149 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
18150 Do nothing if edebug-active.
18151
18152 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
18153 (edebug-display): Do it here instead.
18154
18155 2005-07-10 Richard M. Stallman <rms@gnu.org>
18156
18157 * cus-face.el (custom-theme-set-faces): Make it work.
18158 (custom-reset-faces): Doc fix.
18159 (custom-theme-reset-internal-face, custom-theme-face-value):
18160 Functions deleted.
18161
18162 * custom.el (custom-push-theme): Maintain list of the settings
18163 of a given theme in its theme-settings property.
18164 Maintain position of old settings in the theme-value
18165 or theme-face property.
18166 (custom-enabled-themes): New variable.
18167 (custom-theme-enabled-p): New function.
18168 (provide-theme): Update custom-enabled-themes.
18169 Disable and reenable the `user' theme.
18170 (require-theme): Doc fix.
18171 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
18172 (custom-theme-value, custom-theme-variable-value): Likewise.
18173 (custom-theme-reset-internal): Likewise.
18174 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
18175 (custom-enable-theme, custom-disable-theme): New functions.
18176 (custom-variable-theme-value, custom-face-theme-value): Likewise.
18177 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
18178 (custom-theme-reset-variables): Simplify.
18179 (deftheme, custom-declare-theme, custom-make-theme-feature):
18180 Definitions moved.
18181
18182 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
18183
18184 * longlines.el (longlines-show-region)
18185 (longlines-unshow-hard-newlines): Recognize hard newlines by
18186 non-nil hard property, instead of t.
18187
18188 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
18189
18190 * viper-cmd.el (viper--key-maps): New variable.
18191 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
18192 emulation-mode-map-alists.
18193 (viper-envelop-ESC-key): Use viper-subseq.
18194 (viper-search-forward/backward/next): Disable debug-on-error.
18195
18196 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
18197 (viper-ESC-key): New defcustoms.
18198
18199 * viper-macs.el (ex-map-read-args): Use viper-subseq.
18200
18201 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
18202 (viper-subseq): Copy of subseq from cl.el.
18203
18204 * viper.el (viper-go-away, viper-set-hooks): Use
18205 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
18206
18207 * viper-mous.el (viper-current-frame-saved): Use defvar.
18208
18209 * viper-init.el: Get rid of -face in face names.
18210
18211 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
18212 Make it work with longlines mode
18213
18214 * ediff-mult.el (ediff-meta-mode-hook): New variable.
18215
18216 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
18217
18218 * ediff-init.el: Get rid of -face in face names.
18219
18220 2005-07-10 Richard M. Stallman <rms@gnu.org>
18221
18222 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
18223 and with-timeout-unsuspend.
18224
18225 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
18226 and with-timeout-unsuspend.
18227
18228 * emacs-lisp/timer.el (with-timeout-timers): New variable.
18229 (with-timeout): Bind that variable to record timers.
18230 (with-timeout-suspend, with-timeout-unsuspend): New functions.
18231
18232 * emacs-lisp/debug.el (debug-help-follow): New function.
18233 (debugger-mode-map): Use that instead of help-follow.
18234 (debugger-setup-buffer): Use eval-buffer-list
18235 to handle eval-buffer frames.
18236
18237 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
18238
18239 * timezone.el (timezone-parse-date): Change first regexp
18240 so it will not mistakenly match dates with no time zone.
18241
18242 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
18243
18244 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
18245
18246 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
18247
18248 * custom.el (custom-initialize-safe-set)
18249 (custom-initialize-safe-default): New functions.
18250
18251 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
18252 and simplify :init-value.
18253
18254 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
18255 and simplify :init-value. Delete obsolete comment.
18256
18257 * startup.el (command-line): Use `custom-reevaluate-setting' to
18258 handle `tooltip-mode'. Delete obsolete comment.
18259
18260 * files.el (set-visited-file-name): Avoid calling
18261 `file-name-nondirectory' with a nil argument.
18262
18263 2005-07-09 Richard M. Stallman <rms@gnu.org>
18264
18265 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
18266 was called with nil for the buffer, handle the read position right.
18267 Handle read position for eval-region, too.
18268
18269 2005-07-09 Juri Linkov <juri@jurta.org>
18270
18271 * fringe.el (fringe-mode): Add period in docstring.
18272 (fringe-query-style): Build prompt depending on `all-frames' arg.
18273
18274 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
18275 to not create links to unrelated functions in the Help buffer.
18276
18277 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
18278 Doc fix.
18279
18280 * simple.el (next-error-hook): New variable.
18281 (next-error): Use it. Doc fix.
18282
18283 * textmodes/ispell.el (ispell-command-loop): Add current
18284 dictionary name and program name to mode-line-format.
18285 (ispell-region, ispell-process-line): Add current dictionary name
18286 and program name to messages.
18287
18288 2005-07-08 Jay Belanger <belanger@truman.edu>
18289
18290 * calc/calc.el (calc-embedded-announce-formula-alist)
18291 (calc-embedded-open-close-formula-alist)
18292 (calc-embedded-open-close-word-alist)
18293 (calc-embedded-open-close-plain-alist)
18294 (calc-embedded-open-close-new-formula-alist)
18295 (calc-embedded-open-close-mode-alist)
18296 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
18297 (calc-embedded-mode-hook): New variables.
18298
18299 * calc/calc-embed.el (calc-embedded-firsttime)
18300 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
18301 New variables.
18302 (calc-do-embedded): Use calc-embedded-firsttime,
18303 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
18304 determine whether or not to run hooks.
18305 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
18306 calc-embedded-firsttime-formula appropriately.
18307 Set calc-embedded delimiter variables according to mode.
18308
18309 2005-07-08 Richard M. Stallman <rms@gnu.org>
18310
18311 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
18312 Check for "emacs", etc., as entire symbol, not just as word.
18313 (checkdoc-file-comments-engine): Use regexp-quote on FN.
18314
18315 * files.el (set-visited-file-name): Report the error
18316 for "empty filename" earlier.
18317 (kill-some-buffers): Ignore buffers already dead.
18318
18319 * fringe.el (fringe-mode): Doc fix.
18320
18321 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
18322 Check for (featurep 'xemacs) and turn off warnings in what it guards.
18323 Use unwind-protect to ensure byte-compile-unresolved-functions
18324 is updated.
18325
18326 * whitespace.el (whitespace-buffer-leading-cleanup):
18327 Simplify w/ skip-chars-forward.
18328 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
18329
18330 * mail/rmail.el (rmail-only-expunge): Fix paren error.
18331 Unconditionally try to leave point at the same old place.
18332
18333 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
18334
18335 * comint.el (comint-postoutput-scroll-to-bottom)
18336 (comint-show-maximum-output): Take scroll-margin into consideration.
18337
18338 2005-07-08 Kim F. Storm <storm@cua.dk>
18339
18340 * ido.el (ido-use-filename-at-point): New choice `guess'.
18341 (ido-file-internal): Try ffap-guesser if selected.
18342
18343 * ido.el (ido-before-fallback-functions): New hook.
18344 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
18345 (ido-read-file-name): Run it.
18346
18347 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
18348
18349 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
18350 strings rather than a list of symbols to the completion function.
18351
18352 2005-07-07 Jay Belanger <belanger@truman.edu>
18353
18354 * calc/calc-units.el (math-apply-units): Change the places in
18355 which units are simplified.
18356
18357 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
18358
18359 * cus-edit.el (customize-option, customize-option-other-window):
18360 Make them handle aliases.
18361
18362 * custom.el (custom-variable-p): Make it recursively follow
18363 aliases. Mention that in the docstring.
18364
18365 2005-07-07 Richard M. Stallman <rms@gnu.org>
18366
18367 * cus-start.el (exec-path): Use `directory' instead of `file'.
18368 Fix tag for nil.
18369
18370 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
18371
18372 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
18373 when called non-interactively. Doc fix.
18374
18375 2005-07-07 Lute Kamstra <lute@gnu.org>
18376
18377 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
18378 new address as well.
18379
18380 2005-07-07 Kenichi Handa <handa@m17n.org>
18381
18382 * international/mule.el (make-coding-system):
18383 Describe `ascii-incompatible' property in the docstring.
18384 (set-file-name-coding-system): Signal an error if coding-system is
18385 ascii-incompatible.
18386 (set-keyboard-coding-system): Likewise.
18387
18388 * international/mule-cmds.el (set-default-coding-systems):
18389 Don't set default-file-name-coding-system and
18390 default-keyboard-coding-system if coding-system is ASCII-incompatible.
18391
18392 * international/utf-16.el: Declare that all UTF-16-based coding
18393 systems are ASCII-incompatible.
18394
18395 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
18396
18397 * progmodes/gud.el: Require font-lock for displaying errors.
18398 Used by gdb-ui.el.
18399
18400 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
18401
18402 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
18403 values for the pattern lists which are `read'able but not
18404 `append'able (like symbols).
18405
18406 2005-07-06 Richard M. Stallman <rms@gnu.org>
18407
18408 * progmodes/flymake.el (flymake-float-time): Instead of
18409 with-no-warnings, test for xemacs.
18410 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
18411 to avoid warning.
18412
18413 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
18414
18415 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
18416
18417 2005-07-05 Lute Kamstra <lute@gnu.org>
18418
18419 * battery.el: Add support for Darwin (with much debugging help
18420 from Samuel Lauber <sam124@operamail.com>).
18421 (battery-status-function, battery-echo-area-format)
18422 (battery-mode-line-format): Add support for pmset on Darwin.
18423 (battery-load-low, battery-load-critical): New user options.
18424 (battery-pmset): New function.
18425
18426 2005-07-05 Lute Kamstra <lute@gnu.org>
18427
18428 Update FSF's address in GPL notices.
18429
18430 * textmodes/page-ext.el: Update FSF's address.
18431
18432 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
18433
18434 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
18435 filling from using prefix when filling a single-line docstring.
18436
18437 * progmodes/flymake.el: Remove useless eval-when-compile.
18438
18439 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
18440
18441 2005-07-04 Richard M. Stallman <rms@gnu.org>
18442
18443 * textmodes/org.el (org-file-apps-defaults-gnu):
18444 Rename from org-file-apps-defaults-linux.
18445 (org-default-apps): Don't test system-type for `linux'.
18446 (org-file-apps): Doc fix.
18447
18448 2005-07-04 David Ponce <david@dponce.com>
18449
18450 * tree-widget.el: Improve header Commentary section.
18451 (tree-widget) [defgroup]
18452 (tree-widget-image-enable, tree-widget-themes-directory)
18453 (tree-widget-theme, tree-widget-image-properties-emacs)
18454 (tree-widget-image-properties-xemacs, tree-widget-create-image)
18455 (tree-widget-image-formats, tree-widget-control)
18456 (tree-widget-empty-control, tree-widget-leaf-control
18457 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
18458 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
18459 (tree-widget-keep, tree-widget-after-toggle-functions)
18460 (tree-widget-open-node, tree-widget-close-node): Doc fix.
18461 (tree-widget-open-control, tree-widget-close-control): Fix doc and
18462 :help-echo message.
18463 (tree-widget-set-theme): Doc fix. Use `string-equal'.
18464 (tree-widget-image-properties): Doc fix. Clearer implementation.
18465 (tree-widget--cursors): New constant.
18466 (tree-widget-lookup-image): New function split from
18467 `tree-widget-find-image'. Clearer implementation.
18468 (tree-widget-find-image): Use it.
18469 (tree-widget-button-keymap): Use `set-keymap-parent'.
18470 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
18471 Define the sub-widgets here.
18472 (tree-widget-node): Check that :node is not a tree-widget.
18473 (tree-widget-get-super, tree-widget-open-control)
18474 (tree-widget-close-control, tree-widget-empty-control)
18475 (tree-widget-leaf-control, tree-widget-guide)
18476 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
18477 (tree-widget-no-handle, tree-widget-value-delete)
18478 (tree-widget-map): Remove.
18479 (tree-widget-children-value-save): Doc fix. Simplified.
18480 (tree-widget-value-create): Update according to previous changes.
18481
18482 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
18483
18484 * textmodes/org.el: Leading space replaced by TABS.
18485 (org-recalc-marks, org-table-rotate-recalc-marks)
18486 (org-table-get-specials): Treat "^" and "_" marks.
18487 (org-table-justify-field-maybe): Optional argument NEW.
18488 (org-table-eval-formula): Parsing of the format simplified.
18489 New modes C,I. Honor the %= parameter in the current table.
18490 Avoid unnecessary re-align by using the NEW argument to
18491 `org-table-justify-field-maybe'.
18492 (org-calc-default-modes): Default for date-format mimicks org-mode.
18493 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
18494
18495 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
18496
18497 * cus-face.el (custom-theme-set-faces): Make it handle face
18498 aliases whose alias declarations are pre- or autoloaded.
18499
18500 2005-07-04 Juri Linkov <juri@jurta.org>
18501
18502 * faces.el (read-face-name): Put the code for getting a face name
18503 from the buffer before adding the faces from the `face' property.
18504 Use `completing-read-multiple' instead of `completing-read'.
18505 Require `crm'. Add default value and post-process the returned
18506 list of faces.
18507
18508 * emacs-lisp/crm.el (crm-find-current-element)
18509 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
18510
18511 * emacs-lisp/lisp-mode.el (eval-defun-1):
18512 * emacs-lisp/edebug.el (edebug-eval-defun):
18513 Remove unnecessary quotes.
18514
18515 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
18516
18517 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
18518 (prolog-indent-level): Fix typo in docstring.
18519
18520 * info.el (Info-history, Info-history-forward)
18521 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
18522
18523 * add-log.el (add-change-log-entry):
18524 * comint.el (comint-dynamic-list-input-ring)
18525 (comint-dynamic-list-completions):
18526 * dabbrev.el (dabbrev-expand):
18527 * delim-col.el (delimit-columns-rectangle-line):
18528 * diff-mode.el (diff-context->unified, diff-reverse-direction)
18529 (diff-unified->context):
18530 * ediff-init.el (ediff-abbrev-jobname):
18531 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
18532 (ediff-replace-session-activity-marker-in-meta-buffer):
18533 * info.el (Info-summary):
18534 * lpr.el (printify-region):
18535 * printing.el (pr-create-interface):
18536 * ps-print.el (ps-print-quote):
18537 * ses.el (ses-column-widths, ses-print-cell)
18538 (ses-adjust-print-width, ses-center):
18539 * shell.el (shell-file-name-quote-list):
18540 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
18541 (strokes-fill-current-buffer-with-whitespace)
18542 (strokes-xpm-for-stroke, strokes-list-strokes)
18543 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
18544 * term.el (term-dynamic-list-input-ring)
18545 (term-dynamic-list-completions):
18546 * calc/calc.el (math-format-stack-value):
18547 * emacs-lisp/edebug.el (edebug-display-freq-count):
18548 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
18549 (delphi-new-comment-line):
18550 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
18551 * progmodes/executable.el (executable-set-magic):
18552 * progmodes/python.el (inferior-python-mode):
18553 * progmodes/scheme.el (scheme-mode-syntax-table):
18554 * progmodes/sh-script.el (sh-maybe-here-document):
18555 * progmodes/sql.el (sql-copy-column):
18556 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
18557 * textmodes/bibtex.el (bibtex-mode):
18558 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
18559 (sgml-auto-attributes):
18560 * textmodes/table.el (table-insert, table-shorten-cell)
18561 (table--generate-source-scan-lines, table-delete-row)
18562 (*table--cell-delete-char, table--spacify-frame)
18563 (table--horizontally-shift-above-and-below)
18564 (table--cell-insert-char, table--cell-blank-str)
18565 (table--fill-region-strictly):
18566 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
18567 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
18568
18569 * add-log.el (change-log):
18570 * apropos.el (apropos):
18571 * comint.el (comint-completion, comint-source):
18572 * dabbrev.el (dabbrev):
18573 * delim-col.el (columns):
18574 * diff-mode.el (diff-mode):
18575 * ediff.el (ediff):
18576 * ediff-diff.el (ediff-diff):
18577 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
18578 * ediff-mult.el (ediff-mult):
18579 * ediff-ptch.el (ediff-ptch):
18580 * ediff-wind.el (ediff-window):
18581 * facemenu.el (facemenu):
18582 * indent.el (indent):
18583 * info.el (info):
18584 * jka-cmpr-hook.el (compression, jka-compr):
18585 * lpr.el (lpr):
18586 * outline.el (outlines):
18587 * pcmpl-cvs.el (pcmpl-cvs):
18588 * pcmpl-rpm.el (pcmpl-rpm):
18589 * printing.el (printing):
18590 * ps-print.el (postscript, ps-print, ps-print-horizontal)
18591 (ps-print-vertical, ps-print-headers, ps-print-font)
18592 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
18593 (ps-print-background, ps-print-printer, ps-print-page)
18594 (ps-print-miscellany):
18595 * ses.el (ses):
18596 * shell.el (shell, shell-directories, shell-faces):
18597 * startup.el (initialization):
18598 * strokes.el (strokes):
18599 * term.el (term):
18600 * uniquify.el (uniquify):
18601 * w32-vars.el (w32):
18602 * calc/calc.el (calc):
18603 * emacs-lisp/bytecomp.el (bytecomp):
18604 * emacs-lisp/cl-indent.el (lisp-indent):
18605 * emacs-lisp/edebug.el (edebug):
18606 * emacs-lisp/elp.el (elp):
18607 * emacs-lisp/testcover.el (testcover):
18608 * emacs-lisp/trace.el (trace):
18609 * emulation/viper-ex.el (viper-ex):
18610 * emulation/viper-mous.el (viper-mouse):
18611 * mail/mailalias.el (mailalias):
18612 * mail/supercite.el (supercite, supercite-frames)
18613 (supercite-attr, supercite-cite, supercite-hooks):
18614 * net/rcompile.el (remote-compile):
18615 * net/rlogin.el (rlogin):
18616 * obsolete/ooutline.el (outlines):
18617 * progmodes/delphi.el (delphi):
18618 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
18619 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
18620 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
18621 (ebnf-optimization):
18622 * progmodes/etags.el (etags):
18623 * progmodes/executable.el (executable):
18624 * progmodes/idlwave.el (idlwave):
18625 * progmodes/pascal.el (pascal):
18626 * progmodes/prolog.el (prolog):
18627 * progmodes/python.el (python):
18628 * progmodes/scheme.el (scheme):
18629 * progmodes/sh-script.el (sh, sh-script):
18630 * progmodes/sql.el (SQL):
18631 * progmodes/tcl.el (tcl):
18632 * textmodes/bibtex.el (bibtex, bibtex-autokey):
18633 * textmodes/enriched.el (enriched):
18634 * textmodes/makeinfo.el (makeinfo):
18635 * textmodes/sgml-mode.el (sgml):
18636 * textmodes/table.el (table-hooks):
18637 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
18638 * textmodes/texinfo.el (texinfo):
18639 * textmodes/two-column.el (two-column):
18640 Finish `defgroup' description with period.
18641
18642 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
18643 * eshell/esh-var.el (eshell-var):
18644 * progmodes/vhdl-mode.el (vhdl-testbench):
18645 * textmodes/org.el (org): Fix typos in docstrings.
18646
18647 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
18648 consistency.
18649
18650 * progmodes/flymake.el (flymake-find-file): Remove.
18651 (flymake-float-time): Use `with-no-warnings'.
18652 (flymake-check-start-time, flymake-check-was-interrupted)
18653 (flymake-err-info, flymake-is-running, flymake-last-change-time)
18654 (flymake-new-err-info): `defvar' at compile time.
18655
18656 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
18657
18658 * replace.el (occur-hook): Doc fix.
18659 (occur-1): Don't call `occur-hook' if there are no matches.
18660
18661 2005-07-03 Richard M. Stallman <rms@gnu.org>
18662
18663 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
18664 global-map, save the same map.
18665 (global-map): Don't alter it at top level.
18666 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
18667 Then alter it here instead.
18668 (tpu-edt-off): Set global-map to the saved one.
18669
18670 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
18671 All references simplified.
18672 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
18673 (zmacs-regions): Add defvar.
18674 (repeat-complex-command-map): Everything about that deleted.
18675
18676 * textmodes/artist.el (artist-key-is-drawing)
18677 (artist-key-endpoint1, artist-key-poly-point-list)
18678 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
18679 (artist-key-compl-table, artist-rb-save-data)
18680 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
18681 Don't put them in eval-when-compile.
18682 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
18683
18684 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
18685 Use with-no-warnings.
18686
18687 * net/browse-url.el (dos-windows-version): Add defvar.
18688
18689 * mail/supercite.el (filladapt-prefix-table): Add defvar.
18690
18691 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
18692 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
18693 (rmail-new-summary-line-count): Rename from new-summary-line-count.
18694 Add defvar.
18695 (rmail-summary-beginning-of-message): Use with-no-warnings.
18696 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
18697
18698 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
18699 Use with-no-warnings.
18700
18701 * emulation/vi.el (vi-mark-region): Use c-mark-function.
18702 (c-mark-function): Add point-moving-unit property.
18703 (vi-goto-line): Use with-no-warnings.
18704
18705 * emulation/edt.el (edt-last-copied-word): Add defvar.
18706 (zmacs-region-stays): Likewise.
18707 (edt-mark-section-wisely): Use c-mark-function for C.
18708 Use makr-defun for Fortran.
18709 (time-string): defvar deleted.
18710 (edt-display-the-time): Don't set time-string.
18711
18712 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
18713
18714 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
18715 Don't warn when name is not constant
18716 or for defining the group `emacs'.
18717
18718 * tooltip.el (gud-tooltip-mode): Add defvar.
18719
18720 * startup.el (default-frame-background-mode): Add defvar.
18721
18722 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
18723
18724 * info.el (tool-bar-map): Add defvar.
18725
18726 * dired.el (dnd-protocol-alist): Add defvar.
18727
18728 * dired-aux.el (dired-query): Display question with answer, when
18729 the user answers.
18730
18731 * custom.el (custom-add-option): Doc fix.
18732
18733 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
18734
18735 2005-07-03 Eli Zaretskii <eliz@gnu.org>
18736
18737 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
18738 bogus name from the last change.
18739
18740 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
18741
18742 * custom.el (custom-declare-variable): Fix typos in comment.
18743 (custom-known-themes): Doc fix.
18744 (custom-theme-directory): New defcustom.
18745 (require-theme): Make it check `custom-theme-directory'.
18746
18747 * cus-theme.el (custom-new-theme-mode): New function.
18748 (custom-theme-name, custom-theme-variables, custom-theme-faces)
18749 (custom-theme-description): Add compiler defvars.
18750 (customize-create-theme): Add doc to the "*New Custom Theme*"
18751 buffer. Use `custom-new-theme-mode'.
18752 (custom-theme-write): Put the created buffer in emacs-lisp-mode
18753 and save it to the `custom-theme-directory'. Make this the
18754 default directory of the buffer.
18755
18756 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
18757
18758 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
18759 Fix unbalanced parentheses.
18760
18761 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
18762
18763 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
18764 into flymake-mode and delegate to flymake-mode.
18765
18766 * find-file.el (ff-which-function-are-we-in): Clean up.
18767
18768 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
18769
18770 * replace.el (occur-rename-buffer): Fix docstring.
18771
18772 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
18773 (edt-last-copied-word, edt-learn-macro-count)
18774 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
18775 (edt-rect-start-point, edt-user-global-map, rect-start-point)
18776 (time-string, zmacs-region-stays):
18777 * emulation/edt-mapper.el (edt-save-function-key-map)
18778 (EDT-key-name): `defvar' to silence the byte-compiler.
18779
18780 2005-07-02 Martin Rudalics <rudalics@gmx.at>
18781
18782 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
18783 font-lock-regexp-backslash. Doc fix.
18784 (font-lock-regexp-backslash-grouping-construct): Rename from
18785 font-lock-regexp-backslash-construct. Doc fix.
18786 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
18787 grouping constructs.
18788
18789 2005-07-02 Eli Zaretskii <eliz@gnu.org>
18790
18791 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
18792 updating all the prerequisites.
18793
18794 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
18795
18796 * textmodes/org.el (org-agenda-start-on-weekday)
18797 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
18798 (org-agenda-use-time-grid, org-archive-location)
18799 (org-allow-space-in-links, org-usenet-links-prefer-google)
18800 (org-enable-table-editor, org-export-default-language)
18801 (org-export-html-show-new-buffer, org-fill-paragraph)
18802 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
18803 (org-goto-quit, org-occur, org-eval-in-calendar)
18804 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
18805 (org-agenda-diary-entry, org-remember-help)
18806 (org-table-convert-region, org-at-table-p)
18807 (org-table-move-row-down, org-table-move-row-up)
18808 (org-table-copy-region, org-table-toggle-vline-visibility)
18809 (org-table-get-stored-formulas, org-table-get-specials)
18810 (org-recalc-commands, org-table-eval-formula)
18811 (org-table-formula-substitute-names, orgtbl-make-binding)
18812 (org-format-org-table-html, org-format-table-table-html)
18813 (org-format-table-table-html-using-table-generate-source)
18814 (org-customize): Fix typos in docstrings.
18815 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
18816 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
18817 (org-back-to-heading): Doc fixes.
18818 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
18819 (org-agenda-change-all-lines, org-get-header):
18820 Improve argument/docstring consistency.
18821 (orgtbl-error): Fix error message.
18822
18823 * progmodes/flymake.el (flymake-find-possible-master-files)
18824 (flymake-master-file-compare, flymake-get-line-err-count)
18825 (flymake-highlight-line, flymake-gui-warnings-enabled):
18826 Fix typos in docstrings.
18827 (flymake-parse-line, flymake-get-project-include-dirs-function)
18828 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
18829 Doc fixes.
18830 (flymake-get-project-include-dirs-function)
18831 (flymake-make-err-menu-data):
18832 Improve argument/docstring consistency.
18833
18834 2005-07-01 Lute Kamstra <lute@gnu.org>
18835
18836 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
18837 Catch errors with ignore-errors. Use temporary buffer.
18838 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
18839
18840 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
18841 background color faces.
18842 (facemenu-set-foreground, facemenu-set-background):
18843 Use facemenu-set-face-from-menu.
18844 (facemenu-set-face-from-menu): Treat face names that start with
18845 "fg:" or "bg:" as special.
18846 (facemenu-add-new-color): Don't create faces. Simplify.
18847
18848 2005-06-30 Richard M. Stallman <rms@gnu.org>
18849
18850 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
18851 (crm-find-current-element): Likewise.
18852
18853 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
18854
18855 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
18856
18857 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
18858
18859 * arc-mode.el (archive-extract): Make it work as a mouse binding.
18860 (archive-mouse-extract): Make it an obsolete alias.
18861 (archive-mode-map): Don't use archive-mouse-extract any more.
18862 (archive-mode, archive-extract): write-contents-hooks ->
18863 write-contents-functions.
18864 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
18865 first arg.
18866 (archive-rename-entry): Update the call.
18867 (archive-zip-summarize): Remove unused var `method'.
18868 (archive-lzh-summarize): Remove unused var `creator'.
18869
18870 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
18871 dedicated frame upon exit.
18872
18873 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
18874 (archive-zip-extract, archive-zip-expunge)
18875 (archive-zip-update, archive-zip-update-case): Use executable-find.
18876 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
18877 Use restore-buffer-modified-p.
18878 (archive-extract, archive-add-new-member, archive-write-file-member):
18879 Use with-current-buffer.
18880 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
18881
18882 2005-06-30 Andreas Schwab <schwab@suse.de>
18883
18884 * progmodes/gud.el (gud-filter): Remove unneeded progn.
18885
18886 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
18887
18888 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
18889
18890 2005-06-30 Juri Linkov <juri@jurta.org>
18891
18892 * faces.el (vertical-border): Inherit from mode-line-inactive
18893 only on tty.
18894
18895 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
18896
18897 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
18898 example, -NLINES in the `occur' docstring).
18899
18900 * replace.el (occur-1): When no matches are found, do not set the
18901 `buffer-read-only' and modified flags for the occur buffer,
18902 because it is deleted.
18903
18904 * emulation/cua-base.el (cua-check-pending-input)
18905 (cua-repeat-replace-region, cua-mode, cua-debug)
18906 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
18907 Fix typos in docstrings.
18908
18909 * emulation/cua-gmrk.el (cua-toggle-global-mark)
18910 (cua-cut-region-to-global-mark)
18911 (cua--cut-rectangle-to-global-mark):
18912 Remove period from end of messages.
18913
18914 * emulation/cua-rect.el (cua-do-rectangle-padding):
18915 Remove period from end of messages.
18916 (cua--rectangle-seq-format): Fix typo in docstring.
18917 (cua-sequence-rectangle, cua-fill-char-rectangle):
18918 Improve argument/docstring consistency.
18919
18920 2005-06-29 Juri Linkov <juri@jurta.org>
18921
18922 * faces.el (default-frame-background-mode): New internal variable.
18923 (frame-set-background-mode): Use it.
18924
18925 * startup.el (normal-top-level): Set default-frame-background-mode
18926 instead of frame-background-mode. Before setting it, test for its
18927 nil value. Remove tests for frame-background-mode and frame
18928 parameter `reverse'. Add test for "unspecified-fg".
18929
18930 * term/xterm.el (xterm-rxvt-set-background-mode):
18931 * term/rxvt.el (rxvt-set-background-mode):
18932 Set default-frame-background-mode instead of frame-background-mode.
18933
18934 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
18935
18936 * simple.el (set-variable): Warn about obsolete user variables.
18937
18938 * imenu.el (imenu--completion-buffer):
18939 * mouse.el (mouse-buffer-menu-alist):
18940 * msb.el (msb-invisible-buffer-p):
18941 * calendar/diary-lib.el (diary-header-line-format):
18942 * emacs-lisp/pp.el (pp-buffer):
18943 * progmodes/cperl-mode.el (cperl-do-auto-fill):
18944 * textmodes/picture.el (picture-replace-match):
18945 Change space constants followed by a sexp to "?\s ".
18946
18947 * play/decipher.el (decipher-loop-with-breaks):
18948 * textmodes/texinfo.el (texinfo-insert-@item): Change space
18949 constants "protected" from end of line by a comment to "?\s".
18950
18951 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
18952
18953 * font-lock.el (save-buffer-state): Use `declare'.
18954
18955 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
18956 reset the syntax-table to cperl-mode-syntax-table.
18957 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
18958 "foo_print_bar" is not matched as a reserved keyword.
18959
18960 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
18961
18962 * textmodes/org.el (orgtbl-setup): New function, for delayed
18963 setup for the orgtbl commands.
18964 (org-calc-default-modes): New option.
18965 (orgtbl-make-binding): Use `defun' to get better help display.
18966 (org-diary): Call `org-compile-prefix-format'.
18967 (org-table-formula-substitute-names): New function.
18968 (org-agenda-day-view, org-agenda-week-view): New commands.
18969 (org-agenda-toggle-week-view): Command removed.
18970 (org-tbl-menu): Split off from org-org-menu.
18971 (org-mode): Move removal of outline-mode menus to here.
18972 (org-table-formula-debug): New option.
18973 (org-table-insert-row): Keep first field if just "#" or "*".
18974 (org-mode): Paragraph regexps fixed.
18975 (org-table-recalculate-regexp): New constant.
18976 (org-table-justify-field-maybe): Avoid replace if not necessary.
18977 (org-copy-special, org-cut-special): Use `call-interactively'.
18978 (org-table-copy-region): Take region from `interactive' call.
18979 (org-trim): Return string even if no match.
18980 (org-formula): New face.
18981 (org-set-font-lock-defaults): No longer highlight "FIXME".
18982 But highlight formula-related fields in table.
18983 (org-table-p): Use regexp, not fontification.
18984 (org-table-align): Handle white space at end of line.
18985 (org-table-formula-evaluate-inline): New option.
18986 (org-mode): Auto-wrapping in comment lines turned off.
18987 (org-table-copy-down): Evaluate only in copied field, not in
18988 destination.
18989 (org-table-current-formula): Variable removed.
18990 (org-table-store-formulas, org-table-get-stored-formulas)
18991 (org-table-modify-formulas, org-table-replace-in-formulas)
18992 (org-table-maybe-eval-formula): New functions.
18993 (org-table-get-formula): Modify to use stored formulas.
18994 (org-table-insert-column, org-table-delete-column)
18995 (org-table-move-column): Call `org-table-modify-formulas'.
18996 (org-complete): Add completion for keyword formulas.
18997 (orgtbl-mode): Pull orgtbl-mode-map to start of
18998 minor-mode-map-alist.
18999
19000 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
19001
19002 * progmodes/python.el (python-check): Require `compile' before
19003 modifying its variables.
19004
19005 * newcomment.el (comment-indent-default): Don't get fooled by an early
19006 end of buffer.
19007
19008 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19009
19010 * ps-print.el (ps-print-version): Fix version number.
19011
19012 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
19013
19014 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
19015
19016 2005-06-28 Richard M. Stallman <rms@gnu.org>
19017
19018 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
19019 (flyspell-local-mouse-map): Declaration deleted.
19020 (flyspell-mouse-map): Bind only mouse-2.
19021 (flyspell-mode-map): Don't test flyspell-use-local-map.
19022 (flyspell-overlay-keymap-property-name): Var deleted.
19023 (flyspell-mode-on): Don't make local bindings for
19024 flyspell-mouse-map and flyspell-mode-map.
19025 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
19026
19027 * textmodes/ispell.el (ispell-word): Do not ignore short words.
19028
19029 * progmodes/compile.el (compilation-next-error-function):
19030 Don't switch buffers; operate on the current buffer.
19031
19032 * progmodes/compile.el (compilation-error-file-name)
19033 (compilation-warning-file-name, compilation-info-file-name)
19034 (compilation-line-number, compilation-column-number): New faces.
19035 (compilation-error-face, compilation-warning-face)
19036 (compilation-info-face, compilation-line-face)
19037 (compilation-column-face): Use them.
19038
19039 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
19040
19041 * comint.el (comint-password-prompt-regexp): Accept ", try again".
19042
19043 * bindings.el (global-map): Bind insertchar and its variants.
19044
19045 2005-06-27 Richard M. Stallman <rms@gnu.org>
19046
19047 * textmodes/artist.el (artist-text-overwrite)
19048 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
19049
19050 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19051
19052 * ps-print.el: It was not working the page selection for printing.
19053 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
19054 (ps-print-version): New version 6.6.7.
19055 (ps-end-sheet): New fun.
19056 (ps-header-sheet, ps-end-job): Call it.
19057
19058 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
19059
19060 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
19061
19062 2005-06-27 Lute Kamstra <lute@gnu.org>
19063
19064 * facemenu.el (facemenu-unlisted-faces): Add foreground and
19065 background color faces.
19066 (facemenu-get-face): Delete function.
19067 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
19068 (facemenu-add-new-color): Make second argument mandatory.
19069 Create the appropriate face and return it. Simplify.
19070 (facemenu-set-foreground, facemenu-set-background): Don't check if
19071 color is defined. Use return value of facemenu-add-new-color.
19072
19073 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
19074
19075 * progmodes/gud.el (gud-filter): Add missing argument to
19076 with-selected-window.
19077
19078 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
19079
19080 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
19081 a :require to the defcustom.
19082
19083 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
19084 defcustoms corresponding to minor modes.
19085
19086 2005-06-26 David Ponce <david@dponce.com>
19087
19088 * recentf.el: Require tree-widget instead of wid-edit.
19089 (recentf-filename-handler): Fix widget :type.
19090 (recentf-cancel-dialog, recentf-open-more-files)
19091 (recentf-open-files-action): Doc fix.
19092 (recentf-dialog-goto-first): New function.
19093 (recentf-dialog-mode-map): Set parent keymap first.
19094 (recentf-dialog-mode): Define with define-derived-mode.
19095 Don't display continuation lines in dialogs.
19096 (recentf-edit-list): Rename from recentf-edit-selected-items.
19097 (recentf-edit-list-select): Rename from recentf-edit-list-action.
19098 Simplify.
19099 (recentf-edit-list-validate): New function.
19100 (recentf-edit-list): Update accordingly.
19101 (recentf-open-files-item-shift): Remove.
19102 (recentf-open-files-item): Convert menu elements into tree and
19103 link widgets. Don't create the widgets.
19104 (recentf-open-files): Update accordingly.
19105 (recentf-save-list): Untabify.
19106
19107 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
19108
19109 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
19110 (keep-lines): Add INTERACTIVE arg. Never delete lines only
19111 partially contained in the active region. Do not take active
19112 region into account when called from Lisp, unless INTERACTIVE arg
19113 is non-nil. Use `forward-line' instead of `beginning-of-line' to
19114 avoid trouble with fields. Make marker point nowhere when no
19115 longer used. Always return nil. Doc fix.
19116 (flush-lines): Add INTERACTIVE arg. Do not take active region
19117 into account when called from Lisp, unless INTERACTIVE arg is
19118 non-nil. Use `forward-line' instead of `beginning-of-line' to
19119 avoid trouble with fields. Make marker point nowhere when no
19120 longer used. Always return nil. Doc fix.
19121 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
19122 interchangeable. Do not take active region into account when
19123 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
19124 message in echo area when called from Lisp, unless INTERACTIVE arg
19125 is non-nil. Avoid saying "1 occurrences". Do not use markers.
19126 Return the number of matches. Doc fix.
19127 (occur): Doc fix.
19128 (perform-replace): Make comment follow double space convention for
19129 the sake of `outline-minor-mode'.
19130
19131 * faces.el (facep): Doc fix.
19132
19133 2005-06-25 Richard M. Stallman <rms@gnu.org>
19134
19135 * facemenu.el (facemenu-enable-faces-p): New function.
19136 (facemenu-background-menu, facemenu-foreground-menu)
19137 (facemenu-face-menu): Add menu-enable property.
19138
19139 * jka-compr.el (jka-compr-insert-file-contents):
19140 Special handling if cannot find the uncompression program.
19141
19142 * cus-face.el (custom-face-attributes): Add autoload.
19143
19144 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
19145 Bind comment-indent-function locally.
19146
19147 * window.el (save-selected-window): Use save-current-buffer.
19148
19149 * subr.el (with-selected-window): Use save-current-buffer.
19150
19151 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
19152 and with-current-buffer.
19153
19154 2005-06-24 Richard M. Stallman <rms@gnu.org>
19155
19156 * simple.el (line-move-1): Fix previous change.
19157
19158 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
19159
19160 * replace.el (occur-1): Set `buffer-read-only' and the
19161 buffer-modified flag before running `occur-hook' to protect
19162 against unintentional buffer switches that can lead to data loss.
19163
19164 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
19165
19166 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
19167 (gud-gdb-marker-filter): Use font-lock-warning-face for any
19168 initial error.
19169
19170 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
19171 after fresh input.
19172 (gdb-var-create-handler): Put name of expression in quotes.
19173
19174 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
19175
19176 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
19177 elements of RING in order, and without bogus nil elements.
19178
19179 2005-06-23 Richard M. Stallman <rms@gnu.org>
19180
19181 * simple.el (set-variable): Args renamed; doc fix.
19182 (line-move-1): When there are overlays around, use vertical-motion.
19183
19184 * faces.el (escape-glyph): Use brown against light background.
19185 (nobreak-space): Rename from no-break-space.
19186 Fix previous change.
19187
19188 * dired-aux.el (dired-do-copy): Fix arg prompt.
19189
19190 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
19191
19192 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
19193
19194 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
19195 rather than "Distributor".
19196
19197 2005-06-23 Lute Kamstra <lute@gnu.org>
19198
19199 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
19200 (debug-on-entry): Use it. New interactive declaration that uses
19201 function-called-at-point.
19202
19203 2005-06-23 Kim F. Storm <storm@cua.dk>
19204
19205 * subr.el (save-match-data): Add comment about using evaporate arg
19206 to set-match-data.
19207
19208 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
19209
19210 * cus-edit.el (customize-face)
19211 (customize-face-other-window): Handle face aliases.
19212
19213 * faces.el (face-documentation, set-face-attribute)
19214 (face-spec-set): Handle face aliases.
19215
19216 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
19217
19218 * help-mode.el (help-make-xrefs): If a symbol representing a face
19219 name is not followed by the word "face", it could still be a
19220 function or variable name, so don't bypass other checks.
19221
19222 2005-06-22 Juri Linkov <juri@jurta.org>
19223
19224 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
19225 Replace aliased functions with calls where second arg `inherit' is t.
19226
19227 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
19228
19229 * progmodes/gdb-ui.el (gdb-error): New variable.
19230 (gdb-error): New function.
19231 (gdb-annotation-rules): Act on error-begin and error annotations.
19232 (gdb-concat-output): Use font-lock-warning-face for errors.
19233
19234 2005-06-22 Miles Bader <miles@gnu.org>
19235
19236 * bindings.el (propertized-buffer-identification): Use renamed
19237 `Buffer-menu-buffer' face.
19238
19239 * faces.el (vertical-border): Rename from `vertical-divider'.
19240 (escape-glyph): Change dark-background color back to `cyan'.
19241
19242 2005-06-21 Juri Linkov <juri@jurta.org>
19243
19244 * faces.el (face-user-default-spec): Try getting `customized-face'
19245 prior to `saved-face'.
19246 (frame-background-mode): Refill docstring.
19247
19248 * emacs-lisp/lisp-mode.el (eval-defun-1):
19249 * emacs-lisp/edebug.el (edebug-eval-defun):
19250 Set `saved-face' temporarily to nil before calling form.
19251 Set `customized-face' to the new spec after that.
19252
19253 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
19254
19255 * subr.el (1value, lambda, key-substitution-in-progress):
19256 Doc fixes.
19257
19258 * autoinsert.el (auto-insert-alist):
19259 * ses.el (ses-call-printer):
19260 * subr.el (noreturn):
19261 * emacs-lisp/lisp.el (check-parens):
19262 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
19263 * net/browse-url.el (browse-url-mosaic):
19264 * progmodes/cc-defs.el (c-safe-scan-lists):
19265 * progmodes/ebnf-abn.el (ebnf-abn-lex):
19266 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
19267 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
19268 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
19269 * progmodes/ebnf-iso.el (ebnf-iso-lex):
19270 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
19271
19272 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
19273
19274 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
19275
19276 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
19277
19278 * calendar/appt.el (appt-make-list): Activate the package, if
19279 not already active (for backwards compatibility).
19280
19281 2005-06-20 Kim F. Storm <storm@cua.dk>
19282
19283 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
19284
19285 2005-06-20 Miles Bader <miles@gnu.org>
19286
19287 * faces.el (vertical-divider): New face.
19288
19289 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
19290
19291 * simple.el (kill-whole-line): Doc fix.
19292 (next-error-buffer-p, next-error-find-buffer)
19293 (clone-indirect-buffer): Fix typos in docstrings.
19294 (comment-line-break-function): Doc fix: don't say variable
19295 is automatically buffer-local (it isn't).
19296
19297 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
19298
19299 * net/tramp-ftp.el (top):
19300 * net/tramp-smb.el (top):
19301 * net/tramp-util.el (top):
19302 * net/tramp-uu.el (top):
19303 * net/tramp-vc.el (top):
19304 * net/tramp.el (top): Revert copyright years back to original
19305 ones. Tramp has a life outside GNU Emacs.
19306
19307 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
19308
19309 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
19310
19311 2005-06-18 Juri Linkov <juri@jurta.org>
19312
19313 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
19314 end of first regexp to limit the match to the position between
19315 line number and source line with same separator character as used
19316 between file name and line number. In the second regexp limit
19317 mouse-face area to file name and line number by adding new group
19318 for them and referring it in HYPERLINK arg.
19319 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
19320 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
19321 previous line where grep markers may be already removed.
19322
19323 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
19324
19325 * progmodes/ps-mode.el: Update version and maintainer's email address.
19326
19327 2005-06-18 Steve Youngs <steve@xemacs.org>
19328
19329 * net/browse-url.el (browse-url-browser-function)
19330 (browse-url-default-browser): Add firefox.
19331 (browse-url-firefox-program, browse-url-firefox-arguments)
19332 (browse-url-firefox-startup-arguments)
19333 (browse-url-firefox-new-window-is-tab): New defcustoms.
19334 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
19335
19336 2005-06-17 Richard M. Stallman <rms@gnu.org>
19337
19338 * startup.el (command-line): Warn if specified user name has
19339 no home directory.
19340
19341 * term.el (term-get-old-input, term-input-filter, term-input-sender)
19342 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
19343
19344 * longlines.el (longlines-mode, longlines-show-hard-newlines):
19345 Doc fixes.
19346
19347 * faces.el (underline): Try bold if terminal doesn't support underline.
19348
19349 * mail/sendmail.el (mail-setup-with-from): New variable.
19350 (mail-insert-from-field): New function.
19351 (sendmail-send-it): Call it.
19352 (mail-setup): Optionally call it here.
19353
19354 * term/linux.el: Call tty-no-underline.
19355
19356 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
19357
19358 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
19359
19360 2005-06-17 Miles Bader <miles@gnu.org>
19361
19362 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
19363 (ediff-current-diff-C, ediff-current-diff-Ancestor)
19364 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
19365 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
19366 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
19367 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
19368 Remove "-face" suffix from face names.
19369 (ediff-current-diff-face-A, ediff-current-diff-face-B)
19370 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
19371 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
19372 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
19373 (ediff-even-diff-face-A, ediff-even-diff-face-B)
19374 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
19375 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
19376 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
19377 New backward-compatibility aliases for renamed faces.
19378 (ediff-current-diff-face-A, ediff-current-diff-face-B)
19379 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
19380 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
19381 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
19382 (ediff-even-diff-face-A, ediff-even-diff-face-B)
19383 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
19384 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
19385 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
19386 Use renamed ediff faces.
19387
19388 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
19389 Remove "-face" suffix from face names.
19390 (eshell-test-ok-face, eshell-test-failed-face):
19391 New backward-compatibility aliases for renamed faces.
19392 (eshell-run-test): Use renamed eshell-test faces.
19393
19394 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
19395 face name.
19396 (eshell-prompt-face): New backward-compatibility alias for renamed
19397 face.
19398 (eshell-emit-prompt): Use renamed eshell-prompt face.
19399
19400 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
19401 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
19402 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
19403 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
19404 Remove "-face" suffix from face names.
19405 (eshell-ls-directory-face, eshell-ls-symlink-face)
19406 (eshell-ls-executable-face, eshell-ls-readonly-face)
19407 (eshell-ls-unreadable-face, eshell-ls-special-face)
19408 (eshell-ls-missing-face, eshell-ls-archive-face)
19409 (eshell-ls-backup-face, eshell-ls-product-face)
19410 (eshell-ls-clutter-face):
19411 New backward-compatibility aliases for renamed faces.
19412 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
19413
19414 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
19415 Remove "-face" suffix from face name.
19416 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
19417 instead of literal face.
19418
19419 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
19420
19421 * emacs-lisp/warnings.el (display-warning, lwarn)
19422 (warning-minimum-log-level): Doc fixes.
19423 (warning-minimum-level, warning-minimum-log-level):
19424 Add :debug to :type choices.
19425
19426 * progmodes/ada-mode.el (ada-format-paramlist)
19427 (ada-get-indent-case, ada-check-matching-start)
19428 (ada-check-defun-name, ada-goto-matching-decl-start)
19429 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
19430 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
19431 (ada-make-subprogram-body): Follow error conventions.
19432 (ada-case-exception-file, ada-indent-comment-as-code)
19433 (ada-indent-handle-comment-special, ada-indent-renames)
19434 (ada-indent-return, ada-search-directories-internal)
19435 (ada-tab-policy, ada-case-exception-substring)
19436 (ada-other-file-alist, ada-matching-start-re)
19437 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
19438 (ada-imenu-generic-expression, ada-compile-goto-error)
19439 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
19440 (ada-popup-menu, ada-add-extensions, ada-mode)
19441 (ada-region-selected, ada-create-case-exception)
19442 (ada-create-case-exception-substring, ada-after-keyword-p)
19443 (ada-activate-keys-for-case, ada-adjust-case-region)
19444 (ada-adjust-case-buffer, ada-format-paramlist)
19445 (ada-scan-paramlist, ada-insert-paramlist)
19446 (ada-indent-newline-indent)
19447 (ada-indent-newline-indent-conditional)
19448 (ada-justified-indent-current, ada-goto-previous-word)
19449 (ada-indent-current, ada-get-indent-open-paren)
19450 (ada-get-indent-paramlist, ada-get-indent-end)
19451 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
19452 (ada-get-indent-block-start, ada-get-indent-subprog)
19453 (ada-get-indent-noindent, ada-get-indent-label)
19454 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
19455 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
19456 (ada-goto-stmt-end, ada-goto-next-word)
19457 (ada-check-matching-start, ada-check-defun-name)
19458 (ada-goto-matching-decl-start, ada-goto-matching-start)
19459 (ada-goto-matching-end, ada-search-ignore-string-comment)
19460 (ada-in-decl-p, ada-looking-at-semi-or)
19461 (ada-looking-at-semi-private, ada-in-paramlist-p)
19462 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
19463 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
19464 (ada-next-procedure, ada-previous-procedure, ada-next-package)
19465 (ada-previous-package, ada-create-menu)
19466 (ada-fill-comment-paragraph-justify)
19467 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
19468 (ada-other-file-name, ada-last-which-function-line)
19469 (ada-last-which-function-subprog, ada-which-function)
19470 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
19471 (ada-gen-treat-proc, ada-check-emacs-version)
19472 (ada-continuation-indent, ada-align-region-separate):
19473 Fix typos in docstrings.
19474 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
19475
19476 2005-06-16 Lute Kamstra <lute@gnu.org>
19477
19478 * simple.el (fundamental-mode): Run after-change-major-mode-hook
19479 conditionally.
19480
19481 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
19482
19483 * comint.el (comint-replace-by-expanded-filename)
19484 (comint-prompt-regexp, comint-delimiter-argument-list)
19485 (comint-preinput-scroll-to-bottom):
19486 * info.el (Info-hide-cookies-node):
19487 * ls-lisp.el (ls-lisp-classify):
19488 * find-file.el (ff-search-directories, ff-special-constructs)
19489 (ff-find-other-file):
19490 * font-lock.el (font-lock-keywords):
19491 * shell.el (shell-prompt-pattern)
19492 (shell-dynamic-complete-functions, shell-mode)
19493 (shell-delimiter-argument-list):
19494 * term.el (term-replace-by-expanded-filename)
19495 (term-prompt-regexp, term-delimiter-argument-list):
19496 * woman.el (woman-ignore, woman0-if):
19497 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
19498 * emacs-lisp/elint.el (elint-init-env):
19499 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
19500 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
19501 * language/ethio-util.el (ethio-tilde-escape)
19502 (ethio-use-three-dot-question):
19503 * net/zone-mode.el (zone-mode-load-time-setup):
19504 * progmodes/cc-align.el (c-lineup-argcont):
19505 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
19506 * progmodes/cperl-mode.el (cperl-set-style-back):
19507 * progmodes/inf-lisp.el (inferior-lisp-prompt):
19508 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
19509 Fix spellings in docstrings.
19510
19511 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
19512 * progmodes/modula2.el (m2-for): Fix spellings.
19513
19514 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
19515
19516 * simple.el (undo-more): Don't use `format' on `error' arguments.
19517 Improve argument/docstring consistency.
19518 (pending-undo-list): Doc fix.
19519
19520 * smerge-mode.el (smerge-ensure-match):
19521 * emulation/vip.el (vip-ex):
19522 * net/zone-mode.el (zone-mode-update-serial):
19523 * progmodes/idlwave.el (idlwave-complete):
19524 * progmodes/vhdl-mode.el (vhdl-visit-file)
19525 (vhdl-compose-wire-components):
19526 Don't use `format' on `error' arguments.
19527
19528 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
19529 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
19530 (tooltip-help-tips): Fix typos in docstrings.
19531
19532 2005-06-16 David Ponce <david@dponce.com>
19533
19534 * tree-widget.el (tree-widget-value-create): Simplify last change.
19535
19536 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
19537
19538 * ido.el (ido-incomplete-regexp): New variable.
19539 (ido-set-matches-1): Handle invalid-regexp error and set
19540 ido-incomplete-regexp.
19541 (ido-incomplete-regexp): New face.
19542 (ido-completions): Use it.
19543 (ido-complete, ido-exit-minibuffer, ido-completions):
19544 Handle incomplete regexps.
19545 (ido-completions): Add check for complete match when entering a regexp.
19546
19547 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
19548
19549 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
19550
19551 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
19552
19553 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
19554 by field delimiters.
19555
19556 2005-06-15 David Ponce <david@dponce.com>
19557
19558 * tree-widget.el: eval-and-compile inlined functions so they will
19559 be available at run-time too.
19560 (tree-widget-super-format-handler)
19561 (tree-widget-format-handler): Remove.
19562 (tree-widget-value-create): Handle the :indent property.
19563
19564 2005-06-15 Miles Bader <miles@gnu.org>
19565
19566 * progmodes/which-func.el (which-func): Only inherit
19567 `font-lock-function-name-face' when that makes sense against the
19568 default mode-line face, otherwise set the face color explicitly.
19569
19570 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
19571 faces instead of (non-existent) variables.
19572
19573 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
19574
19575 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
19576 (iswitchb-get-matched-buffers): Likewise. Simplify.
19577
19578 2005-06-14 Miles Bader <miles@gnu.org>
19579
19580 * progmodes/ld-script.el (ld-script-location-counter):
19581 Remove "-face" suffix from face name.
19582 (ld-script-location-counter-face):
19583 New backward-compatibility alias for renamed face.
19584 (ld-script-location-counter-face): Use renamed face.
19585
19586 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
19587 (cperl-hash): Remove "-face" suffix from face names.
19588 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
19589 New backward-compatibility aliases for renamed faces.
19590 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
19591 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
19592
19593 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
19594 name.
19595 (which-func-face): New backward-compatibility alias for renamed face.
19596 (which-func-format): Use renamed which-func face.
19597
19598 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
19599 (vhdl-function, vhdl-directive, vhdl-reserved-word)
19600 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
19601 names.
19602 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
19603 (vhdl-speedbar-configuration, vhdl-speedbar-package)
19604 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
19605 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
19606 (vhdl-speedbar-architecture-selected)
19607 (vhdl-speedbar-configuration-selected)
19608 (vhdl-speedbar-package-selected)
19609 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
19610 names.
19611 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
19612 Use renamed faces.
19613 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
19614 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
19615 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
19616 Use renamed faces.
19617 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
19618 names.
19619 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
19620 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
19621 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
19622 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
19623 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
19624 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
19625
19626 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
19627 face name.
19628 (sh-heredoc-face): New backward-compatibility alias for renamed face.
19629 (sh-heredoc-face): Use renamed sh-heredoc face.
19630
19631 * progmodes/idlw-help.el (idlwave-help-link):
19632 Remove "-face" suffix from face name.
19633 (idlwave-help-link-face):
19634 New backward-compatibility alias for renamed face.
19635 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
19636
19637 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
19638 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
19639 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
19640 New backward-compatibility aliases for renamed faces.
19641 (idlwave-shell-disabled-breakpoint-face)
19642 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
19643
19644 * progmodes/flymake.el (flymake-errline, flymake-warnline):
19645 Remove "-face" suffix from face names.
19646 (flymake-errline-face, flymake-warnline-face):
19647 New backward-compatibility aliases for renamed faces.
19648 (flymake-highlight-line): Use renamed flymake faces.
19649
19650 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
19651 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
19652 (ebrowse-member-class, ebrowse-progress):
19653 Remove "-face" suffix from face names.
19654 (ebrowse-tree-mark-face, ebrowse-root-class-face)
19655 (ebrowse-file-name-face, ebrowse-default-face)
19656 (ebrowse-member-attribute-face, ebrowse-member-class-face)
19657 (ebrowse-progress-face):
19658 New backward-compatibility aliases for renamed faces.
19659 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
19660 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
19661 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
19662 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
19663
19664 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
19665 antlr-syntax)
19666 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
19667 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
19668 names.
19669 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
19670 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
19671 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
19672 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
19673 backward-compatibility aliases for renamed faces.
19674 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
19675 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
19676 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
19677 remove "font-lock-". Use renamed antlr-mode faces.
19678 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
19679 literal face-names with face variable references.
19680
19681 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
19682 face name.
19683 (Buffer-menu-buffer-face): New backward-compatibility alias for
19684 renamed face.
19685 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
19686
19687 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
19688
19689 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
19690 Eliminate "-face" suffix.
19691 (makefile-targets): Inherit from font-lock-function-name-face and
19692 eliminate "-face" suffix.
19693 (makefile-shell): Remove attributes and eliminate "-face" suffix.
19694 (makefile-*-font-lock-keywords): Append makefile-targets in rule
19695 actions, instead of prepending, to make it less visible.
19696 (makefile-previous-dependency, makefile-match-dependency):
19697 Don't match a target on a continuation line.
19698
19699 * files.el (auto-mode-alist): Put Makefile in gmake mode.
19700
19701 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
19702
19703 * progmodes/gdb-ui.el (menu): Re-order menu items.
19704 (gdb-tooltip-print): Respect tooltip-use-echo-area.
19705
19706 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
19707 Define in tooltip.el.
19708 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
19709 (gud-tooltip-tips): Respect tooltip-use-echo-area and
19710 gud-tooltip-echo-area.
19711
19712 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
19713 backward compatibility and make obsolete.
19714 (tooltip-help-tips): Use tooltip-use-echo-area.
19715 (tooltip-show-help-function): Rename to...
19716 (tooltip-show-help): ...this, because it is a function.
19717 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
19718
19719 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
19720
19721 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
19722 (edebug-print-length, edebug-print-level, edebug-print-circle)
19723 (edebug-modify-breakpoint, edebug-eval-last-sexp)
19724 (edebug-eval-print-last-sexp): Doc fixes.
19725
19726 2005-06-14 Kim F. Storm <storm@cua.dk>
19727
19728 * ido.el (ido-mode): Make a new keymap every time we enable ido,
19729 as the coverage buffer/file/both may change.
19730
19731 2005-06-14 Lute Kamstra <lute@gnu.org>
19732
19733 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
19734 and run-mode-hooks. Simplify.
19735
19736 * mail/rmailedit.el (rmail-edit-mode):
19737 * progmodes/octave-inf.el (inferior-octave-mode):
19738 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
19739
19740 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
19741 and run-mode-hooks.
19742 (recentf-edit-list, recentf-open-files): Don't call
19743 kill-all-local-variables directly.
19744
19745 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
19746
19747 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
19748
19749 * emacs-lisp/byte-run.el (make-obsolete)
19750 (define-obsolete-function-alias): Rename arguments FUNCTION and
19751 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
19752 (make-obsolete-variable, define-obsolete-variable-alias):
19753 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
19754 respectively.
19755
19756 * isearchb.el (isearchb-activate):
19757 * pcvs.el (cvs-mode):
19758 * ses.el (ses-load):
19759 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
19760 * net/tramp.el (tramp-find-file-exists-command)
19761 (tramp-find-shell):
19762 * progmodes/ada-mode.el (ada-create-case-exception)
19763 (ada-create-case-exception-substring, ada-make-subprogram-body):
19764 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
19765 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
19766 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
19767 * textmodes/org.el (org-promote, org-evaluate-time-range)
19768 (org-agenda-next-date-line, org-agenda-previous-date-line)
19769 (org-agenda-error, org-open-at-point, org-table-move-row)
19770 (org-format-table-table-html-using-table-generate-source)
19771 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
19772 * textmodes/reftex.el (reftex-access-scan-info):
19773 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
19774 (reftex-toc-promote-prepare): Follow error conventions.
19775
19776 * diff-mode.el (diff-mode): Fix typo in docstring.
19777
19778 * forms.el (forms--intuit-from-file): Fix reference to
19779 `forms-number-of-fields' in error message.
19780 (forms-print): Fix quoting in error message.
19781
19782 * forms.el (forms-mode):
19783 * emulation/vi.el (vi-goto-insert-state):
19784 * progmodes/flymake.el (flymake-new-err-info)
19785 (flymake-start-syntax-check-for-current-buffer)
19786 (flymake-simple-cleanup):
19787 * eshell/esh-var.el (eshell/export):
19788 * progmodes/gud.el (xdb):
19789 * textmodes/flyspell.el (flyspell-incorrect-hook)
19790 (flyspell-maybe-correct-transposition)
19791 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
19792
19793 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
19794
19795 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
19796 minibuffer prompt.
19797
19798 2005-06-13 Kim F. Storm <storm@cua.dk>
19799
19800 * subr.el (add-to-ordered-list): New defun.
19801
19802 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
19803 add cua--keymap-alist to emulation-mode-map-alists.
19804
19805 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
19806
19807 * subr.el (complete-in-turn): New macro.
19808 (dynamic-completion-table, lazy-completion-table): Add debug info.
19809
19810 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
19811 in preference to face aliases.
19812
19813 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
19814 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
19815 Remove unused vars `start' and `firstline'.
19816 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
19817 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
19818
19819 2005-06-13 Eli Zaretskii <eliz@gnu.org>
19820
19821 * cus-start.el (all): Don't complain about missing GTK-related
19822 variables, unless either `gtk' is boundp or this isn't a
19823 `windows-nt' build.
19824
19825 2005-06-13 Lute Kamstra <lute@gnu.org>
19826
19827 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
19828 run-mode-hooks.
19829
19830 * ediff-mult.el (ediff-meta-mode):
19831 * ediff-util.el (ediff-mode): Use run-mode-hooks.
19832
19833 * ledit.el (ledit-mode): Use delay-mode-hooks.
19834
19835 * woman.el (woman-mode-line-format): Delete constant.
19836 (woman-mode-map): Initialize it properly.
19837 (woman-mode): Set mode-class property to special.
19838 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
19839 Set major-mode and mode-name. Don't set mode-line-format directly.
19840 (Man-getpage-in-background): Don't reference woman-mode-line-format.
19841
19842 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
19843 string argument obsolete.
19844
19845 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
19846
19847 * textmodes/org.el (org-CUA-compatible): New option.
19848 (org-disputed-keys): New variable.
19849 (org-key): New function.
19850 (orgtbl-make-binding): Add docstring to the created function.
19851 (org-mode): Set paragraph start/separate regexps.
19852 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
19853 (org-archive-location, org-archive-mark-done)
19854 (org-archive-stamp-time): New options.
19855 (org-archive-subtree): New command.
19856 (org-fill-paragraph): New function.
19857 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
19858 (org-fake-empty-table-line): Function removed.
19859 (org-format-org-table-html): Do not create empty table lines at
19860 separator lines. Improved table header treatment.
19861 (org-link-format): New option.
19862 (org-make-link): New function.
19863 (org-insert-link, org-store-link): Use org-make-link.
19864 (org-open-file): Quote file name for shell command, to allow
19865 spaces in file names.
19866 (org-link-regexp): Fix bug with mailto link.
19867 (org-link-maybe-angles-regexp, org-protected-link-regexp):
19868 New constants.
19869 (org-export-as-html): Deal with the optional angles around a link.
19870 Better treatment of file: links.
19871 (org-open-at-point): Replace @{ and @} with < and >.
19872 (org-run-mode-hooks): Function removed.
19873 (org-agenda-mode): No longer use `org-run-mode-hooks'.
19874
19875 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
19876
19877 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
19878 MI command -data-list-register-values.
19879 (gdb-post-prompt): Indent properly.
19880
19881 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
19882
19883 * hilit-chg.el (highlight-changes-colors): Rename from
19884 `highlight-changes-colours'.
19885 (highlight-changes-colours): Keep as obsolete alias.
19886 (highlight-changes-face-list): Doc fix.
19887 (hilit-chg-make-list): Use `highlight-changes-colors'.
19888
19889 2005-06-12 Mark A. Hershberger <mah@everybody.org>
19890
19891 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
19892 defun-prompt-regexp.
19893
19894 2005-06-12 Eli Zaretskii <eliz@gnu.org>
19895
19896 * loadup.el: Don't say we are dumping under 2 names on windows-nt
19897 and cygwin.
19898
19899 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
19900 Don't use an old loaddefs.el, as in Makefile.in.
19901
19902 2005-06-12 Lute Kamstra <lute@gnu.org>
19903
19904 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
19905
19906 * man.el (Man-mode-map): Initialize it properly.
19907 (Man-mode): Set mode-class property to special.
19908
19909 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
19910
19911 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
19912
19913 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
19914 A newline is needed in the docstring there.
19915
19916 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
19917 Doc fixes.
19918
19919 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19920
19921 * printing.el: Doc fix. The menubar is no more changed when printing
19922 is loaded, it only changes when pr-menu-bind or pr-update-menus is
19923 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
19924 (pr-version): New version number (6.8.4).
19925 (pr-menu-bind): New command.
19926 (pr-update-menus): Docstring and code fix.
19927 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
19928 Docstring fix.
19929 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
19930 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
19931
19932 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
19933
19934 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
19935 "Returns" to "return", document useful return values, etc.
19936
19937 2005-06-11 Alan Mackenzie <acm@muc.de>
19938
19939 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
19940 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
19941 (adaptive-file-function): Minor amendment to doc-string.
19942
19943 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
19944
19945 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
19946 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
19947 Fix :type--it is `integer', not `string'.
19948
19949 * faces.el (modeline-highlight): Rename from (the erroneous)
19950 `modeline-higilight'.
19951
19952 2005-06-11 Lute Kamstra <lute@gnu.org>
19953
19954 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
19955 lisp-interaction-mode-map but make it the parent.
19956 (edebug-eval-mode): Use define-derived-mode.
19957
19958 2005-06-11 Andreas Schwab <schwab@suse.de>
19959
19960 * bindings.el: Add binding of `ESC functionkey' for every
19961 `M-functionkey'.
19962 * hexl.el (hexl-mode-map): Likewise.
19963
19964 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
19965
19966 * progmodes/compile.el (compilation-error-regexp-alist-alist)
19967 [msft]: update regexp for newer msft compilers.
19968
19969 2005-06-10 Mark A. Hershberger <mah@everybody.org>
19970
19971 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
19972 ATTLIST portions of included DTDs.
19973 (xml-parse-dtd): Eliminate use of inefficient match-data.
19974
19975 2005-06-10 Miles Bader <miles@gnu.org>
19976
19977 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
19978 (mpuz-text): Remove "-face" suffix from face names.
19979 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
19980 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
19981 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
19982
19983 * play/gomoku.el (gomoku-O, gomoku-X):
19984 Remove "-face" suffix from face names.
19985 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
19986 New backward-compatibility aliases for renamed faces.
19987 (gomoku-font-lock-keywords): Use renamed gomoku faces.
19988
19989 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
19990
19991 * thumbs.el: Fixes for changes of 2005-06-09.
19992 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
19993 as a directory.
19994 (thumbs-thumbname): Remove directory separator from format string;
19995 `thumbs-thumbsdir' now returns a valid directory name.
19996 (thumbs-temp-dir): New defsubst.
19997 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
19998 Use it.
19999
20000 * cus-edit.el (minibuffer):
20001 * files.el (make-backup-file-name-function):
20002 * filesets.el (filesets-external-viewers):
20003 * hilit-chg.el (highlight-changes-colours)
20004 (highlight-changes-face-list, highlight-changes-rotate-faces):
20005 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
20006 * kmacro.el (kmacro-call-macro):
20007 * log-edit.el (log-edit-changelog-full-paragraphs):
20008 * mouse.el (mouse-1-click-follows-link):
20009 * skeleton.el (skeleton-autowrap):
20010 * subr.el (insert-for-yank-1):
20011 * tempo.el (tempo-insert-region):
20012 * terminal.el (terminal-emulator):
20013 * time.el (display-time-mail-face):
20014 * vc.el (vc-annotate):
20015 * vcursor.el (vcursor-copy-line):
20016 * woman.el (woman-bold-headings, woman-ignore)
20017 (woman-default-faces, woman-monochrome-faces):
20018 * calendar/todo-mode.el (todo-insert-threshold):
20019 * emulation/pc-select.el (pc-select-selection-keys-only)
20020 (pc-selection-mode):
20021 * emulation/vip.el (vip-find-char-forward):
20022 * emulation/viper-cmd.el (viper-find-char-forward):
20023 * international/mule-cmds.el
20024 (select-safe-coding-system-accept-default-p)
20025 (input-method-exit-on-invalid-key):
20026 * international/mule-diag.el (describe-coding-system):
20027 * international/ucs-tables.el (unify-8859-on-encoding-mode):
20028 * net/browse-url.el (browse-url-xterm-program):
20029 * obsolete/lazy-lock.el (lazy-lock-mode):
20030 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
20031 (cperl-mode):
20032 * progmodes/cpp.el (cpp-face-light-name-list)
20033 (cpp-face-dark-name-list):
20034 * progmodes/delphi.el (delphi-newline-always-indents):
20035 Fix spellings in docstrings.
20036
20037 * ido.el (ido-mode, ido-file-extensions-order)
20038 (ido-default-file-method, ido-default-buffer-method)
20039 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
20040 (ido-decorations, ido-read-file-name-as-directory-commands)
20041 (ido-read-file-name-non-ido, ido-work-directory-list)
20042 (ido-ignore-item-temp-list, ido-current-directory)
20043 (ido-magic-forward-char, ido-enter-find-file)
20044 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
20045 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
20046
20047 2005-06-10 Lute Kamstra <lute@gnu.org>
20048
20049 * play/dunnet.el (dun-mode): Use define-derived-mode.
20050 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
20051 obsolete alias.
20052
20053 * play/doctor.el (doctor-mode-map): Remove defvar.
20054 (doctor-mode): Use define-derived-mode.
20055
20056 * mail/mspools.el (mspools-mode):
20057 * net/eudc-hotlist.el (eudc-hotlist-mode):
20058 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
20059
20060 2005-06-10 Miles Bader <miles@gnu.org>
20061
20062 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
20063 Remove "-face" suffix from face names.
20064 (flyspell-incorrect-face, flyspell-duplicate-face):
20065 New backward-compatibility aliases for renamed faces.
20066 (flyspell-mode-on, make-flyspell-overlay)
20067 (flyspell-highlight-incorrect-region)
20068 (flyspell-highlight-duplicate-region)
20069 (flyspell-display-next-corrections)
20070 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
20071
20072 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
20073 from face name.
20074 (texinfo-heading-face): New backward-compatibility alias for
20075 renamed face.
20076 (texinfo-heading-face): Use renamed texinfo-heading face.
20077
20078 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
20079 suffix from face names.
20080 (tex-math-face, tex-verbatim-face):
20081 New backward-compatibility aliases for renamed faces.
20082 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
20083 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
20084 literal face name.
20085
20086 * textmodes/table.el (table-cell): Remove "-face" suffix from face
20087 name.
20088 (table-cell-face): New backward-compatibility alias for renamed face.
20089 (table--put-cell-face-property, table--update-cell-face):
20090 Use renamed table-cell face.
20091
20092 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
20093 from face name.
20094 (sgml-namespace-face): New backward-compatibility alias for
20095 renamed face.
20096 (sgml-namespace-face): Use renamed sgml-namespace face.
20097
20098 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
20099 (org-level-4, org-level-5, org-level-6, org-level-7)
20100 (org-level-8, org-warning, org-headline-done)
20101 (org-deadline-announce, org-scheduled-today)
20102 (org-scheduled-previously, org-link, org-done, org-table)
20103 (org-time-grid): Remove "-face" suffix from face names.
20104 (org-level-1-face, org-level-2-face, org-level-3-face)
20105 (org-level-4-face, org-level-5-face, org-level-6-face)
20106 (org-level-7-face, org-level-8-face, org-warning-face)
20107 (org-headline-done-face, org-deadline-announce-face)
20108 (org-scheduled-today-face, org-scheduled-previously-face)
20109 (org-link-face, org-done-face, org-table-face)
20110 (org-time-grid-face):
20111 New backward-compatibility aliases for renamed faces.
20112 (org-level-faces, org-set-font-lock-defaults, org-timeline)
20113 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
20114 (org-agenda-get-timestamps, org-agenda-get-scheduled)
20115 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
20116
20117 * emulation/viper-init.el (viper-search, viper-replace-overlay)
20118 (viper-minibuffer-emacs, viper-minibuffer-insert)
20119 (viper-minibuffer-vi): Remove "-face" suffix from face names.
20120 (viper-search-face, viper-replace-overlay-face)
20121 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
20122 (viper-minibuffer-vi-face):
20123 New backward-compatibility aliases for renamed faces.
20124 (viper-search-face, viper-replace-overlay-face)
20125 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
20126 (viper-minibuffer-vi-face): Use renamed viper faces.
20127
20128 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
20129 Remove "-face" suffix from face names.
20130 (testcover-nohits-face, testcover-1value-face):
20131 New backward-compatibility aliases for renamed faces.
20132 (testcover-mark): Use renamed testcover faces.
20133
20134 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
20135 face name.
20136 (diary-button-face): New backward-compatibility alias for renamed face.
20137 (diary-entry): Use renamed diary-button face.
20138
20139 * calendar/calendar.el (diary, calendar-today, holiday)
20140 (mark-visible-calendar-date): Remove "-face" suffix from face names.
20141 (diary-face, calendar-today-face, holiday-face):
20142 New backward-compatibility aliases for renamed faces.
20143 (eval-after-load "facemenu", diary-entry-marker)
20144 (calendar-today-marker, calendar-holiday-marker, diary-face):
20145 Use renamed calendar faces.
20146
20147 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
20148 (compare-windows-face): New backward-compatibility alias for
20149 renamed face.
20150 (compare-windows-highlight): Use renamed compare-windows face.
20151
20152 * strokes.el (strokes-char): Remove "-face" suffix from face name.
20153 (strokes-char-face): New backward-compatibility alias for renamed face.
20154 (strokes-encode-buffer): Use renamed strokes-char face.
20155
20156 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
20157 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
20158 Remove "-face" suffix from face names.
20159 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
20160 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
20161 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
20162 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
20163 Use renamed pcvs faces.
20164 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
20165 * pcvs-defs.el (cvs-mode-map): Likewise.
20166 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
20167
20168 * info.el (info-title-1, info-title-2, info-title-3)
20169 (info-title-4): Remove "-face" suffix from and downcase face names.
20170 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
20171 (Info-title-4-face):
20172 New backward-compatibility aliases for renamed faces.
20173 (Info-fontify-node): Use renamed info faces.
20174
20175 * hilit-chg.el (highlight-changes, highlight-changes-delete):
20176 Remove "-face" suffix from face names.
20177 (highlight-changes-face, highlight-changes-delete-face):
20178 New backward-compatibility aliases for renamed faces.
20179 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
20180 (hilit-chg-make-list): Use renamed highlight-changes faces.
20181
20182 * generic-x.el (show-tabs-tab, show-tabs-space):
20183 Remove "-face" suffix from face names.
20184 (show-tabs-tab-face, show-tabs-space-face):
20185 New backward-compatibility aliases for renamed faces.
20186 (show-tabs-generic-mode-font-lock-defaults-1)
20187 (show-tabs-generic-mode-font-lock-defaults-2):
20188 Use renamed show-tabs faces.
20189
20190 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
20191 (smerge-markers): Remove "-face" suffix from face names.
20192 (smerge-mine-face, smerge-other-face, smerge-base-face)
20193 (smerge-markers-face):
20194 New backward-compatibility aliases for renamed faces.
20195 (smerge-mine-face, smerge-other-face, smerge-base-face)
20196 (smerge-markers-face): Use renamed smerge faces.
20197
20198 * log-view.el (log-view-file, log-view-message): Remove "-face"
20199 suffix from face names.
20200 (log-view-file-face, log-view-message-face):
20201 New backward-compatibility aliases for renamed faces.
20202 (log-view-file-face, log-view-message-face): Use renamed log-view
20203 faces.
20204
20205 * paren.el (show-paren-match, show-paren-mismatch):
20206 Remove "-face" suffix from face names.
20207 (show-paren-match-face, show-paren-mismatch-face):
20208 New backward-compatibility aliases for renamed faces.
20209 (show-paren-function): Use renamed show-paren faces.
20210
20211 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
20212 (ruler-mode-margins, ruler-mode-fringes)
20213 (ruler-mode-column-number, ruler-mode-fill-column)
20214 (ruler-mode-comment-column, ruler-mode-goal-column)
20215 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
20216 suffix from face names.
20217 (ruler-mode-default-face, ruler-mode-pad-face)
20218 (ruler-mode-margins-face, ruler-mode-fringes-face)
20219 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
20220 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
20221 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
20222 New backward-compatibility aliases for renamed faces.
20223 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
20224 (ruler-mode-column-number, ruler-mode-fill-column)
20225 (ruler-mode-comment-column, ruler-mode-goal-column)
20226 (ruler-mode-tab-stop, ruler-mode-current-column)
20227 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
20228 faces.
20229
20230 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
20231 face name.
20232 (whitespace-highlight-the-space): Use renamed face.
20233 (whitespace-highlight-face): New backward-compatibility alias for
20234 renamed face.
20235
20236 * woman.el (woman-italic, woman-bold, woman-unknown)
20237 (woman-addition, woman-symbol-face):
20238 Remove "-face" suffix from face names.
20239 (woman-italic-face, woman-bold-face, woman-unknown-face)
20240 (woman-addition-face):
20241 New backward-compatibility aliases for renamed faces.
20242 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
20243 (woman-decode-region, woman-replace-match)
20244 (woman-display-extended-fonts, woman-special-characters)
20245 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
20246 Use renamed woman faces.
20247
20248 * longlines.el (longlines-visible-face): Face removed.
20249
20250 * diff-mode.el (diff-header, diff-file-header, diff-index)
20251 (diff-hunk-header, diff-removed, diff-added, diff-changed)
20252 (diff-function, diff-context, diff-nonexistent): Remove "-face"
20253 suffix from face names.
20254 (diff-header-face, diff-file-header-face, diff-index-face)
20255 (diff-hunk-header-face, diff-removed-face, diff-added-face)
20256 (diff-changed-face, diff-function-face, diff-context-face)
20257 (diff-nonexistent-face): New backward-compatibility aliases for
20258 renamed faces.
20259 (diff-header-face, diff-file-header-face)
20260 (diff-index, diff-index-face, diff-hunk-header)
20261 (diff-hunk-header-face, diff-removed, diff-removed-face)
20262 (diff-added, diff-added-face, diff-changed-face, diff-function)
20263 (diff-function-face, diff-context-face, diff-nonexistent)
20264 (diff-nonexistent-face): Use renamed diff-mode faces.
20265
20266 * progmodes/compile.el (compilation-warning-face)
20267 (compilation-info-face): Remove "-face" suffix from face names.
20268 (compilation-warning-face, compilation-info-face):
20269 New backward-compatibility aliases for renamed faces.
20270 (compilation-warning-face, compilation-info-face):
20271 Use renamed compilation faces.
20272
20273 * add-log.el (change-log-date, change-log-name)
20274 (change-log-email, change-log-file, change-log-list)
20275 (change-log-conditionals, change-log-function)
20276 (change-log-acknowledgement): Remove "-face" suffix from face names.
20277 (change-log-date-face, change-log-name-face)
20278 (change-log-email-face, change-log-file-face)
20279 (change-log-list-face, change-log-conditionals-face)
20280 (change-log-function-face, change-log-acknowledgement-face):
20281 New backward-compatibility aliases for renamed faces.
20282 (change-log-font-lock-keywords): Use renamed change-log faces.
20283
20284 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
20285 (custom-set, custom-changed, custom-saved, custom-button)
20286 (custom-button-pressed, custom-documentation, custom-state)
20287 (custom-comment, custom-comment-tag, custom-variable-tag)
20288 (custom-variable-button, custom-face-tag, custom-group-tag-1)
20289 (custom-group-tag): Remove "-face" suffix from face names.
20290 (custom-magic-alist, custom-magic-value-create)
20291 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
20292 (custom-invalid-face, custom-rogue-face, custom-modified-face)
20293 (custom-set-face, custom-changed-face, custom-saved-face)
20294 (custom-button-face, custom-button-pressed-face)
20295 (custom-documentation-face, custom-state-face)
20296 (custom-comment-face, custom-comment-tag-face)
20297 (custom-variable-tag-face, custom-variable-button-face)
20298 (custom-face-tag-face, custom-group-tag-face-1)
20299 (custom-group-tag-face):
20300 New backward-compatibility aliases for renamed faces.
20301
20302 * wid-edit.el (widget-documentation, widget-button)
20303 (widget-field, widget-single-line-field, widget-inactive)
20304 (widget-button-pressed): "-face" suffix removed from face names.
20305 (widget-documentation-face, widget-button-face)
20306 (widget-field-face, widget-single-line-field-face)
20307 (widget-inactive-face, widget-button-pressed-face):
20308 New backward-compatibility aliases for renamed faces.
20309 (widget-documentation-face, widget-button-face)
20310 (widget-button-pressed-face, widget-specify-field)
20311 (widget-specify-inactive): Use renamed widget faces.
20312
20313 2005-06-10 Kenichi Handa <handa@m17n.org>
20314
20315 * term/x-win.el (x-clipboard-yank): Remove condition-case
20316 wrapping.
20317
20318 2005-06-11 Kenichi Handa <handa@m17n.org>
20319
20320 * add-log.el (change-log-font-lock-keywords): Make the regexp for
20321 date lines stricter.
20322
20323 2005-06-10 Zhang Wei <id.brep@gmail.com>
20324
20325 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
20326 of x-get-selection.
20327
20328 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
20329
20330 * comint.el (comint-mode, comint-snapshot-last-prompt):
20331 * frame.el (frame-current-scroll-bars):
20332 * term.el (term-mode, term-check-proc, term-input-sender)
20333 (term-simple-send, term-extract-string, term-word)
20334 (term-match-partial-filename):
20335 * window.el (window-current-scroll-bars):
20336 * emulation/cua-base.el (cua-normal-cursor-color)
20337 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
20338 (cua-global-mark-cursor-color):
20339 * mail/undigest.el (rmail-forward-separator-regex):
20340 Fix typos in docstrings.
20341
20342 * comint.el (comint-check-proc, make-comint-in-buffer)
20343 (comint-source-default): Doc fixes.
20344
20345 * term.el (term-send-string): Improve argument/docstring consistency.
20346
20347 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
20348
20349 * comint.el (comint-send-input): Bind `inhibit-read-only' around
20350 call to `delete-region'.
20351 (comint-mode-hook): Do not enable Font Lock by default.
20352
20353 2005-06-09 Lute Kamstra <lute@gnu.org>
20354
20355 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
20356 could be void.
20357
20358 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
20359
20360 * emacs-lisp/debug.el (debugger-will-be-back): New var.
20361 (debug): Use it.
20362 (debugger-step-through, debugger-continue, debugger-jump)
20363 (debugger-return-value): Set it when needed.
20364 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
20365 Use inhibit-read-only.
20366
20367 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
20368
20369 * window.el (shrink-window-if-larger-than-buffer)
20370 (window-size-fixed): Fix typo in docstring.
20371
20372 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
20373 thumbnails directory on loading.
20374 (thumbs-conversion-program): Use `eq' to check the system type,
20375 not `equal'.
20376 (thumbs-temp-dir): Initialize to `temporary-file-directory',
20377 not "/tmp". Fix docstring.
20378 (thumbs-thumbsdir): New function to return the thumbnails
20379 directory, creating it if needed.
20380 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
20381 (thumbs-temp-file): Delete variable and make it into a function.
20382 (thumbs-resize-image, thumbs-modify-image): Use it.
20383 (thumbs-kill-buffer): Simplify.
20384 (thumbs-gensym): Defalias or duplicate CL `gensym'.
20385 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
20386 docstrings.
20387
20388 2005-06-09 Kim F. Storm <storm@cua.dk>
20389
20390 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
20391 set-match-data to free markers in match-data.
20392
20393 * replace.el (replace-match-data): Pass RESEAT arg `t' to
20394 match-data to unchain markers in match-data.
20395
20396 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
20397
20398 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
20399 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
20400 unnecessary now.
20401
20402 2005-06-08 Richard M. Stallman <rms@gnu.org>
20403
20404 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
20405 give the variable a doc string that doesn't say don't set it directly.
20406
20407 * textmodes/ispell.el (ispell-check-version):
20408 Use match-string-no-properties.
20409 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
20410 (ispell-buffer-local-words): Likewise.
20411
20412 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
20413 except on terminals with enough colors to really display it.
20414 (makefile-dependency-regex): Delete spurious `bb'.
20415
20416 * faces.el (escape-glyph): Use blue once again in last case.
20417 (no-break-space): Redefine so that it isn't invisible on a tty.
20418
20419 2005-06-08 Kim F. Storm <storm@cua.dk>
20420
20421 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
20422 also when reading directory name.
20423
20424 2005-06-08 Lute Kamstra <lute@gnu.org>
20425
20426 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
20427 (flyspell-mode-line-string): Remove autoload cookie.
20428 (flyspell-mode): Remove defvar.
20429
20430 2005-06-07 Lute Kamstra <lute@gnu.org>
20431
20432 * textmodes/org.el (org-run-mode-hooks): New function.
20433 (org-agenda-mode): Use it.
20434
20435 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
20436
20437 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
20438
20439 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
20440
20441 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
20442
20443 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
20444
20445 * font-lock.el (font-lock-add-keywords): Doc fix.
20446
20447 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
20448
20449 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
20450 (tex-compile-default): In the absence of any history, use the order in
20451 tex-compile-alist to choose the preferred command.
20452 (tex-compile-commands): Reorder a bit.
20453
20454 * textmodes/flyspell.el (flyspell-auto-correct-binding)
20455 (flyspell-incorrect-face, flyspell-duplicate-face):
20456 Use (X)Emacs-agnostic code.
20457 (flyspell-mode-map): Don't overwrite at each load. Remove code
20458 redundant with the subsequent add-minor-mode. Merge Emacs and
20459 XEmacs code.
20460 (flyspell-word): Minor simplification.
20461 (flyspell-math-tex-command-p): Quieten the byte-compiler.
20462 (flyspell-external-point-words): Remove unused vars `size' and `start'.
20463 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
20464 Merge the corresponding Emacs code.
20465 (flyspell-correct-word, flyspell-xemacs-popup):
20466 Use flyspell-do-correct.
20467
20468 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
20469 a dedicated window.
20470
20471 * international/latexenc.el (latexenc-find-file-coding-system):
20472 Undo part of last patch, to turn off a compiler warning.
20473
20474 2005-06-06 Juri Linkov <juri@jurta.org>
20475
20476 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
20477 Rename `tmm-inactive-face' to `tmm-inactive'.
20478
20479 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
20480
20481 * iswitchb.el: Rename faces.
20482
20483 2005-06-06 Kim F. Storm <storm@cua.dk>
20484
20485 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
20486 (cua-global-mark): Remove -face suffix from face names.
20487
20488 * emulation/cua-gmrk.el (cua--init-global-mark):
20489 Remove cua-global-mark face setup.
20490
20491 2005-06-06 Richard M. Stallman <rms@gnu.org>
20492
20493 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
20494 just like other allowed characters.
20495 (makefile-match-dependency): Exclude leading and training whitespace
20496 from the range of regexp subexp 1.
20497 (makefile-macroassign-regex): Don't try to match the body,
20498 just the name of the macro being defined.
20499
20500 * info.el (Info-read-node-name-2): New function.
20501 (Info-read-node-name-1): Use that.
20502 Add a completion-base-size-function property.
20503
20504 * simple.el (completion-setup-function): Look for
20505 completion-base-size-function property of minibuffer-completion-table.
20506
20507 * files.el (locate-file-completion): Doc fix.
20508
20509 * printing.el: Don't call pr-update-menus; user must do that.
20510
20511 * emacs-lisp/debug.el (debugger-window): New variable.
20512 (debug): Use debugger-window if it is set and still alive.
20513 Record debugger-window for next entry.
20514
20515 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
20516
20517 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
20518
20519 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
20520 (hack-one-local-variable, hack-local-variables)
20521 (hack-local-variables-prop-line): Pass that arg.
20522
20523 2005-06-06 Kim F. Storm <storm@cua.dk>
20524
20525 * ido.el (ido-first-match, ido-only-match, ido-subdir)
20526 (ido-indicator): Remove -face suffix from face names.
20527
20528 2005-06-06 Juri Linkov <juri@jurta.org>
20529
20530 * font-lock.el (font-lock-regexp-backslash)
20531 (font-lock-regexp-backslash-construct): New faces.
20532 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
20533 after `('. Add `while-no-input' to control structures.
20534
20535 * faces.el (no-break-space, shadow): New faces.
20536 (escape-glyph): Use less loud colors pink2 and red4.
20537
20538 * diff-mode.el (diff-context-face)
20539 * dired.el (dired-ignored)
20540 * rfn-eshadow.el (file-name-shadow)
20541 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
20542
20543 * info.el (Info-title-1-face): Use green instead of yellow because
20544 bold yellow is not readable on light backgrounds.
20545
20546 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
20547 before selecting the desired mode to not spend time fontifying
20548 old contents.
20549
20550 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
20551
20552 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
20553 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
20554
20555 * ps-print.el (ps-default-fg, ps-default-bg):
20556 Fix typos in docstrings.
20557
20558 * isearchb.el (isearchb): Don't pass a spurious second argument to
20559 `iswitchb-completions'.
20560
20561 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
20562
20563 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
20564 to preserve point.
20565 (gdb-find-file-hook): Add doc string.
20566
20567 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
20568 C dereferenced pointer expression.
20569 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
20570
20571 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
20572
20573 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
20574 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
20575 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
20576 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
20577 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
20578 Make background transparent.
20579
20580 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
20581
20582 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
20583 (font-lock-remove-keywords): Doc fix.
20584 (font-lock-mode-major-mode): Compiler defvar.
20585 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
20586
20587 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
20588 (font-lock-mode): Update `font-lock-mode-major-mode'.
20589 (font-lock-set-defaults): Compiler defvar.
20590 (font-lock-default-function): Take `font-lock-mode-major-mode'
20591 into account.
20592
20593 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
20594 keep track of which major mode it enabled the minor mode for.
20595 Use find-file-hook again. Update docstring.
20596
20597 * simple.el (eval-expression-print-level)
20598 (eval-expression-print-length, eval-expression-debug-on-error):
20599 Doc fixes.
20600
20601 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
20602
20603 * iswitchb.el (iswitchb-single-match-face)
20604 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
20605 (iswitchb-invalid-regexp-face): New faces.
20606 (iswitchb-completions): Use them.
20607 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
20608 now marked as an obsolete alias.
20609 (iswitchb-read-buffer): Remove check for bound font variables.
20610 (iswitchb-invalid-regexp): New free variable.
20611 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
20612 set iswitchb-invalid-regexp.
20613 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
20614 invalid regexps.
20615 (iswitchb-completions): Add check for complete match when entering
20616 a regexp.
20617 (iswitchb-completions): Remove require-match argument.
20618 (iswitchb-exhibit): Fix caller.
20619 (iswitchb-common-match-inserted): New variable.
20620 (iswitchb-complete, iswitchb-completion-help): Use it.
20621
20622 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
20623
20624 * url-http.el (url-http-chunked-encoding-after-change-function):
20625 Use `url-http-debug' instead of `message'.
20626
20627 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
20628
20629 * url-http.el (url-http-parse-headers): Pass redirected URL as a
20630 callback argument.
20631
20632 2005-06-04 Kim F. Storm <storm@cua.dk>
20633
20634 * simple.el (line-move): Only call sit-for when moving backwards.
20635
20636 * ido.el (ido-make-merged-file-list-1): New defun split from
20637 ido-make-merged-file-list.
20638 (ido-make-merged-file-list): Bind throw-on-input around call to
20639 ido-make-merged-file-list-1. Return input-pending-p if
20640 interrupted by more input available.
20641 (ido-read-internal): Handle input-pending-p return value from
20642 ido-make-merged-file-list.
20643
20644 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
20645
20646 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
20647 compatibility code.
20648
20649 * international/latexenc.el (latexenc-find-file-coding-system):
20650 Don't inherit the EOL part of the coding-system from the
20651 tex-main buffer. Fit within 80 columns.
20652
20653 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
20654
20655 * tmm.el (tmm-inactive-face): New face.
20656 (tmm-remove-inactive-mouse-face): New function.
20657 (tmm-prompt, tmm-add-one-shortcut)
20658 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
20659 but not selectable.
20660
20661 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
20662
20663 * faces.el (face-equal): Improve argument/docstring consistency.
20664
20665 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
20666
20667 * progmodes/make-mode.el (makefile-targets-face)
20668 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
20669 (makefile-bsdmake-dependency-regex)
20670 (makefile-makepp-rule-action-regex)
20671 (makefile-bsdmake-rule-action-regex): New constants.
20672 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
20673
20674 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20675 Allow (...) within `...' for makepp messages.
20676
20677 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
20678
20679 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
20680
20681 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
20682 "." files are deleted from all file lists before comparison.
20683
20684 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
20685 (viper-ESC-key): Made them customizable.
20686
20687 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
20688
20689 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
20690
20691 * autorevert.el (auto-revert-buffers): Use save-match-data.
20692
20693 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
20694
20695 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
20696 menu items with a nil command binding.
20697
20698 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
20699
20700 * emacs-lisp/cl-macs.el (defsetf):
20701 Improve argument/docstring consistency.
20702
20703 * faces.el (list-faces-display): Improve the formatting by
20704 computing the maximum length required for any face-name (reworked
20705 patch of 1999-01-11, accidentally deleted on 1999-07-21).
20706 (internal-find-face): Remove redundant info in docstring.
20707
20708 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
20709
20710 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
20711 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
20712 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
20713 (gdb-assembler-custom): Improve regexps.
20714 (def-gdb-auto-update-handler): Use window point to preserve point.
20715
20716 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
20717
20718 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
20719
20720 2005-05-31 Jay Belanger <belanger@truman.edu>
20721
20722 * calc/calc-embed.el (calc-embedded-word): Change argument passed
20723 to calc-embedded.
20724 (calc-embedded-make-info): Have plain prefix argument select
20725 entire line.
20726
20727 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
20728
20729 * faces.el (list-faces-display): Signal error if passed a regexp
20730 that matches no face name.
20731
20732 * simple.el (filter-buffer-substring): Fix typo in docstring.
20733
20734 2005-05-31 Richard M. Stallman <rms@gnu.org>
20735
20736 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
20737 (vhdl-emacs-21): Doc fix.
20738 (vhdl-mode): Unconditionally set comment-padding.
20739 (vhdl-fixup-whitespace-region): Insert spaces only where
20740 there are none.
20741 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
20742
20743 2005-05-30 John Wiegley <johnw@newartisans.com>
20744
20745 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
20746 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
20747 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
20748 `directory-sep-char' to ?/, and all uses of `string-to-int' to
20749 `string-to-number'.
20750
20751 2005-05-30 Jay Belanger <belanger@truman.edu>
20752
20753 * calc/calc.el (calc-bug-address): Fix docstring.
20754 (calc-window-hook, calc-trail-window-hook): New variables.
20755 (calc-trail-display): Restore use of calc-trail-window-hook.
20756 (calc): Restore use of calc-window-hook.
20757
20758 2005-05-31 Masatake YAMATO <jet@gyve.org>
20759
20760 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
20761
20762 * help-fns.el (help-C-file-name): Add autoload mark for
20763 `find-function-noselect'.
20764
20765 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
20766
20767 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
20768 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
20769
20770 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
20771
20772 * calendar/diary-lib.el (mark-included-diary-files): Only kill
20773 included diary buffer if it was not already being visited.
20774 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
20775
20776 * calendar/icalendar.el (top-level): Do not require appt.
20777
20778 * mail/supercite.el (sc-select-attribution): Only use a list
20779 element from sc-attrib-selection-list if it returns a string.
20780 Reported by Davide G. M. Salvetti <salve@debian.org>.
20781
20782 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
20783
20784 * thumbs.el (thumbs-thumbname): The resulting thumbname now
20785 includes a hash value to improve its uniqueness, and has a ".jpg"
20786 extension. Also, it is now a valid filename on all systems.
20787 (thumbs-make-thumb): Use `let', not `let*'.
20788 (thumbs-show-thumbs-list): Check for JPEG availability.
20789
20790 2005-05-30 Richard M. Stallman <rms@gnu.org>
20791
20792 * filesets.el (filesets-menu-ensure-use-cached):
20793 Prevent warning when emacs-version>= is undefined.
20794
20795 * printing.el (pr-interactive-n-up): Use string-to-number.
20796
20797 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
20798
20799 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
20800 Warn only when name to be defined is quoted.
20801
20802 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
20803
20804 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
20805 Make regexp more robust.
20806 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
20807 Force regeneration of disassembly.
20808
20809 2005-05-29 Jay Belanger <belanger@truman.edu>
20810
20811 * calc/calc.el (calc-user-invocation): Check if
20812 calc-invocation-macro is non-nil.
20813
20814 2005-05-29 Juri Linkov <juri@jurta.org>
20815
20816 * add-log.el (change-log-font-lock-keywords):
20817 Add `+' to e-mail regexp to accept mail address with keywords.
20818
20819 * man.el (Man-name-regexp): Add `:' to accept qualified names.
20820
20821 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
20822
20823 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
20824
20825 * ielm.el (inferior-emacs-lisp-mode): Ditto.
20826
20827 2005-05-29 Richard M. Stallman <rms@gnu.org>
20828
20829 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
20830 Undo the change that moves to end of the current word.
20831
20832 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
20833
20834 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
20835 Throw error when count <= 0 to ensure input is a number.
20836 (gdb-read-memory-custom): Pick up address from buffer.
20837 (gdb-memory-mode): Allow user to increment and decrement
20838 memory address from header line.
20839
20840 2005-05-29 Richard M. Stallman <rms@gnu.org>
20841
20842 * flyspell.el (flyspell-version): Function deleted.
20843 (flyspell-auto-correct-previous-hook): Doc fix.
20844
20845 * jit-lock.el (jit-lock-function, jit-lock-after-change):
20846 Do nothing if memory is full.
20847
20848 * font-lock.el (font-lock-fontify-syntactically-region):
20849 Pass t for GREEDY to looking-back.
20850
20851 * saveplace.el (save-place-alist-to-file): Write the file
20852 using write-region.
20853
20854 * subr.el (looking-back): New argument GREEDY.
20855
20856 * progmodes/compile.el (compilation-start): Set the mode
20857 before inserting the initial text.
20858
20859 * progmodes/which-func.el (which-func-update-1): Turn the mode
20860 off in case of error by setting which-func-mode.
20861
20862 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
20863
20864 * flyspell.el (flyspell-auto-correct-previous-word):
20865 Narrow down to what's on the screen, and recenter overlays
20866 at the end of the next word.
20867
20868 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
20869
20870 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
20871 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
20872 (flyspell-abbrev-p): Default to nil.
20873 (flyspell-use-global-abbrev-table-p): Doc fix.
20874 (flyspell-large-region): Allow nil as value.
20875 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
20876
20877 (mail-mode-flyspell-verify): More robust handling
20878 of `mail-header-separator'. More efficient signature detection.
20879 Allow for regexp metacharacters in message-header-separator.
20880 Adding `To' not to be checked in mail-mode-flyspell-verify.
20881
20882 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
20883 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
20884 Bind flyspell-auto-correct-binding.
20885 Bind C-. and C-, .
20886 (flyspell-mode-map): Likewise.
20887 (flyspell-mode): Doc fix.
20888 (flyspell-accept-buffer-local-defs): Preserve current buffer.
20889 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
20890 (flyspell-word-cache-result): New var, always local.
20891 (flyspell-check-pre-word-p): Doc fix.
20892 (flyspell-check-changed-word-p): Handle spc like newline.
20893 (flyspell-post-command-hook): Set flyspell-word-cache-result.
20894 (flyspell-word-search-backward, flyspell-word-search-forward):
20895 New functions.
20896 (flyspell-word): Return t if nothing to check.
20897 When parsing TeX code, check for after } or \.
20898 Use flyspell-word-search-backward to find previous word.
20899 Return nil if duplicated word.
20900 For word already checked, return same value as last time.
20901 Set flyspell-word-cache-result after checking.
20902 Don't clobber the return value.
20903 (flyspell-get-word): Major rewrite.
20904 (flyspell-external-point-words): New locals pword, pcount.
20905 Fix size used in progress message.
20906 Find the proper corresponding word in flyspell-large-region-buffer.
20907 (flyspell-region): Check for flyspell-large-region = nil.
20908 (flyspell-highlight-incorrect-region): Clean up overlays in region.
20909 (flyspell-auto-correct-word): Check that WORD is a cons.
20910 (flyspell-correct-word): Likewise.
20911
20912 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
20913
20914 * progmodes/make-mode.el (makefile-rule-action-regex)
20915 (makefile-macroassign-regex, makefile-makepp-mode)
20916 (makefile-bsdmake-mode): Continuation lines may be empty.
20917 Reported by Joshua Varner.
20918 (makefile-makepp-font-lock-keywords): Add $(stem).
20919
20920 2005-05-28 Karl Berry <karl@gnu.org>
20921
20922 * textmodes/tex-mode.el: Now that tex-send-command calls
20923 shell-quote-argument (2005-03-31 change), remove all calls to
20924 shell-quote-argument; they all end up invoking tex-send-command.
20925 The double quoting loses on filenames with non-safe characters,
20926 such as "@". Reported by Frederik Fouvry.
20927
20928 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
20929
20930 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
20931 about preserving point.
20932
20933 2005-05-27 Jay Belanger <belanger@truman.edu>
20934
20935 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
20936 Info-goto-node.
20937
20938 * calc/calc-embed.el (calc-embed-arg): New variable.
20939 (calc-do-embedded-activate, calc-embedded-activate-formula)
20940 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
20941 variable by new variable.
20942 (calc-embedded-make-info): Replace undeclared variable by new
20943 variable. When selecting region with positive prefix
20944 argument, use end of previous line instead of beginning of line.
20945
20946 * calc/calc-aent.el (calc-arg-values): Declare it.
20947
20948 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
20949 Declare them.
20950
20951 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
20952
20953 * calc/calc.el (calc-alg-map): Declare it.
20954
20955 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
20956
20957 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
20958
20959 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
20960 (gdb-registers-buffer, toggle-gdb-all-registers):
20961 Toggle display of floating point registers.
20962 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
20963
20964 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
20965 (toggle-gud-tooltip-dereference):
20966 Rename from gud-toggle-tooltip-dereference.
20967
20968 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20969
20970 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
20971
20972 2005-05-27 Jay Belanger <belanger@truman.edu>
20973
20974 * calc/calc-prog.el (calc-kbd-report): Remove.
20975 (calc-kbd-query): Rewrite.
20976
20977 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
20978
20979 * image.el (image-library-alist): Move to image.c.
20980 (image-type-available-p): Doc fix.
20981
20982 2005-05-27 Lute Kamstra <lute@gnu.org>
20983
20984 * calc/calc.el (calc):
20985 * outline.el (outline-1, outline-2, outline-3, outline-4)
20986 (outline-5, outline-6, outline-7, outline-8):
20987 * textmodes/dns-mode.el (dns-mode):
20988 * textmodes/sgml-mode.el (sgml-namespace-face):
20989 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
20990 (tex-verbatim-face, tex-use-reftex):
20991 * textmodes/texinfo.el (texinfo-heading-face):
20992 Specify customization group.
20993
20994 * longlines.el: Don't require easy-mmode.
20995 (longlines-visible-face): Specify customization group.
20996
20997 2005-05-27 Kenichi Handa <handa@m17n.org>
20998
20999 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
21000 encoding table of windows-1251.
21001
21002 * international/ucs-tables.el (ucs-set-table-for-input):
21003 If translation-table-for-input of a coding system is a symbol, get
21004 its translation-table property.
21005
21006 * international/code-pages.el: Don't register a coding system into
21007 non-iso-charset-alist more than once.
21008 (cp-make-coding-system): Likewise.
21009
21010 2005-05-26 John Wiegley <johnw@newartisans.com>
21011
21012 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
21013 `eshell-resume-eval' is wrapped in a list, it indicates that the
21014 command was run asynchronously. In that case, unwrap the value
21015 before checking the delimiter value.
21016
21017 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
21018 character before a space at the end of a line is \, assume the space
21019 is part of the last argument rather than a final argument separator.
21020
21021 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
21022 is in use, and the target is `t' or `nil' (which are the most common
21023 values), don't assume that the symbol target is a buffer.
21024
21025 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
21026
21027 * calendar/calendar.el (calendar-mode-line-format):
21028 Use mode-line-highlight as mouse-face.
21029
21030 * time.el (display-time-string-forms, display-time-update):
21031 Use mode-line-highlight as mouse-face.
21032
21033 2005-05-26 Jay Belanger <belanger@truman.edu>
21034
21035 * calc/calc.el (calc-language-alist): Remove extra defvar.
21036
21037 2005-05-26 Lute Kamstra <lute@gnu.org>
21038
21039 * arc-mode.el (archive-mode):
21040 * bookmark.el (bookmark-read-annotation-mode)
21041 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
21042 * bs.el (bs-mode):
21043 * calc/calc-yank.el (calc-edit-mode):
21044 * calc/calc.el (calc-mode, calc-trail-mode):
21045 * calculator.el (calculator-mode):
21046 * chistory.el (command-history-mode):
21047 * comint.el:
21048 * cus-edit.el (custom-mode):
21049 * descr-text.el (describe-text-mode):
21050 * ebuff-menu.el (Electric-buffer-menu-mode):
21051 * ediff-util.el (ediff-mode):
21052 * emacs-lisp/re-builder.el (reb-mode):
21053 * emulation/vi.el (vi-mode-setup):
21054 * emulation/ws-mode.el (wordstar-mode):
21055 * eshell/esh-mode.el (eshell-mode):
21056 * forms.el (forms-mode):
21057 * help-mode.el (help-mode):
21058 * hexl.el (hexl-mode):
21059 * ibuffer.el (ibuffer-mode):
21060 * ielm.el (inferior-emacs-lisp-mode):
21061 * info.el (Info-mode, Info-edit-mode):
21062 * international/swedish.el:
21063 * ledit.el (ledit-from-lisp-mode):
21064 * locate.el (locate-mode):
21065 * mail/rmail.el (rmail-mode):
21066 * mail/rmailedit.el (rmail-edit-mode):
21067 * mail/rmailsum.el (rmail-summary-mode):
21068 * mail/supercite.el (sc-electric-mode):
21069 * net/eudc.el (eudc-mode):
21070 * net/quickurl.el (quickurl-list-mode):
21071 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
21072 * obsolete/ooutline.el (outline-mode):
21073 * obsolete/options.el (Edit-options-mode):
21074 * obsolete/rnews.el (news-mode):
21075 * obsolete/rnewspost.el (news-reply-mode):
21076 * play/5x5.el (5x5-mode):
21077 * play/decipher.el (decipher-mode, decipher-stats-mode):
21078 * play/gomoku.el (gomoku-mode):
21079 * play/snake.el (snake-mode):
21080 * play/solitaire.el (solitaire-mode):
21081 * play/tetris.el (tetris-mode):
21082 * progmodes/ada-mode.el (ada-mode):
21083 * progmodes/antlr-mode.el (antlr-mode):
21084 * progmodes/autoconf.el (autoconf-mode):
21085 * progmodes/dcl-mode.el (dcl-mode):
21086 * progmodes/delphi.el (delphi-mode):
21087 * progmodes/ebrowse.el (ebrowse-tree-mode)
21088 (ebrowse-electric-list-mode, ebrowse-member-mode)
21089 (ebrowse-electric-position-mode):
21090 * progmodes/f90.el (f90-mode):
21091 * progmodes/fortran.el (fortran-mode):
21092 * progmodes/icon.el (icon-mode):
21093 * progmodes/idlw-help.el (idlwave-help-mode):
21094 * progmodes/idlw-shell.el (idlwave-shell-mode):
21095 * progmodes/idlwave.el (idlwave-mode):
21096 * progmodes/inf-lisp.el (inferior-lisp-mode):
21097 * progmodes/m4-mode.el (m4-mode):
21098 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
21099 * progmodes/modula2.el (modula-2-mode):
21100 * progmodes/octave-inf.el (inferior-octave-mode):
21101 * progmodes/octave-mod.el (octave-mode):
21102 * progmodes/pascal.el (pascal-mode):
21103 * progmodes/sh-script.el (sh-mode):
21104 * progmodes/sql.el (sql-mode, sql-interactive-mode):
21105 * progmodes/vhdl-mode.el (vhdl-mode):
21106 * progmodes/xscheme.el (scheme-interaction-mode):
21107 * replace.el (occur-mode):
21108 * ses.el (ses-mode):
21109 * simple.el (completion-list-mode):
21110 * skeleton.el:
21111 * speedbar.el (speedbar-mode):
21112 * term.el (term-mode):
21113 * terminal.el (terminal-edit-mode):
21114 * textmodes/reftex-index.el (reftex-index-mode)
21115 (reftex-index-phrases-mode):
21116 * textmodes/reftex-sel.el (reftex-select-label-mode)
21117 (reftex-select-bib-mode):
21118 * textmodes/reftex-toc.el (reftex-toc-mode):
21119 * wdired.el (wdired-change-to-wdired-mode):
21120 * wid-browse.el (widget-browse-mode):
21121 Use run-mode-hooks.
21122
21123 * array.el (array-mode):
21124 * calendar/todo-mode.el (todo-mode):
21125 * man.el (Man-mode):
21126 * play/landmark.el (lm-mode):
21127 * play/mpuz.el (mpuz-mode):
21128 Use kill-all-local-variables and run-mode-hooks.
21129
21130 * subr.el (delay-mode-hooks): Specify indentation.
21131
21132 2005-05-26 Mark A. Hershberger <mah@everybody.org>
21133
21134 * xml.el (xml-substitute-special): Don't die for undefined xml
21135 entities.
21136
21137 2005-05-26 Jay Belanger <belanger@truman.edu>
21138
21139 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
21140 of nil.
21141
21142 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
21143
21144 * progmodes/gdb-ui.el (gdb-frame-address):
21145 Rename from gdb-current-address.
21146 (gdb-previous-frame-address): Rename from gdb-previous-address.
21147 (gdb-selected-frame): Rename from gdb-current-frame.
21148 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
21149 (gdb-frame-number): Rename from gdb-current-stack-level.
21150 (gdb-ann3): Match new mode-name for disassembly buffer.
21151 Extend initialization of variables.
21152 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
21153 (gdb-memory-mode): Use mouse-face in header line.
21154 (gdb-assembler-buffer-name): Call it disassembly and give frame
21155 in mode line.
21156 (gdb-source-spec-regexp, gdb-assembler-custom)
21157 (gdb-invalidate-assembler, gdb-frame-handler):
21158 Make robust to leading zeroes in address format.
21159
21160 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
21161
21162 * textmodes/org.el (org-mode): Use `define-derived-mode' to
21163 define `org-mode'.
21164 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
21165
21166 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
21167
21168 * log-edit.el (log-edit-changelog-entries): Distinguish between
21169 filenames like xfns.c and fns.c.
21170
21171 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
21172
21173 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
21174 point after reverting.
21175 (Buffer-menu-make-sort-button): Handle the case where
21176 `Buffer-menu-use-header-line' is nil.
21177
21178 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
21179
21180 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
21181 New funcs. In minibuffer-local-completion-map bind `]', `/'
21182 and `:' to them.
21183
21184 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
21185
21186 * startup.el (normal-top-level): Allow modification of load-path while
21187 we're iterating over it.
21188
21189 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
21190
21191 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
21192 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
21193 (thumbs-resize-interactive, thumbs-insert-image)
21194 (thumbs-insert-thumb, thumbs-dired-show-marked)
21195 (thumbs-find-image-at-point, thumbs-delete-images)
21196 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
21197 (thumbs-increment-image-size, thumbs-decrement-image-size):
21198 Fix typos in docstrings.
21199
21200 2005-05-24 Andre Spiegel <spiegel@gnu.org>
21201
21202 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
21203 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
21204 (cperl-mode): Use them.
21205
21206 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
21207
21208 * window.el (quit-window, shrink-window-if-larger-than-buffer):
21209 Doc fixes.
21210
21211 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
21212
21213 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
21214 Bind C-d to gdb-inferior-io-eof.
21215
21216 * dired.el (dired-dnd-popup-notice): Use message-box.
21217
21218 2005-05-23 Masatake YAMATO <jet@gyve.org>
21219
21220 * bindings.el (mode-line-major-mode-keymap):
21221 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
21222
21223 * faces.el (mode-line-highlight): New face.
21224
21225 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
21226 as mouse-face.
21227
21228 * bindings.el (top-level, help-echo, mode-line-modified)
21229 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
21230 as mouse-face.
21231
21232 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
21233
21234 * progmodes/cc-engine.el (c-guess-basic-syntax):
21235 Remove spurious call to `zerop'.
21236
21237 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
21238
21239 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
21240
21241 CC Mode update to 5.30.10:
21242
21243 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
21244 could go past the limit in decoration level 2, thereby causing
21245 errors during interactive fontification.
21246
21247 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
21248 the file is evaluated interactively.
21249
21250 * cc-engine.el (c-guess-basic-syntax): Handle operator
21251 declarations somewhat better in C++.
21252
21253 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
21254 make use of `run-mode-hooks' which has been added in Emacs 21.1.
21255 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
21256 (awk-mode): Use it.
21257 (make-local-hook): Suppress warning about obsoleteness.
21258
21259 * cc-engine.el, cc-align.el, cc-cmds.el
21260 (c-append-backslashes-forward, c-delete-backslashes-forward)
21261 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
21262 Compensate for return value from `forward-line' when it has moved
21263 but not to a different line due to eob.
21264
21265 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
21266 `objc-method-intro' and `objc-method-args-cont'.
21267
21268 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
21269
21270 CC Mode update to 5.30.10:
21271
21272 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
21273 in the copyright statement. Incidentally, change "along with GNU
21274 Emacs" to "along with this program" where it occurs.
21275
21276 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
21277 so that it is interactive, hence can be found by M-x awk-mode
21278 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
21279 <gmorris+emacs@ast.cam.ac.uk>.
21280
21281 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
21282 Mode's regexps.
21283
21284 2005-05-23 Kevin Ryde <user42@zip.com.au>
21285
21286 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
21287 c-parse-state, to avoid a lisp error (on bad code).
21288
21289 2005-05-23 Lute Kamstra <lute@gnu.org>
21290
21291 * subr.el (font-lock-defaults): Remove defvar as it's already
21292 defined in font-core.el.
21293
21294 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
21295
21296 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
21297
21298 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
21299 more general and work when GDB variable "print pretty" is on,
21300 as with Emacs, for example.
21301
21302 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
21303
21304 * font-core.el: Update comment.
21305
21306 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
21307 Use `after-change-major-mode-hook' instead of `find-file-hook'.
21308
21309 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
21310
21311 2005-05-22 Eli Zaretskii <eliz@gnu.org>
21312
21313 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
21314 and `yank-handler' in the doc strings.
21315
21316 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
21317
21318 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
21319
21320 2005-05-22 Richard M. Stallman <rms@gnu.org>
21321
21322 * help.el (describe-key): Move print-help-return-message call
21323 out of conditional.
21324
21325 * progmodes/etags.el (list-tags): Use with-no-warnings.
21326
21327 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
21328 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
21329 (starttls-extra-args, starttls-extra-arguments): Add defvars.
21330
21331 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
21332
21333 * language/viet-util.el (viet-viscii-nonascii-translation-table):
21334 Add defvar.
21335
21336 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
21337 Use defvar, not defconst.
21338
21339 * hexl.el (hexl-follow-line): Use with-no-warnings.
21340
21341 * emulation/tpu-extras.el: Use write-file-functions instead of
21342 write-file-hooks.
21343
21344 * dired.el (dired-font-lock-keywords): Fontify files with junk
21345 extensions even if marked by -F.
21346
21347 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
21348
21349 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
21350 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
21351 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
21352 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
21353 (concatenate, list-length, get*, getf, cl-remprop):
21354 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
21355 (etypecase, progv, lexical-let, lexical-let*)
21356 (multiple-value-bind, multiple-value-setq, shiftf):
21357 Improve argument/docstring consistency.
21358
21359 * subr.el (focus-frame, unfocus-frame): Revert deletion on 2005-05-01.
21360
21361 2005-05-22 Andre Spiegel <spiegel@gnu.org>
21362
21363 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
21364 doesn't exist.
21365
21366 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
21367 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
21368
21369 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
21370
21371 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
21372 already deleted variables: auto-fill-hook, blink-paren-hook,
21373 lisp-indent-hook, inhibit-local-variables, unread-command-event,
21374 suspend-hooks, comment-indent-hook, meta-flag,
21375 before-change-function, after-change-function,
21376 font-lock-doc-string-face.
21377
21378 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
21379
21380 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
21381
21382 2005-05-21 Eli Zaretskii <eliz@gnu.org>
21383
21384 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
21385 rmail-dont-reply-to.
21386
21387 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
21388
21389 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
21390 literal blank when splitting new-header-values.
21391
21392 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
21393
21394 * calendar/cal-menu.el (cal-menu-update): Add separator as a
21395 string so that tmm doesn't create a completion entry for it.
21396
21397 * textmodes/table.el (table-disable-menu): Ditto.
21398
21399 2005-05-21 Richard M. Stallman <rms@gnu.org>
21400
21401 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
21402
21403 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
21404
21405 * net/rcompile.el (remote-compile): Use compilation-start.
21406
21407 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
21408
21409 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
21410
21411 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
21412 Default to makefile-bsdmake-mode on BSD systems.
21413
21414 * imenu.el (imenu-generic-expression, imenu--generic-function'):
21415 REGEXP may also be a search function now. The part of doc-string
21416 for describing the structure was 95% identical to that of
21417 `imenu--generic-function'. Unify it there.
21418
21419 * progmodes/make-mode.el (makefile-imenu-generic-expression):
21420 Use function to find dependencies, because regexp alone is so complex,
21421 it easily goes into an endless loop.
21422 (makefile-makepp-mode): Also add submenu for Perl functions
21423 defined in the makefile.
21424 (makefile-bsdmake-mode): Special imenu-generic-expression no
21425 longer needed, due to function call.
21426 (makefile-match-dependency): Take BOUND into account when checking
21427 if we're through.
21428
21429 2005-05-20 Jay Belanger <belanger@truman.edu>
21430
21431 * calc/calc-units.el (calc-invalidate-units-table):
21432 Use inhibit-read-only.
21433 (math-build-units-table-buffer): Use view-mode.
21434
21435 2005-05-20 David Kastrup <dak@gnu.org>
21436
21437 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
21438 easy-menu-add is not a nop on Emacs; and clarify when to call it.
21439
21440 2005-05-20 Lute Kamstra <lute@gnu.org>
21441
21442 * diff-mode.el (diff-header-face, diff-file-header-face)
21443 (diff-index-face, diff-hunk-header-face, diff-removed-face)
21444 (diff-added-face, diff-changed-face, diff-function-face)
21445 (diff-context-face, diff-nonexistent-face): Put them in the
21446 diff-mode customization group.
21447
21448 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
21449
21450 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
21451
21452 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
21453
21454 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
21455 Minor regexp-optimization.
21456
21457 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
21458
21459 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
21460 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
21461 (org-agenda-add-time-grid-maybe): New function.
21462 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
21463 (org-table-create): `dotimes' instead of `mapcar'.
21464 (org-xor): Simplify implementation.
21465 (org-agenda): `inhibit-redisplay' turned on.
21466 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
21467 a consistent line after a state change.
21468 (org-agenda-remove-times-when-in-prefix): New option.
21469 (org-prefix-has-time): New variable.
21470 (org-parse-time-string): Optional argument NODEFAULT.
21471 (org-format-agenda-item): Parse items for time-of-day
21472 specifications and move these into the prefix if possible.
21473 (org-agenda-priority): Get current heading, not previous heading
21474 during agenda remote editing.
21475
21476 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
21477
21478 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
21479 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
21480 (remove-duplicates, delete-duplicates, substitute)
21481 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
21482 (nsubstitute-if-not, find, find-if, find-if-not, position)
21483 (position-if, position-if-not, count, count-if, count-if-not)
21484 (mismatch, search, sort*, stable-sort, merge, member*)
21485 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
21486 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
21487 (intersection, nintersection, set-difference, nset-difference)
21488 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
21489 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
21490 (nsublis, tree-equal): Improve argument/docstring consistency.
21491
21492 * subr.el (send-string, send-region): Remove obsolescence declaration.
21493 (window-dot, set-window-dot, read-input, show-buffer)
21494 (eval-current-buffer, string-to-int):
21495 Add release number to obsolescence declarations.
21496
21497 2005-05-19 Kim F. Storm <storm@cua.dk>
21498
21499 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
21500 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
21501
21502 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
21503
21504 * faces.el (list-faces-display): Make back button respect optional
21505 regexp arg.
21506
21507 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
21508
21509 * calculator.el (calculator-radix-grouping-mode)
21510 (calculator-radix-grouping-digits, calculator-displayer)
21511 (calculator-radix-grouping-separator, calculator-copy-displayer):
21512 * dabbrev.el (dabbrev-search-these-buffers-only):
21513 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
21514 (diff-advance-after-apply-hunk, diff-mode-hook)
21515 (diff-minor-mode-prefix):
21516 * imenu.el (imenu-use-popup-menu):
21517 * jit-lock.el (jit-lock-context-time):
21518 * newcomment.el (comment-fill-column, comment-column)
21519 (comment-style, comment-padding, comment-multi-line)
21520 (comment-empty-lines, comment-auto-fill-only-comments):
21521 * reveal.el (reveal-around-mark):
21522 * uniquify.el (uniquify-buffer-name-style)
21523 (uniquify-after-kill-buffer-p)
21524 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
21525 (uniquify-min-dir-content, uniquify-separator)
21526 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
21527 * w32-vars.el (w32-fixed-font-alist):
21528 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
21529 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
21530 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
21531 * progmodes/perl-mode.el (perl-indent-level)
21532 (perl-continued-statement-offset, perl-continued-brace-offset)
21533 (perl-brace-offset, perl-brace-imaginary-offset)
21534 (perl-label-offset, perl-indent-continued-arguments)
21535 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
21536 * progmodes/tcl.el (tcl-indent-level)
21537 (tcl-continued-indent-level, tcl-auto-newline)
21538 (tcl-tab-always-indent, tcl-electric-hash-style)
21539 (tcl-help-directory-list, tcl-use-smart-word-finder)
21540 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
21541 (inferior-tcl-source-command):
21542 * textmodes/fill.el (enable-kinsoku):
21543 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
21544 * textmodes/table.el (table-yank-handler):
21545 Specify missing group (and type, if simple) in defcustom.
21546
21547 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
21548
21549 * progmodes/compile.el (compilation-finish-function): Fix defvar.
21550
21551 2005-05-19 Richard M. Stallman <rms@gnu.org>
21552
21553 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
21554
21555 * subr.el (event-basic-type): Don't get an error.
21556 (left-fringe-p): Function deleted.
21557
21558 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
21559 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
21560
21561 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
21562 in recursive copy.
21563
21564 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
21565
21566 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
21567
21568 * emacs-lisp/bytecomp.el
21569 (byte-compile-file-form-custom-declare-variable):
21570 Call byte-compile-nogroup-warn if appropriate.
21571
21572 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
21573 (compilation-set-window): Don't call left-fringe-p; do it directly.
21574
21575 2005-05-19 Jay Belanger <belanger@truman.edu>
21576
21577 * calc/calc-graph.el (calc-graph-format-data): Make sure
21578 var-PlotRejects is bound before trying to check its value.
21579
21580 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
21581
21582 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
21583 definition of this variable from reftex-global.el to reftex.el,
21584 because it is needed in the menu.
21585
21586 2005-05-19 Lute Kamstra <lute@gnu.org>
21587
21588 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
21589 years are fixed. Don't insert a space after a dash.
21590
21591 2005-05-19 Kim F. Storm <storm@cua.dk>
21592
21593 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
21594
21595 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
21596
21597 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
21598 strings, because (eq ... ?\\) is fairly frequent.
21599
21600 * progmodes/make-mode.el (makefile-add-this-line-targets):
21601 Simplify and integrate into `makefile-pickup-targets'.
21602 (makefile-add-this-line-macro): Simplify and integrate into
21603 `makefile-pickup-macros.
21604 (makefile-pickup-filenames-as-targets): Simplify.
21605 (makefile-previous-dependency, makefile-match-dependency):
21606 Don't stumble over `::'.
21607
21608 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
21609
21610 * subr.el (post-command-idle-hook, post-command-idle-delay):
21611 Remove obsoletion of post-command-idle-hook and
21612 post-command-idle-delay.
21613
21614 * faces.el (list-faces-display): Provide button when describe-face
21615 is called to take user back to the list of faces.
21616
21617 * help-fns.el (describe-variable): Remove hyperlinks in a
21618 variable's value as these are quite frequently inappropriate.
21619
21620 * follow.el (follow-submit-feedback, follow-mode):
21621 Remove references to post-command-idle-hook.
21622
21623 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
21624
21625 * progmodes/make-mode.el (makefile-previous-dependency)
21626 (makefile-match-dependency): Check for := (and in bsd mode also
21627 !=) to give a better result, even when font-lock is not on.
21628
21629 2005-05-18 Jay Belanger <belanger@truman.edu>
21630
21631 * calc/calc-help.el (calc-s-prefix-help):
21632 Add `calc-copy-special-constant' to help string.
21633
21634 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
21635
21636 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
21637
21638 2005-05-18 Jay Belanger <belanger@truman.edu>
21639
21640 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
21641 in linear factors are in proper order.
21642
21643 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
21644
21645 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
21646 Support for jurabib.
21647
21648 * textmodes/reftex.el (featurep): Define aliases for overlay
21649 commands, for XEmacs compatibility, and use these aliases in
21650 overlay initializations.
21651 (reftex-highlight): Use `reftex-move-overlay'.
21652 (reftex-unhighlight): Use `reftex-delete-overlay'.
21653 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
21654 (reftex-access-search-path): Use `reftex-uniquify' instead of
21655 `reftex-uniq'
21656
21657 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
21658 `before-string' property modification enables for Emacs as well.
21659 (reftex-select-item): Use `reftex-delete-overlay'.
21660 (reftex-select-mark): Use `reftex-make-overlay' and
21661 `reftex-overlay-put'.
21662 (reftex-select-unmark): Use `reftex-delete-overlay' and
21663 `reftex-overlay-put'.
21664
21665 2005-05-18 Lute Kamstra <lute@gnu.org>
21666
21667 * emacs-lisp/lisp.el (check-parens): Fix docstring.
21668
21669 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
21670
21671 * add-log.el (add-change-log-entry):
21672 * array.el (array-make-template, array-reconfigure-rows)
21673 (array-init-max-row, array-init-max-column)
21674 (array-init-columns-per-line, array-init-field-width):
21675 * replace.el (replace-match-maybe-edit, perform-replace):
21676 * textmodes/spell.el (spell-region):
21677 Replace `read-input' by `read-string'.
21678
21679 * forms.el (forms-mode):
21680 * finder.el (finder-compile-keywords):
21681 * shadowfile.el (shadow-read-files):
21682 Replace `eval-current-buffer' by `eval-buffer'.
21683
21684 * terminal.el (te-pass-through):
21685 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
21686 (ange-ftp-raw-send-cmd):
21687 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
21688 (send-process-next-char, telnet-initial-filter, telnet):
21689 Replace `send-string' by `process-send-string'.
21690
21691 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
21692 (prolog-consult-region): Replace `send-string' by
21693 `process-send-string'; replace `send-region' by `process-send-region'.
21694
21695 * progmodes/delphi.el (delphi-log-msg):
21696 Replace `set-window-dot' by `set-window-point'.
21697
21698 * subr.el (window-dot, set-window-dot, read-input, send-string)
21699 (send-region, show-buffer, eval-current-buffer):
21700 Make really obsolete, as the comment says.
21701
21702 2005-05-17 Kim F. Storm <storm@cua.dk>
21703
21704 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
21705 (cua--init-keymaps): Bind C-return instead of S-return to set
21706 rectangle mark.
21707
21708 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
21709 instead of S-return to toggle/clear rectangle mark.
21710
21711 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
21712
21713 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
21714 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
21715 Also fontify plain strings assigned to variables, mostly so that a
21716 colon has a face and is thus not taken as a dependency separator.
21717 (makefile-previous-dependency): Inline the new matcher, because it
21718 is too complex to work in both directions.
21719 (makefile-match-dependency): Eliminate `backward' arg (see above).
21720 Completely reimplemented so as to not sometimes go into an endless
21721 loop. It should also be more efficient, because first it only
21722 searches for `:', instead of applying the very complex regexp.
21723 (makefile-mode): Cancel `font-lock-support-mode', because blocks
21724 to be fontified in one piece can be too long for JIT.
21725 Makefiles are never *that* big.
21726
21727 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
21728
21729 * dired.el (dired-mode): Simplify.
21730
21731 2005-05-17 Lute Kamstra <lute@gnu.org>
21732
21733 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
21734 defcustom for the mode hook variable.
21735
21736 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
21737 Emacs Lisp Reference Manual.
21738
21739 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
21740
21741 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
21742 (evenp, list*):
21743 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
21744 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
21745
21746 * net/tramp-smb.el (tramp-smb-open-connection):
21747 Pass `tramp-chunksize' as fifth (required) argument.
21748
21749 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
21750
21751 * font-lock.el (lisp-font-lock-keywords-1):
21752 Set `font-lock-negation-char-face' for [^...] char group.
21753 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
21754
21755 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
21756 a var, and refine it to mask one more level of nested vars.
21757 (makefile-rule-action-regex): Turn it into a var, and refine it so
21758 it recognizes backslashed continuation lines as belonging to the
21759 same command.
21760 (makefile-macroassign-regex): Refine it so it recognizes
21761 backslashed continuation lines as belonging to the same command.
21762 (makefile-var-use-regex): Don't look at the next char, because it
21763 might be the same one to be skipped by the initial [^$], leading
21764 to an overlooked variable use.
21765 (makefile-make-font-lock-keywords): Remove two parameters, which
21766 are now variables that some of the modes set locally.
21767 Handle dependency and rule action matching through functions, because
21768 regexps alone match too often. Dependency matching now comes
21769 last, so it can check, whether a colon already matched something else.
21770 (makefile-mode): Inform that font-lock improves makefile parsing
21771 capabilities.
21772 (makefile-match-dependency, makefile-match-action): New functions.
21773
21774 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
21775
21776 * emacs-lisp/cl-extra.el (equalp): Doc fix.
21777
21778 * align.el (align-regexp):
21779 * ansi-color.el (ansi-color-get-face):
21780 * array.el (array-reconfigure-rows, array-init-max-row)
21781 (array-init-max-column, array-init-columns-per-line)
21782 (array-init-field-width):
21783 * dired-aux.el (dired-trample-file-versions):
21784 * dired-x.el (dired-mark-sexp):
21785 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
21786 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
21787 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
21788 * faces.el (face-read-integer):
21789 * files.el (backup-extract-version, insert-directory):
21790 * hexl.el (hexl-insert-decimal-char):
21791 * server.el (server-process-filter):
21792 * shell.el (shell-extract-num):
21793 * startup.el (command-line-1):
21794 * term.el (term-command-hook):
21795 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
21796 (time-stamp-do-number):
21797 * time.el (display-time-update):
21798 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
21799 (timezone-fix-time):
21800 * vms-patch.el (vms-suspend-resume-hook):
21801 * calendar/appt.el (appt-convert-time):
21802 * calendar/cal-bahai.el (mark-bahai-diary-entries):
21803 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
21804 * calendar/cal-islam.el (mark-islamic-diary-entries):
21805 * calendar/calendar.el (calendar-cursor-to-date)
21806 (calendar-star-date):
21807 * calendar/diary-lib.el (diary-attrtype-convert)
21808 (mark-diary-entries, diary-entry-time):
21809 * calendar/solar.el (solar-get-number):
21810 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
21811 * emacs-lisp/re-builder.el (reb-display-subexp):
21812 * emulation/edt.el (edt-set-scroll-margins):
21813 * emulation/tpu-extras.el (tpu-set-scroll-margins):
21814 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
21815 (vip-get-ex-count):
21816 * emulation/viper-ex.el (viper-get-ex-token)
21817 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
21818 * international/fontset.el (fontset-plain-name):
21819 * mail/feedmail.el (feedmail-look-at-queue-directory):
21820 * mail/mailalias.el (mail-get-names):
21821 * mail/rmail.el (rmail-convert-to-babyl-format):
21822 * mail/rmailsum.el (rmail-make-basic-summary-line)
21823 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
21824 (rmail-summary-goto-msg):
21825 * mail/smtpmail.el (smtpmail-read-response):
21826 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
21827 (ange-ftp-vms-add-file-entry):
21828 * play/gametree.el (gametree-looking-at-ply)
21829 (gametree-current-branch-score):
21830 * progmodes/ada-xref.el (ada-prj-find-prj-file)
21831 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
21832 * progmodes/cperl-mode.el (condition-case):
21833 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
21834 (ebrowse-set-member-buffer-column-width)
21835 (ebrowse-select-1st-to-9nth):
21836 * progmodes/etags.el (etags-snarf-tag):
21837 * progmodes/flymake.el (flymake-parse-line):
21838 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
21839 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
21840 (idlwave-shell-menu-def):
21841 * progmodes/ps-mode.el (ps-run-goto-error):
21842 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
21843 (vhdl-speedbar-contract-level):
21844 * term/mac-win.el (x-handle-numeric-switch):
21845 * term/sun-mouse.el (sun-get-frame-data):
21846 * term/w32-win.el (x-handle-numeric-switch):
21847 * term/x-win.el (x-handle-numeric-switch):
21848 * textmodes/ispell.el (ispell-parse-output):
21849 * textmodes/nroff-mode.el (nroff-outline-level):
21850 * textmodes/reftex-cite.el (reftex-bib-sort-year)
21851 (reftex-bib-sort-year-reverse, reftex-format-citation):
21852 * textmodes/reftex-parse.el (reftex-init-section-numbers)
21853 (reftex-section-number):
21854 * textmodes/texinfmt.el (texinfo-paragraphindent):
21855 Replace `string-to-int' by `string-to-number'.
21856
21857 * international/latexenc.el: Add page marker to force the "Local
21858 Variables:" string out of the last page.
21859
21860 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
21861
21862 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
21863 tooltip-change-major-mode.
21864 (gud-tooltip-print-command): Remove case where gud-minor-mode
21865 is gdb ("--fullname").
21866 (gud-tooltip-tips): Turn GUD tooltips off for this case and
21867 explain to user.
21868
21869 2005-05-16 Jay Belanger <belanger@truman.edu>
21870
21871 * calc/calc-store.el (calc-copy-special-constant): New function.
21872
21873 * calc/calc-ext.el (calc-init-extensions): Add binding for
21874 `calc-copy-special-constant'.
21875
21876 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
21877 for the `calc-copy-special-constant' command.
21878
21879 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
21880
21881 * subr.el (left-fringe-p): New function.
21882
21883 * progmodes/compile.el (compilation-setup): Set local value of
21884 overlay-arrow-string to "" always.
21885 (compilation-set-window): Left fringe then don't scroll.
21886 No left fringe then no arrow and scroll message to top.
21887 (compilation-context-lines): Adjust doc string accordingly.
21888
21889 2005-05-16 Kim F. Storm <storm@cua.dk>
21890
21891 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
21892 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
21893 (ido-wide-find-dir-or-delete-dir): New command for M-d.
21894 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
21895 (ido-read-file-name): Handle commands with ido property value
21896 equal to find-file as reading a file name, to allow C-d to enter dired.
21897 (ibuffer-find-file): Add ido property with value find-file.
21898
21899 2005-05-15 Kim F. Storm <storm@cua.dk>
21900
21901 * subr.el (open-network-stream-nowait): Remove.
21902 (open-network-stream-server): Remove.
21903
21904 2005-05-15 Richard M. Stallman <rms@gnu.org>
21905
21906 * faces.el (describe-face): Output a definition link button.
21907
21908 * help-mode.el (help-face-def): New button type.
21909
21910 * emacs-lisp/copyright.el (copyright-fix-years):
21911 Match properly if the first year is 2-digit.
21912 Don't mess up the whitespace after the years by filling.
21913
21914 * dired-aux.el (dired-mark-confirm):
21915 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
21916
21917 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
21918 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
21919 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
21920
21921 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
21922 Set font-lock-comment-start-skip.
21923
21924 * font-lock.el (font-lock-comment-start-skip): New variable.
21925 (font-lock-comment-end-skip): New variable.
21926 (font-lock-fontify-syntactically-region): Use them if non-nil.
21927
21928 2005-05-15 Jay Belanger <belanger@truman.edu>
21929
21930 * calc/calc-store.el (calc-store-value): Return a string rather
21931 than display it as a message.
21932 Use calc-var-name for variable name.
21933 (calc-store-into): Add the result of calc-store-value to message.
21934 (calc-copy-variable): Add a message.
21935 (calc-store-exchange): Improve error messages.
21936 (calc-store-binary, calc-store-map): Don't reset the values of
21937 special constants.
21938
21939 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
21940
21941 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
21942 manual to docstring.
21943
21944 * files.el (hack-local-variables-confirm): Add STRING argument.
21945 Make the function handle non file visiting buffers correctly.
21946 (hack-local-variables-prop-line, hack-local-variables)
21947 (hack-one-local-variable): Use STRING arg of
21948 `hack-local-variables-confirm'.
21949
21950 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
21951
21952 Sync with Tramp 2.0.49.
21953
21954 * net/tramp.el (tramp-handle-dired-call-process)
21955 (tramp-handle-insert-directory):`insert-buffer' cannot be used
21956 because the contents of the Tramp buffer is changed before
21957 insertion (`expand-file' and alike).
21958 (tramp-handle-insert-directory): If `localname' has an empty
21959 nondirectory name, it must not be quoted.
21960 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
21961 variable `tramp-chunksize'. Change callees.
21962 (tramp-open-connection-setup-interactive-shell): Check remote host
21963 for buggy `send-process-string' implementation.
21964 Set `tramp-chunksize' if found. Reported by Michael Kifer
21965 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
21966 (tramp-handle-shell-command): `insert-buffer' cannot be used
21967 because the contents of the Tramp buffer is changed before
21968 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
21969 <frederic.bothamy@free.fr>.
21970 (tramp-set-auto-save): Actions should be done for Tramp file name
21971 handler only. Ange-FTP has its own auto-save mechanism.
21972 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
21973 (tramp-set-auto-save-file-modes): Set file modes of
21974 `buffer-auto-save-file-name' to ?\600 as fallback solution.
21975 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
21976 (tramp-bug): Remove obsolete variable.
21977 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
21978 for presence of `mml-mode'. Make it running for older Emacsen as well.
21979
21980 2005-05-14 John Paul Wallington <jpw@pobox.com>
21981
21982 * ibuf-ext.el (define-ibuffer-filter filename):
21983 If `dired-directory' is a list, use its car.
21984
21985 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
21986
21987 * ibuffer.el (define-ibuffer-column filename):
21988 If `dired-directory' is a list, use its car.
21989
21990 2005-05-14 Richard M. Stallman <rms@gnu.org>
21991
21992 * subr.el (symbol-file): Doc fix.
21993
21994 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
21995 (byte-compile-form): Call byte-compile-nogroup-warn.
21996 (byte-compile-warning-types): Doc fix.
21997
21998 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
21999
22000 * progmodes/cc-engine.el (c-literal-faces):
22001 Add font-lock-comment-delimiter-face.
22002
22003 * net/net-utils.el (dig): Use with-no-warnings.
22004
22005 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
22006 (sc-recite-frame-alist, sc-default-cite-frame)
22007 (sc-default-uncite-frame, sc-default-recite-frame)
22008 (sc-attrib-selection-list, sc-rewrite-header-list):
22009 Mark as risky-local-variable.
22010
22011 * international/ogonek.el (ogonek-jak, ogonek-how):
22012 Don't use beginning-of-buffer.
22013
22014 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
22015
22016 * calendar/solar.el (solar-data-list): Move definition up.
22017
22018 * dnd.el (dnd-protocol-alist): Add autoload.
22019
22020 * progmodes/sh-script.el: Many doc usage fixes.
22021 (sh-indent-after-do): Change default to match common styles.
22022
22023 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
22024
22025 * files.el (interpreter-mode-alist)
22026 (auto-mode-interpreter-regexp): Doc fixes.
22027
22028 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
22029
22030 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
22031
22032 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
22033
22034 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22035
22036 * dired.el (dired-mode): make-variable-buffer-local =>
22037 make-local-variable.
22038
22039 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22040
22041 * term/mac-win.el (mac-select-convert-to-string): Try coding
22042 systems in mac-script-code-coding-systems if specified one cannot
22043 encode string for `com.apple.traditional-mac-plain-text'.
22044
22045 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
22046
22047 * progmodes/make-mode.el (makefile-targets-face)
22048 (makefile-shell-face, makefile-makepp-perl-face): New faces.
22049 (makefile-dependency-regex): Fix it to not make the colon in
22050 $(var:a=b) special.
22051 (makefile-rule-action-regex): New regexp for highlighting embedded
22052 Shell strings.
22053 (makefile-macroassign-regex): Handle != for highlighting as
22054 embedded Shell strings.
22055 (makefile-var-use-regex): New const.
22056 (makefile-statements, makefile-automake-statements)
22057 (makefile-gmake-statements, makefile-makepp-statements)
22058 (makefile-bsdmake-statements): New consts.
22059 (makefile-make-font-lock-keywords): New function.
22060 (makefile-automake-font-lock-keywords)
22061 (makefile-gmake-font-lock-keywords)
22062 (makefile-makepp-font-lock-keywords)
22063 (makefile-bsdmake-font-lock-keywords): New consts.
22064 (makefile-mode-map): Add switchers between the various submodes.
22065 (makefile-mode): Document the availability of the variants.
22066 (makefile-automake-mode, makefile-gmake-mode)
22067 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
22068
22069 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
22070 new variants of makefile-mode.
22071
22072 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22073
22074 * font-lock.el (font-lock-comment-delimiter-face): Fix up
22075 the inheritance.
22076
22077 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
22078
22079 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
22080 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
22081
22082 * files.el (normal-mode): Extend the scope of the
22083 `enable-local-variables' binding to include the `set-auto-mode' call.
22084 (magic-mode-alist): Doc fix.
22085
22086 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22087
22088 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
22089 font-lock-comment-face rather than copying its setting.
22090
22091 2005-05-12 Andreas Schwab <schwab@suse.de>
22092
22093 * eshell/esh-mode.el (eshell-send-input): Doc fix.
22094
22095 2005-05-12 Lute Kamstra <lute@gnu.org>
22096
22097 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
22098 defcustom for the mode hook variable. Delete the last argument.
22099 * generic-x.el: Fix callers of define-generic-mode.
22100 (generic-x-modes): Delete group.
22101 (show-tabs-tab-face, show-tabs-space-face): Put them in the
22102 generic-x customization group.
22103
22104 2005-05-12 Kim F. Storm <storm@cua.dk>
22105
22106 * font-lock.el (font-lock-negation-char-face): Default to "off".
22107
22108 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
22109 font-lock-negation-char-face to ! in !=.
22110
22111 2005-05-12 Masatake YAMATO <jet@gyve.org>
22112
22113 * add-log.el (find-change-log): Fix typos in the docstring
22114 of function.
22115
22116 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
22117
22118 * international/latexenc.el (latexenc-find-file-coding-system):
22119 Avoid `re-search-forward' when looking for input encoding because
22120 of speed and safety. Better regular expressions for recognizing
22121 input encoding. Limit a search for TeX-master/tex-main-file to
22122 the local variable section.
22123
22124 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
22125
22126 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
22127 syntax of $ to "'" (quote).
22128
22129 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
22130
22131 * dnd.el (dnd-protocol-alist): Improve custom type.
22132
22133 * dired.el (dired-dnd-protocol-alist): New variable.
22134 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
22135 `dired-mode-hook' to the end.
22136
22137 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
22138
22139 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
22140 comment-end if comment-start-skip is not set.
22141 Obey the font-lock-comment-delimiter-face variables.
22142
22143 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
22144
22145 * files.el (executable-find): Move from executable.el. Use
22146 locate-file.
22147 * progmodes/executable.el (executable-find): Move to files.el.
22148
22149 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
22150 when trying to ensure forward progress.
22151
22152 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
22153
22154 * mouse-sel.el (mouse-sel-follow-link-p): New function.
22155 (mouse-select, mouse-select-internal, mouse-extend-internal):
22156 Use it to implement mouse-1-click-follows-link functionality.
22157
22158 2005-05-11 Richard M. Stallman <rms@gnu.org>
22159
22160 * font-lock.el (font-lock-fontify-syntactically-region):
22161 Use font-lock-comment-delimiter-face for comment delimiters.
22162
22163 2005-05-10 Jay Belanger <belanger@truman.edu>
22164
22165 * calc/calc-help.el (calc-m-prefix-help): Add mention of
22166 preserving embedded modes.
22167
22168 2005-05-10 Richard M. Stallman <rms@gnu.org>
22169
22170 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
22171
22172 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
22173 Move from ada-stmt.el.
22174 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
22175
22176 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
22177 Move to ada-mode.el.
22178 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
22179
22180 * cus-edit.el (custom-file): Call file-chase-links.
22181
22182 * files.el (read-directory-name): Fix previous change.
22183 (hack-local-variables-confirm): New function.
22184 (hack-local-variables-prop-line, hack-local-variables)
22185 (hack-one-local-variable): Use it.
22186
22187 2005-05-10 Lute Kamstra <lute@gnu.org>
22188
22189 * font-lock.el (font-lock-keywords-alist)
22190 (font-lock-removed-keywords-alist): Clarify docstrings.
22191
22192 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
22193
22194 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
22195 (gdb-source-info): Check for preprocessor info.
22196 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
22197 a macro for a function.
22198 (gdb-info-breakpoints-custom): Try to find file again if not already
22199 found (user might have used GDB dir command).
22200 (gdb-get-location): Update gdb-location-alist correctly for change
22201 to gdb-info-breakpoints-custom.
22202
22203 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
22204 (gud-tooltip-print-command): Add gdbmi case.
22205 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
22206 preprocessor info.
22207
22208 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
22209
22210 * startup.el (fancy-splash-insert): Fix typo in doc string.
22211
22212 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
22213
22214 * obsolete/float.el (string-to-float):
22215 * obsolete/hilit19.el (hilit-add-pattern):
22216 * obsolete/rnews.el (news-parse-range, news-select-message)
22217 (news-get-pruned-list-of-files): Replace `string-to-int' by
22218 `string-to-number'.
22219
22220 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
22221 `find-file-not-found-hooks'; use `add-hook'.
22222 (uncompress-while-visiting): Set `write-file-functions', not
22223 `write-file-hooks'; use `add-hook'.
22224
22225 2005-05-09 Kim F. Storm <storm@cua.dk>
22226
22227 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
22228 (cua-paste): Handle clipboard action.
22229 (cua--init-keymaps): Remap clipboard-kill-region and
22230 clipboard-kill-ring-save.
22231
22232 2005-05-08 Eli Zaretskii <eliz@gnu.org>
22233
22234 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
22235 Improve commentary.
22236
22237 * simple.el (next-error-overlay-arrow-position): Revert the change
22238 made on 2005-04-30.
22239
22240 2005-05-07 Jay Belanger <belanger@truman.edu>
22241
22242 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
22243 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
22244 `calc-sel-reselect'.
22245
22246 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
22247 Calc is in embedded mode.
22248
22249 2005-05-07 Eli Zaretskii <eliz@gnu.org>
22250
22251 * progmodes/compile.el (compilation-setup):
22252 Set overlay-arrow-string to an empty string on text terminals.
22253
22254 * textmodes/ispell.el (ispell-program-name): Try looking for
22255 "aspell" along exec-path, and if found, use it as the default
22256 speller program.
22257
22258 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
22259
22260 * international/mule.el (sgml-xml-auto-coding-function):
22261 Recognize encoding='FOO' in single quotes as well as in double quotes.
22262
22263 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
22264
22265 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
22266 as well as `interactive', so that defmacro* would recognize
22267 `declare' forms.
22268
22269 2005-05-07 Eli Zaretskii <eliz@gnu.org>
22270
22271 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
22272 Explain more about the LIGHTER arg's usage in the doc string.
22273 Add commentary to clarify what the code does. Fix the regexp that
22274 strips whitespace from LIGHTER. Quote LIGHTER before using it,
22275 since it could have characters special to regular expressions.
22276
22277 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
22278
22279 * replace.el (occur-1): Bind inhibit-read-only so that
22280 erase-buffer doesn't barf on read-only text properties (likewise
22281 for add-text-properties in occur-engine). Mark buffer as unmodified.
22282 (occur-engine): Don't set buffer-read-only here.
22283
22284 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22285
22286 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
22287 list-buffers-directory. This caused the *cvs-commit* buffer to be
22288 sometimes mistakenly reused as a *cvs* buffer.
22289
22290 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
22291
22292 * tooltip.el: Move code for GUD tooltips into gud.el.
22293 (require): CL no longer needed to compile case.
22294 (tooltip-mode): Do not toggle functions for GUD tooltips.
22295 (tooltip-gud-tips-p): Remove. Replace with minor mode
22296 gud-tooltip-mode in gud.el.
22297 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
22298 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
22299 tooltip-gud prefix with gud-tooltip and obsolete.
22300 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
22301 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
22302 (tooltip-mouse-motion): Mouse movement functions/variable.
22303 Rename in gud.el by adding gud prefix.
22304 (tooltip-gud-original-filter, tooltip-gud-dereference)
22305 (tooltip-gud-event, tooltip-toggle-gud-tips)
22306 (tooltip-gud-process-output, tooltip-gud-print-command)
22307 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
22308 gud.el by replacing tooltip-gud prefix with gud-tooltip.
22309 (gdb-tooltip-print): Move to gdb-ui.el.
22310
22311 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
22312 (require): CL needed to compile case.
22313 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
22314 tooltip-gud-tips-p. Make it a minor-mode.
22315 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
22316 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
22317 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
22318 (gud-tooltip-change-major-mode)
22319 (gud-tooltip-activate-mouse-motions-if-enabled)
22320 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
22321 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
22322 (gud-tooltip-original-filter, gud-tooltip-dereference)
22323 (gud-tooltip-event, tooltip-toggle-gud-tips)
22324 (gud-tooltip-process-output, gud-tooltip-print-command)
22325 (gud-tooltip-tips): Move from tooltip.el.
22326
22327 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
22328 (gdb-cpp-define-alist-flags): Doc fix.
22329 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
22330 gud-tooltip-mode is t.
22331
22332 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22333
22334 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
22335 evaporate if their text is deleted.
22336 (goto-address-at-point): Make it work as a mouse binding as well.
22337 (goto-address-at-mouse): Obsolete it. Update users.
22338
22339 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
22340
22341 * calendar/appt.el (top-level): No longer activate on load.
22342
22343 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
22344
22345 * calendar/cal-bahai.el (mark-bahai-diary-entries):
22346 * net/webjump.el (webjump):
22347 * progmodes/idlw-help.el (idlwave-do-context-help1)
22348 (idlwave-highlight-linked-completions):
22349 * textmodes/po.el (po-find-file-coding-system-guts):
22350 Replace `assoc-ignore-case' by `assoc-string'.
22351
22352 2005-05-06 Eli Zaretskii <eliz@gnu.org>
22353
22354 * files.el (locate-file): Doc fix.
22355
22356 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
22357 Remove the redundant test for ms-dos.
22358
22359 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
22360 look for the preprocessor with exec-suffixes. If not found in
22361 standard places, look in exec-path. Remove most of the tests that
22362 used system-type.
22363
22364 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
22365
22366 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
22367
22368 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
22369 file-name clash with jka-compr.el on 8+3 filesystems.
22370
22371 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22372
22373 * term/mac-win.el: Don't define or bind scroll bar functions if
22374 x-toolkit-scroll-bars is t.
22375 (x-select-text, x-get-selection-value): Clear
22376 x-last-selected-text-clipboard if x-select-enable-clipboard is
22377 nil.
22378 (PRIMARY): Put mac-scrap-name property.
22379 (mac-select-convert-to-file-url): New function.
22380 (public.file-url): New selection target type. Add to
22381 selection-converter-alist.
22382 (x-get-selection, x-selection-value): Handle it.
22383 (x-cut-buffer-or-selection-value): New alias.
22384
22385 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
22386
22387 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
22388 entry to avoid calling bibtex-find-entry with arg global
22389 being t. Remove arg key.
22390 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
22391 (bibtex-copy-summary-as-kill): Change accordingly.
22392
22393 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
22394
22395 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
22396 (org-agenda-date-later): Use with-current-buffer.
22397
22398 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
22399
22400 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
22401 (define-obsolete-variable-alias): Doc Fixes.
22402
22403 2005-05-06 Kim F. Storm <storm@cua.dk>
22404
22405 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
22406 vertical-motion when selective-display is active.
22407
22408 * ido.el (ido-setup-hook): New hook.
22409 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
22410 (ido-input-stack): New var.
22411 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
22412 ido-next-work-file binding to M-O.
22413 Bind M-f to ido-wide-find-file-or-pop-dir.
22414 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
22415 (ido-read-internal): Run ido-setup-hook.
22416 Catch quit in read-file-name and read-string to cancel edit.
22417 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
22418 Automatically pop-all when completing a directory name (RET).
22419 (ido-file-internal): Add with-no-warnings around ffap and dired code.
22420 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
22421 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
22422 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
22423 New functions for M-b/M-f to move among the directory components.
22424 (ido-make-merged-file-list): Catch quit to cancel merge.
22425 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
22426 (ido-completion-help): No warnings for ido-completion-buffer-full.
22427
22428 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
22429
22430 * font-lock.el (font-lock-negation-char-face): New face and variable.
22431 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
22432 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
22433 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
22434 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
22435
22436 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
22437
22438 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
22439 Fix typo in docstring.
22440
22441 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
22442 (ebrowse-print-statistics-line)
22443 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
22444
22445 * term/w32-win.el (image-library-alist): Add additional name for
22446 Xpm library.
22447
22448 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
22449
22450 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
22451 use gcc instead of cpp.
22452
22453 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
22454 (gdb-create-define-alist): Use it.
22455 (gdb-cpp-define-alist-program): Update for MS-DOS.
22456
22457 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
22458
22459 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
22460
22461 2005-05-04 Richard M. Stallman <rms@gnu.org>
22462
22463 * help.el (describe-key): No error when UNTRANSLATED is nil.
22464
22465 * simple.el (line-move-1): Fix previous change to signal errors
22466 appropriately.
22467
22468 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
22469
22470 * calendar/icalendar.el (icalendar-version): Now at 0.12.
22471 (icalendar-duration-correction): Remove.
22472 (icalendar--get-event-properties): Split result at commas.
22473 (icalendar--decode-isoduration): New optional argument
22474 DURATION-CORRECTION.
22475 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
22476 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
22477 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
22478 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
22479 (icalendar--convert-anniversary-to-ical): New functions, extracted
22480 from icalendar-export-region, with bug fixes.
22481 (icalendar-export-region): Use the above functions.
22482 (icalendar-import-buffer): Check before saving diary file.
22483 (icalendar--convert-recurring-to-diary)
22484 (icalendar--convert-non-recurring-all-day-to-diary)
22485 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
22486 extracted from icalendar--convert-ical-to-diary, with bug fixes.
22487 (icalendar--convert-ical-to-diary): Use the above functions.
22488
22489 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
22490
22491 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
22492 Remove these recent additions.
22493 (c-mode): Restore to before 2005-04-28.
22494
22495 * progmodes/cc-vars.el (cc-define-list-program): Remove this
22496 recent addition.
22497
22498 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
22499 (gdb-define-alist): New variables.
22500 (gdb-create-define-alist): New function.
22501 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
22502 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
22503 with string-to-number.
22504 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
22505
22506 * progmodes/gud.el: Replace string-to-int with string-to-number.
22507 (gud-find-file): Handle gdb-define-alist.
22508
22509 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
22510
22511 2005-05-02 Jay Belanger <belanger@truman.edu>
22512
22513 * calc/calc-aent.el (math-read-token):
22514 * calc/calc-bin.el (calc-word-size):
22515 * calc/calc-ext.el (calc-read-number-fancy):
22516 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
22517 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
22518 * calc/calc-frac.el (calc-over-notation):
22519 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
22520 (calc-graph-num-points, calc-graph-init):
22521 * calc/calc-prog.el (calc-read-parse-table-part)
22522 (calc-edit-macro-repeats):
22523 * calc/calc-yank.el (calc-do-grab-rectangle):
22524 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
22525 Replace `string-to-int' by `string-to-number'.
22526
22527 2005-05-02 Kim F. Storm <storm@cua.dk>
22528
22529 * kmacro.el: Use executing-kbd-macro-index variable.
22530
22531 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
22532
22533 * net/rlogin.el (rlogin-parse-words): Delete func.
22534 (rlogin): Use split-string, not rlogin-parse-words.
22535 Also, if there are option-like elements in the parsed args,
22536 take the host to be the first arg immediately following them.
22537 Suggested by Michael Mauger.
22538
22539 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
22540
22541 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
22542
22543 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
22544
22545 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
22546 (cc-mode-cpp-program): Rename to cc-define-list-program and
22547 move to cc-vars.el.
22548
22549 * progmodes/cc-vars.el (cc-define-list-program):
22550 Change to "gcc -E -dM -". Make customizable.
22551
22552 2005-05-02 Kim F. Storm <storm@cua.dk>
22553
22554 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
22555
22556 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
22557
22558 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
22559
22560 * international/mule-util.el (truncate-string): Remove alias and
22561 obsolete declaration.
22562
22563 * international/mule-cmds.el (update-iso-coding-systems):
22564 Remove alias and obsolete declaration.
22565
22566 * international/mule.el (coding-system-parent): Remove alias and
22567 obsolete declaration.
22568
22569 * subr.el (define-function, sref): Remove aliases and obsolete
22570 declarations.
22571 (chars-in-region): Remove obsolete declaration.
22572
22573 2005-05-01 Richard M. Stallman <rms@gnu.org>
22574
22575 * info.el (Info-mode): Set widen-automatically to nil, locally.
22576
22577 * simple.el (widen-automatically): New variable.
22578 (pop-global-mark): Obey widen-automatically.
22579
22580 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
22581
22582 * term/xterm.el (function-key-map): Call substitute-key-definition
22583 before the keymap size is increased by a lot of define-key calls.
22584
22585 2005-05-01 Richard M. Stallman <rms@gnu.org>
22586
22587 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
22588 Rename ARG to ELEMENT. Doc fix.
22589
22590 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
22591
22592 * allout.el (allout-exposure): Remove macro and obsolete declaration.
22593 Remove references to allout-exposure/change to allout-new-exposure.
22594
22595 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
22596 bytecode symbols.
22597
22598 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
22599 (compiled-function-p, focus-frame, unfocus-frame):
22600 Remove aliases and obsolete declarations.
22601 Back out inadvertent changes from previous commit.
22602
22603 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
22604
22605 * files.el (require-final-newline): Make Custom tags consistent
22606 with mode-require-final-newline.
22607 (mode-require-final-newline): Doc fix.
22608
22609 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
22610
22611 * international/latexenc.el (latexenc-find-file-coding-system):
22612 Fix regular expressions.
22613
22614 2005-05-01 David Kastrup <dak@gnu.org>
22615
22616 * international/latexenc.el (latexenc-find-file-coding-system):
22617 Fix regular expressions.
22618
22619 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
22620
22621 * subr.el (string-to-int): Make obsolete.
22622
22623 2005-04-30 Richard M. Stallman <rms@gnu.org>
22624
22625 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
22626
22627 * loadup.el: load jka-comp-hook.
22628
22629 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
22630 (jka-compr-handler): Add autoload. `put' calls moved
22631 to jka-comp-hook.el.
22632 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
22633 (jka-compr-inhibit): Autoload.
22634
22635 * jka-comp-hook.el: New file.
22636 Enable the mode by default.
22637
22638 * files.el (backup-buffer-copy): Use copy-file instead
22639 of write-region, and put back the 'excl.
22640
22641 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
22642
22643 * progmodes/flymake.el (flymake-split-string)
22644 (flymake-split-string, flymake-log, flymake-pid-to-names)
22645 (flymake-reg-names, flymake-get-source-buffer-name)
22646 (flymake-unreg-names, flymake-add-line-err-info)
22647 (flymake-add-err-info): Clarify docstrings.
22648 (flymake-popup-menu, flymake-make-emacs-menu)
22649 (flymake-make-xemacs-menu): Add docstrings.
22650 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
22651 Set variables directly throughout.
22652
22653 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
22654
22655 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
22656 exists. Initialize cc-define-alist.
22657 (c-mode): Add cc-create-define-alist locally to after-save-hook.
22658 If there is no file (Macroexpansion) don't create an alist.
22659
22660 2005-04-29 Sam Steingold <sds@gnu.org>
22661
22662 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
22663 (cc-create-define-alist): Use it instead of the hard-coded string.
22664
22665 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
22666
22667 * international/mule-conf.el (file-coding-system-alist): Fix regexp
22668 for latexenc.
22669
22670 2005-04-29 Lute Kamstra <lute@gnu.org>
22671
22672 * emacs-lisp/generic.el: Improve commentary section.
22673 (define-generic-mode): Improve docstring.
22674
22675 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
22676
22677 * textmodes/org.el (many places): Change to quiet the byte compiler.
22678 (org-prefix-format-compiled): New variable.
22679 (org-compile-prefix-format): New function.
22680 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
22681 (org-agenda-prefix-format, org-timeline-prefix-format): New options.
22682 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
22683 (org-get-entries-from-diary): Use `org-get-time-of-day' for
22684 consistency with entries from `org-mode' files.
22685 (org-get-time-of-day): Fix bug with partial matches early in a line.
22686 (org-non-link-chars): New constant.
22687 (org-link-regexp): Respect `org-non-link-chars'.
22688 (org-agenda-day-view): Remove command.
22689 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
22690 (org-follow-bbdb-link, org-store-link): Search also company field.
22691 (org-highlight-overlay): New variable.
22692 (org-highlight, org-unhighlight): New functions.
22693 (org-agenda-mode): Add pre-command-hook to remove highlight.
22694 (org-evaluate-time-range): Behavior depends upon whether time stamp
22695 contains a time or not.
22696 (org-show-subtree, org-show-entry): New functions.
22697 (org-agenda-cleanup-fancy-diary): Remove empty lines.
22698
22699 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
22700
22701 * comint.el (comint-output-filter-functions): Add autoload cookie.
22702
22703 2005-04-28 Kim F. Storm <storm@cua.dk>
22704
22705 * ido.el (ido-everywhere): Fix last change.
22706
22707 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
22708
22709 * international/latexenc.el: New file.
22710 * international/mule-conf.el (file-coding-system-alist): For .tex,
22711 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
22712
22713 2005-04-28 Lute Kamstra <lute@gnu.org>
22714
22715 * font-lock.el (font-lock-add-keywords)
22716 (font-lock-remove-keywords): Clarify docstring.
22717 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
22718 Don't start docstrings with a `*'.
22719 (font-lock-update-removed-keyword-alist): Give it a docstring.
22720
22721 * generic-x.el: Update commentary section.
22722 Only require font-lock when compiling.
22723 Define all modes conditionally.
22724 Place all generic modes in the generic-x-modes customization group.
22725 (generic-x-modes): New customization group.
22726 (generic-default-modes, generic-mswindows-modes)
22727 (generic-unix-modes, generic-other-modes): New constants.
22728 (generic-define-mswindows-modes, generic-define-unix-modes):
22729 Update docstrings. Make them obsolete.
22730 (generic-extras-enable-list): New default value. Update docstring.
22731 Improve :type. Change :set function.
22732 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
22733 Fix docstring.
22734
22735 * emacs-lisp/generic.el (generic-mode-internal):
22736 Simplify font-lock-defaults.
22737 (define-generic-mode): Fix docstring.
22738
22739 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
22740
22741 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
22742 font-lock-face property to highlight matches.
22743
22744 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
22745
22746 * progmodes/cc-mode.el (cc-create-define-alist): New function.
22747 (cc-define-alist): New variable.
22748 (c-mode): Make it local and initialize it.
22749
22750 * progmodes/gdb-ui.el (gdb-active-process): New variable.
22751 (gdb-exited): New function.
22752 (gdb-annotation-rules): Use it.
22753 (gdb-starting): Set gdb-active-process to t.
22754 (gdb-stopping): Amend doc string.
22755 (gdb-reset): Set gdb-active-process to nil.
22756
22757 * tooltip.el (tooltip-gud-tips): Show the associated #define
22758 directives when a C program under GDB is not executing.
22759
22760 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
22761
22762 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
22763 font-lock-fontify-syntactic-keywords.
22764
22765 * font-lock.el (font-lock-default-fontify-region): Don't force
22766 parse-sexp-lookup-properties to nil.
22767
22768 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
22769
22770 * man.el (man-mode-syntax-table): Set up `:' to have
22771 word-constituent syntax.
22772
22773 2005-04-27 Lute Kamstra <lute@gnu.org>
22774
22775 * novice.el (disable-command): Don't add spurious newlines to the
22776 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
22777
22778 2005-04-26 Jay Belanger <belanger@truman.edu>
22779
22780 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
22781 than one window before deleting window.
22782
22783 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
22784
22785 * shell.el (shell-prompt-pattern): Doc fix.
22786 (shell-mode): Set paragraph-separate buffer locally to "\\'".
22787
22788 * comint.el (comint-prompt-regexp, comint-get-old-input)
22789 (comint-use-prompt-regexp)
22790 (comint-use-prompt-regexp-instead-of-fields)
22791 (comint-replace-by-expanded-history, comint-send-input)
22792 (comint-output-filter, comint-get-old-input-default)
22793 (comint-line-beginning-position, comint-bol, comint-show-output)
22794 (comint-backward-matching-input, comint-forward-matching-input)
22795 (comint-next-prompt, comint-previous-prompt):
22796 Rename `comint-use-prompt-regexp-instead-of-fields' to
22797 `comint-use-prompt-regexp'. Keep old name as alias and declare
22798 obsolete.
22799 (comint-use-prompt-regexp): Shorten first line of doc string.
22800
22801 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
22802 Set paragraph-separate buffer locally to "\\'".
22803
22804 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
22805 Adapt to above name change.
22806
22807 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
22808 (smbclient-prompt-regexp): Ditto.
22809
22810 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
22811
22812 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
22813
22814 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
22815 gdb-location-list.
22816 Break lines that are over 80 characters wide.
22817
22818 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
22819
22820 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
22821 New fun and var, to preserve compatibility.
22822
22823 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
22824
22825 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
22826
22827 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
22828 name to file-newer-than-file-p.
22829
22830 2005-04-26 Richard M. Stallman <rms@gnu.org>
22831
22832 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
22833
22834 * progmodes/python.el (python-mode):
22835 Use new name eldoc-documentation-function.
22836
22837 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
22838
22839 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
22840 (eldoc-documentation-function):
22841 Rename from eldoc-print-current-symbol-info-function. Calls changed.
22842
22843 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
22844
22845 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
22846
22847 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
22848
22849 * term/xterm.el (function-key-map): Fix strings for
22850 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
22851 {C,S,A,C-S}-{f1-f12}.
22852
22853 2005-04-26 Kenichi Handa <handa@m17n.org>
22854
22855 * international/mule-cmds.el (select-safe-coding-system):
22856 Fix previous change.
22857
22858 2005-04-26 Lute Kamstra <lute@gnu.org>
22859
22860 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
22861
22862 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
22863 (font-lock-comment-delimiter-face): Ditto.
22864
22865 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
22866
22867 2005-04-25 Jay Belanger <belanger@truman.edu>
22868
22869 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
22870 to t while inserting information; use help-mode.
22871
22872 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
22873
22874 * term.el (ansi-term-color-vector): Use the xterm colors.
22875 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
22876
22877 2005-04-25 Lute Kamstra <lute@gnu.org>
22878
22879 * font-core.el (font-lock-defaults): Fix docstring.
22880
22881 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
22882
22883 2005-04-25 Kenichi Handa <handa@m17n.org>
22884
22885 * international/mule-cmds.el (select-safe-coding-system):
22886 Don't check consistency with coding: spec, etc if raw-text or
22887 no-conversion was found to be safe.
22888
22889 2005-04-24 Richard M. Stallman <rms@gnu.org>
22890
22891 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
22892 citation markers at start of each line.
22893
22894 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
22895 citation markers at start of each line.
22896
22897 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
22898
22899 * files.el (mode-require-final-newline): Fix previous change.
22900 (require-final-newline): Fix type label.
22901
22902 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
22903
22904 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
22905 statement in buffer (broken by 2004-11-24 change).
22906
22907 2005-04-24 Kim F. Storm <storm@cua.dk>
22908
22909 * ido.el (ido-everywhere): Save and restore old read-buffer-function
22910 and read-file-name-function values. Don't overwrite existing
22911 non-nil values if ido-mode is enabled without ido-everywhere.
22912
22913 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
22914
22915 * files.el (mode-require-final-newline): Minor doc fix.
22916
22917 2005-04-24 Eli Zaretskii <eliz@gnu.org>
22918
22919 * subr.el (syntax-after): Doc fix.
22920 (syntax-class): If argument is nil, return nil. Mask off upper 16
22921 bits, not 8 bits.
22922
22923 * files.el (mode-require-final-newline): Doc fix.
22924 (backup-buffer-copy): Fix last change.
22925
22926 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22927
22928 * term/mac-win.el: Require select. Set selection-coding-system to
22929 mac-system-coding-system. Call menu-bar-enable-clipboard.
22930 (x-last-selected-text-clipboard, x-last-selected-text-primary)
22931 (x-select-enable-clipboard): New variables.
22932 (x-select-text, x-get-selection, x-selection-value)
22933 (x-get-selection-value, mac-select-convert-to-string)
22934 (mac-services-open-file, mac-services-open-selection)
22935 (mac-services-insert-text): New functions.
22936 (CLIPBOARD, FIND): Put mac-scrap-name property.
22937 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
22938 (public.tiff): Put mac-ostype property.
22939 (selection-converter-alist): Add entries for them.
22940 (mac-application-menu-map): New keymap.
22941 (interprogram-cut-function, interprogram-paste-function): Set to
22942 x-select-text and x-get-selection-value, respectively.
22943 (split-window-keep-point): Set to t.
22944
22945 2005-04-23 Richard M. Stallman <rms@gnu.org>
22946
22947 * files.el (read-directory-name): Always pass non-nil
22948 DEFAULT-FILENAME arg to read-file-name.
22949 (backup-buffer-copy, basic-save-buffer-2): Take care against
22950 writing thru an unexpected existing symlink.
22951 (revert-buffer): In indirect buffer, revert the base buffer.
22952 (magic-mode-alist): Doc fix.
22953 (buffer-stale-function): Doc fix.
22954 (minibuffer-with-setup-hook): Avoid warning.
22955 (mode-require-final-newline): Doc and custom fix.
22956
22957 * follow.el (follow-end-of-buffer): Use with-no-warnings.
22958
22959 * font-lock.el (font-lock-comment-face): On terminals with few colors,
22960 use the default appearance.
22961 (font-lock-comment-delimiter-face): New face, new variable.
22962
22963 * imenu.el (imenu--generic-function): The official position of a
22964 definition is the start of the line that BEG is in.
22965
22966 * midnight.el (midnight-timer): Move defvar up.
22967
22968 * mouse.el (mouse-drag-region-1): Delete some debugging code.
22969
22970 * saveplace.el (save-place-to-alist): Use with-no-warnings.
22971
22972 * startup.el (command-line): Use with-no-warnings.
22973
22974 * window.el (window-size-fixed): New defvar.
22975
22976 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
22977
22978 * mail/rmail.el (rmail-font-lock-keywords):
22979 Use font-lock-comment-delimiter-face.
22980
22981 * mail/sendmail.el (mail-font-lock-keywords):
22982 Use font-lock-comment-delimiter-face.
22983
22984 * progmodes/compile.el (next-error-highlight-timer): New defvar.
22985
22986 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
22987
22988 * progmodes/compile.el (compilation-mode-font-lock-keywords):
22989 Specify t for LAXMATCH when matching directories.
22990 Save match data around compilation-compat-error-properties form.
22991
22992 2005-04-23 David Kastrup <dak@gnu.org>
22993
22994 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
22995 Mention that the autoloaded aliases should be kept for AUCTeX.
22996
22997 2005-04-23 Andreas Schwab <schwab@suse.de>
22998
22999 * isearch.el (isearch-forward): Doc fix.
23000
23001 2005-04-23 Eli Zaretskii <eliz@gnu.org>
23002
23003 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
23004 (jit-lock-stealth-nice): Change default value to 0.5.
23005
23006 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
23007
23008 * abbrev.el (write-abbrev-file): Write table entries in
23009 alphabetical order by table name.
23010
23011 2005-04-22 Kim F. Storm <storm@cua.dk>
23012
23013 * ido.el (ido-read-internal): Fix `list' completion.
23014
23015 2005-04-22 Kenichi Handa <handa@m17n.org>
23016
23017 * recentf.el (recentf-save-file-coding-system): New variable.
23018 (recentf-save-list): Encode the file by
23019 recentf-save-file-coding-system and add coding: tag.
23020
23021 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
23022
23023 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
23024
23025 2005-04-21 Lute Kamstra <lute@gnu.org>
23026
23027 * loadhist.el (unload-feature): Don't remove a function from hooks
23028 if it is about to be restored to an autoload . Remove functions
23029 that will become unbound from auto-mode-alist. Simplify the code.
23030
23031 * subr.el (assq-delete-all): New implementation that is linear,
23032 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
23033 (rassq-delete-all): New function.
23034
23035 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
23036 Add size-indication-mode.
23037
23038 2005-04-21 Kenichi Handa <handa@m17n.org>
23039
23040 * international/mule-cmds.el: Add autoload for widget-value in
23041 eval-when-compile.
23042
23043 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
23044
23045 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
23046 Add tooltip-mode.
23047
23048 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
23049
23050 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
23051
23052 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
23053 (inferior-lisp-filter-regexp, inferior-lisp-program)
23054 (inferior-lisp-load-command, inferior-lisp-prompt)
23055 (inferior-lisp-mode-hook, lisp-source-modes)
23056 (inferior-lisp-load-hook): defvar->defcustom.
23057 (inferior-lisp-program, inferior-lisp-prompt)
23058 (inferior-lisp-load-hook): Doc fixes.
23059 (inferior-lisp-install-letter-bindings): Small change in
23060 introductory comment.
23061
23062 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
23063
23064 * vc.el (vc-annotate-color-map): Change some colors so that text
23065 using them as foreground is readable on both white and black
23066 backgrounds.
23067
23068 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
23069
23070 * international/mule-conf.el (translation-table-for-input):
23071 Remove redundant declaration.
23072
23073 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
23074
23075 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
23076
23077 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
23078 (tooltip-toggle-gud-tips): New function.
23079
23080 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23081
23082 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
23083 right angle brackets.
23084
23085 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
23086
23087 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
23088
23089 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
23090
23091 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
23092 Remove. Update callers to use expand-file-name instead.
23093
23094 * subr.el (syntax-class): New function.
23095
23096 * simple.el (blink-matching-open): Use it.
23097
23098 * paren.el (show-paren-function): Use it to recognize parens that are
23099 also used in 2-char comment markers.
23100
23101 2005-04-19 Lute Kamstra <lute@gnu.org>
23102
23103 * loadhist.el (unload-feature): Update for new format of
23104 load-history. Simplify the code.
23105
23106 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23107
23108 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
23109 (mac-add-charset-info): New function. Initialize variable
23110 mac-charset-info-alist using it.
23111 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
23112 for translation.
23113 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
23114 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
23115 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
23116 New CCL programs.
23117
23118 2005-04-19 Kim F. Storm <storm@cua.dk>
23119
23120 * simple.el (next-buffer, prev-buffer, next-error)
23121 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
23122 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
23123
23124 * bindings.el (next-buffer, prev-buffer, next-error)
23125 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
23126 (clone-indirect-buffer-other-window): Move bindings from simple.el.
23127 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
23128 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
23129
23130 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
23131
23132 * isearch.el (isearch-edit-string): Make the search-ring available for
23133 minibuffer history commands.
23134 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
23135 the default history commands now work just as well.
23136 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
23137
23138 2005-04-18 Kim F. Storm <storm@cua.dk>
23139
23140 * emulation/cua-base.el (cua--pre-command-handler): Add more
23141 elaborate check for shift modifier on non-window systems.
23142
23143 2005-04-18 Lars Hansen <larsh@math.ku.dk>
23144
23145 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
23146
23147 2005-04-18 Kim F. Storm <storm@cua.dk>
23148
23149 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
23150 and make it optional. Don't test tooltip-gud-echo-area here.
23151 (tooltip-gud-process-output, gdb-tooltip-print):
23152 Pass tooltip-gud-echo-area to tooltip-show.
23153 (tooltip-help-tips): Remove second optional arg to tooltip-show.
23154
23155 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23156
23157 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
23158 `display-graphic-p' may not be bound yet.
23159
23160 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
23161
23162 * startup.el (command-line): No longer enable Xterm Mouse mode by
23163 default in terminals compatible with xterm.
23164
23165 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
23166
23167 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
23168
23169 * tooltip.el (tooltip-gud-echo-area): Rename from
23170 tooltip-use-echo-area.
23171 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
23172 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
23173 area independently of where help tooltips are displayed.
23174
23175 2005-04-17 David Kastrup <dak@gnu.org>
23176
23177 * cus-theme.el (custom-theme-write-variables): Quote variables
23178 where necessary.
23179
23180 2005-04-17 Richard M. Stallman <rms@gnu.org>
23181
23182 * simple.el (yank-excluded-properties): Add follow-link to value.
23183
23184 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
23185
23186 * startup.el (fancy-splash-max-time): Just 30 seconds.
23187 (fancy-splash-delay): Just 7.
23188 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
23189
23190 * loadhist.el (unload-feature): Update for new format of load-history.
23191 Simplify the code.
23192
23193 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
23194 (rmail-font-lock-keywords): Don't fontify the text of a citation.
23195
23196 * mail/sendmail.el (mail-font-lock-keywords):
23197 Don't fontify subject text.
23198 Don't fontify the text of a citation.
23199
23200 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
23201
23202 * comint.el (comint-output-filter): Run comint-output-filter-functions
23203 with point where the user had it.
23204
23205 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
23206
23207 * international/ucs-tables.el (ucs-set-table-for-input):
23208 Disable when using unify-on-decoding.
23209
23210 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
23211
23212 * emulation/cua-base.el (cua-global-mark-face): Add special case
23213 for displays supporting a high number of colors.
23214
23215 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
23216
23217 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
23218
23219 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
23220
23221 * filesets.el (filesets-add-buffer): If user supplies a name of a
23222 non-existing fileset, create a new fileset.
23223
23224 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
23225
23226 * textmodes/org.el (org-up-heading-all): Fix bug with
23227 `outline-up-heading-all'.
23228
23229 2005-04-16 Andreas Schwab <schwab@suse.de>
23230
23231 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
23232 /etc/permissions.d/* and /etc/aliases.d/*.
23233
23234 2005-04-16 Kenichi Handa <handa@m17n.org>
23235
23236 * international/code-pages.el (cp-make-coding-system):
23237 Set `translation-table-for-input' property value to the symbol
23238 ucs-mule-to-mule-unicode, not to that value.
23239 (pt154): Escape guillemet by `\'.
23240
23241 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
23242
23243 * loadup.el: Load tooltip if x-show-tip is fboundp.
23244
23245 * startup.el (command-line): Add comment.
23246
23247 * tooltip.el (tooltip-mode): Specify correct standard value for
23248 Custom in init-value.
23249
23250 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
23251
23252 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
23253 possible.
23254
23255 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
23256
23257 * textmodes/org.el (org-agenda-date-prompt): Rename from
23258 `org-agenda-date-today'.
23259 (org-evaluate-time-range): Insert at point instead of directly
23260 after time range.
23261 (org-first-headline-recenter, org-subtree-end-visible-p)
23262 (org-optimize-window-after-visibility-change): New functions
23263 (org-agenda-post-command-hook): Don't allow point at end of line,
23264 to make sure it always hits the text properties.
23265 (org-agenda-next-date-line, org-agenda-previous-date-line):
23266 New commands.
23267 (org-set-regexps-and-options): Category may contain white space.
23268 (org-agenda-get-deadlines, org-agenda-get-scheduled):
23269 Improve marker positions.
23270 (org-agenda-new-marker): Argument POS made optional.
23271 (org-agenda-get-timestamps): Deadlines which are done are listed
23272 in org-done-face now.
23273 (org-agenda-get-todos, org-agenda-get-timestamps)
23274 (org-agenda-get-deadlines, org-agenda-get-scheduled):
23275 Set `undone-face' and `done-face' properties.
23276 (org-last-todo-state-is-todo): New variable.
23277 (org-todo): Set `org-last-todo-state-is-todo'.
23278 (org-agenda-todo): Change face according to
23279 `org-last-todo-state-is-todo'. And change other lines referring to
23280 the same entry.
23281 (org-calendar-goto-agenda): New command.
23282 (org-calendar-to-agenda-key): New option.
23283 (org-startup-folded): New allowed value `content'.
23284 (org-set-regexps-and-options): Accept new value `content' for
23285 `org-startup-folded'.
23286 (org-get-current-options): Handle new value `content' for
23287 `org-startup-folded'.
23288 (org-insert-todo-heading): New command.
23289 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
23290 interactively in empty file and option
23291 `org-insert-mode-line-in-empty-file' has been set.
23292 (org-agenda-todo, org-agenda-priority): Modify to use
23293 `org-agenda-change-all-lines'.
23294 (org-warning-face): Change color on dark background
23295
23296 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23297
23298 * international/mule-cmds.el (set-locale-environment): On Mac OS,
23299 use preferences AppleLocale and AppleLanguages, and variable
23300 mac-system-locale for default locale. On Mac OS Classic, use
23301 mac-system-coding-system for default coding systems.
23302
23303 * term/mac-win.el: Don't set file-name-coding-system.
23304 Decode variables system-name, emacs-build-system, user-login-name, and
23305 user-full-name by mac-system-coding-system on Mac OS Classic.
23306 (mac-system-coding-system): New variable.
23307
23308 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
23309
23310 * startup.el (command-line): Handle `xterm-mouse-mode' before
23311 reading init file.
23312
23313 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
23314
23315 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
23316
23317 * progmodes/sh-script.el (sh-here-document-word): Make it a
23318 defcustom. Doc fix.
23319 (sh-add): Bash uses $(( )) for arithmetic.
23320 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
23321 (sh-maybe-here-document): Remove quotes and leading whitespace
23322 from heredoc word when closing. Indent heredoc with tabs if word
23323 starts with "-".
23324
23325 2005-04-13 Richard M. Stallman <rms@gnu.org>
23326
23327 * simple.el (undo): Fix previous change.
23328
23329 * custom.el (defface): Doc fix.
23330
23331 2005-04-13 Lute Kamstra <lute@gnu.org>
23332
23333 * Makefile.in (DONTCOMPILE): Remove list.
23334 (compile, compile-always): Don't use DONTCOMPILE.
23335 (update-authors): Load the library in which batch-update-authors
23336 is defined.
23337 * makefile.w32-in (DONTCOMPILE): Remove list.
23338 (compile, compile-always): Fix comments.
23339 (update-authors): Load the library in which batch-update-authors
23340 is defined.
23341
23342 * generic-x.el (generic-mode-ini-file-find-file-hook):
23343 Rename to ini-generic-mode-find-file-hook.
23344 Keep generic-mode-ini-file-find-file-hook as an alias.
23345 (ini-generic-mode-find-file-hook): Rename from
23346 generic-mode-ini-file-find-file-hook. Fix docstring.
23347 (ini-generic-mode): Docstring change.
23348 (bat-generic-mode-run-as-comint): Silence the byte compiler.
23349
23350 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
23351 called from lisp.
23352
23353 * generic.el: Move to the emacs-lisp subdir.
23354
23355 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
23356
23357 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
23358 and C-S- function and cursor motion keys.
23359
23360 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
23361
23362 * startup.el (command-line): Enable Xterm Mouse mode by default.
23363 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
23364 for Custom. No longer show "Mouse" in mode line when enabled.
23365 Doc fix.
23366
23367 2005-04-12 Kim F. Storm <storm@cua.dk>
23368
23369 * emulation/cua-base.el (cua-rectangle-face)
23370 (cua-rectangle-noselect-face): Define face attributes here.
23371
23372 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
23373
23374 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
23375
23376 * startup.el (command-line): Turn off blinking cursor if
23377 cursorBlink in resources is off or false.
23378
23379 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23380
23381 * term/mac-win.el (dnd): Require dnd.
23382 (mac-drag-n-drop): Call dnd-handle-one-url.
23383 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
23384 (kTextEncodingISOLatin2): Remove constants.
23385 (mac-script-code-coding-systems): New constant.
23386 (mac-handle-language-change): New function.
23387 (special-event-map): Bind it to `language-change' event.
23388 (mac-centraleurroman, mac-cyrillic): New coding systems.
23389 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
23390 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
23391 and mac-cyrillic-encoder to encode-mac-centraleurroman and
23392 encode-mac-cyrillic, respectively.
23393
23394 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
23395
23396 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
23397 Don't set overlay-arrow-string to "=>" as this is done
23398 globally in C now.
23399
23400 2005-04-12 Lute Kamstra <lute@gnu.org>
23401
23402 * generic-x.el (rc-generic-mode, rul-generic-mode):
23403 Fix auto-mode-alist entries.
23404 (etc-fstab-generic-mode): Tweak fontification.
23405
23406 * generic.el (generic-make-keywords-list): Fix docstring.
23407 (generic-mode-internal): Simplify generic-font-lock-keywords.
23408
23409 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
23410
23411 * whitespace.el (whitespace-buffer-leading)
23412 (whitespace-buffer-trailing): Revert the incorrect test inversion.
23413 However, fix the highlight area for the leading and
23414 trailing whitespaces to show space.
23415
23416 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
23417
23418 * whitespace.el (whitespace-version): Bump to 3.5
23419
23420 (whitespace-buffer-leading, whitespace-buffer-trailing):
23421 Invert sense of the test to highlight the whitespace.
23422
23423 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
23424
23425 * progmodes/gud.el (gud-display-line): GUD uses its own
23426 overlay arrow now so don't set overlay-arrow-string.
23427 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
23428
23429 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
23430
23431 * term.el (term-ansi-current-bold, term-ansi-current-underline)
23432 (term-ansi-current-reverse, term-ansi-current-invisible)
23433 (term-ansi-face-already-done): Change to boolean.
23434 (term-reset-terminal, term-handle-colors-array): Handle the above
23435 vars accordingly.
23436 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
23437 (term-emulate-terminal): Use the new name.
23438
23439 * faces.el (secondary-selection): Use yellow1, not yellow.
23440 (trailing-whitespace): Use red1, not red.
23441
23442 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
23443
23444 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
23445 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
23446 (dired-dnd-handle-file): Call dnd-get-local-file-uri
23447
23448 * cus-edit.el (dnd): New group.
23449
23450 * term/w32-win.el (dnd): Require dnd
23451 (w32-drag-n-drop): Call dnd-handle-one-url.
23452
23453 * x-dnd.el: Require dnd.
23454 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
23455 Call dnd-handle-one-url.
23456 (x-dnd-types-alist, x-dnd-insert-utf8-text)
23457 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
23458 to dnd-insert-text.
23459 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
23460 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
23461 (x-dnd-get-local-file-name, x-dnd-open-local-file)
23462 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
23463
23464 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
23465
23466 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
23467
23468 * wdired.el: Doc fixes.
23469 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
23470 (wdired-use-dired-vertical-movement): Rename from
23471 wdired-always-move-to-filename-beginning.
23472 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
23473 (wdired-change-to-wdired-mode): Change mode name.
23474 (wdired-newline): Delete.
23475
23476 2005-04-11 Richard M. Stallman <rms@gnu.org>
23477
23478 * whitespace.el (whitespace-highlight-the-space):
23479 Don't call whitespace-unhighlight-the-space here.
23480
23481 * simple.el (undo): Record t in undo-equiv-table
23482 for the redo record made by an undo-in-region.
23483
23484 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
23485
23486 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
23487 (gdb-frame-inferior-io-buffer): New Functions to control
23488 display of separate IO buffer.
23489 (menu): Add them to menu-bar.
23490 (gdb-display-buffer): Check for buffer another frame.
23491 Protect GUD buffer.
23492 (gdb-setup-windows): Create IO buffer if not already there.
23493 (gdb-memory-mode): Remove purecopy noops.
23494
23495 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
23496
23497 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
23498 and pass to self-insert-command.
23499
23500 2005-04-11 Lute Kamstra <lute@gnu.org>
23501
23502 * generic.el: Commentary section cleanup.
23503 (generic): Delete.
23504 (generic-use-find-file-hook, generic-lines-to-scan)
23505 (generic-find-file-regexp, generic-ignore-files-regexp)
23506 (default-generic-mode, generic-mode-find-file-hook)
23507 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
23508 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
23509 (generic-use-find-file-hook, generic-lines-to-scan)
23510 (generic-find-file-regexp, generic-ignore-files-regexp)
23511 (default-generic-mode, generic-mode-find-file-hook)
23512 (generic-mode-ini-file-find-file-hook): Move from generic.el.
23513
23514 2005-04-10 Karl Fogel <kfogel@red-bean.com>
23515
23516 * bookmark.el (bookmark-write-file): Catch errors writing file.
23517 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
23518
23519 2005-04-10 Richard M. Stallman <rms@gnu.org>
23520
23521 * startup.el (fancy-splash-tail): Update copyright year.
23522 (command-line): Split part of -Q into -D.
23523 (emacs-basic-display): New defvar.
23524 (fancy-splash-text): Correct name of menu item.
23525
23526 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
23527
23528 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
23529 lines in one node.
23530
23531 * comint.el (comint-send-input): New arg ARTIFICIAL.
23532 Callers in this file changed.
23533
23534 * abbrev.el (define-abbrevs): Read system abbrevs properly.
23535
23536 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
23537
23538 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
23539
23540 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
23541 `ldap-search-internal'.
23542
23543 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
23544
23545 * files.el (set-auto-mode-1): Use line-end-position.
23546
23547 * international/latin-1.el:
23548 * international/latin-2.el:
23549 * international/latin-3.el:
23550 * international/latin-4.el:
23551 * international/latin-5.el:
23552 * international/latin-8.el:
23553 * international/latin-9.el: Give punctuation syntax to NBSP.
23554
23555 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
23556 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
23557 Use char-classes to accept non-ascii letters, accepted in some recent
23558 bibtex implementations.
23559
23560 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
23561
23562 * custom.el (custom-set-minor-mode): Any non-nil value for the
23563 variable should enable the mode when set through Custom.
23564
23565 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
23566
23567 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
23568 TAB binding so tab-always-indent is obeyed.
23569 (vhdl-minibuffer-local-map): Move initialization into declaration.
23570 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
23571 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
23572 (vhdl-hooked-abbrev): Avoid test for XEmacs.
23573 (vhdl-current-line): Use line-beginning-position.
23574 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
23575 with-output-to-temp-buffer, so the current position can be recorded.
23576
23577 2005-04-10 Masatake YAMATO <jet@gyve.org>
23578
23579 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23580 Add regexp for gcov.
23581
23582 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
23583
23584 * calendar/time-date.el (time-to-seconds, seconds-to-time)
23585 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
23586 syntax which Emacs 20 doesn't support.
23587
23588 2005-04-09 Richard M. Stallman <rms@gnu.org>
23589
23590 * help.el (describe-key-briefly, describe-key):
23591 Replace strings as event types with "(any string)".
23592
23593 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
23594
23595 * arc-mode.el (archive-mode-map): Move initialization into
23596 the declaration. Override *all* bindings of `undo'.
23597 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
23598
23599 2005-04-09 Jay Belanger <belanger@truman.edu>
23600
23601 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
23602
23603 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
23604
23605 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
23606 (xterm-register-default-colors): Update color values computation
23607 to match xterm-200.
23608
23609 2005-04-09 Kenichi Handa <handa@m17n.org>
23610
23611 * international/code-pages.el (iso-latin-7): Fix the map.
23612
23613 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
23614
23615 * emacs-lisp/lisp.el (defun-prompt-regexp)
23616 (parens-require-spaces, buffer-end, end-of-defun)
23617 (insert-parentheses): Doc fixes.
23618
23619 2005-04-08 Kim F. Storm <storm@cua.dk>
23620
23621 * comint.el (comint-highlight-prompt): Fix face spec.
23622 * hi-lock.el (hi-green): Likewise.
23623
23624 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
23625
23626 * cus-edit.el (custom-modified-face):
23627 * comint.el (comint-highlight-input): Fix previous changes.
23628 * term.el (term-handle-ansi-escape): Add a comment.
23629
23630 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
23631
23632 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
23633 in the buffer and in whitespace-highlighted-space.
23634 (whitespace-unhighlight-the-space): Simplify.
23635 (whitespace-buffer): Simplify.
23636
23637 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
23638
23639 * textmodes/table.el (table-cell-face): Add special case for
23640 displays supporting a high number of colors.
23641 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
23642 (vhdl-font-lock-reserved-words-face)
23643 (vhdl-speedbar-architecture-face)
23644 (vhdl-speedbar-instantiation-face)
23645 (vhdl-speedbar-architecture-selected-face)
23646 (vhdl-speedbar-instantiation-selected-face): Likewise.
23647 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
23648 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
23649 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
23650 (ebrowse-root-class-face, ebrowse-member-attribute-face)
23651 (ebrowse-progress-face): Likewise.
23652 * progmodes/compile.el (compilation-info-face): Likewise.
23653 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
23654 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
23655 * calendar/calendar.el (diary-face): Likewise.
23656 * woman.el (woman-italic-face, woman-bold-face)
23657 (woman-unknown-face): Likewise.
23658 * wid-edit.el (widget-button-pressed-face): Likewise.
23659 * whitespace.el (whitespace-highlight-face): Likewise.
23660 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
23661 * pcvs-info.el (cvs-marked-face): Likewise.
23662 * info.el (info-xref): Likewise.
23663 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
23664 * hilit-chg.el (highlight-changes-face)
23665 (highlight-changes-delete-face): Likewise.
23666 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
23667 (hi-red-b): Likewise.
23668 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
23669 * font-lock.el (font-lock-keyword-face)
23670 (font-lock-function-name-face, font-lock-warning-face): Likewise.
23671 * cus-edit.el (custom-invalid-face, custom-modified-face)
23672 (custom-set-face, custom-changed-face, custom-variable-tag-face)
23673 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
23674 * comint.el (comint-highlight-prompt): Likewise.
23675
23676 2005-04-08 Lute Kamstra <lute@gnu.org>
23677
23678 * font-lock.el (font-lock-keywords): Docstring fixes.
23679
23680 2005-04-08 Kenichi Handa <handa@m17n.org>
23681
23682 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
23683 chars are more than a limit, print " and more..." at the tail.
23684
23685 2005-04-08 Kim F. Storm <storm@cua.dk>
23686
23687 * emacs-lisp/authors.el (authors-aliases): Update list.
23688 (authors-ignored-files): New list.
23689 (authors-fixed-entries): Fix typo.
23690 (authors-renamed-files-alist): Update list.
23691 (authors-add): Check authors-ignored-files.
23692
23693 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
23694
23695 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
23696 optional, to ensure backward compatibility.
23697
23698 2005-04-08 Stephen Eglen <stephen@gnu.org>
23699
23700 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
23701
23702 2005-04-08 Kim F. Storm <storm@cua.dk>
23703
23704 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
23705
23706 * mouse.el (mouse-on-link-p): Doc fix.
23707
23708 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
23709
23710 * ielm.el (ielm-prompt-read-only): Doc fix.
23711
23712 * comint.el (comint-prompt-read-only): Doc fix.
23713
23714 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
23715
23716 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
23717 ensure dired always handles wildcards passed to ffap.
23718 (find-file-at-point): Use it.
23719 (ffap-dired-wildcards): Doc fix.
23720
23721 2005-04-07 Juri Linkov <juri@jurta.org>
23722
23723 * simple.el (next-error-overlay-arrow-position): New defvar.
23724 Put "=>" on its property `overlay-arrow-string'. Add it to
23725 `overlay-arrow-variable-list'.
23726
23727 * progmodes/compile.el (compilation-setup):
23728 Set `next-error-overlay-arrow-position' to nil. Also set it to
23729 nil in the local hook `kill-buffer-hook'. Make local variable
23730 `overlay-arrow-string' and set it to "=>".
23731 (compilation-goto-locus): Set BOL position to
23732 `next-error-overlay-arrow-position' instead of
23733 `overlay-arrow-position'.
23734
23735 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
23736 locally instead of adding it to the global hook.
23737 (Info-kill-buffer): Move up.
23738
23739 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
23740
23741 * term/xterm.el (xterm-standard-colors): Update color values from
23742 xterm-200.
23743
23744 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
23745
23746 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
23747
23748 * fast-lock.el:
23749 * lazy-lock.el: Move them to the obsolete subdir.
23750
23751 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
23752
23753 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
23754 (wdired-add-replace-advice): Remove.
23755 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
23756
23757 2005-04-06 Kim F. Storm <storm@cua.dk>
23758
23759 * startup.el (command-line): Add --bare-bones alias for -Q.
23760
23761 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23762
23763 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
23764 create the startup fontset if a font specification ends with
23765 `mac-roman'.
23766
23767 2005-04-06 Lute Kamstra <lute@gnu.org>
23768
23769 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
23770 change.
23771
23772 * emacs-lisp/copyright.el (copyright-update-year): Replace the
23773 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
23774
23775 2005-04-05 Lute Kamstra <lute@gnu.org>
23776
23777 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
23778 (define-generic-mode): Ditto. Fix debug declaration.
23779
23780 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
23781 Put them in the generic-x group.
23782
23783 * calendar/timeclock.el (timeclock): Doc fix.
23784
23785 * generic.el (define-generic-mode): Don't use custom-current-group.
23786 Document default :group value.
23787 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
23788 (define-global-minor-mode): Don't use custom-current-group.
23789
23790 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
23791
23792 * startup.el (command-line-1): Display startup-echo-area-message
23793 when fancy splash screen is in use.
23794
23795 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
23796 (sh-escaped-newline): New face.
23797 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
23798 newline, and use sh-escaped-newline face.
23799
23800 * progmodes/tcl.el (tcl-escaped-newline): New face.
23801 (tcl-builtin-list): New variable.
23802 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
23803 newlines. Fix keywords subexpression number.
23804
23805 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
23806
23807 * textmodes/org.el (org-diary-default-entry): Fix call to
23808 `add-to-diary-entry'.
23809
23810 2005-04-05 Kim F. Storm <storm@cua.dk>
23811
23812 * ediff-init.el: Use (featurep 'xemacs).
23813
23814 2005-04-05 David Ponce <david@dponce.com>
23815
23816 * cus-edit.el (face): Derive from symbol widget. Display sample
23817 of the current face on the fly.
23818 (widget-face-sample-face-get, widget-face-notify): New functions.
23819 (widget-face-value-create): Remove.
23820
23821 * wid-edit.el (widget-field-end): Temporarily remove field
23822 narrowing before to call `get-char-property'.
23823
23824 2005-04-04 Jay Belanger <belanger@truman.edu>
23825
23826 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
23827 (math-read-subscripts): New variable.
23828 (math-read-preprocess-string): Process subscripts.
23829
23830 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
23831
23832 * comint.el (comint-prompt-read-only): Doc fix.
23833
23834 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
23835 `-1'. Doc fix.
23836
23837 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
23838
23839 * textmodes/org.el (org-insert-mode-line-in-empty-file):
23840 Change default value to nil.
23841
23842 2005-04-04 Lute Kamstra <lute@gnu.org>
23843
23844 * autorevert.el (auto-revert-mode): Specify :group.
23845 * battery.el (display-battery-mode): Specify :group.
23846 * diff-mode.el (diff-minor-mode): Specify :group.
23847 * font-core.el (font-lock-mode): Specify :group.
23848 * hl-line.el (hl-line-mode): Specify :group.
23849 * iimage.el (iimage): New customization group.
23850 (iimage-mode): Specify :group.
23851 * longlines.el (longlines-mode): Specify :group.
23852 * master.el: Don't require easy-mmode.
23853 (master): New customization group.
23854 (master-mode): Specify :group.
23855 * msb.el (msb-mode): Specify :group.
23856 * reveal.el (reveal-mode): Specify :group.
23857 * simple.el (next-error-follow-minor-mode): Specify :group.
23858 * smerge-mode.el (smerge-mode): Specify :group.
23859 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
23860 * emulation/cua-base.el (cua-mode): Specify :group.
23861 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
23862 * language/thai-util.el (thai-auto-composition-mode)
23863 (thai-word-mode): Specify :group.
23864 * mail/supercite.el (sc-minor-mode): Specify :group.
23865 * progmodes/cwarn.el (cwarn-mode): Specify :group.
23866 * progmodes/flymake.el (flymake-mode): Specify :group.
23867 * progmodes/glasses.el (glasses-mode): Specify :group.
23868 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
23869 * textmodes/enriched.el (enriched-mode): Specify :group.
23870 * textmodes/refill.el (refill-mode): Specify :group.
23871
23872 * add-log.el (change-log-font-lock-keywords): Names in
23873 parenthesized lists can contain spaces.
23874
23875 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
23876
23877 * startup.el (fancy-splash-text): Shorten default text of
23878 "Emacs Tutorial" line. Also, if the current language env
23879 indicates an available tutorial file other than TUTORIAL,
23880 extract its title and append it to the line in parentheses.
23881 (fancy-splash-insert): If arg is a thunk, funcall it.
23882
23883 2005-04-04 Jay Belanger <belanger@truman.edu>
23884
23885 * calc.el (calc-language-alist): Add tags to customization type.
23886
23887 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
23888
23889 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
23890 Doc fix.
23891
23892 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
23893
23894 * add-log.el (change-log-font-lock-keywords): The manual
23895 describing a Change Log entry, says: (...) "Aside from these
23896 header lines, every line in the change log starts with a space or
23897 a tab.". The font-lock was not highlighting lines started with
23898 spaces, added support for it.
23899
23900 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
23901
23902 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
23903 (bibtex-generate-url-list): Update docstring accordingly. Put the
23904 complex example in the docstring.
23905 (bibtex-font-lock-url): Use pop.
23906
23907 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
23908
23909 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
23910
23911 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
23912
23913 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
23914
23915 * filesets.el (filesets-set-default): Doc fix.
23916
23917 2005-04-03 Lute Kamstra <lute@gnu.org>
23918
23919 * generic.el (define-generic-mode): Add argument to specify
23920 keywords for defcustom.
23921 (default-generic-mode): Specify :group.
23922
23923 * generic-x.el: Specify :group for all generic modes.
23924
23925 * desktop.el (desktop-no-desktop-file-hook)
23926 (desktop-after-read-hook): Doc fix.
23927
23928 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
23929
23930 * simple.el (visible-mode): Use explicit :group keyword.
23931 This changes the group of `visible-mode-hook' from paren-blinking
23932 to editing-basics.
23933
23934 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
23935
23936 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
23937 mailbox specifications as well as URLs.
23938 (rmail-insert-inbox-text): Remove unused conditional branches.
23939
23940 2005-04-01 Jay Belanger <belanger@truman.edu>
23941
23942 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
23943 (calc-gnuplot-print-command): Move definitions to calc.el.
23944
23945 * calc/calc-embed.el (calc-embedded-announce-formula)
23946 (calc-embedded-open-formula, calc-embedded-close-formula)
23947 (calc-embedded-open-word, calc-embedded-close-word)
23948 (calc-embedded-open-plain, calc-embedded-close-plain)
23949 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
23950 (calc-embedded-open-mode, calc-embedded-close-mode):
23951 Move definitions to calc.el.
23952
23953 * calc/calc.el (calc-settings-file, calc-language-alist):
23954 Make customizable.
23955 (calc-embedded-announce-formula, calc-embedded-open-formula)
23956 (calc-embedded-close-formula, calc-embedded-open-word)
23957 (calc-embedded-close-word, calc-embedded-open-plain)
23958 (calc-embedded-close-plain, calc-embedded-open-new-formula)
23959 (calc-embedded-close-new-formula, calc-embedded-open-mode)
23960 (calc-embedded-close-mode, calc-gnuplot-name)
23961 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
23962 from other files and make customizable.
23963
23964 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
23965
23966 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
23967 Use buffer-live-p.
23968 (cvs-mode-run): Don't call cvs-update-header here.
23969 (cvs-run-process): Call cvs-update-header.
23970 Use process properties for cvs-postprocess and cvs-buffer so that
23971 the sentinel can behave better if the temp buffer is killed.
23972 Use a pipe rather than a tty, to better handle unexpected prompts.
23973 (cvs-sentinel): Rewrite. Call cvs-update-header.
23974
23975 2005-04-01 Andre Spiegel <spiegel@gnu.org>
23976
23977 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
23978 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
23979
23980 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
23981
23982 * generic.el (define-generic-mode): Add indentation rule.
23983
23984 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
23985
23986 * files.el (mode-require-final-newline): Make Custom correctly
23987 report a nil value and allow to set it to nil via Custom.
23988 Doc fix.
23989
23990 2005-04-01 Kenichi Handa <handa@m17n.org>
23991
23992 * international/characters.el: Enable the correct case setting for
23993 dotless-i and dotted-I.
23994
23995 2005-04-01 Kim F. Storm <storm@cua.dk>
23996
23997 * ido.el (ido-file-internal): Fall back to non-ido command if
23998 initial directory is on slow ftp (or tramp) host.
23999
24000 2005-03-31 Richard M. Stallman <rms@gnu.org>
24001
24002 * emacs-lisp/autoload.el (make-autoload):
24003 Handle define-global-minor-mode.
24004
24005 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
24006 Rename from easy-mmode-define-global-mode.
24007 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
24008
24009 * progmodes/scheme.el (scheme-mode-syntax-table):
24010 Update syntax of | and # for two-character comment syntax.
24011
24012 2005-03-31 Lute Kamstra <lute@gnu.org>
24013
24014 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
24015 (define-minor-mode): Call custom-current-group at load-time.
24016
24017 * generic.el (define-generic-mode): Add debug declaration.
24018 Add defcustom for the mode hook.
24019 (generic-mode-internal): Use run-mode-hooks.
24020
24021 2005-03-31 Kim F. Storm <storm@cua.dk>
24022
24023 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
24024 (mouse-fixup-help-message): New defun called by show_help_echo
24025 to fixup mouse-2 prefix in help messages when applicable.
24026
24027 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
24028
24029 2005-03-31 Kenichi Handa <handa@m17n.org>
24030
24031 * language/thai-word.el (thai-find-word-ends): Pay attention to
24032 the case that we reach the end of buffer.
24033
24034 * textmodes/fill.el (fill-text-properties-at): New function.
24035 (fill-newline): Use fill-text-properties-at instead of
24036 text-properties-at.
24037
24038 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
24039
24040 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
24041 not comint-quote-filename.
24042
24043 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
24044
24045 * help-fns.el (help-with-tutorial): Revert last change.
24046
24047 2005-03-31 Kim F. Storm <storm@cua.dk>
24048
24049 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
24050
24051 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
24052
24053 * calendar/cal-china.el: Update reference to "Calendrical
24054 Calculations" book; there's a new edition.
24055 * calendar/cal-coptic.el: Likewise.
24056 * calendar/cal-french.el: Likewise.
24057 * calendar/cal-hebrew.el: Likewise.
24058 * calendar/cal-islam.el: Likewise.
24059 * calendar/cal-iso.el: Likewise.
24060 * calendar/cal-julian.el: Likewise.
24061 * calendar/cal-mayan.el: Likewise.
24062 * calendar/cal-persia.el: Likewise.
24063 * calendar/calendar.el: Likewise.
24064 * calendar/holidays.el: Likewise.
24065 * calendar/lunar.el: Likewise.
24066 * calendar/solar.el: Likewise.
24067
24068 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
24069 white space from doc string.
24070
24071 2005-03-30 Jay Belanger <belanger@truman.edu>
24072
24073 * calc/calc-help.el (calc-full-help): Remove email address.
24074
24075 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
24076
24077 * help-fns.el (help-with-tutorial): Delete title line.
24078
24079 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
24080
24081 * calendar/cal-x.el (calendar-one-frame-setup)
24082 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
24083 rather than `symbol' for set-window-dedicated-p.
24084
24085 * calendar/appt.el (appt-buffer-name): Make it a constant.
24086 (appt-add): Doc fix.
24087
24088 * filesets.el (filesets-menu-path, filesets-menu-before)
24089 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
24090 (filesets-menu-cache-file): Use directory ~/.emacs.d.
24091 (filesets-add-submenu): Delete and use add-submenu instead.
24092
24093 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
24094
24095 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
24096 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
24097 (org-diary-default-entry): New function.
24098 (org-get-entries-from-diary): Better parsing of diary entries.
24099 (org-agenda-check-no-diary): New function.
24100 ("diary-lib"): Advice to function `add-to-diary-list', to allow
24101 linking to diary entries.
24102 (org-agenda-execute-calendar-command): New function.
24103 (org-agenda): Improve visible section in window.
24104 Use `org-fit-agenda-window'.
24105 (org-fit-agenda-window): New option.
24106 (org-move-subtree-down): Better handling of empty lines
24107 at end of subtree.
24108 (org-cycle): Numeric prefix is interpreted now as show-subtree N
24109 levels up.
24110 (org-fontify-done-headline): New option.
24111 (org-headline-done-face): New face.
24112 (org-set-font-lock-defaults): Use `org-headline-done-face'.
24113 (org-table-copy-down): Rename from `org-table-copy-from-above'.
24114 When current field is non-empty, it is copied to next row.
24115 (org-table-copy-from-above): Fix bug which made it
24116 impossible to copy fields containing only a single non-white character.
24117
24118 2005-03-30 Kim F. Storm <storm@cua.dk>
24119
24120 * kmacro.el (kmacro-end-macro): Isearch may store this command
24121 into the macro -- so ignore it when executing keyboard macro.
24122
24123 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
24124
24125 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
24126
24127 2005-03-29 Kenichi Handa <handa@m17n.org>
24128
24129 * language/thai.el ("Thai"): Set setup-function and exit-function
24130 for Thai language environment.
24131
24132 * language/thai-util.el: Require thai-word.
24133 (thai-word-mode-map): New variable.
24134 (thai-word-mode): New minor mode.
24135 (setup-thai-language-environment-internal): New function.
24136 (exit-thai-language-environment-internal): New function.
24137
24138 * language/thai-word.el (thai-word-table): Declare it by defvar,
24139 use dolist to initialize it.
24140 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
24141 (thai-fill-find-break-point): New functions.
24142
24143 2005-03-29 Richard M. Stallman <rms@gnu.org>
24144
24145 * simple.el (idle-update-delay): Move definition up.
24146 (set-mark): Doc fix.
24147
24148 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
24149
24150 * longlines.el: New file.
24151
24152 * simple.el (buffer-substring-filters): New variable.
24153 (filter-buffer-substring): New function.
24154 (kill-region, copy-region-as-kill): Use it.
24155
24156 * register.el (copy-to-register, append-to-register)
24157 (prepend-to-register): Use filter-buffer-substring.
24158
24159 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
24160
24161 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
24162 (gud-filter-pending-text): Move in front of gdb.
24163 (gud-overlay-arrow-position): New variable.
24164 (gud-sentinel, gud-display-line): Use it in place of
24165 overlay-arrow-position.
24166
24167 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
24168
24169 * progmodes/fortran.el (fortran-if-indent): Doc fix.
24170 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
24171 (fortran-font-lock-keywords-4): New variable.
24172 (fortran-blocks-re, fortran-end-block-re)
24173 (fortran-start-block-re): New constants, for hideshow.
24174 (hs-special-modes-alist): Add a Fortran entry.
24175 (fortran-mode-map): Bind fortran-end-of-block,
24176 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
24177 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
24178 (fortran-looking-at-if-then, fortran-end-of-block)
24179 (fortran-beginning-of-block): New functions, for hideshow.
24180
24181 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
24182 Doc fix. Tweak regexp.
24183 (f90-beginning-of-block): Push mark first.
24184
24185 2005-03-29 Jay Belanger <belanger@truman.edu>
24186
24187 * calc/calc.el: Update copyright date.
24188 (calc-version): Increase to 2.1.
24189 (calc-version-date): Remove.
24190
24191 * calc/calc-help.el: Update copyright date.
24192 (calc-full-help): Remove reference to calc-version-date.
24193 Update copyright date.
24194
24195 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
24196
24197 * vc.el (vc-do-command): Use a pipe for async processes, so password
24198 prompts don't show up at places where the user can't reply.
24199
24200 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
24201
24202 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
24203 on the file name we pass to the inferior shell.
24204
24205 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
24206
24207 * progmodes/which-func.el (which-function): Be robust in the face of an
24208 imenu--make-index-alist failure.
24209
24210 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
24211
24212 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
24213
24214 * progmodes/python.el (python-preoutput-filter): Fix last change.
24215
24216 2005-03-29 Lute Kamstra <lute@gnu.org>
24217
24218 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
24219 functions and compiled macros.
24220 (debug-convert-byte-code): Handle macros too.
24221 (debug-on-entry-1): Don't signal an error when trying to clear a
24222 function that is not set to debug on entry.
24223
24224 2005-03-29 Jay Belanger <belanger@truman.edu>
24225
24226 * calc/calc-lang.el: Add functions to math-function-table
24227 properties of tex and math.
24228
24229 2005-03-29 Kenichi Handa <handa@m17n.org>
24230
24231 * ps-mule.el (ps-mule-plot-string): Translate characters by
24232 ps-print-translation-table.
24233 (ps-mule-begin-job): Call find-charset-region/string with
24234 ps-print-translation-table.
24235 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
24236
24237 * ps-print.el (ps-print-translation-table): New variable.
24238 (ps-plot-region): Translate characters by ps-print-translation-table.
24239
24240 2005-03-29 Juri Linkov <juri@jurta.org>
24241
24242 * simple.el (next-error-highlight-timer): New variable.
24243
24244 * progmodes/compile.el (compilation-goto-locus):
24245 Use `next-error-highlight-timer' instead of `sit-for'.
24246
24247 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
24248
24249 * mail/supercite.el (sc-mail-field): Use assoc-string.
24250 (sc-get-address): Simplify regexps.
24251
24252 * files.el (minibuffer-with-setup-hook): New macro.
24253 (find-file-read-args): Use it to avoid let-binding
24254 minibuffer-with-setup-hook (which breaks turning on/off
24255 file-name-shadow-mode while in the prompt).
24256
24257 * complete.el (PC-read-include-file-name-internal):
24258 Use test-completion.
24259
24260 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
24261
24262 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
24263
24264 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
24265
24266 * window.el (window-buffer-height): Use count-screen-lines.
24267
24268 * progmodes/python.el (python-preoutput-leftover): New var.
24269 (python-preoutput-filter): Use it.
24270 (python-send-receive): Loop until all the result has been received.
24271
24272 2005-03-28 Juri Linkov <juri@jurta.org>
24273
24274 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
24275
24276 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
24277 "Recover Crashed Session".
24278 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
24279 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
24280 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
24281 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
24282 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
24283 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
24284 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
24285 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
24286
24287 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
24288 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
24289 Ediff Sessions", "Toggle use of separate control buffer frame",
24290 "Use separate frame for Ediff control buffer".
24291
24292 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
24293 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
24294 "Rename Bookmark", "Delete Bookmark".
24295
24296 * info.el (Info-mode-menu): Remove ellipsis from "Index".
24297 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
24298 Add `:active Info-index-alternatives' to "Next Matching Item".
24299
24300 * wdired.el (wdired-change-to-wdired-mode):
24301 Mention `wdired-abort-changes' key in the initial message.
24302
24303 * international/mule.el (auto-coding-alist): Associate non-ascii
24304 image filename extensions with `no-conversion'.
24305
24306 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
24307
24308 * international/iso-acc.el:
24309 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
24310
24311 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
24312
24313 * textmodes/sgml-mode.el (html-mode): Doc update.
24314
24315 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
24316
24317 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
24318
24319 * term.el (term-move-columns): Fix face after extending a line.
24320 (term-insert-spaces): Likewise.
24321 (term-reset-terminal): Fix off by one error.
24322
24323 2005-03-26 Eli Zaretskii <eliz@gnu.org>
24324
24325 * international/mule.el (auto-coding-alist): Add .xpi files.
24326
24327 * files.el (auto-mode-alist): Add .xpi files.
24328
24329 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
24330
24331 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
24332
24333 2005-03-26 Eli Zaretskii <eliz@gnu.org>
24334
24335 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
24336
24337 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
24338
24339 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
24340 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
24341
24342 * calendar/cal-move.el (calendar-beginning-of-year): Move the
24343 cursor to Jan 1 when needed.
24344 (calendar-end-of-year): Fix -/+ typo.
24345 Reported by Chong Yidong <cyd@stupidchicken.com>.
24346
24347 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
24348
24349 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
24350
24351 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
24352 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
24353
24354 2005-03-25 Richard M. Stallman <rms@gnu.org>
24355
24356 * filesets.el (filesets-init): Add autoload.
24357
24358 * mail/mailalias.el (mail-directory): Doc fix.
24359
24360 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
24361
24362 * mail/mailalias.el (mail-directory-process): Do nothing if
24363 mail-directory-process is an atom.
24364 (mail-get-names): Ignore mail-directory-names if it is an atom.
24365 (mail-directory-process defvar): Doc fix.
24366 (mail-names): Doc fix.
24367
24368 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
24369
24370 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
24371
24372 2005-03-26 Kenichi Handa <handa@m17n.org>
24373
24374 * international/mule-util.el (detect-coding-with-priority):
24375 Call update-coding-systems-internal before detect-coding-region.
24376
24377 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
24378
24379 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
24380 (gdb-frames-mode-map): Add follow-link property.
24381
24382 2005-03-25 Jay Belanger <belanger@truman.edu>
24383
24384 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
24385 for variables.
24386
24387 2005-03-25 Juri Linkov <juri@jurta.org>
24388
24389 * image-mode.el: Optimize image filename extension regexps in
24390 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
24391 in `auto-mode-alist'.
24392 (image-mode): Add `image-toggle-display-text' to local hook
24393 `change-major-mode-hook'. Display the image as an image by
24394 default. Set `cursor-type' and `truncate-lines' if the image
24395 is already displayed. Take into account the current mode (image
24396 or text) in message.
24397 (image-minor-mode): New minor mode.
24398 (image-mode-maybe, image-toggle-display-text): New functions.
24399 (image-toggle-display): Use called-interactively-p.
24400 Let-bind `inhibit-read-only' to t.
24401
24402 * image-mode.el (image-minor-mode): Set `cursor-type' and
24403 `truncate-lines' if the image is already displayed. Add turning
24404 image-minor-mode off to `change-major-mode-hook'. Add message.
24405 Call `image-toggle-display-text' after turning image-minor-mode off.
24406
24407 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
24408
24409 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
24410 Terminal.app, use utf-8.
24411 (set-display-table-and-terminal-coding-system): Add coding-system arg.
24412 (set-locale-environment): Use it.
24413
24414 * term/xterm.el: Undo last change, better done in mule-cmds.el.
24415
24416 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
24417
24418 * progmodes/python.el (python-close-block-statement-p)
24419 (python-outdent-p, python-current-defun): Use symbol-end.
24420
24421 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
24422
24423 * files.el (save-some-buffers): Doc fix.
24424
24425 2005-03-25 Werner Lemberg <wl@gnu.org>
24426
24427 * complete.el, thumbs.el: Replace `legal' with `valid'.
24428 * calendar/calendar.el: Replace `legal' with `valid'.
24429 * emacs-lisp/advice.el: Replace `legal' with `valid'.
24430 * mail/supercite.el: Replace `legal' with `valid'.
24431 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
24432 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
24433 Replace `legal' with `valid'.
24434 * textmodes/reftex-vars.el, textmodes/reftex.el:
24435 Replace `legal' with `valid'.
24436
24437 2005-03-25 Werner Lemberg <wl@gnu.org>
24438
24439 * calc/calc-forms.el, calc/calc-sel.el
24440 * midnight.el, vc-cvs.el
24441 * emacs-lisp/cl-macs.el
24442 * emulation/vip.el
24443 * eshell/esh-io.el, eshell/esh-var.el
24444 * mail/supercite.el
24445 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
24446 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
24447 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
24448 * progmodes/sh-script.el, progmodes/xscheme.el
24449 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
24450 * textmodes/reftex-index.el, textmodes/reftex-parse.el
24451 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
24452 * textmodes/reftex.el, textmodes/org.el:
24453 Replace `illegal' with `invalid'.
24454
24455 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24456
24457 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
24458 (flymake-find-buildfile, flymake-find-possible-master-files)
24459 (flymake-check-include, flymake-parse-line): Replace loops over the
24460 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
24461
24462 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
24463 Substitute file-name-as-directory in the rest of the file.
24464 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
24465 (flymake-replace-region): Remove unused arg `buffer'.
24466 (flymake-check-patch-master-file-buffer): Update calls to it.
24467 (flymake-add-err-info): Remove unused var `count'.
24468 (flymake-mode): Use define-minor-mode.
24469
24470 * progmodes/flymake.el: Use with-current-buffer.
24471 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
24472 flymake-replace-regexp-in-string, flymake-line-beginning-position)
24473 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
24474 Avoid testing for `xemacs'.
24475 (flymake-nop): Move.
24476 (flymake-region-has-flymake-overlays): Return the computed value.
24477 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
24478 Remove unused var `endline'.
24479 (flymake-get-line-count): Remove unused function.
24480 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
24481
24482 * emulation/vi.el:
24483 * generic.el:
24484 * hilit-chg.el (global-highlight-changes):
24485 * hi-lock.el (hi-lock-mode):
24486 * follow.el: find-file-hooks -> find-file-hook.
24487
24488 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
24489
24490 2005-03-24 Juri Linkov <juri@jurta.org>
24491
24492 * dired.el (dired-mode-map): Add menu item "Compare directories"
24493 for dired-compare-directories.
24494
24495 * dired-aux.el (dired-compare-directories): Add autoload cookie.
24496 Doc fix. Replace `read-file-name' with `read-directory-name'.
24497
24498 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24499
24500 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
24501
24502 2005-03-24 Jay Belanger <belanger@truman.edu>
24503
24504 * calc/calc-embed.el (calc-embedded-mode-change): Save all
24505 relevant mode settings in calc-embedded-original-modes when modes
24506 are permanently changed.
24507
24508 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24509
24510 * autoinsert.el: find-file-hooks -> find-file-hook.
24511
24512 2005-03-24 Lute Kamstra <lute@gnu.org>
24513
24514 * generic.el (generic-font-lock-defaults): Make it obsolete.
24515 (generic-font-lock-keywords): New variable to replace
24516 generic-font-lock-defaults.
24517 (generic-mode-set-font-lock): Delete it.
24518 (generic-mode-internal): Don't call generic-mode-set-font-lock.
24519 (generic-bracket-support): Add docstring.
24520
24521 * generic-x.el: Rename generic-font-lock-defaults to
24522 generic-font-lock-keywords throughout.
24523 (mailagent-rules-setup-function): Delete it.
24524 (mailagent-rules-generic-mode): Use anonymous function instead.
24525 (show-tabs-generic-mode-font-lock-defaults-1)
24526 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
24527 Quote faces.
24528 (show-tabs-tab-face, show-tabs-space-face): Specify background,
24529 not foreground.
24530
24531 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
24532 Recognize define-generic-mode.
24533
24534 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
24535
24536 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
24537 if there's no completion table.
24538
24539 2005-03-23 Miles Bader <miles@gnu.org>
24540
24541 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
24542 Remove tty-specific variants, as they're no longer needed.
24543
24544 2005-03-23 Lute Kamstra <lute@gnu.org>
24545
24546 * generic-x.el: Code cleanup: make args constant whenever possible.
24547 (installshield-statement-keyword-list)
24548 (installshield-system-functions-list)
24549 (installshield-system-variables-list, installshield-types-list)
24550 (installshield-funarg-constants-list): Make them constants.
24551
24552 * generic.el (generic-make-keywords-list): Add autoload cookie.
24553
24554 * calendar/time-date.el: Add comment on time value formats.
24555 Don't require parse-time.
24556 (with-decoded-time-value): New macro.
24557 (encode-time-value): New function.
24558 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
24559 (days-to-time): Return a valid time value when arg is huge.
24560 (time-since): Use time-subtract.
24561 (time-to-number-of-days): Use time-to-seconds.
24562
24563 2005-03-23 David Ponce <david@dponce.com>
24564
24565 * recentf.el (recentf-keep): New option.
24566 (recentf-menu-action): Default to `find-file'.
24567 (recentf-keep-non-readable-files-flag)
24568 (recentf-keep-non-readable-files-p)
24569 (recentf-file-readable-p, recentf-find-file)
24570 (recentf-cleanup-remote): Remove.
24571 (recentf-include-p): More robust.
24572 (recentf-keep-p): New function.
24573 (recentf-remove-if-non-kept): Rename from
24574 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
24575 All callers updated.
24576 (recentf-menu-items-for-commands): Fix help string.
24577 (recentf-track-closed-file): Update. Doc fix.
24578 (recentf-cleanup): Update. Count removed files. Doc fix.
24579
24580 2005-03-23 Kim F. Storm <storm@cua.dk>
24581
24582 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
24583 Don't inherit from fringe face (now happens automatically).
24584
24585 2005-03-22 Kim F. Storm <storm@cua.dk>
24586
24587 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
24588 position values.
24589
24590 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
24591
24592 * menu-bar.el (showhide-date-time): Remove.
24593 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
24594 (menu-bar-make-mm-toggle): Simplify.
24595
24596 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
24597
24598 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
24599 Accept qualified variable and function names.
24600
24601 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
24602
24603 * bindings.el (completion-ignored-extensions):
24604 Remove ".lis" for `vax-vms'.
24605
24606 2005-03-22 Andreas Schwab <schwab@suse.de>
24607
24608 * generic-x.el: Revert last change.
24609 * ldefs-boot.el: Update.
24610
24611 2005-03-22 Jay Belanger <belanger@truman.edu>
24612
24613 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
24614 (calc-embedded-save-original-modes)
24615 (calc-embedded-restore-original-modes): New functions.
24616 (calc-do-embedded): Save original modes when entering embedded mode
24617 and restore when leaving embedded mode.
24618 (calc-embedded-modes-change): Change the value of
24619 calc-embedded-original-modes to reflect permanent changes.
24620
24621 2005-03-22 Lute Kamstra <lute@gnu.org>
24622
24623 * generic-x.el: Require generic again.
24624
24625 2005-03-22 Miles Bader <miles@gnu.org>
24626
24627 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
24628 Tweak details to look good on both ttys and bitmap displays, light
24629 or dark background, etc.
24630
24631 2005-03-21 Kim F. Storm <storm@cua.dk>
24632
24633 * tooltip.el (tooltip-show-help-function): Check car and cdr of
24634 mouse position.
24635
24636 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
24637
24638 * icomplete.el: Don't forcibly turn on the mode upon load.
24639 (icomplete-mode): Use define-minor-mode.
24640 (icomplete-eoinput): Default to nil.
24641 (icomplete-minibuffer-setup): Remove autoload.
24642 (icomplete-tidy): Simplify.
24643 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
24644 in the initial state or if the user has modified the field.
24645 Fix handling of icomplete-max-delay-chars.
24646 Remove code that handles the oddball case where
24647 minibuffer-completion-table is an integer.
24648 Wrap icomplete-completions in while-no-input in case building
24649 completions takes more time than expected.
24650 (icomplete-completions): Simplify.
24651
24652 2005-03-21 Richard M. Stallman <rms@gnu.org>
24653
24654 * jka-compr.el (jka-compr-really-do-compress):
24655 Make variable buffer-local.
24656
24657 * image-mode.el: Handle .xpm files too.
24658 (image-toggle-display): Preserve modification flag.
24659
24660 * help.el (where-is): Don't mention aliases with no key bindings.
24661
24662 2005-03-21 Lute Kamstra <lute@gnu.org>
24663
24664 * generic.el: Fix commentary section. Don't require cl for
24665 compilation.
24666 (generic-mode-list): Add autoload cookie.
24667 (generic-use-find-file-hook, generic-lines-to-scan)
24668 (generic-find-file-regexp, generic-ignore-files-regexp)
24669 (generic-mode, generic-mode-find-file-hook)
24670 (generic-mode-ini-file-find-file-hook): Fix docstrings.
24671 (define-generic-mode): Make it a defmacro. Fix docstring.
24672 (generic-mode-internal): Code cleanup. Add autoload cookie.
24673 (generic-mode-set-comments): Code cleanup.
24674 * generic-x.el: Don't prevent compilation. Don't require generic.
24675 Follow coding conventions. Minor code cleanup.
24676 (etc-fstab-generic-mode): Add some keywords.
24677 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
24678 define-generic-mode like a function declaration.
24679
24680 2005-03-21 Jay Belanger <belanger@truman.edu>
24681
24682 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
24683 changing modes.
24684
24685 2005-03-21 Sam Steingold <sds@gnu.org>
24686
24687 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
24688
24689 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
24690
24691 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
24692 Add underscore to "f$ lexicals" regexp.
24693
24694 2005-03-20 Juri Linkov <juri@jurta.org>
24695
24696 * subr.el (progress-reporter-do-update): When `min-value' is equal
24697 to `max-value', set `percentage' to 0 and prevent division by zero.
24698
24699 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
24700
24701 Sync with Tramp 2.0.48.
24702
24703 * net/tramp.el (all): Change all addresses to .gnu.org.
24704 (tramp-append-tramp-buffers): New defun.
24705 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
24706 Catch `dont-send' signal.
24707 (tramp-set-auto-save-file-modes): Set always permissions, because
24708 there might be an old auto-saved file belonging to another
24709 original file. This could be a security threat. Reported by
24710 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
24711 Check for Emacs 21.3.50 removed.
24712
24713 * net/tramp-smb.el (all): Remove debug construct for
24714 `with-parsed-tramp-file-name'.
24715 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
24716 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
24717 No error message if DIRECTORY or FILENAME doesn't exist.
24718 (tramp-smb-open-connection): Check existence of
24719 `tramp-smb-program'.
24720
24721 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
24722
24723 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
24724 Properly handle the case where the `m' or `s' command's argument is not
24725 yet terminated.
24726 (perl-indent-new-calculate): New function.
24727 (perl-indent-line): Use it.
24728
24729 2005-03-20 Miles Bader <miles@gnu.org>
24730
24731 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
24732 in text-mode too. Change to new face names.
24733 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
24734 Add `:weight bold' attribute.
24735 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
24736
24737 2005-03-19 Juri Linkov <juri@jurta.org>
24738
24739 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
24740
24741 * international/mule.el (auto-coding-alist): Sync with
24742 `auto-mode-alist' by adding upper case archive file extensions
24743 and adding ear/war to jar extension.
24744
24745 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
24746
24747 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
24748 running, restart it.
24749
24750 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
24751
24752 * finder.el (finder-current-item): Throw an error on an empty line.
24753
24754 * man.el (Man-follow-manual-reference): If current-word returns
24755 nil, use "".
24756
24757 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
24758
24759 * simple.el (goto-line): Doc fix.
24760
24761 2005-03-19 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
24762
24763 * files.el (save-buffer): Doc fix.
24764
24765 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
24766
24767 * recentf.el (recentf-cleanup-remote): New variable.
24768 (recentf-cleanup): Use it to conditionally check availability of
24769 remote files.
24770
24771 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
24772
24773 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
24774 function names.
24775
24776 2005-03-19 Eli Zaretskii <eliz@gnu.org>
24777
24778 * language/thai-word.el: New file.
24779
24780 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
24781
24782 * files.el (backup-buffer): If the file's directory is not
24783 writable, use copy instead of move to backup the file.
24784
24785 2005-03-19 Eli Zaretskii <eliz@gnu.org>
24786
24787 * obsolete/keyswap.el: Moved to obsolete/ from term/.
24788
24789 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
24790
24791 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
24792 Use functionp instead of symbolp and fboundp. Reported by Drkm
24793 <darkman_spam@yahoo.fr>.
24794 (ps-print-version): New version 6.6.6.
24795
24796 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
24797
24798 * textmodes/table.el (table--line-column-position): New idiom.
24799 (table--row-column-insertion-point-p): New function to test
24800 validity of row and column insertion operation at a location.
24801 (table-global-menu, table-cell-menu): Use above functions for
24802 deterministic test operation.
24803 (table--editable-cell-p): Behave in deterministic fashion.
24804
24805 2005-03-18 Juri Linkov <juri@jurta.org>
24806
24807 * isearch.el (isearch-lazy-highlight-new-loop):
24808 Make arguments beg and end optional.
24809 (isearch-update): Remove optional arguments nil from
24810 isearch-lazy-highlight-new-loop.
24811 (isearch-lazy-highlight-search): Let-bind case-fold-search to
24812 isearch-lazy-highlight-case-fold-search instead of
24813 isearch-case-fold-search, and let-bind isearch-regexp to
24814 isearch-lazy-highlight-regexp.
24815 Use isearch-lazy-highlight-last-string instead of isearch-string.
24816
24817 * replace.el (perform-replace): Remove bindings of global
24818 variables isearch-string, isearch-regexp, isearch-case-fold-search.
24819 Add three new arguments to `replace-highlight'.
24820 (replace-highlight): Add arguments string, regexp, case-fold.
24821 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
24822 to allow isearch-lazy-highlight-new-loop to use these values
24823 to set corresponding isearch-lazy-highlight-* internal
24824 variables whose values lazy highlighting will use regardless of
24825 changes to global variables isearch-string, isearch-regexp,
24826 isearch-case-fold-search during lazy highlighting loop.
24827 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
24828 to `lazy-highlight-cleanup'.
24829
24830 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
24831 (ispell-highlight-face): Set default face to `isearch' when
24832 lazy highlighting is enabled.
24833 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
24834 priority to 1. Add lazy highlighting.
24835 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
24836 from `isearch-dehighlight'.
24837
24838 2005-03-18 David Ponce <david@dponce.com>
24839
24840 * files.el (hack-local-variables): Do a case-insensitive search
24841 for End.
24842
24843 2005-03-18 Juri Linkov <juri@jurta.org>
24844
24845 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
24846 `isearch-lazy-highlight-cleanup', add alias to old name and
24847 declare obsolete. Add release numbers to other obsolete vars.
24848 (isearch-done, isearch-lazy-highlight-new-loop):
24849 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
24850 (lazy-highlight-cleanup) <variable>: Doc fix.
24851 (isearch-lazy-highlight-update): Rename obsolete
24852 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
24853
24854 2005-03-18 Kenichi Handa <handa@m17n.org>
24855
24856 * language/thai-util.el: Fix categorization of Thai characters in
24857 thai-category-table.
24858 (thai-composition-pattern): Adjust it for the above change.
24859 (thai-self-insert-command, thai-compose-syllable): New functions.
24860 (thai-compose-region): Use thai-compose-syllable.
24861 (thai-compose-string): Likewise.
24862 (thai-composition-function): Likewise.
24863 (thai-auto-composition): New function.
24864 (thai-auto-composition-mode): New minor mode.
24865
24866 * language/thai.el: Fix patterns to be registered in
24867 composition-function-table.
24868
24869 * international/quail.el (quail-input-method): Locally bind
24870 inhibit-modification-hooks to t.
24871
24872 2005-03-17 Richard M. Stallman <rms@gnu.org>
24873
24874 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
24875 (perl-mode): Use run-mode-hooks.
24876
24877 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
24878 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
24879 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
24880
24881 * mail/sendmail.el (sendmail-send-it): Reenable the code
24882 to compute resend-to-address and use it.
24883
24884 * tar-mode.el (tar-mode): Turn off undo unconditionally.
24885
24886 * image-mode.el: New file.
24887
24888 * image.el (insert-sliced-image): Add autoload cookie.
24889
24890 * font-lock.el (font-lock-lines-before): New user option.
24891 (font-lock-after-change-function): Obey it.
24892
24893 * bindings.el (esc-map): Make M-g a prefix.
24894 Bind M-g g and M-g M-g to goto-line.
24895
24896 * faces.el (face-id): Doc fix.
24897
24898 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
24899
24900 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
24901 (rmail-show-message): Use rmail-unknown-mail-followup-to.
24902 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
24903
24904 * mail/sendmail.el (mail-yank-ignored-headers)
24905 (mail-font-lock-keywords, mail-mode-fill-paragraph):
24906 Add Mail-Followup-To and Mail-Reply-To headers.
24907 (mail-citation-hook): Add autoload cookie.
24908 (mail-mode): Doc fix.
24909 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
24910 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
24911 (mail-mode-fill-paragraph): Handle those headers.
24912 (mail-mailing-lists): New variable.
24913 (mail-mail-reply-to, mail-mail-followup-to): New functions.
24914
24915 2005-03-17 Juri Linkov <juri@jurta.org>
24916
24917 * isearch.el (isearch-fallback): Check for `(car previous)'
24918 before calling `isearch-other-end-state'.
24919
24920 2005-03-17 Kim F. Storm <storm@cua.dk>
24921
24922 * simple.el (move-beginning-of-line): Move to beginning of buffer
24923 line, as well as beginning of screen line.
24924
24925 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
24926
24927 * calendar/diary-lib.el (mark-diary-entries): Use new optional
24928 argument REDRAW rather than calendar-redrawing variable.
24929 * calendar/calendar.el (calendar-redrawing): Delete.
24930 (redraw-calendar): Do not bind calendar-redrawing.
24931
24932 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
24933
24934 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
24935 diary-file buffer.
24936
24937 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
24938
24939 * help.el (describe-mode): Allow a :minor-mode-function property to
24940 specify a different minor mode toggle function than the variable.
24941 * simple.el (auto-fill-function):
24942 * subr.el (add-minor-mode): Use it.
24943
24944 2005-03-16 Kenichi Handa <handa@m17n.org>
24945
24946 * language/ethio-util.el (sera-being-called-by-w3): New variable.
24947 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
24948 (ethio-fidel-to-sera-buffer): Likewise.
24949
24950 2005-03-16 Juri Linkov <juri@jurta.org>
24951
24952 * emacs-lisp/find-func.el (find-function-regexp):
24953 Add defun-emitting macro `menu-bar-make-toggle'.
24954
24955 * isearch.el: Put `isearch-scroll' property to
24956 `split-window-horizontally'.
24957
24958 * info.el: Update error messages for `debug-ignored-errors'.
24959 (Info-isearch-search): Doc fix.
24960 (Info-find-node): Move up code to go into info buffer before
24961 recording the node to the history.
24962 (Info-fontify-node): Fontify titles only if the next line
24963 has two or more `*', `=', `-', `.'.
24964 Display "go to this node" for empty (match-string 3).
24965
24966 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24967
24968 * term/mac-win.el: Add mouse pointer shape constants.
24969
24970 2005-03-15 Kim F. Storm <storm@cua.dk>
24971
24972 * simple.el (move-beginning-of-line): Use vertical-motion.
24973
24974 2005-03-15 Juri Linkov <juri@jurta.org>
24975
24976 * isearch.el (isearch-error): New variable.
24977 (isearch-invalid-regexp, isearch-within-brackets): Remove.
24978 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
24979 (isearch-within-brackets-state): Remove.
24980 (isearch-case-fold-search-state, isearch-pop-fun-state):
24981 Decrease frame index.
24982 (isearch-mode, isearch-top-state, isearch-push-state)
24983 (isearch-edit-string, isearch-abort, isearch-search-and-update)
24984 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
24985 (isearch-search, isearch-lazy-highlight-new-loop):
24986 Replace `isearch-invalid-regexp' with `isearch-error'.
24987 Remove `isearch-within-brackets'.
24988 (isearch-search): Add `search-failed' handler to `condition-case'.
24989 (isearch-lazy-highlight-search): Add `condition-case' to catch
24990 errors and allow `isearch-lazy-highlight-update' to try
24991 highlighting from the beginning of the window.
24992 (isearch-repeat): Move up code to set isearch-wrapped to t
24993 before calling isearch-wrap-function.
24994
24995 * info.el (Info-isearch-initial-node): New internal variable.
24996 (Info-search): Signal an error in isearch mode when search leaves
24997 the initial node. Signal an error when `bound' is non-nil and
24998 nothing was found in the current subfile.
24999 (Info-isearch-search): Remove `condition-case'.
25000 (Info-isearch-wrap): Don't wrap when search failed during leaving
25001 the initial node. If `Info-isearch-search' is nil, wrap around
25002 the current node.
25003 (Info-isearch-start): New fun.
25004 (Info-mode): Add buffer-local hook `Info-isearch-start' to
25005 `isearch-mode-hook'.
25006
25007 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25008
25009 * simple.el (normal-erase-is-backspace): Set default to t if
25010 running on Mac.
25011
25012 * term/mac-win.el (function-key-map): Sync with x-win.el.
25013
25014 2005-03-15 Kenichi Handa <handa@m17n.org>
25015
25016 * international/mule-cmds.el (locale-language-names): Modify the
25017 format of elements and add more entries.
25018 (locale-preferred-coding-systems): Add more entries.
25019 (set-locale-environment): Adjust for the change of
25020 locale-language-names.
25021
25022 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
25023
25024 * pcvs.el (smerge-ediff): Remove bogus autoload.
25025
25026 2005-03-14 Lute Kamstra <lute@gnu.org>
25027
25028 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
25029 Ignore a `*' at the beginning of a line.
25030
25031 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
25032 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
25033 subr.el.
25034 (dont-compile, eval-when-compile, eval-and-compile): Use declare
25035 to specify indentation.
25036
25037 * generic.el (define-generic-mode): Let generic-mode-list be a
25038 list of strings; test membership with equal.
25039
25040 2005-03-14 Kim F. Storm <storm@cua.dk>
25041
25042 * simple.el (next-line, previous-line): Add optional try-vscroll
25043 arg to recognize interactive use. Pass it on to line-move.
25044 (line-move): Don't perform auto-window-vscroll when defining or
25045 executing keyboard macro to ensure consistent behavior.
25046
25047 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
25048
25049 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
25050
25051 2005-03-13 Lute Kamstra <lute@gnu.org>
25052
25053 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
25054 debugger-setup-buffer so that backtrace marks the frames set to
25055 debug-on-exit and we don't have to do it manually. Set an extra
25056 debug-on-exit for macro's.
25057 (debugger-setup-buffer): Don't mark the top frame manually.
25058
25059 2005-03-12 Lute Kamstra <lute@gnu.org>
25060
25061 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
25062 lisp-indent-function throughout.
25063 (with-no-warnings): Set lisp-indent-function property.
25064
25065 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
25066
25067 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
25068 Add entry for backslash.
25069
25070 2005-03-12 Juri Linkov <juri@jurta.org>
25071
25072 * info.el (Info-search): Four fixes for backward search.
25073
25074 2005-03-11 Jay Belanger <belanger@truman.edu>
25075
25076 * calc/calc.el (calc-language-alist): New variable.
25077 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
25078 (calc-embedded-find-modes): Use calc-language-alist instead of
25079 calc-embedded-language-alist.
25080
25081 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
25082
25083 * calendar/calendar.el (calendar-redrawing): New internal
25084 variable.
25085 (redraw-calendar): Remove bogus save-excursion from previous
25086 change. Bind calendar-redrawing to t for mark-diary-entries.
25087 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
25088 calendar if that is why we were called.
25089
25090 2005-03-11 Kenichi Handa <handa@m17n.org>
25091
25092 * international/mule.el (make-coding-system): Set property
25093 coding-system-define-form to nil.
25094 (define-coding-system-alias): Likewise.
25095
25096 2005-03-11 Kenichi Handa <handa@m17n.org>
25097
25098 These changes are suggested by Dave Love <fx@gnu.org>.
25099
25100 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
25101 coding: tag.
25102 (adaptive-fill-regexp): Add more bullets.
25103 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
25104 regexps.
25105
25106 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
25107
25108 * help.el (describe-mode): Properly handle non-trivial lighters.
25109 Don't ignore minor modes that are not listed in minor-mode-list.
25110
25111 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
25112 feature ON when the user requests to turn it OFF.
25113
25114 2005-03-10 Lute Kamstra <lute@gnu.org>
25115
25116 * emacs-lisp/debug.el (debug-entry-code): Delete it.
25117 (implement-debug-on-entry): New function to replace debug-entry-code.
25118 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
25119 second argument as the 2005-03-07 change makes it obsolete.
25120 (debug-on-entry, cancel-debug-on-entry): Update call to
25121 debug-on-entry-1.
25122 (debug, debugger-setup-buffer): Comment update.
25123 (debugger-frame-number): Update to work with implement-debug-on-entry.
25124
25125 2005-03-10 Jay Belanger <belanger@truman.edu>
25126
25127 * calc/calc-embed.el (math-ms-args): Declare it.
25128 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
25129 math-ms-args.
25130 (calc-embedded-subst): Use math-multi-subst-rec to substitute
25131 variables.
25132
25133 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
25134
25135 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
25136 Use message-box.
25137
25138 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
25139 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
25140 (tooltip-gud-tips): Simplify.
25141 (tooltip-gud-tips-p): Remove superfluous :set.
25142 (tooltip-gud-modes): Add fortran-mode.
25143 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
25144
25145 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
25146
25147 2005-03-09 Kim F. Storm <storm@cua.dk>
25148
25149 * play/animate.el (animate-place-char): Use forward-line instead
25150 of next-line to improve performance.
25151
25152 2005-03-09 Simon Josefsson <jas@extundo.com>
25153
25154 * net/browse-url.el (browse-url-default-browser): Doc fix.
25155
25156 2005-03-09 Miles Bader <miles@gnu.org>
25157
25158 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
25159 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
25160
25161 2005-03-09 Kenichi Handa <handa@m17n.org>
25162
25163 * international/latin-1.el: Set case and syntax for 255 only if
25164 set-case-syntax-set-multibyte is nil.
25165
25166 * textmodes/ispell.el (ispell-insert-word): New function.
25167 (ispell-word): Use ispell-insert-word to insert a new word.
25168 (ispell-process-line): Likewise.
25169 (ispell-complete-word): Likewise.
25170
25171 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
25172
25173 * calendar/calendar.el (redraw-calendar): Preserve point.
25174 Reported by Matt Hodges <MPHodges@member.fsf.org>.
25175 (calendar-week-start-day): Move after definition of
25176 redraw-calendar. Delete buffer test, since redraw-calendar has
25177 that now.
25178
25179 * calendar/diary-lib.el (mark-diary-entries): Only call
25180 redraw-calendar in the first of any recursive calls.
25181 Reported by Alan Shutko <ats@acm.org>.
25182
25183 2005-03-08 Juri Linkov <juri@jurta.org>
25184
25185 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
25186 (html-horizontal-rule, html-line, html-image, html-checkboxes)
25187 (html-radio-buttons): Add a space before the trailing `/>' where
25188 sgml-xml-mode is non-nil.
25189 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
25190 the subsequent tag of the empty XML tag.
25191 (html-href-anchor): Don't set initial input to "http:".
25192 (html-image): Ask for the image URL and set point inside alt="".
25193 (html-name-anchor): Duplicate the name in the `id' attribute when
25194 sgml-xml-mode is non-nil.
25195 (html-paragraph): Remove \n before <p>.
25196 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
25197 instead of `checked' when sgml-xml-mode is non-nil.
25198
25199 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
25200 Remove 1 space before #RRGGBB to not truncate it on terminal
25201 windows w/o fringes. Remove 1 space between bg and fg examples
25202 to get more space.
25203 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
25204 avoid byte-compile warnings.
25205
25206 * image-file.el (image-file-handler): Put `safe-magic' property to
25207 `image-file-handler'.
25208
25209 * info.el (Info-isearch-search): Emulate word search in
25210 isearching through multiple Info nodes with Info-search.
25211 (Info-isearch-wrap): Allow isearch-word.
25212
25213 2005-03-08 Lute Kamstra <lute@gnu.org>
25214
25215 * emacs-lisp/debug.el (debugger-step-through): Make sure that
25216 stepping into the debugger's code is not possible.
25217 (debugger-jumping-flag): Docstring update.
25218
25219 2005-03-08 Jay Belanger <belanger@truman.edu>
25220
25221 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
25222 embedded mode begins.
25223 (calc-embedded-language-alist): New variable.
25224 (calc-embedded-find-modes): Use calc-embedded-language-alist to
25225 set default language mode.
25226
25227 2005-03-08 Kenichi Handa <handa@m17n.org>
25228
25229 * international/ccl.el (define-ccl-program): Fix docstring about
25230 extra 256 bytes assured for the output buffer.
25231
25232 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
25233 Fix BUFFER_MAGNIFICATION to 2.
25234 (ccl-encode-mule-utf-16be-with-signature): Likewise.
25235
25236 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
25237
25238 * align.el (align-rules-list): Added an alignment rule for CSS
25239 declarations (applies to css-mode and html-mode buffers).
25240
25241 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
25242
25243 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
25244
25245 2005-03-07 Kim F. Storm <storm@cua.dk>
25246
25247 * simple.el (move-beginning-of-line): New command.
25248
25249 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
25250
25251 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
25252
25253 * emulation/cua-base.el: Put CUA move property on move-end-of-line
25254 and move-beginning-of-line.
25255
25256 * apropos.el (apropos-print): Omit command from M-x ... RET.
25257
25258 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
25259
25260 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
25261 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
25262
25263 2005-03-06 Richard M. Stallman <rms@gnu.org>
25264
25265 * bindings.el (esc-map): Bind M-g to goto-line.
25266
25267 * facemenu.el (global-map): Bind M-o, not M-g.
25268
25269 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
25270
25271 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
25272 "Open Directory" as for "Open File".
25273
25274 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
25275
25276 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
25277 (push-mark-command): Run activate-mark-hook.
25278
25279 2005-03-06 Richard M. Stallman <rms@gnu.org>
25280
25281 * help-mode.el (help-mode-finish): Don't alter the element
25282 in view-return-to-alist if there already is one.
25283
25284 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
25285 make sure the current buffer is the expected one.
25286
25287 * novice.el (disabled-command-function): Output in *Disabled Command*.
25288 Explicitly ignore non-keyboard events, and explicitly handle C-g.
25289
25290 * textmodes/flyspell.el (flyspell-large-region):
25291 Pass args differently for aspell.
25292
25293 * files.el (mode-require-final-newline): Doc fix.
25294
25295 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
25296
25297 * progmodes/which-func.el (which-function):
25298 Specify NOERROR when calling imenu--make-index-alist.
25299
25300 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
25301
25302 * simple.el (normal-erase-is-backspace): Define default value.
25303
25304 * custom.el (custom-theme-set-variables): Remove unused var
25305 `immediate'.
25306 (custom-reevaluate-setting): Simple function to handle variables
25307 that are defined before their default value can really be
25308 computed.
25309
25310 * startup.el (command-line): Use it for temporary-file-directory,
25311 small-emporary-file-directory, auto-save-file-name-transforms,
25312 blink-cursor-mode, and normal-erase-is-backspace.
25313
25314 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
25315 progress, even with buggy anchored keywords.
25316
25317 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
25318
25319 * simple.el (goto-line): Remove unbalanced final parenthesis.
25320
25321 2005-03-05 Richard M. Stallman <rms@gnu.org>
25322
25323 * simple.el (goto-line): Use a number at point as the default.
25324 With C-u as arg, switch buffers.
25325
25326 2005-03-05 Juri Linkov <juri@jurta.org>
25327
25328 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
25329 with `no-blinking-cursor'.
25330
25331 * startup.el (no-blinking-cursor): New defvar.
25332 (command-line): Add `--no-blinking-cursor' to longopts.
25333 Set `no-blinking-cursor' to t for command line arguments
25334 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
25335 with `no-blinking-cursor' in the condition for calling
25336 `blink-cursor-mode'.
25337
25338 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
25339
25340 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
25341 (menu-bar-options-save): Add blink-cursor-mode.
25342 (menu-bar-options-menu): Add blink-cursor-mode.
25343
25344 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
25345
25346 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
25347 (icalendar-export-file, icalendar-export-region)
25348 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
25349 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
25350
25351 2005-03-04 Lute Kamstra <lute@gnu.org>
25352
25353 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
25354 (debug-function-list): Ditto.
25355
25356 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
25357
25358 * textmodes/texinfmt.el (texinfo-append-refill):
25359 Redefine the types of line to which @refill
25360 is not appended by replacing a search for `@refill\\|@bye' with
25361 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
25362 itemize@refill' bug and the unfilled long lines bug.
25363 (texinfmt-version): Update number and date.
25364
25365 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
25366
25367 * international/code-pages.el (windows-1250, windows-125[2-8])
25368 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
25369
25370 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
25371
25372 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
25373 bound yet.
25374
25375 2005-03-02 Romain Francoise <romain@orebokech.com>
25376
25377 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
25378 buffer after removing limits.
25379 (ibuffer-pop-filter): Ditto.
25380 Update copyright.
25381
25382 2005-03-02 Miles Bader <miles@gnu.org>
25383
25384 * button.el (make-text-button): If the user doesn't specify a
25385 type, use the default. Rewrite to use `add-text-properties' and
25386 plist functions.
25387
25388 2005-03-01 Lute Kamstra <lute@gnu.org>
25389
25390 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
25391 (debugger-jumping-flag): New var.
25392 (debug-entry-code): Use it.
25393 (debugger-jump): Use debugger-jumping-flag and add
25394 debugger-reenable to post-command-hook.
25395 (debugger-reenable): Use debugger-jumping-flag and remove itself
25396 from post-command-hook.
25397 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
25398 debugger-reenable.
25399
25400 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
25401
25402 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
25403 inclusion of "itemize\\|", which may be unnecessary, is certainly
25404 inelegant, and stops refilling in itemize lists when formatting
25405 Japanese Texinfo files to Info.
25406 Update copyright to 2005.
25407
25408 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
25409
25410 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
25411 of an error if GDB can't find the source file.
25412
25413 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
25414
25415 * calendar/calendar.el (redraw-calendar): Work from any buffer,
25416 not just the calendar.
25417
25418 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
25419 first.
25420 (diary-redraw-calendar): New function.
25421 (make-diary-entry): Add diary-redraw-calendar to local
25422 write-contents-functions. Turn off selective display before
25423 inserting in diary.
25424
25425 2005-03-01 Kim F. Storm <storm@cua.dk>
25426
25427 * emacs-lisp/copyright.el (copyright-fix-years): New command.
25428
25429 2005-03-01 Lute Kamstra <lute@gnu.org>
25430
25431 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
25432 that debug-entry-code can be safely removed from a function while
25433 this code is being evaluated. Revert the 2005-02-27 change as the
25434 new implementation no longer requires it. Make sure that a
25435 function body containing just a string is not mistaken for a docstring.
25436 (debug): Skip one more frame in case of debug on entry.
25437 (debugger-setup-buffer): Delete one more frame line in case of
25438 debug on entry.
25439 (debugger-frame-number): Update to use the new text introduced by
25440 the 1999-11-03 change. Skip one more frame in case of debug on entry.
25441
25442 2005-02-28 Kim F. Storm <storm@cua.dk>
25443
25444 * double.el (double-translate-key): Call force-window-update after
25445 read-event to avoid crash in redisplay.
25446
25447 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
25448
25449 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
25450 (debug): Use it. Move the inhibit-trace earlier.
25451 (debug-entry-code): New const.
25452 (debug-on-entry-1): Use it.
25453
25454 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
25455
25456 * international/utf-16.el (ccl-encode-mule-utf-16le):
25457 Fix BUFFER_MAGNIFICATION to 2.
25458 (ccl-encode-mule-utf-16be): Likewise.
25459
25460 2005-02-28 Kenichi Handa <handa@m17n.org>
25461
25462 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
25463 Fix BUFFER_MAGNIFICATION to 4.
25464 (ccl-encode-mule-utf-16be-with-signature): Likewise.
25465
25466 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
25467
25468 * speedbar.el (speedbar-update-flag): Doc fix.
25469 (speedbar-show-info-under-mouse): Give set-mouse-position the right
25470 argument.
25471
25472 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
25473
25474 * reveal.el (reveal-post-command): Don't try to reveal overlays which
25475 have a non-nil `invisible' property but are actually visible.
25476
25477 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
25478 for perldoc sections.
25479 (perl-outline-regexp, perl-outline-level): New var and function.
25480 (perl-mode): Use them.
25481
25482 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
25483
25484 * calendar/diary-lib.el (diary-remind): Discard any mark portion
25485 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
25486
25487 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
25488
25489 * cus-edit.el: Comment change.
25490 (custom-buffer-create-internal): Slightly reword text at top of
25491 Custom buffers. Mention there that saving an option edits the
25492 init file. Add link to Emacs manual node on `custom-file'.
25493 (custom-magic-alist): Rewrite individual State messages to use
25494 capitalized keywords. Doc fix.
25495
25496 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
25497
25498 * calendar/calendar.el (calendar-buffer): Move above
25499 calendar-week-start-day.
25500 (calendar-week-start-day): Doc fix. Add :set function.
25501 (calendar-minimum-window-height): New variable.
25502 (generate-calendar-window): Only resize window if selected-window
25503 is displaying the calendar buffer. Use new variable
25504 calendar-minimum-window-height.
25505 (generate-calendar): Reword error message.
25506 (calendar-mode-map): Bind DEL to scroll-other-window-down.
25507
25508 2005-02-27 Andreas Schwab <schwab@suse.de>
25509
25510 * vc.el (vc-do-command): Don't run command asynchronously when
25511 operating in a remote directory.
25512
25513 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
25514 change from sync with Tramp 2.0.47.
25515
25516 2005-02-27 Richard M. Stallman <rms@gnu.org>
25517
25518 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
25519
25520 * textmodes/flyspell.el (flyspell-mode-on):
25521 Call ispell-change-dictionary only if necessary.
25522
25523 * emacs-lisp/re-builder.el (regexp-builder): New function.
25524
25525 * register.el (describe-register-1): Explicitly handle
25526 yank-excluded-properties = t.
25527
25528 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
25529 (custom-magic-alist): Change the status descriptions again.
25530 (face widget-type): Total rewrite based on `restricted-sexp'
25531 to eliminate the confusing double hiding levels.
25532
25533 * emacs-lisp/debug.el (debug-on-entry-1):
25534 If function body is empty, add nil as body form.
25535
25536 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
25537
25538 * emacs-lisp/trace.el (inhibit-trace): New var.
25539 (trace-make-advice): Use it.
25540
25541 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
25542
25543 2005-02-26 Kim F. Storm <storm@cua.dk>
25544
25545 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
25546 (mouse-on-link-p, mouse-drag-region-1): Use it.
25547
25548 2005-02-25 Lute Kamstra <lute@gnu.org>
25549
25550 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
25551
25552 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
25553
25554 * frame.el (blink-cursor-mode): Add :group keyword.
25555
25556 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
25557
25558 * calendar/icalendar.el (icalendar--decode-isodatetime):
25559 New optional argument DAY-SHIFT.
25560 (icalendar-export-region): Fix coding-system-for-write.
25561 (icalendar--convert-ical-to-diary): Shift end-day of all-day
25562 events by one.
25563
25564 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
25565
25566 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
25567
25568 2005-02-24 Kim F. Storm <storm@cua.dk>
25569
25570 * international/iso-acc.el (iso-accents-compose): Fix crash
25571 during redisplay. Call force-window-update after read-event
25572 and delete-region to signal that window is not accurate.
25573
25574 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
25575
25576 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
25577 Remove unused and inexistent var `inhibit-trace'.
25578 (debugger-mode): Use run-mode-hooks.
25579 (debugger-list-functions): Add buttons; setup xref stack.
25580
25581 2005-02-23 Richard M. Stallman <rms@gnu.org>
25582
25583 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
25584 appointment says it was explicitly made.
25585 (appt-add): Set the 3rd element.
25586 (appt-make-list): Preserve explicit appointments.
25587
25588 * subr.el (find-tag-default): Catch errors in forward-sexp.
25589
25590 2005-02-23 Juri Linkov <juri@jurta.org>
25591
25592 * info.el (Info-isearch-search): New defcustom.
25593 (Info-isearch-search): Call the default isearch function
25594 when Info-isearch-search is nil.
25595 (Info-isearch-wrap): Use variable Info-isearch-search.
25596
25597 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
25598
25599 * cus-edit.el: Comment change.
25600
25601 2005-02-22 Kim F. Storm <storm@cua.dk>
25602
25603 * progmodes/hideif.el (hide-ifdef-use-define-alist):
25604 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
25605
25606 2005-02-22 Simon Josefsson <jas@extundo.com>
25607
25608 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
25609 New variable.
25610 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
25611 Oskarsson" <myrkraverk@users.sourceforget.net>.
25612
25613 2005-02-22 Kim F. Storm <storm@cua.dk>
25614
25615 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
25616 check that window of that event is the selected window.
25617 (mouse-drag-region-1): Compare mouse event window to selected
25618 window before setting point.
25619
25620 * tooltip.el (tooltip-show-help-function): Pass event to
25621 mouse-on-link-p so it can check selected window.
25622
25623 2005-02-22 Kenichi Handa <handa@m17n.org>
25624
25625 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
25626 (ps-mule-show-warning): New function.
25627 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
25628 characters are found.
25629
25630 * ps-print.el (ps-header-footer-string): Return a list of header
25631 and footer strings.
25632
25633 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
25634
25635 * pcvs.el (cvs-retrieve-revision): Fix thinko.
25636
25637 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
25638
25639 * frame.el (blink-cursor-mode): Use define-minor-mode.
25640
25641 * term/mac-win.el (function-key-map): Use char-names more consistently.
25642 (file-name-coding-system): Only set it for MacOS-9. The other case is
25643 already handled in mule-cmds.el (where it also works when mac-win.el
25644 is not used).
25645
25646 2005-02-21 Kenichi Handa <handa@m17n.org>
25647
25648 * international/mule.el (ctext-pre-write-conversion): Always use
25649 " *code-converting-work*" buffer for work.
25650
25651 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
25652
25653 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
25654
25655 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
25656
25657 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
25658
25659 * ses.el (undo-more): Restore defadvice, but only the part that
25660 allows changes outside the restricted area of the buffer.
25661
25662 2005-02-20 Kim F. Storm <storm@cua.dk>
25663
25664 * simple.el (line-move): Add fourth optional arg try-vscroll which
25665 must be set to perform auto-window-vscroll.
25666 When moving backwards and doing auto-window-vscroll, automatically
25667 vscroll to the last part of lines which are taller than the window.
25668 (next-line, previous-line): Set try-vscroll arg on line-move.
25669
25670 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
25671
25672 * replace.el (query-replace, query-replace-regexp)
25673 (replace-string, replace-regexp): When operating on region, make
25674 the minibuffer prompt say so.
25675
25676 * isearch.el (isearch-forward): Document isearch-query-replace and
25677 isearch-query-replace-regexp keybindings.
25678
25679 2005-02-19 Jay Belanger <belanger@truman.edu>
25680
25681 * calc/calc-aent.el (math-read-token): Add local variable.
25682
25683 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
25684 (calc-edit-top): Move declaration to earlier in file.
25685 (calc-edit-macro-repeats): Add local variables.
25686
25687 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
25688 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
25689 calcFunc-tanh.
25690 Adjust integration rule for calcFunc-tan.
25691
25692 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
25693
25694 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
25695 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
25696 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
25697 (viper-skip-separators): Bug fix.
25698 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
25699 particular major mode.
25700 (viper-del-backward-char-in-replace): Don't put deleted char on the
25701 kill ring.
25702
25703 * viper-ex.el (viper-color-display-p): New function.
25704 (viper-has-face-support-p): Use viper-color-display-p.
25705
25706 * viper-keym.el (viper-gnus-modifier-map): New keymap.
25707
25708 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
25709
25710 * viper-util.el (viper-glob-unix-files): Fix shell status check.
25711 (viper-file-remote-p): Make equivalent to file-remote-p.
25712
25713 * viper.el (viper-major-mode-modifier-list):
25714 Use viper-gnus-modifier-map.
25715
25716 2005-02-19 David Kastrup <dak@gnu.org>
25717
25718 * subr.el (subregexp-context-p): Fix garbled doc string by adding
25719 quoting.
25720
25721 2005-02-19 Jay Belanger <belanger@truman.edu>
25722
25723 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
25724 Remove extra definitions.
25725 (calc-coth): New function.
25726 (calcFunc-cot): Fix `let'.
25727
25728 2005-02-19 Eli Zaretskii <eliz@gnu.org>
25729
25730 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
25731 the reasons we use "type pc" in these faces.
25732
25733 * button.el (button): Ditto.
25734
25735 2005-02-19 Michael Mauger <mmaug@yahoo.com>
25736
25737 * replace.el (query-replace-read-from): Set the value of
25738 query-replace-from-history-variable to handle the case of an empty
25739 string entered to accept the suggested default.
25740
25741 * net/tramp.el (tramp-file-name-for-operation):
25742 Use dired-call-process instead of dired-call-process-command.
25743
25744 2005-02-19 Jay Belanger <belanger@truman.edu>
25745
25746 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
25747 (math-div-non-trig): New variables.
25748 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
25749 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
25750 (math-combine-prod, math-div-symb-fancy): Add simplifications for
25751 trig expressions.
25752
25753 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
25754
25755 * progmodes/gdb-ui.el (gdb-var-update-handler)
25756 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
25757 for watch expressions,
25758 (gdb-var-create-handler): Don't set speedbar-update-flag.
25759 (gdb-post-prompt): Simplify test for speedbar.
25760
25761 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
25762
25763 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
25764 (ediff-set-fine-overlays-in-one-buffer, ediff-goto-word): Make sure
25765 we use the syntax table of the correct buffer.
25766 (ediff-same-file-contents, ediff-same-contents): Enhancements thanks to
25767 Felix Gatzemeier.
25768
25769 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
25770 (ediff-file-remote-p): Make synonymous with file-remote-p.
25771 In all deffaces ediff-*-face-*, use min-colors.
25772
25773 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
25774 ediff-recurse-to-subdirectories.
25775 (ediff-mark-if-equal): Check that the arguments are strings, use
25776 ediff-same-contents (after to Felix Gatzemeier).
25777
25778 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
25779 nil.
25780
25781 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
25782
25783 * log-view.el (log-view-message-re): Fix up Subversion regexp.
25784
25785 2005-02-18 David Kastrup <dak@gnu.org>
25786
25787 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
25788 use `mark-active' when defined.
25789
25790 2005-02-18 Kenichi Handa <handa@m17n.org>
25791
25792 * ps-print.el (ps-font-info-database): New entry
25793 ZapfChancery-MediumItalic with correct font name. Fix font name
25794 of the entry Zapf-Chancery-MediumItalic.
25795
25796 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
25797
25798 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
25799
25800 2005-02-16 Kim F. Storm <storm@cua.dk>
25801
25802 * ido.el (ido-fallback-command): Pass user input to fallback command.
25803
25804 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
25805
25806 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
25807 (gdb-find-file-hook): Add server prefix.
25808
25809 2005-02-16 Richard M. Stallman <rms@gnu.org>
25810
25811 * replace.el (perform-replace): Pass new args to replace-highlight.
25812 (replace-highlight): Take region args,
25813 and pass them to isearch-lazy-highlight-new-loop.
25814
25815 * novice.el (disabled-command-hook): Autoload the defalias
25816 and the make-obsolete-variable call.
25817
25818 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
25819
25820 * isearch.el (isearch-lazy-highlight-start-limit)
25821 (isearch-lazy-highlight-end-limit): New variables limit
25822 the region for highlighting.
25823 (isearch-lazy-highlight-new-loop): New args BEG and END.
25824 (isearch-lazy-highlight-search): Use the new vars.
25825 (isearch-lazy-highlight-update): Likewise.
25826
25827 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
25828
25829 * cus-start.el (all): Use default-boundp.
25830
25831 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
25832
25833 * menu-bar.el (menu-bar-select-frame): Handle current frame.
25834
25835 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
25836
25837 * autorevert.el (auto-revert-stop-on-user-input)
25838 (auto-revert-verbose): Doc fixes.
25839
25840 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
25841
25842 * international/mule-cmds.el (set-locale-environment): Remove call
25843 to set-selection-coding-system on Windows.
25844
25845 2005-02-15 Jay Belanger <belanger@truman.edu>
25846
25847 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
25848 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
25849 calcFunc-coth.
25850 (math-simplify-sqrt): Add simplifications.
25851
25852 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
25853 to list.
25854
25855 * calc/calc-ext.el: Add functions to autoloads.
25856
25857 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
25858 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
25859 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
25860 (math-csc-raw, math-cot-raw): New functions.
25861
25862 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
25863
25864 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
25865 the variable name in a message.
25866
25867 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
25868 calcFunc-csc, calcFunc-cot.
25869
25870 * calc/calcalg2.el: Add derivative and integration rules for
25871 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
25872 calcFunc-csch, calcFunc-coth.
25873 (math-do-integral-methods): Add to checks for when to use
25874 substitutions.
25875
25876 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
25877
25878 2005-02-15 Lute Kamstra <lute@gnu.org>
25879
25880 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
25881 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
25882 <monnier@iro.umontreal.ca>
25883 (lisp-outline-level): Improve efficiency. Suggested by David
25884 Kastrup <dak@gnu.org>.
25885
25886 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
25887
25888 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
25889 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
25890 (gdb-set-gud-minor-mode-existing-buffers): New functions.
25891 (gdb-find-file-hook): New hook. Add it to find-file-hook.
25892 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
25893
25894 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
25895
25896 * cus-start.el (all): Comment change.
25897
25898 2005-02-14 Lute Kamstra <lute@gnu.org>
25899
25900 * cus-start.el (all): Check if symbol is void.
25901
25902 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
25903
25904 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
25905 optional argument to \cite.
25906
25907 2005-02-14 Richard M. Stallman <rms@gnu.org>
25908
25909 * cus-edit.el (custom-buffer-create-internal): Update help message.
25910 (custom-magic-alist): Update help messages.
25911
25912 * cus-start.el (all): Allow a var to specify a standard value.
25913
25914 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
25915
25916 * custom.el (custom-theme-set-variables): Handle variable aliases.
25917
25918 * frame.el (blink-cursor-timer): Doc fix.
25919 (blink-cursor): Make it an alias for `blink-cursor-mode' and
25920 declare obsolete.
25921 (blink-cursor-mode): Define with defcustom and use correct
25922 standard expression in that defcustom.
25923 * startup.el (command-line): Adapt to above changes in frame.el.
25924
25925 2005-02-11 Lute Kamstra <lute@gnu.org>
25926
25927 * apropos.el (apropos-score-doc): Prevent division by zero.
25928
25929 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
25930
25931 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
25932 (icalendar--get-event-property-attributes)
25933 (icalendar--get-event-properties)
25934 (icalendar--datetime-to-diary-date): New functions.
25935 (icalendar--split-value): Doc fix.
25936 (icalendar--datetime-to-noneuropean-date)
25937 (icalendar--datetime-to-european-date): New optional argument
25938 SEPARATOR. Return result as a string instead of a list.
25939 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
25940 (icalendar--convert-string-for-export): Rename arg S to STRING.
25941 (icalendar-export-region): Doc fix. Change name of error buffer.
25942 Save output buffer.
25943 (icalendar-import-file): Add blank at end of prompt.
25944 (icalendar-import-buffer): Doc fix. Do not switch to error
25945 buffer. Indicate status in return value.
25946 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
25947 buffer. Save output buffer. Handle exception from recurrence
25948 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
25949 events. Fix problems with weekly all-day events.
25950
25951 2005-02-10 Richard M. Stallman <rms@gnu.org>
25952
25953 * simple.el (eval-expression-print-format):
25954 Avoid warning about edebug-active.
25955
25956 * help.el (help-for-help-internal): Rename from help-for-help.
25957 (help-for-help): Define with defalias.
25958
25959 * font-core.el (font-lock-default-function): Use with-no-warnings.
25960
25961 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
25962
25963 * custom.el (defface): Doc fix.
25964
25965 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
25966
25967 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
25968 width 0" to prevent word wrapping problems.
25969
25970 2005-02-09 Kim F. Storm <storm@cua.dk>
25971
25972 * ido.el (ido-file-extensions-order): New defcustom.
25973 (ido-file-extension-lessp, ido-file-extension-aux)
25974 (ido-file-extension-order): New advanced file ordering.
25975 (ido-file-lessp): New simple file ordering.
25976 (ido-sort-list): Remove.
25977 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
25978 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
25979
25980 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
25981
25982 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
25983 that some versions of grep produce.
25984 (grep-mode-font-lock-keywords): Likewise.
25985
25986 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
25987
25988 * progmodes/gdb-ui.el (gdb-location-list): New variable.
25989 (gdb-cdir): Delete.
25990 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
25991 (gdb-source-info): Treat case when source file is in another
25992 directory properly.
25993 (gdb-get-location): New function.
25994
25995 2005-02-07 Jay Belanger <belanger@truman.edu>
25996
25997 * calc/calc-prog.el (calc-write-parse-table-part)
25998 (calc-fix-token-name): Fix a check for language type.
25999
26000 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
26001
26002 2005-02-07 Andre Spiegel <spiegel@gnu.org>
26003
26004 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
26005 as directory not writable.
26006
26007 2005-02-07 Kim F. Storm <storm@cua.dk>
26008
26009 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
26010 (cua--standard-movement-commands): Remove list.
26011 Instead, set CUA property value to move for movement commands.
26012 (cua-movement-commands): Remove. Users must set CUA prop instead.
26013 (cua--pre-command-handler): Check CUA property.
26014 (cua--init-keymaps): Don't remap undo commands.
26015 (cua-mode): Don't call cua--rectangle-on-off.
26016
26017 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
26018 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
26019 (cua--rect-undo-set-point): New var.
26020 (cua--rectangle-undo-boundary): Setup undo apply entry.
26021 (cua--rect-undo-handler): New function for rectangle undo.
26022 (cua--rect-start-position, cua--rect-end-position): Add.
26023 (cua--rectangle-post-command): Call cua--rectangle-set-corners
26024 for restored rectangle. Set point if cua--rect-undo-set-point.
26025
26026 2005-02-06 Jay Belanger <belanger@truman.edu>
26027
26028 * calc/calc-lang.el (calc-tex-language): Display more information
26029 in messages.
26030
26031 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
26032 in TeX mode.
26033
26034 2005-02-06 Richard M. Stallman <rms@gnu.org>
26035
26036 * emacs-lisp/lisp.el (buffer-end): Doc fix.
26037
26038 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
26039
26040 * net/ldap.el (ldap-search-internal): Support attributes with
26041 optional descriptions separated by a semi-colon, as in
26042 "userCertificate;binary".
26043
26044 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
26045
26046 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
26047 isn't a cons (i.e. the version is 0).
26048
26049 2005-02-05 Eli Zaretskii <eliz@gnu.org>
26050
26051 * help.el (help-for-help): Doc fix.
26052
26053 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
26054
26055 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
26056 GDB-Windows on the menu-bar as this works better.
26057
26058 2005-02-04 Jay Belanger <belanger@truman.edu>
26059
26060 * calc/calc-embed.el (calc-embedded-update): Don't put in
26061 unnecessary newlines. Adjust the end of formula marker.
26062
26063 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
26064 (math-latex-parse-two-args): New function.
26065
26066 2005-02-03 Lute Kamstra <lute@gnu.org>
26067
26068 * help-fns.el (help-with-tutorial): Make sure that users cannot
26069 remove the entire text of the tutorial by means of `undo'.
26070
26071 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
26072
26073 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
26074 in recent changes, where the ispell process was repeatedly
26075 killed & restarted.
26076
26077 * international/mule-cmds.el (set-locale-environment): Set file-name
26078 coding system to utf-8 on Darwin systems.
26079 (set-default-coding-systems): Don't set default-file-name-coding-system
26080 on Darwin systems.
26081
26082 2005-02-03 Richard M. Stallman <rms@gnu.org>
26083
26084 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
26085
26086 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
26087
26088 * faces.el (list-faces-display): Add optional argument.
26089
26090 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
26091
26092 * font-core.el (font-lock-default-function): Handle the rare case where
26093 only font-lock-keywords is set.
26094
26095 2005-02-02 Kenichi Handa <handa@m17n.org>
26096
26097 * international/characters.el: Cancel previous change for
26098 I-WITH-DOT-ABOVE and DOTLESS-i.
26099
26100 * international/latin-5.el: Cancel previous change.
26101
26102 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
26103
26104 * progmodes/gud.el: Correction to syntax in gud-menu-map.
26105
26106 2005-02-02 Kenichi Handa <handa@m17n.org>
26107
26108 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
26109 DOTLESS-i.
26110
26111 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
26112 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
26113
26114 * case-table.el (get-upcase-table): New function.
26115 (copy-case-table): Copy upcaes table too if non-nil.
26116 (set-case-syntax-delims): Maintain upcase table too.
26117 (set-case-syntax-pair): Likewise.
26118 (set-upcase-syntax, set-downcase-syntax): New functions.
26119 (set-case-syntax): Maintain upcase table too.
26120
26121 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
26122
26123 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
26124
26125 * progmodes/gud.el (gud-goto-info): New function.
26126 (gud-tool-bar-map): Use correct icon.
26127
26128 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
26129
26130 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
26131 When delegating, order args in the funcall correctly.
26132
26133 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
26134
26135 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
26136
26137 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
26138
26139 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
26140 buffer not visiting a file.
26141
26142 2005-01-31 Jay Belanger <belanger@truman.edu>
26143
26144 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
26145 bound on the line with the formula.
26146
26147 2005-01-31 Kim F. Storm <storm@cua.dk>
26148
26149 * ses.el (ses-create-cell-variable-range)
26150 (ses-destroy-cell-variable-range, ses-reset-header-string)
26151 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
26152 (ses-insert-row): Fix format of apply undo entries.
26153
26154 2005-01-31 Jay Belanger <belanger@truman.edu>
26155
26156 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
26157 parts.
26158
26159 * calc/calc-embed.el (calc-embedded-open-formula)
26160 (calc-embedded-close-formula): Ignore matrix environments.
26161
26162 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
26163 TeX mode.
26164
26165 * calc/calc-lang.el (math-function-table, math-oper-table)
26166 (math-variable-table): Adjust the LaTeX portions.
26167
26168 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
26169 (math-latex-ignore-words): New constant.
26170
26171 2005-01-31 Richard M. Stallman <rms@gnu.org>
26172
26173 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
26174 (ispell-local-dictionary): Doc fix.
26175 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
26176 Don't reinitialize at run time. Don't defcustom.
26177 All uses changed to append ispell-local-dictionary-alist,
26178 or check it first.
26179 (ispell-current-dictionary): New variable for dictionary in use.
26180 (ispell-dictionary): Now used only for global default.
26181 (ispell-start-process): Set ispell-current-dictionary,
26182 not ispell-dictionary.
26183 (ispell-change-dictionary): Use this only for setting
26184 user preferences.
26185 (ispell-internal-change-dictionary): New function
26186 to change the current dictionary in use.
26187 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
26188 Use ispell-current-dictionary.
26189 Handle ispell-local-dictionary-overridden.
26190 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
26191
26192 2005-01-31 Jay Belanger <belanger@truman.edu>
26193
26194 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
26195
26196 * calc/calc-ext.el: Add calc-latex-language to autoloads.
26197 (calc-mode-map): Add calc-latex-language.
26198
26199 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
26200 (math-latex-print-frac): New functions.
26201 (math-oper-table, math-function-table, math-variable-table)
26202 (math-complex-format, math-input-filter): Add latex properties.
26203 (calc-set-language): Set math-expr-special-function-mapping.
26204
26205 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
26206 (calc-write-parse-table-part): Add LaTeX support.
26207
26208 * calc/calc.el (calc-language): Adjust docstring.
26209 (calc-set-mode-line): Add LaTeX support.
26210 (math-expr-special-function-mapping): New variable.
26211 (math-tex-ignore-words): Add to list.
26212
26213 * calc/calccomp.el (math-compose-expr, math-compose-rows):
26214 Add LaTeX support.
26215 (math-compose-expr): Add support for special functions.
26216
26217 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
26218
26219 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
26220
26221 * progmodes/gdb-ui.el (gdb-memory-address)
26222 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
26223 (gdb-memory-mode-map, gdb-memory-format-keymap)
26224 (gdb-memory-format-menu, gdb-memory-unit-keymap)
26225 (gdb-memory-unit-menu): New variables for a buffer
26226 that lets the user examine program memory.
26227 (gdb-memory-set-address, gdb-memory-set-repeat-count)
26228 (gdb-memory-format-binary, gdb-memory-format-octal)
26229 (gdb-memory-format-unsigned, gdb-memory-format-signed)
26230 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
26231 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
26232 (gdb-memory-unit-word, gdb-memory-unit-halfword)
26233 (gdb-memory-unit-byte, gdb-memory-unit-menu)
26234 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
26235 (gdb-memory-mode, gdb-memory-buffer-name)
26236 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
26237 New functions for above buffer.
26238
26239 2005-01-30 Richard M. Stallman <rms@gnu.org>
26240
26241 * cus-edit.el (custom-bury-buffer): Function deleted.
26242 (custom-buffer-done-function): Option deleted.
26243 (custom-buffer-done-kill): New replacement option.
26244 (Custom-buffer-done): Call quit-window.
26245 (custom-buffer-create-internal): Update for above changes.
26246
26247 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
26248
26249 * simple.el (undo-ask-before-discard): New var.
26250 (undo-outer-limit-truncate): Implement it.
26251 (undo-extra-outer-limit): Doc update.
26252
26253 2005-01-29 Richard M. Stallman <rms@gnu.org>
26254
26255 * ses.el (undo-more): Delete defadvice.
26256 (ses-begin-change): Doc fix.
26257
26258 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
26259 instead of rebinding C-x u and C-_.
26260
26261 * files.el (normal-backup-enable-predicate): Return nil for files
26262 in /tmp, regardless of temporary-file-directory.
26263
26264 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
26265
26266 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
26267 (open-rectangle, delete-whitespace-rectangle-line)
26268 (clear-rectangle-line): If FILL, pass t instead of FILL
26269 for move-to-column's 2nd arg.
26270
26271 * simple.el (undo): Fix the test for continuing a series of undos.
26272 (undo-more): Set pending-undo-list to t when we reach end.
26273 (pending-undo-list): Move up defvar.
26274
26275 * wid-edit.el (widget-button-click):
26276 Shorten the range of the track-mouse binding.
26277
26278 * comint.el (comint-insert-input): Undo previous changes;
26279 use last-input-event in interactive spec.
26280
26281 2005-01-29 Eli Zaretskii <eliz@gnu.org>
26282
26283 * progmodes/compile.el (compilation-start): Bind buffer-read-only
26284 to nil before invoking call-process. Reset buffer's modified flag
26285 after fontifying it in the no-async branch.
26286
26287 * wid-edit.el (widget-specify-button): If mouse pointer shape
26288 cannot be changed, use mouse face instead.
26289
26290 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
26291
26292 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
26293 (gdb-goto-breakpoint): Make breakpoint handling work on template
26294 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
26295 (gdb-assembler-custom): Update to recognize breakpoint information
26296 added on 2005-01-19.
26297
26298 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
26299
26300 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
26301 (dsssl-mode): Use define-derived-mode.
26302 (scheme-mode-initialize): Remove.
26303 (scheme-mode): Use run-mode-hooks.
26304
26305 * cus-edit.el (customize-group-other-window)
26306 (custom-buffer-create-other-window): Don't override special-display-*.
26307 (custom-mode-map): Make it dense.
26308
26309 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
26310 sets the default value.
26311
26312 2005-01-28 Eli Zaretskii <eliz@gnu.org>
26313
26314 * descr-text.el: Add more keywords.
26315
26316 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
26317
26318 * speedbar.el: Avoid unnecessary use of locate-library.
26319
26320 * international/mule-cmds.el (standard-display-european-internal):
26321 Don't fiddle with latin-1 non-break space any more since it's now
26322 special cased in the C code.
26323 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
26324
26325 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
26326
26327 * cus-start.el (all): Add `undo-outer-limit'.
26328
26329 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
26330
26331 * textmodes/bibtex.el (bibtex-format-entry):
26332 Use `bibtex-empty-field-re' only on the text of fields, not on entire
26333 field lines.
26334 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
26335 not on part of a buffer.
26336
26337 2005-01-25 Lute Kamstra <lute@gnu.org>
26338
26339 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
26340 nonempty field text strings like "{letters\\macro{}more letters}".
26341 Clarify docstring.
26342 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
26343 (bibtex-entry-offset, bibtex-parse-association)
26344 (bibtex-parse-field-name): Fix typos in docstrings.
26345 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
26346
26347 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
26348
26349 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
26350 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
26351 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
26352 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
26353
26354 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
26355 isearch minor mode.
26356
26357 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
26358
26359 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
26360
26361 2005-01-24 Lute Kamstra <lute@gnu.org>
26362
26363 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
26364 CASECHARS and NOT-CASECHARS regular expressions of the
26365 "nederlands" and "nederlands8" dictionaries to prevent a "Range
26366 striding over charsets" error.
26367
26368 2005-01-24 Jay Belanger <belanger@truman.edu>
26369
26370 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
26371 display variable name.
26372
26373 2005-01-24 Kenichi Handa <handa@m17n.org>
26374
26375 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
26376 Fix setting of the element of encoded-kbd-iso2022-invocations.
26377
26378 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
26379
26380 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
26381 (gdb-threads-select): Change to also accept mouse events.
26382 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
26383 (gdb-threads-mouse-select): Delete.
26384
26385 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
26386
26387 * files.el (insert-directory): Take care of empty directory,
26388 listed without -a switch.
26389
26390 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
26391
26392 * textmodes/refill.el (refill-post-command-function):
26393 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
26394 to the list of functions that we should be careful not to undo.
26395 (refill-late-fill-paragraph-function): Remove.
26396 (refill-saved-state): New var.
26397 (refill-mode): Use it to save fill-paragraph-function.
26398 Save also the value of auto-fill-function.
26399
26400 * term/w32-win.el: Simplify code.
26401
26402 2005-01-23 Kim F. Storm <storm@cua.dk>
26403
26404 * simple.el (line-move): Adapt to new return value from
26405 pos-visible-in-window-p.
26406
26407 * simple.el (line-move): Fix last change. Check partial
26408 visibility at point rather than at window-start.
26409
26410 2005-01-22 Jason Rumney <jasonr@gnu.org>
26411
26412 * term/w32-win.el (xw-defined-colors): Remove debug-message.
26413
26414 2005-01-22 David Kastrup <dak@gnu.org>
26415
26416 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
26417
26418 2005-01-22 Eli Zaretskii <eliz@gnu.org>
26419
26420 * type-break.el (type-break-mode): Add a test for
26421 type-break-file-name being non-nil.
26422
26423 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
26424
26425 * net/eudc.el (top level): Call (message "") via progn, so that
26426 eudc-options-file is loaded.
26427
26428 2005-01-22 Kim F. Storm <storm@cua.dk>
26429
26430 * simple.el (line-move-1): Rename from line-move.
26431 (line-move): New function that adjusts vscroll for partially
26432 visible rows, and calls line-move-1 otherwise.
26433
26434 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
26435
26436 * pcomplete.el: Define pcomplete-read-event instead of read-event,
26437 since it's not a complete read-event implementation
26438
26439 2005-01-20 Jay Belanger <belanger@truman.edu>
26440
26441 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
26442 for called function.
26443
26444 2005-01-20 Steven Tamm <steventamm@mac.com>
26445
26446 * term/mac-win.el (process-connection-type): Remove.
26447 Controlled now by s/darwin.h:PTY_ITERATION.
26448
26449 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
26450
26451 * window.el (handle-select-window): Don't switch window when we're
26452 in the minibuffer.
26453
26454 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
26455
26456 * subr.el (dotimes-with-progress-reporter): New macro.
26457
26458 * ses.el (ses-dotimes-msg): Remove macro.
26459 Use `dotimes-with-progress-reporter' instead.
26460
26461 2005-01-19 Steven Tamm <steventamm@mac.com>
26462
26463 * term/mac-win.el (process-connection-type): Use new
26464 operating-system-release variable to use ptys on Darwin 7 (OS X
26465 10.3) when using carbon build.
26466
26467 2005-01-19 Jay Belanger <belanger@truman.edu>
26468
26469 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
26470 flags if the last command was a tab or M-tab.
26471
26472 * calc/calc-prog.el (calc-user-define-edit): Put original formula
26473 in formula editing buffer.
26474
26475 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
26476
26477 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
26478 breakpoint image symbol in margin.
26479
26480 2005-01-19 Jay Belanger <belanger@truman.edu>
26481
26482 * calc/calc-prog.el (calc-execute-kbd-macro):
26483 Ignore calc-keep-arg-flag.
26484
26485 2005-01-19 Kenichi Handa <handa@m17n.org>
26486
26487 * textmodes/ispell.el (ispell-looking-at): New function.
26488 (ispell-process-line): Use ispell-looking-at to compare the ispell
26489 output and the buffer contents.
26490
26491 2005-01-18 Jay Belanger <belanger@truman.edu>
26492
26493 * calc/calc.el (calc-display-raw): Fix docstring.
26494
26495 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
26496
26497 * simple.el (blink-matching-open): Strip extra info from syntax.
26498
26499 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
26500 funny chars in the end-of-here-doc marker.
26501
26502 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
26503
26504 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
26505 that enable/disabled state of breakpoints is shown correctly in
26506 fringe and on ttys.
26507 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
26508 Add breakpoint information as text properties.
26509 (gdb-mouse-toggle-breakpoint):
26510 Rename to gdb-mouse-set-clear-breakpoint.
26511 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
26512 breakpoints in the margin.
26513 (gdb-remove-strings): Simplify.
26514
26515 2005-01-17 Jay Belanger <belanger@truman.edu>
26516
26517 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
26518 erasing buffer.
26519
26520 2005-01-17 Richard M. Stallman <rms@gnu.org>
26521
26522 * progmodes/grep.el (grep-find): Copy from `grep' the condition
26523 for calling grep-compute-defaults.
26524
26525 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
26526 if buffer is empty.
26527
26528 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
26529
26530 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
26531
26532 * hilit-chg.el (highlight-changes-mode): Don't autoload.
26533
26534 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
26535 non-preloaded variables.
26536
26537 2005-01-17 Steven Tamm <steventamm@mac.com>
26538
26539 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
26540 tex-shell cause to force interactivity when using pipes.
26541
26542 2005-01-17 Kim F. Storm <storm@cua.dk>
26543
26544 * simple.el (just-one-space): Make arg optional.
26545
26546 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
26547
26548 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
26549 posn-at-x-y to t to access left-margin.
26550
26551 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
26552
26553 Sync with Tramp 2.0.47.
26554
26555 * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
26556 catching keep-date problems in cp/scp operations.
26557 (tramp-handle-copy-file): Don't call `set-file-modes'
26558 unconditionally. Specialized functions should know better what is
26559 necessary. This improves performance a little bit, and the
26560 functions could catch errors with `cp -p' and `scp -p'.
26561 (tramp-do-copy-or-rename-file-via-buffer)
26562 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
26563 when appropriate.
26564 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
26565 Call `set-file-modes' when appropriate.
26566 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
26567 Johnsson <isak@hypergene.com>
26568 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
26569 of both Tramp buffer and debug buffer. Reported by Joakim Verona
26570 <joakim@verona.se>
26571 (tramp-file-name-for-operation): Mark `shell-command' as magic for
26572 Emacs only.
26573
26574 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
26575 `find-file-hooks' and `dired-mode-hook'.
26576 (tramp-minor-mode-map): Respective map. Add remapping for
26577 `compile' and `recompile'.
26578 (tramp-remap-command, tramp-recompile): New defuns.
26579 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
26580 in buffer "*Compilation*". Call the commands asynchronously.
26581
26582 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
26583 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
26584 `shell-command', because it isn't magic in XEmacs. Reported by
26585 Adrian Aichner <adrian@xemacs.org>.
26586
26587 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
26588 `substitute-in-file-name.
26589 (tramp-smb-handle-substitute-in-file-name): New defun.
26590 (tramp-smb-advice-PC-do-completion): Delete advice.
26591
26592 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
26593
26594 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
26595 Fix error in deleting region.
26596
26597 2005-01-15 Richard M. Stallman <rms@gnu.org>
26598
26599 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
26600 In non-temp buffer, switch syntax table temporarily.
26601
26602 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
26603
26604 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
26605
26606 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
26607
26608 * imenu.el (imenu--split-menu): Copy menulist before sorting.
26609 (imenu--generic-function): Use START, not BEG, as pos of definition.
26610
26611 * simple.el (just-one-space): Argument specifies number of spaces.
26612
26613 * simple.el (eval-expression-print-format): Avoid warning
26614 about edebug-active.
26615
26616 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (Tiny change)
26617
26618 * progmodes/sh-script.el: Code copied from make-mode.el
26619 with small changes,
26620 (sh-mode-map): Bind C-c C-\.
26621 (sh-backslash-column, sh-backslash-align): New variables.
26622 (sh-backslash-region, sh-append-backslash): New functions.
26623
26624 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
26625
26626 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
26627 (rmail-pop-password, rmail-pop-password-required): Move to
26628 rmail-obsolete group.
26629 (rmail-set-pop-password): Rename to rmail-set-remote-password.
26630 All callers updated.
26631 (rmail-get-pop-password): Rename to rmail-get-remote-password.
26632 Take an argument specifying whether it is POP or IMAP mailbox we
26633 are using. All callers updated.
26634 (rmail-pop-password-error): Rename to
26635 rmail-remote-password-error. Added mailutils-specific error message.
26636 (rmail-movemail-search-path)
26637 (rmail-movemail-variant-in-use): New variables.
26638 (rmail-remote-password, rmail-remote-password-required):
26639 New customization variables.
26640 (rmail-probe, rmail-autodetect, rmail-movemail-variant-p): New funs.
26641 (rmail-parse-url): New function.
26642 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
26643 with GNU mailutils movemail.
26644
26645 2005-01-15 Kevin Ryde <user42@zip.com.au>
26646
26647 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
26648 suffix to space, $ or '$, to correctly position point when going
26649 to @table style constants like DBL_MAX.
26650
26651 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
26652
26653 * type-break.el (type-break-mode, type-break-file-time)
26654 (type-break-file-keystroke-count, type-break-choose-file):
26655 Don't store data in or load data from the file if type-break-file-name
26656 is nil.
26657 (type-break-file-name): Doc update as per the above.
26658
26659 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
26660
26661 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
26662 lookup-key might return nil; handle that.
26663
26664 2005-01-15 Alan Mackenzie <acm@muc.de>
26665
26666 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
26667 rather than the element found, thus enabling the tree to be setcar'd.
26668
26669 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
26670
26671 * textmodes/org.el (org-show-following-heading): New option.
26672 (org-show-hierarchy-above): Use `org-show-following-heading'.
26673 (org-cycle): Documentation fix.
26674
26675 * textmodes/org.el (orgtbl-optimized): New option
26676 (orgtbl-mode): New command, a minor mode.
26677 (orgtbl-mode-map): New variable.
26678 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
26679 (orgtbl-error, orgtbl-self-insert-command)
26680 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
26681
26682 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
26683 a local variable in each org-mode buffer.
26684
26685 * textmodes/org.el (org-set-regexps-and-options): Rename from
26686 `org-set-regexps'. Added checking for STARTUP keyword.
26687 (org-get-current-options): Add STARTUP options.
26688 (org-table-insert-row): Make mode intelligent about when
26689 realignment is needed.
26690 (org-self-insert-command, org-delete-backward-char, org-delete-char):
26691 New commands.
26692 (org-enable-table-editor): New default value `optimized'.
26693 (org-table-blank-field): Support blanking regions if active.
26694
26695 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
26696
26697 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
26698 if the year is not given.
26699
26700 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
26701 Add new escapes %m and %M, fixed bug with %F by adding
26702 save-match-data.
26703 (reftex-reference): Remove ?. from list of spaces.
26704 (reftex-label-info): Add automatic label prefix recognition.
26705
26706 * textmodes/reftex-index.el (reftex-index-next-phrase):
26707 Add slave parameter to call of `reftex-index-this-phrase'.
26708 (reftex-index-this-phrase): New optional argument.
26709 (reftex-index-region-phrases): Add slave parameter to call of
26710 `reftex-index-this-phrase'.
26711 (reftex-display-index): New argument redo.
26712 (reftex-index-rescan): Add `redo' to arguments of
26713 `reftex-display-index'.
26714 (reftex-index-Rescan, reftex-index-revert)
26715 (reftex-index-switch-index-tag): Add `redo' to arguments of
26716 `reftex-display-index'.
26717 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
26718 indexing. Fix bug with matching is there is a quote before or
26719 after the word.
26720
26721 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
26722 Fix bug when collecting citation keys in lines with comments.
26723 (reftex-citation): Prefix argument no longer rescans the document,
26724 but forces prompting for optional arguments of cite macros.
26725 (reftex-do-citation): Prompting for optional arguments implemented.
26726
26727 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
26728 Add optional arguments to most cite commands.
26729 (reftex-cite-cleanup-optional-args): New option
26730 (reftex-cite-prompt-optional-args): New option.
26731 (reftex-trust-label-prefix): New option.
26732
26733 * textmodes/reftex-toc.el (reftex-toc-find-section):
26734 Add push-mark before changing the position in the buffer.
26735
26736 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
26737 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
26738
26739 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
26740
26741 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
26742 more carefully.
26743
26744 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
26745
26746 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
26747 (sgml-mode): Use it.
26748 (sgml-get-context): Better keep track of implicitly closed tags.
26749
26750 2005-01-13 Kenichi Handa <handa@m17n.org>
26751
26752 * textmodes/ispell.el: These changes are to fix misalignment error
26753 caused by equivalent characters of different Emacs charsets.
26754 (ispell-unified-chars-table): New variable.
26755 (ispell-get-decoded-string): New function.
26756 (ispell-get-casechars, ispell-get-not-casechars)
26757 (ispell-get-otherchars): Call ispell-get-decoded-string.
26758
26759 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
26760
26761 * custom.el (custom-declare-variable): Just put symbol instead
26762 of (defvar . symbol) in `current-load-list'.
26763
26764 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
26765
26766 * emacs-lisp/elint.el: Fixed typo in Commentary section.
26767
26768 2005-01-12 Jay Belanger <belanger@truman.edu>
26769
26770 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
26771 to create a Calc summary.
26772
26773 2005-01-12 Kim F. Storm <storm@cua.dk>
26774
26775 * mouse.el (mouse-on-link-p): Change functionality and doc
26776 string to comply with latest description in lisp ref.
26777
26778 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
26779
26780 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
26781 Enable mouse clicks on mode-line, header-line and margin.
26782 (event-type): Give mouse event symbols an `event-kind' property
26783 with value `mouse-click'.
26784
26785 2005-01-12 Juri Linkov <juri@jurta.org>
26786
26787 * facemenu.el (list-colors-display): Add new arg buffer-name.
26788 Use it. Fix docstring. Replace code for identifying duplicate
26789 colors by the name with call to `list-colors-duplicates' which
26790 identifies duplicate colors by the value unless the color
26791 is one of special Windows colors. Set truncate-lines to t.
26792 Print sorted duplicate color names on each line. Indent to 22
26793 \(the longest color name in rgb.txt) instead of 20. Optimize.
26794 (list-colors-duplicates): New function.
26795 (facemenu-color-name-equal): Delete function.
26796
26797 * facemenu.el (list-colors-print): New function created from code
26798 in list-colors-display. Print #RRGGBB at the window right edge.
26799 (list-colors-display): When temp-buffer-show-function is not
26800 defined, call list-colors-print from temp-buffer-show-hook
26801 to get the right value of window-width in list-colors-print
26802 after the buffer is displayed.
26803
26804 * simple.el (pop-mark): Move deactivate-mark out of conditional
26805 part to deactivate the active mark regardless of the state of the
26806 mark ring.
26807
26808 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
26809 variables line in desktop files.
26810
26811 2005-01-12 Juri Linkov <juri@jurta.org>
26812
26813 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
26814 Bring together isearch highlight related options.
26815 (lazy-highlight): Replace group `replace' by `matching'.
26816 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
26817 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
26818 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
26819 and declare them obsolete.
26820 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
26821 (isearch-faces): Remove defgroup.
26822 (isearch-overlay, isearch-highlight, isearch-dehighlight):
26823 Move isearch highlighting code closer to lazy highlighting code.
26824
26825 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
26826 (query-replace-highlight, query-replace-lazy-highlight)
26827 (query-replace): Move definitions to the beginning of the file.
26828
26829 2005-01-11 Juri Linkov <juri@jurta.org>
26830
26831 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
26832 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
26833 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
26834
26835 * info.el (Info-history-forward): New variable.
26836 (Info-select-node): Reset Info-history-forward to nil.
26837 (Info-last): Turn into defalias.
26838 (Info-history-back): Rename from Info-last.
26839 Add current node to Info-history-forward.
26840 (Info-history-forward): New fun.
26841 (Info-mode-map): Replace Info-last by Info-history-back.
26842 Bind Info-history-forward to "r".
26843 (Info-mode-menu): Replace Info-last by Info-history-back.
26844 Fix menu item text. Add menu item for Info-history-forward.
26845 (info-tool-bar-map): Replace Info-last by Info-history-back.
26846 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
26847 for Info-history-forward.
26848 (Info-mode): Replace Info-last by Info-history-back in docstring.
26849 Add local variable Info-history-forward.
26850 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
26851
26852 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
26853
26854 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
26855 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
26856 Ignore select-window events rather than fiddle with
26857 mouse-autoselect-window.
26858
26859 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
26860
26861 * type-break.el (type-break-mode): Fix previous change.
26862
26863 2005-01-10 Jay Belanger <belanger@truman.edu>
26864
26865 * calc/calc-ext.el (calc-reset): Reset when inside embedded
26866 calculator; only reset when point is inside a calculator.
26867 Don't adjust the window height if the window takes up the whole height
26868 of the frame.
26869
26870 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
26871
26872 * ebuff-menu.el (Electric-buffer-menu-mode):
26873 Preserve value of buffer-local var header-line-format.
26874
26875 2005-01-09 Jay Belanger <belanger@truman.edu>
26876
26877 * calc/calc.el (calc-mode-var-list-restore-saved-values):
26878 Make sure settings file exists before accessing it.
26879
26880 * calc/calc-embed.el (calc-embedded-subst):
26881 Replace math-multi-subst-rec, which is only supposed to be called
26882 by math-multi-subst, by math-multi-subst.
26883
26884 2005-01-09 Andre Spiegel <spiegel@gnu.org>
26885
26886 * vc.el (vc-allow-async-revert): New user option.
26887 (vc-disable-async-diff): New internal variable.
26888 (vc-revert-buffer): Use them to disable asynchronous diff.
26889
26890 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
26891 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
26892 asynchronously if vc-disable-async-diff is t.
26893
26894 2005-01-09 Jay Belanger <belanger@truman.edu>
26895
26896 * calc/calc.el (defcalcmodevar): New macro.
26897 (calc-mode-var-list-restore-default-values)
26898 (calc-mode-var-list-restore-saved-values): New functions.
26899 (calc-mode-var-list): Use defcalcmodevar to define it.
26900 (calc-always-load-extensions, calc-line-numbering)
26901 (calc-line-breaking, calc-display-just, calc-display-origin)
26902 (calc-number-radix, calc-leading-zeros, calc-group-digits)
26903 (calc-group-char, calc-point-char, calc-frac-format)
26904 (calc-prefer-frac, calc-hms-format, calc-date-format)
26905 (calc-float-format, calc-full-float-format, calc-complex-format)
26906 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
26907 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
26908 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
26909 (calc-matrix-brackets, calc-language, calc-language-option)
26910 (calc-left-label, calc-right-label, calc-word-size)
26911 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
26912 (calc-display-raw, calc-internal-prec, calc-angle-mode)
26913 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
26914 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
26915 (calc-window-height, calc-display-trail, calc-show-selections)
26916 (calc-use-selections, calc-assoc-selections)
26917 (calc-display-working-message, calc-auto-why, calc-timing)
26918 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
26919 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
26920 (calc-gnuplot-default-device, calc-gnuplot-default-output)
26921 (calc-gnuplot-print-device, calc-gnuplot-print-output)
26922 (calc-gnuplot-geometry, calc-graph-default-resolution)
26923 (calc-graph-default-resolution-3d, calc-invocation-macro)
26924 (calc-show-banner): Use defcalcmodevar to declare them and set
26925 their default values.
26926
26927 * calc/calc-ext.el (calc-reset): Restore saved values of variables
26928 instead of default values (but restore default values if there is
26929 an argument of 0).
26930
26931 2005-01-09 David Kastrup <dak@gnu.org>
26932
26933 * desktop.el (desktop-restore-eager): Fix typo in type.
26934
26935 2005-01-08 Richard M. Stallman <rms@gnu.org>
26936
26937 * cus-edit.el (customize): Delete :link.
26938
26939 2005-01-08 Jay Belanger <belanger@truman.edu>
26940
26941 * calc/calc.el (calc-mode): Remove the extension from the
26942 `calc-settings-file' file name when loading it.
26943
26944 2005-01-08 Kim F. Storm <storm@cua.dk>
26945
26946 * info.el (Info-mode-map, Info-next-link-keymap)
26947 (Info-prev-link-keymap, Info-up-link-keymap):
26948 Map follow-link to mouse-face.
26949 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
26950
26951 2005-01-08 Jay Belanger <belanger@truman.edu>
26952
26953 * calc/calc.el (calc-settings-file): Change default value.
26954 Suggested by cgw in a comment in calc-mode.el.
26955
26956 * calc/calc-mode.el (calc-settings-file-name):
26957 Compare calc-settings-file to user-init-file instead of ~/.emacs.
26958 Replace ~/.emacs in a prompt by calc-settings-file.
26959
26960 2005-01-07 Lars Hansen <larsh@math.ku.dk>
26961
26962 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
26963 (desktop-lazy-idle-delay): New customizable variables.
26964 (desktop-buffer-args-list): New variable.
26965 (desktop-append-buffer-args): New function.
26966 (desktop-save): Call desktop-append-buffer-args for some buffers.
26967 (desktop-lazy-create-buffer): New function.
26968 (desktop-idle-create-buffers): New function.
26969 (desktop-read): Add message about buffers to restore lazily.
26970 (desktop-lazy-abort): New command.
26971 (desktop-clear): Call desktop-lazy-abort.
26972 (desktop-lazy-complete): New command.
26973
26974 2005-01-06 Richard M. Stallman <rms@gnu.org>
26975
26976 * emacs-lisp/find-func.el (find-face-definition):
26977 Rename from find-face.
26978
26979 2005-01-06 Kim F. Storm <storm@cua.dk>
26980
26981 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
26982
26983 * man.el (Man-xref-man-page, Man-xref-header-file)
26984 (Man-xref-normal-file): Add follow-link property.
26985
26986 2005-01-06 Jay Belanger <belanger@truman.edu>
26987
26988 * calc/calc-units.el: Make sure the proper macro definitions are
26989 available when compiling.
26990
26991 2005-01-06 Juri Linkov <juri@jurta.org>
26992
26993 * isearch.el (isearch-lazy-highlight-update):
26994 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
26995
26996 2005-01-06 Miles Bader <miles@gnu.org>
26997
26998 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
26999 (isearch-lazy-highlight-face): Use new name.
27000
27001 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
27002
27003 * uniquify.el (uniquify-rationalize-file-buffer-names):
27004 Re-add an interactive spec.
27005 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
27006 to the same name.
27007
27008 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
27009 (isearch-update, isearch-done): Adjust calls accordingly.
27010
27011 2005-01-05 Richard M. Stallman <rms@gnu.org>
27012
27013 * custom.el (custom-set-variables, custom-theme-set-variables):
27014 Clarify documentation.
27015
27016 * emacs-lisp/find-func.el (find-variable)
27017 (find-variable-other-window, find-variable-other-frame):
27018 Fix the TYPE args to find-function-read and find-function-do-it.
27019 (find-function): Doc fix.
27020 (find-function-at-point): Replace function-at-point alias.
27021
27022 2005-01-04 Richard M. Stallman <rms@gnu.org>
27023
27024 * cus-face.el (custom-declare-face):
27025 Record defface in current-load-list.
27026
27027 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
27028
27029 * emacs-lisp/find-func.el: Doc fixes.
27030 (find-face-regexp): New variable.
27031 (find-function-regexp-alist): New variable.
27032 (find-function-C-source): Third arg is now TYPE.
27033 (find-function-search-for-symbol): Handle general TYPE.
27034 (find-function-read, find-function-do-it): Handle general TYPE.
27035 (find-definition-noselect, find-face): New functions.
27036 (function-at-point): Alias deleted.
27037
27038 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
27039
27040 * battery.el (display-battery-mode): Rename from display-battery.
27041 Handle the case where it gets turned off.
27042
27043 2005-01-04 Richard M. Stallman <rms@gnu.org>
27044
27045 * cus-edit.el (customize): Make :link point to user doc.
27046
27047 * man.el (Man-fontify-manpage): Turn off undo generation.
27048
27049 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
27050
27051 2005-01-04 Andreas Schwab <schwab@suse.de>
27052
27053 * files.el (insert-directory): Only look for error lines in
27054 inserted text. Don't move too far after processing --dired markers.
27055
27056 2005-01-04 Richard M. Stallman <rms@gnu.org>
27057
27058 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
27059 Don't expand if the character is @, period, dash, etc.
27060 (define-mail-abbrev): Quote names that contain problem characters.
27061
27062 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
27063
27064 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
27065
27066 2005-01-03 Richard M. Stallman <rms@gnu.org>
27067
27068 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
27069 (query-replace-highlight, query-replace-lazy-highlight)
27070 (query-replace): Definitions moved up. Doc fix.
27071
27072 2005-01-03 Richard M. Stallman <rms@gnu.org>
27073
27074 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
27075 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
27076 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
27077 (lazy-highlight-face): Rename from isearch-lazy-...
27078 Change all references to them.
27079
27080 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
27081
27082 * cus-edit.el (custom-file): Doc fix for defcustom.
27083 (custom-file): The function no longer sets the variable
27084 `custom-file' to its return value.
27085
27086 * startup.el (command-line): No longer load `custom-file'.
27087
27088 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
27089
27090 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
27091
27092 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
27093 Don't confuse module-prefixed identifiers for labels.
27094 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
27095
27096 2005-01-02 Richard M. Stallman <rms@gnu.org>
27097
27098 * files.el (basic-save-buffer-1): Fix previous change.
27099
27100 * loadhist.el (file-loadhist-lookup): New function.
27101 (file-provides, file-requires): Use it.
27102
27103 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
27104 instead of calculating the right size.
27105
27106 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
27107
27108 * vc-svn.el (vc-svn-diff): Stay local if possible.
27109
27110 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
27111
27112 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
27113
27114 * files.el (hack-local-variables): Fix last change.
27115
27116 2005-01-02 Jay Belanger <belanger@truman.edu>
27117
27118 * calc/calc-yank.el (calc-edit-top): New variable.
27119 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
27120 object. Change header properties.
27121 (calc-edit-finish, calc-edit-finish-stack-object)
27122 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
27123 edited object.
27124 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
27125 for the beginning of the edited object.
27126 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
27127 for the beginning of the edited object.
27128 * calc/calc-prog.el (calc-edit-macro-finish-edit)
27129 (calc-finish-formula-edit, calc-macro-repeats)
27130 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
27131 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
27132 beginning of the edited object.
27133 (calc-user-define-edit): Change the header for editing macros.
27134 Remove unnecessary variable.
27135
27136 2005-01-01 Jay Belanger <belanger@truman.edu>
27137
27138 * calc/calc-yank.el (calc-edit-mode): Change default header.
27139 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
27140 * calc/calc-store.el (calc-edit-variable): Change title to match new
27141 header.
27142 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
27143 mode to match new header.
27144 (calc-user-define-edit): Change titles to include names of commands.
27145 (calc-finish-formula-edit): Adjust to handle new header.
27146 (calc-finish-macro-edit): Remove.
27147 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
27148 (calc-edit-macro-command, calc-edit-macro-command-type)
27149 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
27150 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
27151 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
27152 (calc-edit-macro-finish-edit): New functions.
27153 (calc-user-define-edit): Use new functions to edit named calc macros.
27154
27155 2005-01-01 Stefan <monnier@iro.umontreal.ca>
27156
27157 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
27158
27159 * ses.el (copy-region-as-kill): Deactivate mark.
27160
27161 2005-01-01 Richard M. Stallman <rms@gnu.org>
27162
27163 * replace.el (occur-1): If the output buffer is also an input,
27164 don't kill it, rename it.
27165
27166 * faces.el (set-face-background, set-face-foreground): Doc fix.
27167
27168 * cus-face.el (custom-face-attributes): Fix :help-echo strings
27169 for :foreground and :background.
27170
27171 * dired.el (dired-view-command-alist): Variable deleted.
27172 (dired-view-file, dired-mouse-find-file-other-window):
27173 Delete the code to use it.
27174
27175 2005-01-01 Kim F. Storm <storm@cua.dk>
27176
27177 * image.el (insert-sliced-image): Use t for line-height property.
27178
27179 See ChangeLog.11 for earlier changes.
27180
27181 ;; Local Variables:
27182 ;; coding: iso-2022-7bit
27183 ;; End:
27184
27185 Copyright (C) 2005, 2006 Free Software Foundation, Inc.
27186 Copying and distribution of this file, with or without modification,
27187 are permitted provided the copyright notice and this notice are preserved.
27188
27189 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1