]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
(allout-regexp, allout-line-boundary-regexp)
[gnu-emacs] / lisp / ChangeLog
1 2006-09-16 Ken Manheimer <ken.manheimer@gmail.com>
2
3 * allout.el (allout-regexp, allout-line-boundary-regexp)
4 (allout-bob-regexp): Correct grouping and boundaries to fix
5 backwards traversal.
6 (allout-depth-specific-regexp, allout-depth-one-regexp): New
7 versions that exploit \\{M\\} regexp syntax, to avoid geometric or
8 worse time in allout-ascend.
9 (allout-doublecheck-at-and-shallower): Identify depth threshold
10 below which topics are checked for and disqualified by containment
11 discontinuities.
12 (allout-hotspot-key-handler): Correctly handle multiple-key
13 strokes. Remove some unused variables.
14 (allout-mode-leaders): Clarify that mode-specific comment-start
15 will be used.
16 (set-allout-regexp): Correctly regexp-quote allout regexps to
17 properly accept alternative header-leads and primary bullets with
18 regexp-specific characters (eg, C "/*", mathematica "(*").
19 Include new regular expressions among those configured.
20 (allout-infer-header-lead-and-primary-bullet): Rename
21 allout-infer-header-lead.
22 (allout-recent-depth): Manifest as a variable as well as a
23 function.
24 (allout-prefix-data): Simplify into an inline instead of a macro,
25 assuming current match data rather than being explicitly passed
26 it. Establish allout-recent-depth value as well as
27 allout-recent-prefix-beginning and allout-recent-prefix-end.
28 (allout-aberrant-container-p): True when an item's immediate
29 offspring discontinuously contained. Useful for disqualifying
30 unintended topic prefixes, likely at low depths.
31 (allout-goto-prefix-doublechecked): Elaborated version of
32 allout-goto-prefix which disqualifies aberrant pseudo-items.
33 (allout-pre-next-prefix): Layer on top of lower-level routines, to
34 get disqualification of aberrant containers.
35 (allout-end-of-prefix, allout-end-of-subtree): Disqualify aberrant
36 containers.
37 (allout-beginning-of-current-entry): Position at start of buffer
38 when in container (depth 0) entry.
39 (nullify-allout-prefix-data): Invalidate allout-recent-* prefix data.
40 (allout-current-bullet): Strip text properties.
41 (allout-get-prefix-bullet): Use right match groups.
42 (allout-beginning-of-line, allout-next-heading): Disqualify
43 aberrant containers.
44 (allout-previous-heading): Disqualify aberrant containers, and
45 change to regular (rather than inline) function, to allow
46 self-recursion.
47 (allout-get-invisibility-overlay): Increment so progress is made
48 when the first overlay is not the sought one.
49 (allout-end-of-prefix): Disqualify aberrant containers.
50 (allout-end-of-line): Cycle something like allout-beginning-of-line.
51 (allout-mode): Make allout-old-style-prefixes (ie, enabling use with
52 outline.el outlines) functional again. Change the primary bullet
53 along with the header-lead - level 1 new-style bullets now work.
54 Engage allout-before-change-handler in mainline emacs, not just
55 xemacs, to do undo handling.
56 (allout-before-change-handler): Expose undo changes occurring in
57 hidden regions. Use allout-get-invisibility-overlay instead of
58 reimplementing it inline.
59 (allout-chart-subtree): Use start rather than end of prefix in
60 charts. Use allout-recent-depth variable.
61 (allout-chart-siblings): Disqualify aberrant topics.
62 (allout-beginning-of-current-entry): Position correctly.
63 (allout-ascend): Use new allout-depth-specific-regexp and
64 allout-depth-one-regexp for linear instead of O(N^2) or worse
65 behavior.
66 (allout-ascend-to-depth): Depend on allout-ascend, rather than
67 reimplementing an algorithm.
68 (allout-up-current-level): Depend on allout-ascend, rather than
69 reimplementing an algorithm. Return to start-point if we fail.
70 (allout-descend-to-depth): Use allout-recent-depth variable
71 instead of function.
72 (allout-next-sibling): On traversal of numerous intervening
73 topics, resort to economical allout-next-sibling-leap.
74 (allout-next-sibling-leap): Specialized version of
75 allout-next-sibling that uses allout-ascend cleverly, to depend on
76 a regexp search to leap large numbers of contained topics, rather
77 than arbitrarily many one-by-one traversals.
78 (allout-next-visible-heading): Disqualify aberrant topics.
79 (allout-previous-visible-heading): Position consistently when
80 interactive.
81 (allout-forward-current-level): Base on allout-previous-sibling
82 rather than (differently) reimplmenting the algorithm. Remove some
83 unused variables.
84 (allout-solicit-alternate-bullet): Present default choice stripped
85 of text properties.
86 (allout-rebullet-heading): Use bullet stripped of text properties.
87 Register changes using allout-exposure-change-hook. Disregard
88 aberrant topics.
89 (allout-shift-in): With universal-argument, make topic a peer of
90 it's former offspring. Simplify the code by separating out
91 allout-shift-out functionality.
92 (allout-shift-out): With universal-argument, make offspring peers
93 of their former container, and its siblings. Implement the
94 functionality here, rather than inappropriately muddling the
95 implementation of allout-shift-in.
96 (allout-rebullet-topic): Respect additional argument for new
97 parent-child separation function.
98 (allout-yank-processing): Use allout-ascend directly.
99 (allout-show-entry): Disqualify aberrant topics.
100 (allout-show-children): Handle discontinuous children gracefully,
101 extending the depth being revealed to expose them and posting a
102 message indicating the situation.
103 (allout-show-to-offshoot): Remove obsolete and incorrect comment.
104 Leave cursor in correct position.
105 (allout-hide-current-subtree): Use allout-ascend directly.
106 Disqualify aberrant topics.
107 (allout-kill-line, allout-kill-topic): Preserve exposure layout in
108 a way that the yanks can restore it, as used to happen.
109 (allout-yank-processing): Restore exposure layout as recorded by
110 allout-kill-*, as used to happen.
111 (allout-annotate-hidden, allout-hide-by-annotation): New routines
112 for preseving and restoring exposure layout across kills.
113 (allout-toggle-subtree-encryption): Run allout-exposure-change-hook.
114 (allout-encrypt-string): Strip text properties.
115 Rearranged order and outline-headings for some of the
116 miscellaneous functions.
117 (allout-resolve-xref): No need to quote the error name in the
118 condition-case handler section.
119 (allout-flatten): Classic recursive (and recursively intensive,
120 without tail-recursion) list-flattener, needed by allout-shift-out
121 when confronted with discontinuous children.
122
123 2006-09-16 Jason Rumney <jasonr@gnu.org>
124
125 * dnd.el (dnd-open-remote-file-function): Use dnd-open-local-file
126 on ms-windows.
127 (dnd-open-unc-file): Remove.
128 (dnd-open-local-file): Mention in doc string that it also handles
129 remote files if the system natively supports unc file-names.
130
131 2006-09-15 Kim F. Storm <storm@cua.dk>
132
133 * help.el (describe-key): Handle C-h k in *Help* buffer; collect
134 all necessary information about the event before erasing *Help*.
135
136 * simple.el (line-move-partial): Use window-line-visiblity to
137 quickly check whether last line is partially visible, and only do
138 the hard (and slow) part in that case.
139
140 2006-09-15 Jay Belanger <belanger@truman.edu>
141
142 * COPYING: Replace "Library Public License" by "Lesser Public
143 License" throughout.
144
145 2006-09-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
146
147 * term/x-win.el (x-menu-bar-open): New function for F10.
148
149 2006-09-15 Chong Yidong <cyd@stupidchicken.com>
150
151 * progmodes/compile.el (compilation-error-regexp-alist-alist):
152 Disallow filenames containing " -" to avoid confusion with libtool
153 compilation messages. Suggested by Stefan Monnier.
154
155 2006-09-15 David Kastrup <dak@gnu.org>
156
157 * mouse-sel.el (mouse-sel-follow-link-p): Use event position
158 instead of buffer position for `mouse-on-link-p'.
159
160 * mouse.el (mouse-posn-property): New function looking up the
161 properties at a click position in overlays and text properties in
162 either buffer or strings.
163 (mouse-on-link-p): Use `mouse-posn-property' to streamline lookup
164 of both `follow-link' as well as `mouse-face' properties.
165 (mouse-drag-track): Check `mouse-on-link-p' on event position, not
166 buffer position.
167
168 * help.el (describe-key-briefly): When reading a down-event on
169 mode lines or scroll bar, swallow the following up event, too.
170 Use the new mouse sensitity of `key-binding' for lookup.
171 (describe-key): The same here.
172
173 2006-09-15 Juanma Barranquero <lekktu@gmail.com>
174
175 * play/life.el (life-patterns): Add a few more interesting patterns.
176 (life-setup): Force `show-trailing-whitespace' to nil.
177
178 2006-09-14 Richard Stallman <rms@gnu.org>
179
180 * startup.el (fancy-splash-text): Change text to improve alignment.
181 (fancy-splash-screens): Don't set non-standard tab width.
182 Bind cursor-type temporarily, and make it easy to patch to
183 preserve the splash buffer.
184 (normal-splash-screen, fancy-splash-tail): Spell out "Meta-x".
185 (fancy-splash-screens): Display echo-area message explicitly.
186 Don't set fancy-splash-help-echo.
187
188 * simple.el (line-number-mode): Group mode-line instead of
189 editing-basics.
190 (column-number-mode, size-indication-mode): Likewise.
191
192 * faces.el (mode-line-faces): Group mode-line instead of modeline.
193
194 * time.el (display-time): Group mode-line instead of modeline.
195
196 * cus-edit.el (mode-line): Renamed from modeline. All uses changed.
197
198 2006-09-14 Chong Yidong <cyd@stupidchicken.com>
199
200 * startup.el (fancy-splash-text): Move editing instructions to
201 fancy-splash-head.
202 (fancy-splash-head): Issue editing instructions.
203 (fancy-splash-screens): Fixup whitespace.
204
205 2006-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
206
207 * bindings.el (mode-line-buffer-identification-keymap):
208 Remove duplicate line.
209
210 2006-09-14 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
211
212 * ido.el (ido-ignore-item-p): Allow any kind of functions in
213 ignore lists.
214
215 2006-09-14 Kim F. Storm <storm@cua.dk>
216
217 * jit-lock.el (jit-lock-fontify-again): New function.
218 (jit-lock-fontify-now): Use it instead of lambda form.
219
220 2006-09-13 Agustin Martin <agustin.martin@hispalinux.es>
221
222 * textmodes/flyspell.el (flyspell-word, flyspell-correct-word)
223 (flyspell-auto-correct-word): Make ispell-filter local to these
224 functions. Check that ispell-filter has new stuff before calling
225 ispell-parse-output.
226
227 2006-09-13 Kim F. Storm <storm@cua.dk>
228
229 * simple.el (line-move-partial): Optimize.
230
231 2006-09-13 Richard Stallman <rms@gnu.org>
232
233 * thingatpt.el (thing-at-point-bounds-of-url-at-point):
234 Delete spurious backquote.
235
236 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
237
238 * net/rcirc.el (rcirc-print): Fix last change.
239
240 2006-09-12 Jay Belanger <belanger@truman.edu>
241
242 * calc/calc.el (calc-dispatch): Remove unnecessary `sit-for'.
243
244 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
245
246 * net/rcirc.el (rcirc-scroll-show-maximum-output): Rename from
247 rcirc-show-maximum-output.
248 (rcirc-mode): Remove window-scroll-function hook.
249 (rcirc-scroll-to-bottom): Remove function.
250 (rcirc-print): Recenter so point stays at the bottom of the window
251 if point was already there.
252
253 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
254
255 * comint.el (comint-exec-1): Set EMACS to the full name of Emacs,
256 not to "t".
257 * progmodes/compile.el (compilation-start): Likewise.
258 * progmodes/idlwave.el (idlwave-rescan-asynchronously):
259 Don't use expand-file-name on invocation-directory, since this
260 might mishandle special characters in invocation-directory.
261
262 2006-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
263
264 * pcvs-defs.el: Remove * in defcustom's docstrings.
265
266 2006-09-12 Nick Roberts <nickrob@snap.net.nz>
267
268 * progmodes/compile.el (compilation-directory-properties):
269 Doc fix for help-echo.
270
271 2006-09-12 Lars Hansen <larsh@soem.dk>
272
273 * desktop.el (desktop-read): Add comment.
274
275 2006-09-12 Kim F. Storm <storm@cua.dk>
276
277 * simple.el (next-error-highlight, next-error-highlight-no-select):
278 Fix spelling error.
279
280 * subr.el (sit-for): Rework to use input-pending-p and cond.
281 Return nil input is pending on entry also for SECONDS <= 0.
282 (while-no-input): Use input-pending-p instead of sit-for.
283
284 2006-09-11 Richard Stallman <rms@gnu.org>
285
286 * simple.el (next-error-highlight, next-error-highlight-no-select):
287 Fix custom type and doc strings.
288
289 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
290
291 * diff-mode.el (diff-apply-hunk-to-backup-file): New var.
292 (diff-apply-hunk): Use it to ask for confirmation.
293
294 2006-09-11 Reiner Steib <Reiner.Steib@gmx.de>
295
296 * emacs-lisp/cl.el (pushnew): Add missing `,'.
297
298 2006-09-11 David Kastrup <dak@gnu.org>
299
300 * help.el (string-key-binding, describe-key-briefly)
301 (describe-key): Remove `string-key-binding' and its callers since
302 `key-binding' already caters for the proper lookup now.
303
304 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
305
306 * progmodes/cfengine.el (cfengine-font-lock-syntactic-keywords): Newvar.
307 (cfengine-mode): Use it. Fix \ syntax to be like /.
308
309 * bindings.el (mode-line-buffer-identification-keymap):
310 Move initialization into declaration.
311
312 2006-09-10 Kim F. Storm <storm@cua.dk>
313
314 * ido.el (ido-edit-input, ido-complete, ido-take-first-match)
315 (ido-push-dir-first, ido-kill-buffer-at-head, ido-exhibit)
316 (ido-delete-file-at-head): Pass head of ido-matches through ido-name
317 in case of merged directories. Reported by Micha\e,Ak\e(Bl Cadilhac.
318
319 2006-09-10 Richard Stallman <rms@gnu.org>
320
321 * dired-aux.el: Handle errors in recursive copy usefully.
322 (dired-create-files-failures): New variable.
323 (dired-copy-file): Remove condition-case.
324 (dired-copy-file-recursive): Check for errors on all file
325 operations, and add them to dired-create-files-failures.
326 Check file file-date-erorr here too.
327 (dired-create-files): Check dired-create-files-failures
328 and report those errors too.
329
330 * emacs-lisp/cl.el (pushnew): Use add-to-list when convenient.
331
332 * subr.el (add-to-list): New argument COMPARE-FN.
333
334 2006-09-10 Reiner Steib <Reiner.Steib@gmx.de>
335
336 * filecache.el (file-cache-add-directory)
337 (file-cache-add-directory-list, file-cache-add-file)
338 (file-cache-add-directory-using-find)
339 (file-cache-add-directory-using-locate)
340 (file-cache-add-directory-recursively): Add autoloads.
341
342 2006-09-09 Richard Stallman <rms@gnu.org>
343
344 * textmodes/conf-mode.el (conf-space-mode):
345 Use hack-local-variables-hook instead of calling hack-local-variables.
346 (conf-space-keywords-override): New variable.
347 (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
348 (conf-space-mode): Always make conf-space-keywords and
349 conf-space-keywords-override local.
350 Call conf-space-mode-internal directly as well as via hook.
351
352 2006-09-09 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
353
354 * progmodes/python.el (python-font-lock-keywords): Add `self' and other
355 quasi-keywords.
356
357 2006-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
358
359 * progmodes/python.el: Quieten the compiler about hippie-expand vars.
360 (python-send-string): Be slightly more careful about adding \n.
361
362 * startup.el (normal-splash-screen): Don't display the buffer if we'll
363 kill it right away anyway.
364
365 2006-09-09 Eli Zaretskii <eliz@gnu.org>
366
367 * international/codepage.el (cp850-decode-table): Fix a few codes.
368 (cp858-decode-table): New variable.
369
370 2006-09-09 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
371
372 * net/ldap.el (ldap-search-internal): Doc fix.
373
374 2006-09-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
375
376 * play/life.el (life-display-generation): Test for input manually if
377 `sleeptime' is negative or null.
378
379 * lpr.el (lpr-page-header-switches): Page title switch is one of them.
380 (print-region-1): Substitute `%s' with the page title.
381
382 2006-09-09 Matt Hodges <MPHodges@member.fsf.org>
383
384 * locate.el (locate-current-search): New variable.
385 (locate): Set buffer local value. Use current buffer if it is
386 in Locate mode.
387 (locate-mode): Disable undo here.
388 (locate-do-setup): Use locate-current-filter from buffer to be killed.
389 (locate-update): Use locate-current-search and locate-current-filter.
390
391 2006-09-08 David Kastrup <dak@gnu.org>
392
393 * desktop.el (desktop-read): When loading a desktop, disable
394 saving it while the load progresses, and switch off a pending lazy
395 load by calling `desktop-lazy-abort'.
396
397 2006-08-27 Martin Rudalics <rudalics@gmx.at>
398
399 * window.el (mouse-autoselect-window-timer)
400 (mouse-autoselect-window-position)
401 (mouse-autoselect-window-window)
402 (mouse-autoselect-window-now): New vars.
403 (mouse-autoselect-window-cancel)
404 (mouse-autoselect-window-select)
405 (mouse-autoselect-window-start): New functions.
406 (handle-select-window): Call `mouse-autoselect-window-start' when
407 delayed window autoselection is enabled.
408
409 * cus-start.el (mouse-autoselect-window): Handle delayed window
410 autoselection.
411
412 * emacs-lisp/eldoc.el: Add `handle-select-window' to the set of
413 commands after which it is allowed to print in the echo area.
414
415 2006-09-08 Richard Stallman <rms@gnu.org>
416
417 * textmodes/fill.el (adaptive-fill-regexp): Don't match `(1)' or `1.'
418
419 * mail/rmail.el (rmail-get-new-mail): Say whether all msgs are spam.
420 (rmail-convert-to-babyl-format): Don't record undo, leave list empty.
421
422 * emacs-lisp/timer.el (timer-create, timer-activate): Doc fixes.
423 (cancel-timer-internal): Add doc string.
424 (cancel-function-timers): Doc fix.
425 (with-timeout-handler, timer-event-last*): Add doc strings.
426
427 * emacs-lisp/bindat.el (bindat-unpack): Doc fix.
428
429 * files.el (risky-local-variable-p): Match ...-bindat-spec.
430
431 * dired.el (dired-log-summary): Add doc string.
432
433 * cus-edit.el (custom-menu-create): Bind deactivate-mark here
434 (custom-group-menu-create): Not here.
435
436 2006-09-08 Carsten Dominik <dominik@science.uva.nl>
437
438 * textmodes/org.el (org-dblock-write:clocktable): Avoid infinite loop.
439
440 2006-09-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
441
442 * term/mac-win.el: (show-hide-font-panel): New HI command ID symbol.
443 (mac-apple-event-map): Define its handler.
444
445 2006-09-07 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
446
447 * net/ldap.el (ldap-search-internal): Handle `auth' key.
448
449 2006-09-07 Magnus Henoch <mange@freemail.hu>
450
451 * net/rcirc.el (rcirc-activity-string): Don't quote value in case
452 clause.
453
454 2006-09-07 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
455
456 * info.el (Info-index): Bind completion-ignore-case.
457
458 2006-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
459
460 * progmodes/prolog.el (inferior-prolog-flavor): New var left out of
461 previous commit.
462 (inferior-prolog-guess-flavor): New fun left out of previous commit.
463 (prolog-consult-region-and-go): Don't hard code "*prolog*" and don't
464 burp in dedicated windows.
465 (inferior-prolog-self-insert-command): New command.
466 (inferior-prolog-mode-map): Use it.
467
468 2006-09-07 Reiner Steib <Reiner.Steib@gmx.de>
469
470 * international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
471
472 * international/code-pages.el: Add cp858.
473
474 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
475
476 * dnd.el: Fix bootstrapping.
477
478 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
479
480 * dnd.el (dnd-protocol-alist): Add what url-handler-mode can handle.
481 (dnd-open-remote-url): New function.
482 (dnd-open-remote-file-function): Set to dnd-open-remote-url if
483 not windows-nt.
484
485 2006-09-07 Jason Rumney <jasonr@gnu.org>
486
487 * dnd.el (dnd-open-remote-file-function): New variable.
488 (dnd-open-unc-file): New function.
489 (dnd-open-file): Call dnd-open-remote-file-function if set.
490
491 2006-09-06 Daiki Ueno <ueno@unixuser.org>
492
493 * pgg-gpg.el (pgg-gpg-process-region): Encode passphrase with
494 pgg-passphrase-coding-system rather than locale-coding-system.
495 * pgg-def.el (pgg-passphrase-coding-system): New user option.
496
497 2006-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
498
499 * progmodes/prolog.el: Remove * in docstrings.
500 (prolog-program-name): Add SWI prolog.
501 (prolog-mode-menu): New menu.
502 (prolog-mode): Set comment-add.
503 (prolog-indent-line): Simplify. Use indent-line-to.
504 (inferior-prolog-buffer): New var.
505 (inferior-prolog-run, inferior-prolog-process): New funs.
506 (run-prolog, switch-to-prolog): Rewrite, using them.
507 (prolog-consult-region): Use inferior-prolog-buffer.
508 (inferior-prolog-load-file): New function.
509 (prolog-mode-map): Add bindings for load-file and switch-to-prolog.
510
511 * textmodes/fill.el (fill-single-word-nobreak-p): Allow breaking before
512 last word, if it's not the end of the paragraph.
513
514 * files.el (abbreviate-file-name): Don't mistakenly match newlines in
515 file name.
516
517 2006-09-06 Ralf Angeli <angeli@caeruleus.net>
518
519 * frame.el (display-mm-dimensions-alist): New defcustom.
520 (display-mm-height, display-mm-width): Use it.
521
522 2006-09-06 Simon Josefsson <jas@extundo.com>
523
524 * mail/smtpmail.el (smtpmail-starttls-credentials): Doc fix.
525
526 2006-09-06 Nick Roberts <nickrob@snap.net.nz>
527
528 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
529 (gdb-var-list-children-regexp-1): Tweak regexps to catch full
530 string values.
531
532 2006-09-06 Kim F. Storm <storm@cua.dk>
533
534 * simple.el (line-move-partial): New function to do vscrolling for
535 partially visible images / tall lines. Rewrite based on code
536 previously in line-move. Simplify backwards vscrolling.
537 (line-move): Use it. Simplify.
538
539 2006-09-05 Kim F. Storm <storm@cua.dk>
540
541 * emulation/cua-base.el (cua--pre-command-handler-1): Rewrite.
542
543 2006-09-05 Chong Yidong <cyd@stupidchicken.com>
544
545 * progmodes/compile.el (compilation-error-regexp-alist-alist):
546 Process the `gcc-include' after the `gnu' rule.
547
548 2006-09-05 Kim F. Storm <storm@cua.dk>
549
550 * ido.el (ido-visit-buffer): Use buffer name if buffer arg is a buffer.
551
552 2006-09-05 Daiki Ueno <ueno@unixuser.org>
553
554 * pgg.el (pgg-clear-string): Alias to clear-string for backward
555 compatibility.
556
557 * pgg-gpg.el (pgg-gpg-process-region): Avoid display blinking with
558 inhibit-redisplay; encode passphrase with locale-coding-system.
559
560 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
561
562 * term/xterm.el (terminal-init-xterm): Add more C-M- bindings.
563
564 2006-09-05 Nick Roberts <nickrob@snap.net.nz>
565
566 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
567 (gdb-var-list-children-regexp): Make type field optional.
568
569 * progmodes/gud.el (gud-speedbar-buttons): Allow for no type
570 e.g public, protected in C++.
571
572 2006-09-04 John Paul Wallington <jpw@pobox.com>
573
574 * simple.el (completion-show-help): New defcustom.
575 (completion-setup-function): Heed it.
576
577 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
578
579 * term/xterm.el (terminal-init-xterm): Add C-M- bindings.
580
581 2006-09-04 Richard Stallman <rms@gnu.org>
582
583 * mail/rmail-spam-filter.el (rsf-scanning-messages-now): Doc fix.
584 (rsf-min-region-to-spam-list): Doc fix.
585 (rsf-add-content-type-field): Doc fix.
586
587 * simple.el (kill-region): Explicitly test there is a region.
588
589 2006-09-04 Chong Yidong <cyd@stupidchicken.com>
590
591 * mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
592 sendmail in several common directories.
593
594 * mail/sendmail.el (sendmail-program): Moved here from paths.el.
595
596 * paths.el (sendmail-program): Removed.
597
598 2006-09-04 Daiki Ueno <ueno@unixuser.org>
599
600 * pgg-gpg.el (pgg-gpg-process-region): Revert two patches from Satyaki
601 Das. http://article.gmane.org/gmane.emacs.gnus.general/49947
602 http://article.gmane.org/gmane.emacs.gnus.general/50457
603
604 2006-09-03 Chong Yidong <cyd@stupidchicken.com>
605
606 * cus-edit.el (custom-group-menu-create): Avoid deactivating the
607 mark after running the menu filter.
608
609 2006-09-03 Juri Linkov <juri@jurta.org>
610
611 * international/quail.el (quail-defrule-internal): Add a check
612 if a key is a vector.
613
614 2006-09-02 Juri Linkov <juri@jurta.org>
615
616 * man.el (Man-topic-history): New variable.
617 (man): Use it.
618
619 * woman.el (woman-topic-history): Change defvar to defvaralias
620 for symbol `Man-topic-history'.
621
622 * shell.el (shell-filter-ctrl-a-ctrl-b): Check if
623 `comint-last-output-start' is a marker by using `markerp' and
624 check if it has a position by using `marker-position', and use
625 this position for `goto-char'.
626
627 * international/quail.el (quail-defrule-internal): Add missing
628 `error' call for null key.
629
630 2006-09-02 Ryan Yeske <rcyeske@gmail.com>
631
632 * rcirc.el (rcirc-keywords): New variable.
633 (rcirc-bright-nicks, rcirc-dim-nicks): New variables.
634 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Remove
635 variables.
636 (rcirc-responses-no-activity): New function.
637 (rcirc-handler-generic): Check for responses in above.
638 (rcirc-process-command): Add ?: character to arguments of raw
639 server commands.
640 (rcirc-format-response-string): Use `rcirc-bright-nicks' and
641 `rcirc-dim-nicks'.
642 (rcirc-gray-toggle): Remove unused variable.
643 (rcirc-print): Remove some tracking logic, which is moved into
644 markup functions.
645 (rcirc-activity-types): Was `rcirc-activity-type', now a list of
646 types.
647 (rcirc-activity-string): Look for 'keyword in activity-types.
648 (rcirc-window-configuration-change): Don't erase overlay-arrow
649 unnecessarily.
650 (rcirc-add-or-remove): New function.
651 (rcirc-cmd-ignore): Use it.
652 (rcirc-message-leader): Remove unused function.
653 (rcicr-cmd-bright, rcirc-cmd-dim, rcirc-cmd-keyword): New commands.
654 (rcirc-add-face): New function.
655 (rcirc-facify): Use rcirc-add-face.
656 (rcirc-url-regexp): Add parens.
657 (rcirc-map-regexp): Remove function.
658 (rcirc-mangle-regexp): Remove function.
659 (rcirc-markup-text-functions): New variable.
660 (rcirc-markup-text): New function (replaces `rcirc-mangle-text').
661 (rcirc-markup-body-text, rcirc-markup-attributes)
662 (rcirc-markup-my-nick, rcirc-markup-urls, rcirc-markup-keywords)
663 (rcirc-markup-bright-nicks): New markup handler functions.
664 (rcirc-nick-in-message-full-line): New face.
665 (rcirc-track-nick): Rename from `rcirc-mode-line-nick'.
666 (rcirc-track-keyword, rcirc-url, rcirc-keyword): New faces.
667
668 2006-09-02 Martin Rudalics <rudalics@gmx.at>
669
670 * cus-start.el (hscroll-margin, hscroll-step)
671 (mode-line-in-non-selected-windows, mouse-autoselect-window)
672 (x-use-underline-position-properties): Change version to "22.1"
673 since they will appear there for the first time.
674
675 2006-09-01 Chong Yidong <cyd@stupidchicken.com>
676
677 * imenu.el (imenu-update-menubar): Use buffer-chars-modified-tick.
678
679 2006-08-31 Richard Stallman <rms@gnu.org>
680
681 * cus-edit.el (custom-save-variables): Slight cleanup.
682 (Custom-no-edit): Renamed from custom-no-edit.
683 (Custom-newline): Renamed from custom-newline.
684 (custom-mode-map): Use new names.
685
686 * emacs-lisp/easy-mmode.el (define-minor-mode): Reference manual
687 about customization, rather than M-x customize, in the doc string
688 made for the defcustom.
689
690 * emacs-lisp/trace.el (trace-function-background): Doc fix.
691
692 2006-08-31 Romain Francoise <romain@orebokech.com>
693
694 * dired-x.el (dired-guess-shell-alist-default): Update.
695
696 2006-08-31 Michael Mauger <mmaug@yahoo.com>
697
698 * custom.el (custom-theme-set-variables): Autoload packages before
699 sorting the variables.
700
701 2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu>
702
703 * viper-cmd.el (viper-special-read-and-insert-char): Convert events to
704 chars if XEmacs.
705 (viper-after-change-undo-hook): Check if undo-in-progress is bound.
706
707 2006-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
708
709 * progmodes/python.el (python-eldoc-function): Re-enable quit while
710 waiting for process.
711
712 2006-08-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
713
714 * term/mac-win.el (mac-string-to-utxt): If adjustment for MacJapanese
715 results in ASCII-only string, encode original one directly.
716
717 2006-08-29 Romain Francoise <romain@orebokech.com>
718
719 * startup.el (normal-splash-screen, fancy-splash-screens):
720 Make buffer read-only and arrange to enter view mode if necessary.
721
722 2006-08-29 Chong Yidong <cyd@stupidchicken.com>
723
724 * hl-line.el (hl-line): New face.
725 (hl-line-face): Use it.
726
727 * image-mode.el (image-mode): Fix last fix.
728 Suggested by Kim F. Storm.
729
730 2006-08-29 Michael Albinus <michael.albinus@gmx.de>
731
732 Sync with Tramp 2.0.54.
733
734 * net/tramp.el (tramp-convert-file-attributes): Call `eql' instead
735 of `=', because `tramp-get-remote-gid' might not always return an
736 integer when expected.
737 (tramp-register-file-name-handlers): `partial-completion-mode' is
738 unknown to XEmacs.
739 (tramp-time-diff): Don't use `floor', it might fail for large
740 differences.
741 (tramp-handle-make-auto-save-file-name): For Emacs 21, set
742 `tramp-auto-save-directory' if unset in order to guarantee unique
743 auto-save file names.
744
745 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
746
747 * image-mode.el (image-mode): Display image as text on a terminal.
748
749 2006-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
750
751 * progmodes/python.el (python-send-command): Simplify.
752 (run-python): Don't generate a new buffer unless `new' was specified.
753 Make sure we send `import emacs' to the proper process.
754
755 * progmodes/python.el (python-send-command): Don't wait for the command
756 to terminate. Don't fiddle with compilation-parsing-end.
757
758 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
759
760 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
761 Insert commentary after first line summary.
762
763 * woman.el (woman-follow): New function, based on `man-follow'.
764 (woman-mode-map): Use it.
765
766 * ibuffer.el (ibuffer-do-sort-by-recency): Perform full update
767 since ibuffer-do-sort-by-recency does not define a sorter.
768
769 2006-08-28 Kim F. Storm <storm@cua.dk>
770
771 * find-dired.el (find-dired): Use shell-quote-argument to properly
772 escape ( and ) args. Also use it on {} and ; args in default
773 value of find-ls-option string.
774 (find-grep-dired): Use shell-quote-argument on {} and ; args.
775
776 2006-08-27 Michael Olson <mwolson@gnu.org>
777
778 * emacs-lisp/tq.el: Small grammar fix in comments.
779 (tq-enqueue): Check for existence of queue rather than the
780 head queue item's question, which was a no-op.
781 (tq-filter, tq-process-buffer): Make sure the process buffer
782 exists before making it the current buffer.
783
784 2006-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
785
786 * term/mac-win.el (mac-apple-event-map): Rename hicommand to hi-command.
787 (mac-dnd-drop-data): Apply 2006-08-22 change for x-dnd-drop-data.
788 (special-event-map): Apply 2006-08-16 change for x-win.el.
789
790 2006-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
791
792 * progmodes/python.el (python-send-receive): Wait in the
793 process's buffer so as to check the right buffer-local variables.
794
795 2006-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
796
797 * emacs-lisp/checkdoc.el: Remove * in defcustoms.
798 (defgroup checkdoc): Move to beginning.
799
800 * progmodes/python.el (python-preoutput-skip-next-prompt): New var.
801 (python-preoutput-continuation): Remove.
802 (python-preoutput-filter): Simplify correspondingly.
803 Remove handling of _emacs_ok. Make sure we skip _emacs_out's prompts.
804 Loop around to catch embedded _emacs_out output.
805 (run-python): Send the import&print command on a single line.
806 (python-send-command): Send command&print on a single line.
807 (python-send-string): Only add double \n if needed.
808 (python-send-receive): Loop until the result comes.
809 (python-mode-running): Defvar it.
810 (python-setup-brm): Remove unused var `menu'.
811 Only bind py-mode-map and `features' around brm-init.
812 (python-calculate-indentation): Remove unused var `point'.
813 (python-beginning-of-defun): Remove unused var `def-line'.
814
815 2006-08-25 Richard Stallman <rms@gnu.org>
816
817 * kmacro.el (kmacro-repeat-on-last-key): Doc fix.
818
819 2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
820
821 * viper.el (viper-set-hooks): Use frame bindings for
822 viper-vi-state-cursor-color.
823 (viper-non-hook-settings): Don't set default
824 mode-line-buffer-identification.
825
826 * viper-util.el (viper-set-cursor-color-according-to-state): New fun.
827 (viper-set-cursor-color-according-to-state)
828 (viper-get-saved-cursor-color-in-replace-mode)
829 (viper-get-saved-cursor-color-in-insert-mode): Make conditional on
830 viper-emacs-state-cursor-color.
831
832 * viper-cmd.el (viper-envelop-ESC-key): Bug fix.
833 (viper-undo): Use point if undo-beg-posn is nil.
834 (viper-insert-state-post-command-sentinel, viper-change-state-to-emacs)
835 (viper-after-change-undo-hook): Don't use
836 viper-emacs-state-cursor-color by default.
837 (viper-undo): More sensible positioning after undo.
838
839 * viper-ex.el (ex-splice-args-in-1-letr-cmd): Get rid of caddr.
840 (viper-emacs-state-cursor-color): Default to nil, since this feature
841 doesn't work well yet.
842
843 * ediff-mult.el (ediff-intersect-directories)
844 (ediff-get-directory-files-under-revision, ediff-dir-diff-copy-file):
845 always expand filenames.
846
847 2006-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
848
849 * tumme.el: Remove * in defcustoms's docstrings.
850
851 2006-08-24 Chong Yidong <cyd@stupidchicken.com>
852
853 * emacs-lisp/timer.el (timer-set-idle-time, run-with-idle-timer):
854 Accept internal time format for SECS arg.
855 (timer-relative-time): Doc fix.
856
857 * jit-lock.el: "Stealth fontification by requeuing timers" patch,
858 adapted from Martin Rudalics.
859 (jit-lock-stealth-repeat-timer, jit-lock-stealth-buffers): New vars.
860 (jit-lock-mode): Create jit-lock-stealth-repeat-timer.
861 (jit-lock-stealth-fontify): Reschedule as a idle timer instead of
862 using sit-for.
863
864 2006-08-24 Francesc Rocher <francesc.rocher@gmail.com>
865
866 * cus-start.el (all): Add `overline-margin' and
867 `x-underline-at-descent-line'.
868
869 2006-08-24 Kim F. Storm <storm@cua.dk>
870
871 * progmodes/grep.el (grep-find-use-xargs): Use explicit value `exec'
872 to mean "use find -exec"; nil now unambiguously means auto-detect.
873 (grep-compute-defaults): Set grep-find-use-xargs to `exec' if not `gnu'.
874 Use shell-quote-argument to build grep-find-command and
875 grep-find-template.
876 (rgrep): Use shell-quote-argument to properly quote arguments to find.
877 Reported by Tom Seddon.
878
879 2006-08-23 Chong Yidong <cyd@stupidchicken.com>
880
881 * startup.el (fancy-splash-head): Give instructions for dismissing
882 the splash screen for default startup too.
883 (display-startup-echo-area-message, fancy-splash-screens)
884 (use-fancy-splash-screens-p): New arg hide-on-input. If nil, show
885 all splash text at once and keep the splash buffer around.
886 (command-line-1): Give display-startup-echo-area-message a t arg.
887
888 2006-08-23 Carsten Dominik <dominik@science.uva.nl>
889
890 * textmodes/org.el (org-follow-gnus-link): Make sure the dedicated
891 gnus frame is selected.
892
893 2006-08-23 Nick Roberts <nickrob@snap.net.nz>
894
895 * progmodes/gdb-ui.el (gdb-starting): Reset gdb-signalled to nil.
896
897 2006-08-22 Kim F. Storm <storm@cua.dk>
898
899 * ido.el (ido-set-matches-1): Fix full matching for subdirs.
900 Add suffix matching for subdirs.
901
902 2006-08-22 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
903
904 * x-dnd.el (x-dnd-drop-data): Don't call goto-char if
905 mouse-yank-at-point is non-nil.
906
907 2006-08-22 Nick Roberts <nickrob@snap.net.nz>
908
909 * progmodes/gdb-ui.el (gdb-frame-memory-buffer): Make frame
910 a bit wider and remove fringes to fit initial output on line.
911
912 2006-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
913
914 * frame.el (blink-cursor-end): Only ignore the error we care about.
915 (blink-cursor-mode): Use blink-cursor-end to simplify the code.
916
917 2006-08-21 Richard Stallman <rms@gnu.org>
918
919 * whitespace.el (whitespace-cleanup): Doc fix.
920
921 2006-08-20 Ryan Yeske <rcyeske@gmail.com>
922
923 * net/rcirc.el (rcirc-show-maximum-output): New var.
924 (rcirc-buffer-process): If no buffer argument is supplied, use
925 current-buffer.
926 (rcirc-complete-nick): Complete to the last completed nick first.
927 (rcirc-mode): Preserve the value of `rcirc-urls' across
928 connections. Setup scroll function.
929 (rcirc-scroll-to-bottom): New function.
930 (rcirc-print): Use nick syntax around regexp work.
931 Notice dim-nicks speaking only if they say our nick.
932 (rcirc-update-activity-string): Do not show the modeline indicator
933 if there are no live rcirc processes.
934 (rcirc-cmd-ignore): Ignore case.
935 (rcirc-browse-url-at-point): Fix off-by-one error.
936
937 2006-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
938
939 * progmodes/python.el: Remove * in defcustom docstrings.
940 (run-python, python-proc, python-try-complete): Use derived-mode-p.
941 (python-mode): Set tab-width and indent-tabs-mode.
942
943 2006-08-20 Dave Love <fx@gnu.org>
944
945 * progmodes/python.el: Update to Dave Love's latest version.
946 (python-font-lock-keywords, python-mode): Don't use
947 font-lock-syntax-table, but match symbol elements explicitly instead.
948 (python-mode-map): Add help, and a few more key bindings.
949 (python-skip-comments/blanks): Move out of comments as well.
950 (python-continuation-line-p): Behave better with unbalanced parens.
951 (python-blank-line-p): New fun.
952 (python-open-block-statement-p): Don't use a heuristic.
953 (python-outdent-p): Better handle blocks-in-the-same-line.
954 (python-calculate-indentation): Misc improvements.
955 (python-comment-indent): Remove.
956 (python-block-pairs): New var.
957 (python-first-word): New fun.
958 (python-indentation-levels): Handle more common cases.
959 (python-indent-line-1): Add `leave' argument.
960 (python-indent-region): New fun.
961 (python-skip-out): New fun.
962 (python-beginning-of-statement, python-end-of-statement): Use it.
963 (python-next-statement): Return correct count even at eob.
964 (python-end-of-block): Fix paren-typo.
965 (python-imenu-create-index): Add module variables.
966 (run-python): Add `new' arg.
967 Check we're at a prompt before returning.
968 (python-send-command): Move to end of buffer.
969 Wait for prompt to return.
970 (python-set-proc): New fun.
971 (python-imports): New var.
972 (python-describe-symbol): Use it. Adjust to new interface of `ehelp'.
973 (python-eldoc-function): Try to move out of arg list.
974 (python-outline-level): Offset by 1.
975 (python-find-imports): New fun.
976 (python-symbol-completions): Use python-imports.
977 (python-module-path, ffap-alist): Add support for ffap.
978 (python-skeletons, python-mode-abbrev-table, def-python-skeleton)
979 (pythin-insert-*, python-default-template, python-expand-template):
980 Add templates/skeletons.
981 (python-setup-brm): Support for Bicycle Repair Man.
982 (python-abbrev-syntax-table): New var.
983 (python-abbrev-pc-hook, python-pea-hook): New funs.
984
985 2006-08-20 Chong Yidong <cyd@stupidchicken.com>
986
987 * frame.el (blink-cursor-start): Set timer first.
988 (blink-cursor-end): Ignore timer cancelling errors.
989 Suggested by Ken Manheimer.
990
991 2006-08-20 Juanma Barranquero <lekktu@gmail.com>
992
993 * newcomment.el (comment-box): Call `comment-normalize-vars'.
994 Add autoload cookie.
995
996 2006-08-20 Richard Stallman <rms@gnu.org>
997
998 * simple.el (line-number-at-pos): Doc fix.
999
1000 * emacs-lisp/timer.el (run-with-idle-timer): Pass t to
1001 timer-activate-when-idle, so timer can run before Emacs becomes
1002 non-idle again.
1003
1004 2006-08-18 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change)
1005
1006 * whitespace.el (whitespace-cleanup-internal): New optional arg
1007 REGION-ONLY. If it's non-nil, modify the message to the user
1008 accordingly.
1009 (whitespace-cleanup-region): Call whitespace-cleanup-internal with
1010 a non-nil argument.
1011
1012 2006-08-18 Gustav H\e,Ae\e(Bllberg <gustav@gmail.com> (tiny change)
1013
1014 * rect.el (spaces-string): Simplify and add doc string.
1015
1016 2006-08-17 Romain Francoise <romain@orebokech.com>
1017
1018 * progmodes/gdb-ui.el (gdb-edit-locals-value): Balance parens.
1019
1020 2006-08-17 Richard Stallman <rms@gnu.org>
1021
1022 * compare-w.el (compare-windows): lambda's take an arg and pass
1023 it to compare-windows-skip-whitespace.
1024
1025 2006-08-17 Martin Rudalics <rudalics@gmx.at>
1026
1027 * jit-lock.el (jit-lock-fontify-now): Protect the modified status of
1028 the right buffer.
1029
1030 2006-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
1031
1032 * pcvs-parse.el (cvs-parse-table): Accept the new `...' format for
1033 removed files.
1034
1035 2006-08-17 Nick Roberts <nickrob@snap.net.nz>
1036
1037 * progmodes/gdb-ui.el (gdb-locals-watch-map)
1038 (gdb-locals-watch-map-1): Suppress keymap first.
1039 (gdb-edit-locals-map-1): New variable.
1040 (gdb-edit-locals-value): New function.
1041 (gdb-stack-list-locals-handler): Use them.
1042
1043 2006-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
1044
1045 * mouse.el (global-map): Allow yanking with mouse-2 at a spot whose
1046 cursor would normally be drawn in the fringe.
1047
1048 * font-lock.el (font-lock-extend-region-wholelines): Fix up typo.
1049 Reported by Martin Rudalics <rudalics@gmx.at>.
1050
1051 2006-08-16 Richard Stallman <rms@gnu.org>
1052
1053 * term/x-win.el (x-clipboard-yank): Specify * in interactive spec.
1054 (special-event-map): Process drag-n-drop events this way.
1055
1056 * simple.el (move-beginning-of-line): Test whether fields
1057 would prevent motion back to line's first visible character.
1058 If so, stop where the fields would stop the motion.
1059
1060 * newcomment.el (comment-indent): Fully update INDENT
1061 before checking to see if it will change the text.
1062
1063 * cus-edit.el (custom-newline): New function.
1064 (custom-mode-map): Bind newline to custom-newline.
1065
1066 * compare-w.el (compare-windows): Factor compare-ignore-whitespace
1067 into ignore-whitespace.
1068 Check each buffer for its skip-function.
1069 Handle compare-windows-skip-whitespace special-case test
1070 by returning t from default skip function.
1071
1072 2006-08-15 Carsten Dominik <dominik@science.uva.nl>
1073
1074 * textmodes/org.el (org-clock-special-range)
1075 (org-clock-update-time-maybe): New functions.
1076 (org-stamp-time-of-day-regexp): Allow weekday to be of word chars,
1077 not only a-z.
1078 (org-agenda-get-blocks): Allow multiple blocks per headline.
1079 (org-timestamp-change): Call `org-clock-update-time-maybe'.
1080 (org-export-html-title-format)
1081 (org-export-html-toplevel-hlevel): New options.
1082 (org-export-language-setup): Add support for Czech.
1083 (org-mode, org-insert-todo-heading, org-find-visible)
1084 (org-find-invisible, org-invisible-p, org-invisible-p2)
1085 (org-back-to-heading, org-on-heading-p, org-up-heading-all)
1086 (org-show-subtree, org-show-entry, org-make-options-regexp):
1087 Remove compatibility support for old outline-mode.
1088 (org-check-occur-regexp): Funtion removed.
1089 (org-on-heading-p, org-back-to-heading): Made defalias.
1090 (org-set-local): New defsubst.
1091 (org-set-regexps-and-options, org-mode)
1092 (org-set-font-lock-defaults, org-edit-agenda-file-list)
1093 (org-timeline, org-agenda-list, org-todo-list, org-tags-view)
1094 (org-remember-apply-template, org-table-edit-field)
1095 (org-table-edit-formulas, orgtbl-mode, org-export-as-ascii)
1096 (org-set-autofill-regexps): Use `org-set-local'.
1097 (org-table-eval-formula): Fix bug with parsing of display flags.
1098
1099 2006-08-15 Nick Roberts <nickrob@snap.net.nz>
1100
1101 * progmodes/gdb-ui.el (gdb-info-stack-custom): Indicate selected
1102 frame with fringe arrow. Suggested by Simon Marshall
1103 <simon.marshall@misys.com>.
1104 (gdb-stack-position): New variable.
1105 (gdb-starting, gdb-exited): Reset gdb-stack-position to nil.
1106 (gdb-frames-mode): Set gdb-stack-position to nil.
1107 Add to overlay-arrow-variable-list
1108 (gdb-reset): Delete gdb-stack-position from above list.
1109
1110 2006-08-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1111
1112 * term/x-win.el (menu-bar-edit-menu): Disable paste if buffer is
1113 read only.
1114
1115 2006-08-13 Romain Francoise <romain@orebokech.com>
1116
1117 * cus-theme.el (customize-create-theme)
1118 (custom-theme-visit-theme): End `y-or-n-p' prompt with a space.
1119
1120 * filesets.el (filesets-add-buffer): Ditto.
1121
1122 * pcvs.el (cvs-change-cvsroot): Ditto.
1123
1124 2006-08-13 Nick Roberts <nickrob@snap.net.nz>
1125
1126 * progmodes/gdb-ui.el (gdb-frame-separate-io-buffer)
1127 (gdb-use-separate-io-buffer, menu): Avoid using `inferior' in text.
1128 (gdb-memory-mode, gdb-locals-watch-map): Don't quote lambda
1129 expressions.
1130 (gdb-info-breakpoints-custom): Use gdb-breakpoint-regexp.
1131 Only search till end of line.
1132 Add face to function names in case of no filename.
1133 Add face to variable names of watchpoints.
1134
1135 2006-08-12 Robert Thorpe <rthorpe@realworldtech.com> (tiny change)
1136
1137 * cus-start.el <indent-tabs-mode>: Move to the `indent'
1138 customization group.
1139
1140 2006-08-12 Ken Manheimer <ken.manheimer@gmail.com>
1141
1142 * allout.el (allout-prior-bindings, allout-added-bindings):
1143 Remove, after long deprecation.
1144 (allout-beginning-of-line-cycles, allout-end-of-line-cycles):
1145 Add customization vars controlling allout-beginning-of-line and
1146 allout-end-of-line conveniences.
1147 (allout-header-prefix, allout-use-mode-specific-leader)
1148 (allout-use-mode-specific-leader, allout-mode-leaders):
1149 Revise docstrings.
1150 (allout-infer-header-lead): Change to be an alias for
1151 allout-infer-header-lead-and-primary-bullet.
1152 (allout-infer-header-lead-and-primary-bullet): New version of
1153 allout-infer-header-lead which assigns the primary bullet to the
1154 same as the header lead, when its being changed.
1155 (allout-infer-body-reindent): Apply regexp-quote instead of
1156 unconditionally prepending "\\", so that all literal
1157 allout-header-prefix and allout-primary-bullet strings are
1158 properly handled.
1159 (allout-add-resumptions): Add optional qualifier for extending or
1160 appending to existing values, rather than replacing them.
1161 (allout-view-change-hook): Clarify docstring.
1162 (allout-exposure-change-hook): Take explicit arguments, via
1163 run-hook-with-args.
1164 (allout-structure-added-hook)
1165 (allout-structure-deleted-hook)
1166 (allout-structure-shifted-hook): New hooks analogous to
1167 allout-exposure-change-hook for other kinds of structural outline
1168 edits.
1169 (allout-encryption-plaintext-sanitization-regexps): New encryption
1170 customization variable, by which cooperating modes can provde
1171 massage of the plaintext without actually being passed it.
1172 (allout-encryption-ciphertext-rejection-regexps)
1173 (allout-encryption-ciphertext-rejection-ceiling): New encryption
1174 customization variables, by which cooperating modes can prohibit
1175 rare but possible ciphertext patterns from fouling their
1176 operation, with actually being passed the ciphertext.
1177 (allout-mode): Run activation and deactivation hooks after the
1178 minor-mode variable has been toggled, to clarify the mode
1179 disposition. The new encryption ciphertext rejection variable is
1180 used to ensure that the ciphertext does not contain text that
1181 would be recognized as outline structural elements by allout.
1182 Substite allout-beginning-of-line and allout-end-of-line for
1183 conventionall beginning-of-line and end-of-line bindings.
1184 If allout-old-style-prefixes is non-nil, don't nullify it on mode
1185 activation!
1186 (allout-beginning-of-line): Respect `allout-beginning-of-line-cycles'.
1187 (allout-end-of-line): Respect `allout-end-of-line-cycles'.
1188 (allout-chart-subtree): Implement new mode, charting only the
1189 visible items in the subtree, when new 'visible' parameter is non-nil.
1190 (allout-end-of-subtree): Properly handle the last item in the buffer.
1191 (allout-pre-command-business, allout-command-counter):
1192 Increment an advertised counter so that cooperating enhancements can
1193 track revisions of items.
1194 (allout-open-topic): Run allout-structure-added-hook with suitable
1195 arguments.
1196 (allout-shift-in): Run allout-structure-shifted-hook with suitable
1197 arguments.
1198 (allout-shift-out): Fix doubling for negative args and ensure call
1199 of allout-structure-shifted-hook by solely using allout-shift-in.
1200 (allout-kill-line, allout-kill-topic):
1201 Run allout-structure-deleted-hook with suitable arguments.
1202 (allout-yank-processing): Run allout-structure-added-hook with
1203 proper arguments.
1204 (allout-yank): Enclose activity in allout-unprotected.
1205 (allout-flag-region): Run allout-exposure-change-hook with
1206 suitable arguments, instead of making the callee infer the arguments.
1207 (allout-encrypt-string):
1208 Support allout-encryption-plaintext-sanitization-regexps,
1209 allout-encryption-ciphertext-rejection-regexps, and
1210 allout-encryption-ciphertext-rejection-ceiling. Indicate correct
1211 en/de cryption mode in symmetric encryption failure message.
1212 (allout-obtain-passphrase): Use copy-sequence to get a distinct
1213 copy of the passphrase, and don't zero it or we'll corrupt the
1214 stashed copy.
1215 (allout-create-encryption-passphrase-verifier)
1216 (allout-verify-passphrase): Respect the new signature for
1217 allout-encrypt-string.
1218 (allout-get-configvar-values): Convenience for getting a
1219 configuration variable value and handling its absence gracefully.
1220
1221 2006-08-11 Romain Francoise <romain@orebokech.com>
1222
1223 * obsolete/zone-mode.el: Delete.
1224
1225 2006-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
1226
1227 * textmodes/dns-mode.el (dns-mode): Use before-save-hook.
1228
1229 2006-08-11 Thien-Thi Nguyen <ttn@gnu.org>
1230
1231 * emacs-lisp/bindat.el (bindat-ip-to-string):
1232 Use `format-network-address' if possible.
1233
1234 2006-08-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1235
1236 * x-dnd.el (x-dnd-init-frame): Call x-register-dnd-atom.
1237
1238 2006-08-10 Chong Yidong <cyd@stupidchicken.com>
1239
1240 * emacs-lisp/edebug.el (edebug-recursive-edit): Don't save and
1241 restore unread-command-events here.
1242 (edebug-display): Do it here, to detect sit-for interruptions.
1243
1244 2006-08-10 Romain Francoise <romain@orebokech.com>
1245
1246 * textmodes/dns-mode.el: Alias `zone-mode' to `dns-mode'.
1247 (dns-mode-soa-auto-increment-serial): New user option.
1248 (dns-mode-soa-maybe-increment-serial): New function.
1249 (dns-mode): Add the latter to `write-contents-functions'.
1250
1251 * obsolete/zone-mode.el: Move to obsolete/ from net/.
1252 Delete autoload cookies.
1253
1254 2006-08-10 John Wiegley <johnw@newartisans.com>
1255
1256 * eshell/em-glob.el (eshell-glob-chars-list)
1257 (eshell-glob-translate-alist): Add support for [^g] in character globs.
1258
1259 2006-08-10 Richard Stallman <rms@gnu.org>
1260
1261 * facemenu.el (facemenu-add-face): Pass frame to facemenu-active-faces.
1262 (facemenu-set-face): Doc fix.
1263 (facemenu-listed-faces): Doc fix.
1264
1265 2006-08-09 Chong Yidong <cyd@stupidchicken.com>
1266
1267 * avoid.el (mouse-avoidance-animating-pointer): New var.
1268 (mouse-avoidance-nudge-mouse): Use it.
1269 (mouse-avoidance-banish): Rename from mouse-avoidance-banish-hook.
1270 (mouse-avoidance-exile): Rename from mouse-avoidance-exile-hook
1271 (mouse-avoidance-fancy): Rename from mouse-avoidance-fancy-hook.
1272 Don't activate if currently animating. All callers changed.
1273
1274 2006-08-09 John Wiegley <johnw@newartisans.com>
1275
1276 * calendar/timeclock.el (timeclock-use-elapsed): Added a new
1277 variable, which causes timeclock to report elapsed time worked,
1278 instead of just work remaining.
1279
1280 2006-08-09 Kenichi Handa <handa@m17n.org>
1281
1282 * international/latexenc.el (latexenc-find-file-coding-system):
1283 Fix for the case that the 2nd element of arg-list is a cons.
1284
1285 2006-08-08 Chong Yidong <cyd@stupidchicken.com>
1286
1287 * info.el (Info-fontify-node): Handle preceding `in' for note
1288 reference hiding rules.
1289
1290 2006-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
1291
1292 * progmodes/sh-script.el (sh-quoted-subshell): Make sure we don't
1293 mistake a closing " for an opening one.
1294
1295 2006-08-07 Dan Nicolaescu <dann@ics.uci.edu>
1296
1297 * term/xterm.el (terminal-init-xterm): Add more key bindings.
1298
1299 2006-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
1300
1301 * complete.el (PC-do-completion): Filter out completions matching
1302 completion-ignored-extensions before checking whether there are
1303 multiple completions.
1304 Don't use `list' unnecessarily when building completion tables.
1305
1306 2006-08-06 Richard Stallman <rms@gnu.org>
1307
1308 * help.el (describe-mode): Make minor mode list more concise.
1309
1310 2006-08-05 Chong Yidong <cyd@stupidchicken.com>
1311
1312 * bindings.el: Give mode-line-format, mode-line-modes, and
1313 mode-line-position `standard-value' properties.
1314
1315 2006-08-05 Eli Zaretskii <eliz@gnu.org>
1316
1317 * buff-menu.el (list-buffers-noselect): For Info buffers, use
1318 "(file)node" instead of the file name.
1319
1320 2006-08-05 Richard Stallman <rms@gnu.org>
1321
1322 * faces.el (escape-glyph): Doc fix.
1323
1324 2006-08-04 Kenichi Handa <handa@m17n.org>
1325
1326 * international/mule-diag.el (describe-font): Improve docstring
1327 and error message. Use frame-parameter (not frame-parameters).
1328
1329 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
1330
1331 * progmodes/gud.el (gdb-script-font-lock-syntactic-keywords):
1332 Correctly mark the end-of-docstring char.
1333
1334 2006-08-03 Chong Yidong <cyd@stupidchicken.com>
1335
1336 * simple.el (line-move-to-column): Constrain move-to-column to
1337 current field.
1338
1339 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
1340
1341 * font-lock.el (font-lock-beg, font-lock-end)
1342 (font-lock-extend-region-functions): New vars.
1343 (font-lock-extend-region-multiline)
1344 (font-lock-extend-region-wholelines): New functions.
1345 (font-lock-default-fontify-region): Use them.
1346 (font-lock-extend-jit-lock-region-after-change): Only round up
1347 if font-lock-default-fontify-region will do it as well.
1348
1349 * font-lock.el (font-lock-extend-after-change-region-function):
1350 Rename from font-lock-extend-region-function.
1351 (font-lock-extend-region): Remove by inlining at call sites.
1352 (font-lock-after-change-function): Don't needlessly round up to a whole
1353 number of lines.
1354 (font-lock-extend-jit-lock-region-after-change): Be more careful about
1355 the boundary conditions and the interactions between the various ways
1356 to extend the region.
1357
1358 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1359
1360 * jit-lock.el (jit-lock-fontify-now): Preserve the buffer's
1361 modification status when forcing the second redisplay.
1362
1363 2006-08-03 Kim F. Storm <storm@cua.dk>
1364
1365 * edmacro.el (edmacro-fix-menu-commands): Ignore switch-frame.
1366
1367 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1368
1369 * pcvs-util.el (cvs-get-buffer-create): Obey `noreuse' even if `name'
1370 doesn't look like a file name.
1371
1372 * complete.el (PC-expand-many-files): Avoid signalling an error when
1373 the current directory doesn't exist. Reported by Micha\e,Ak\e(Bl Cadilhac.
1374
1375 2006-08-02 Andreas Schwab <schwab@suse.de>
1376
1377 * bindings.el (mode-line-format): Simplify reference to vc-mode.
1378
1379 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
1380
1381 * bindings.el (map): Make mode-line-buffer-identification-keymap
1382 before defining propertized-buffer-identification.
1383
1384 2006-08-01 Richard Stallman <rms@gnu.org>
1385
1386 * bindings.el (mode-line-format): Adjust spacing around vc-mode.
1387
1388 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
1389
1390 * progmodes/gdb-ui.el (gdb-find-source-frame): Make nil the
1391 default value.
1392 (gdb-find-source-frame): New function.
1393 (menu): Add to menu bar.
1394
1395 2006-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
1396
1397 * font-core.el (font-lock-extend-region-function)
1398 (font-lock-extend-region): Move to font-lock.el.
1399
1400 * font-lock.el (font-lock-extend-region-function)
1401 (font-lock-extend-region): Move from font-core.el. Simplify.
1402
1403 * jit-lock.el (jit-lock-fontify-now): Cause a second redisplay
1404 if needed.
1405 (jit-lock-start, jit-lock-end): New dynamic scoped vars.
1406 (jit-lock-after-change-extend-region-functions): New hook.
1407 (jit-lock-after-change): Use it instead of hard-coding font-lock code.
1408
1409 * font-lock.el (font-lock-extend-jit-lock-region-after-change): New fun.
1410 (font-lock-turn-on-thing-lock): Use it.
1411
1412 * longlines.el (longlines-show-region): Make it work on read-only
1413 buffers as well.
1414
1415 2006-08-01 Nick Roberts <nickrob@snap.net.nz>
1416
1417 * progmodes/gdb-ui.el (gdb-set-hollow): Check for gud-last-last-frame.
1418
1419 2006-07-31 Richard Stallman <rms@gnu.org>
1420
1421 * progmodes/vhdl-mode.el (vhdl-speedbar-display-directory)
1422 (vhdl-speedbar-display-projects): Update old obsolete
1423 speedbar variable names.
1424
1425 2006-07-31 Nick Roberts <nickrob@snap.net.nz>
1426
1427 * progmodes/gdb-ui.el (gdb-find-source-frame): New option.
1428 (gdb-stopped): Use it.
1429
1430 * t-mouse.el (t-mouse-mode): Use set-process-query-on-exit-flag.
1431
1432 2006-07-29 Chong Yidong <cyd@stupidchicken.com>
1433
1434 * loadhist.el (unload-feature): Handle new `(t . SYMBOL)' format
1435 for load-history elements.
1436
1437 2006-07-29 Eli Zaretskii <eliz@gnu.org>
1438
1439 * files.el (convert-standard-filename): For Cygwin, replace
1440 characters not allowed in Windows file names.
1441 (make-auto-save-file-name): Add Cygwin to the list of systems
1442 where the auto-save file name needs to be run through
1443 convert-standard-filename.
1444
1445 2006-07-29 Lennart Borgman <lennart.borgman.073@student.lu.se>
1446
1447 * window.el (bw-get-tree): Don't integerp subtree if it's nil.
1448
1449 2006-07-28 Richard Stallman <rms@gnu.org>
1450
1451 * bindings.el (mode-line-frame-identification)
1452 (propertized-buffer-identification): Centralize the code
1453 to initialize the variable.
1454
1455 * progmodes/grep.el (grep-default-command): Catch errors from
1456 wildcard-to-regexp.
1457
1458 2006-07-29 Kim F. Storm <storm@cua.dk>
1459
1460 * progmodes/grep.el (grep-tag-default): New function.
1461 (grep-default-command, grep-read-regexp): Use it.
1462 (grep-read-files): Use car of grep-files-history or grep-files-aliases
1463 as default if nothing else applies.
1464
1465 2006-07-28 Bill Atkins <atkinw@rpi.edu> (tiny change)
1466
1467 * wdired.el (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
1468 Throw error if buffer is not in Dired and Wdired mode, respectively.
1469
1470 2006-07-28 Chong Yidong <cyd@stupidchicken.com>
1471
1472 * cus-edit.el (custom-no-edit): Revert 2006-07-27 change, so that
1473 self-insert-command keys don't activate buttons.
1474 (custom-mode-map): Just don't bind "\C-m" to `custom-no-edit'.
1475
1476 2006-07-29 Nick Roberts <nickrob@snap.net.nz>
1477
1478 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Use different
1479 faces for enable character.
1480
1481 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
1482
1483 * Makefile.in (recompile): Update comment to reflect change
1484 on 2004-04-21.
1485
1486 2006-07-27 Richard Stallman <rms@gnu.org>
1487
1488 * cus-edit.el (customize-package-emacs-version-alist): Doc fix.
1489 (customize-package-emacs-version): Change msg when pkg has no entry.
1490 (custom-no-edit): On a button, do like widget-button-press.
1491
1492 2006-07-27 Dan Nicolaescu <dann@ics.uci.edu>
1493
1494 * term/xterm.el (terminal-init-xterm): Fix bindings for C-tab,
1495 S-tab and C-S-tab.
1496
1497 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
1498
1499 * progmodes/which-func.el (which-function): Fix documentation/
1500 comment typo.
1501
1502 2006-07-26 Richard Stallman <rms@gnu.org>
1503
1504 * textmodes/ispell.el (ispell-word): If we replace the word,
1505 move point to the end. Insert before deleting.
1506
1507 2006-07-26 Chong Yidong <cyd@stupidchicken.com>
1508
1509 * subr.el (sit-for): Use new SECONDS arg of read-event instead of
1510 a timer.
1511
1512 2006-07-26 Mathias Dahl <mathias.dahl@gmail.com>
1513
1514 * tumme.el (tumme-backward-image): Add prefix argument. Add error
1515 when at first image.
1516 (tumme-forward-image): Add prefix argument. Add error when at last
1517 image.
1518
1519 2006-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
1520
1521 * tabify.el (tabify-regexp): Use more specific regexps.
1522 (tabify): Avoid modifying the buffer unnecessarily.
1523
1524 2006-07-25 Mathias Dahl <mathias.dahl@gmail.com>
1525
1526 * tumme.el (tumme-track-original-file): Add `buffer-live-p' check.
1527 (tumme-format-properties-string): Handle empty `buf'.
1528 (tumme-get-comment): Change variable names inside `let'.
1529 Add missing `let' variable that cause font-lock problems.
1530 (tumme-write-comments): Change variable names inside `let'.
1531 Add missing `let' variable that cause font-lock problems.
1532 (tumme-forward-image): Rename from `tumme-forward-char'.
1533 (tumme-backward-image): Rename from `tumme-backward-char'.
1534
1535 2006-07-25 Masatake YAMATO <jet@gyve.org>
1536
1537 * progmodes/ld-script.el (ld-script-keywords)
1538 (ld-script-font-lock-keywords, ld-script-builtins): Update keywords
1539 and add comments.
1540
1541 2006-07-25 Nick Roberts <nickrob@snap.net.nz>
1542
1543 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
1544 (gdb-resync, gdb-prompt, gdb-starting, gdb-exited, gdb-stopped)
1545 (gdb-set-gud-minor-mode-existing-buffers-1): Use different faces
1546 for status indicator.
1547
1548 2006-07-24 Richard Stallman <rms@gnu.org>
1549
1550 * xml.el (xml-parse-file): Clean up, and use with-temp-buffer.
1551
1552 * subr.el (dolist, dotimes): Use interned symbols for locals.
1553 (--dotimes-limit--, --dolist-tail--): New defvars.
1554 (looking-back): Doc fix.
1555
1556 * replace.el (replace-match-string-symbols): Handle dotted lists.
1557
1558 2006-07-24 mathias <mathias@mattis>
1559
1560 * tumme.el (tumme-write-tags): Add.
1561 (tumme-write-comments): Add.
1562 (tumme-tag-files): Change to use `tumme-write-tags'.
1563 (tumme-tag-thumbnail): Change to use `tumme-write-tags'.
1564 (tumme-dired-comment-files): Change to use `tumme-write-comments'.
1565 (tumme-save-information-from-widgets): Change to use
1566 `tumme-write-comments' and `tumme-write-tags'.
1567 (tumme-comment-thumbnail): Change to use `tumme-write-comments'.
1568 (tumme-write-tag): Remove.
1569 (tumme-write-comment): Remove.
1570 (tumme-display-previous-thumbnail-original): Remove empty line.
1571 (tumme-widget-list): Add punctuation.
1572
1573 2006-07-24 mathias <mathias.dahl@gmail.com>
1574
1575 * tumme.el (tumme-line-up): Add an extra check for end of buffer.
1576
1577 2006-07-24 Daiki Ueno <ueno@unixuser.org>
1578
1579 * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
1580 letters from the end. Thanks to "David Smith" <davidsmith@acm.org>
1581 and andreas@altroot.de (Andreas V\e,Av\e(Bgele).
1582
1583 2006-07-23 Thien-Thi Nguyen <ttn@gnu.org>
1584
1585 * mouse.el (mouse-on-link-p): Doc fix.
1586
1587 2006-07-23 Nick Roberts <nickrob@snap.net.nz>
1588
1589 * emacs-lisp/find-func.el (find-function-search-for-symbol):
1590 Handle "C-h f `".
1591
1592 2006-07-22 Dan Nicolaescu <dann@ics.uci.edu>
1593
1594 * ibuffer.el (ibuffer-formats): Use left alignment for the mode
1595 column.
1596
1597 2006-07-22 Matt Hodges <MPHodges@member.fsf.org>
1598
1599 * textmodes/table.el: Add move-beginning-of-line and
1600 move-end-of-line to Point Motion Only Group.
1601
1602 2006-07-22 Eric Hanchrow <offby1@blarg.net>
1603
1604 * progmodes/delphi.el (delphi-fill-comment): Use save-restriction.
1605
1606 2006-07-22 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
1607
1608 * startup.el (user-mail-address): Initialize from the `EMAIL'
1609 environment variable first. Document this.
1610 (command-line): Ditto.
1611
1612 2006-07-22 Nick Roberts <nickrob@snap.net.nz>
1613
1614 * help-mode.el (help-function-def, help-variable-def)
1615 (help-face-def): Print a message in the minibuffer.
1616
1617 2006-07-21 Dan Nicolaescu <dann@ics.uci.edu>
1618
1619 * term/xterm.el (terminal-init-xterm): Fix key bindings
1620 syntax. Bind S-return, C-M-., C-TAB, S-TAB and C-S-TAB.
1621
1622 2006-07-21 Eli Zaretskii <eliz@gnu.org>
1623
1624 * dos-w32.el (find-buffer-file-type-coding-system): Support calls
1625 where `(nth 1 command)' is a cons cell. Doc fix.
1626
1627 * textmodes/po.el (po-find-charset): Doc fix.
1628
1629 2006-07-21 Ken Manheimer <ken.manheimer@gmail.com>
1630
1631 * allout.el (allout-unprotected, allout-e-o-prefix-p)
1632 (allout-beginning-of-current-line, allout-end-of-current-line)
1633 (allout-next-visible-heading, allout-open-topic)
1634 (allout-kill-topic, allout-yank-processing, allout-resolve-xref)
1635 (allout-flag-current-subtree, allout-show-to-offshoot)
1636 (allout-hide-current-entry, allout-show-current-branches)
1637 (allout-hide-region-body, allout-old-expose-topic)
1638 (allout-listify-exposed, allout-latex-verbatim-quote-curr-line)
1639 (allout-mark-topic, allout-adjust-file-variable): Enclose scopes
1640 containing `beginning-of-line' and `end-of-line' with
1641 `inhibit-field-text-motion' t.
1642
1643 2006-07-21 Eli Zaretskii <eliz@gnu.org>
1644
1645 * frame.el (focus-follows-mouse): Document that it doesn't have
1646 any effect on MS-Windows.
1647
1648 2006-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
1649
1650 * progmodes/sh-script.el (sh-quoted-subshell): Further fix last change.
1651
1652 2006-07-20 Jay Belanger <belanger@truman.edu>
1653
1654 * calc.el (calc-previous-alg-entry): Remove variable.
1655
1656 * calc-aent.el (calc-alg-entry-history, calc-quick-calc-history):
1657 New variables.
1658 (calc-alg-entry): Use `calc-alg-entry-history'.
1659 (calc-do-quick-calc): Use `calc-quick-calc-history'.
1660 Remove reference to `calc-previous-alg-entry'.
1661 (calcAlg-edit, calcAlg-enter): Remove reference to
1662 `calc-previous-alg-entry'.
1663 (calcAlg-previous): Use `previous-history-element' instead of
1664 `calc-previous-alg-entry'.
1665 (calc-do-alg-entry): Use history when calling `read-from-minibuffer'.
1666 Change keybinding for `calcAlg-plus-minus', add keybindings for
1667 `previous-history-element' and `next-history-element'.
1668
1669 * calc-rewr.el (calc-match): Remove reference to
1670 `calc-previous-alg-entry'.
1671
1672 * calc-sel.el (calc-selection-history): New variable.
1673 (calc-enter-selection, calc-sel-mult-both-sides)
1674 (calc-sel-add-both-sides): Use `calc-selection-history'.
1675
1676 * calc-map.el (calc-get-operator-history): New variable.
1677 (calc-get-operator): Use `calc-get-operator-history'.
1678
1679 * calcalg3.el (calc-curve-fit-history): New variable.
1680 (calc-curve-fit): Use `calc-curve-fit-history'.
1681
1682 2006-07-20 Kenichi Handa <handa@m17n.org>
1683
1684 * international/mule-cmds.el (select-safe-coding-system): Fix the
1685 way of deciding eol-type of the coding system.
1686
1687 2006-07-20 Alan Mackenzie <acm@muc.de>
1688
1689 * progmodes/cc-langs.el (c-emacs-variable-inits): New variable.
1690 (c-lang-setvar): New macro.
1691 (c-make-init-lang-vars-fun): Use the initialization forms in
1692 c-emacs-variable-inits in addition to those in c-lang-variable-inits.
1693 (comment-start, comment-end, comment-start-skip): Change these from
1694 c-lang-defvar's to c-lang-setvar's.
1695
1696 * progmodes/cc-mode.el (c-make-emacs-variables-local): New macro,
1697 which calls make-local-variable on the elements of
1698 c-emacs-variable-inits.
1699 (c-init-language-vars-for): Call this new macro.
1700
1701 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
1702
1703 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
1704 Try to rule out false positives due to time stamps.
1705 (compilation-mode-font-lock-keywords): Remove rules made redundant
1706 because of the above change. Add `segmentation fault' to the known and
1707 highlighted compilation termination messages.
1708
1709 2006-07-19 Kim F. Storm <storm@cua.dk>
1710
1711 * progmodes/grep.el (grep-find-ignored-directories):
1712 Add .svn and _darcs to list.
1713
1714 2006-07-19 Mathias Dahl <mathias.dahl@gmail.com>
1715
1716 * dired.el (dired-mode-map): Add key binding `C-te' for
1717 `tumme-dired-edit-comment-and-tags'.
1718
1719 * tumme.el (tumme-display-thumbnail-original-image): Make sure
1720 image display buffer is displayed before call to
1721 `tumme-display-image.
1722 (tumme-dired-display-image): Make sure image display buffer is
1723 displayed before call to `tumme-display-image.
1724 (tumme-mouse-display-image): Make sure image display buffer is
1725 displayed before call to `tumme-display-image.
1726 (tumme-widget-list): Add.
1727 (tumme-dired-edit-comment-and-tags): Add.
1728 (tumme-save-information-from-widgets): Add.
1729
1730 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
1731
1732 * progmodes/sh-script.el (sh-quoted-subshell): Fix last change.
1733
1734 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
1735
1736 * progmodes/sh-script.el (sh-font-lock-keywords-1):
1737 Revert inadvertently installed patch hunk.
1738
1739 * progmodes/compile.el (compilation-find-file): Handle the
1740 cases where the user selects a non-existent file.
1741
1742 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
1743
1744 * bindings.el (minibuffer-local-map): Rebind TAB so it inserts a \t.
1745
1746 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
1747
1748 * subr.el (sit-for): Just sleep-for if noninteractive.
1749
1750 2006-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
1751
1752 * emacs-lisp/autoload.el (make-autoload): Use new arg.
1753
1754 * custom.el (custom-autoload): Add `noset' argument.
1755 (custom-push-theme): Don't autoload the variable, let callers do it.
1756 (custom-theme-set-variables): Autoload the variable if necessary.
1757
1758 * cus-edit.el (custom-variable-state-set): If the variable was
1759 originally set outside custom, but to the same value as the default,
1760 consider it to be standard.
1761
1762 * Makefile.in (mh-loaddefs.el): Finish setting up the default empty
1763 file *before* telling Emacs to add the autoloads, in case it fails.
1764
1765 * progmodes/sh-script.el (sh-quoted-subshell): Don't match escaped `.
1766 Use `cond', push', and `dolist'.
1767
1768 2006-07-17 Richard Stallman <rms@gnu.org>
1769
1770 * image-mode.el (tar-superior-buffer, archive-superior-buffer):
1771 Add defvars to silence warnings.
1772
1773 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
1774
1775 * progmodes/compile.el (compilation-mode-font-lock-keywords):
1776 Don't highlight "Compiling file" messages as error.
1777
1778 * dired-aux.el (dired-compress-file): Confirm again if gzipped
1779 file already exists.
1780
1781 2006-07-16 Thien-Thi Nguyen <ttn@gnu.org>
1782
1783 * find-file.el (ff-special-constructs): Doc fix. Also, for C/C++
1784 entry, don't assign to free var; simply return the extracted filename.
1785 (ff-treat-as-special): Incorporate common preamble from callers.
1786 (ff-other-file-name, ff-find-the-other-file):
1787 Update call to ff-treat-as-special.
1788
1789 * progmodes/ada-mode.el (ada-mode): Rewrite ff-special-constructs init.
1790
1791 2006-07-16 Mathias Dahl <mathias.dahl@gmail.com>
1792
1793 * tumme.el (tumme-get-comment): Fix bug.
1794
1795 2006-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
1796
1797 * files.el: Remove spurious * in docstrings.
1798
1799 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
1800
1801 * allout.el (allout-run-unit-tests-on-load): Rectify docstring
1802 grammar.
1803 (allout-beginning-of-current-line): Beware beginning of buffer.
1804 Also, a comment is simplified.
1805 (allout-hotspot-key-handler): Only set allout-post-goto-bullet
1806 when appropriate. (This fix enables use for other than
1807 bullet-hotspot operation.)
1808 (allout-hide-current-subtree): While escalating to sibling-close,
1809 make sure to situate on a topic.
1810
1811 2006-07-14 Kim F. Storm <storm@cua.dk>
1812
1813 * emulation/cua-base.el (cua-delete-selection)
1814 (cua-toggle-set-mark): New defcustoms.
1815 (cua-rectangle-modifier-key): Add `alt' modifier.
1816 (cua-replace-region): Don't delete if cua-delete-selection is nil.
1817 (cua-set-mark): Don't clear mark if cua-toggle-set-mark is nil.
1818 Suggested by Klaus Zeitler <kzeitler@lucent.com>.
1819
1820 * emulation/cua-rect.el (cua-help-for-rectangle): Add `alt' modifier.
1821
1822 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
1823
1824 * allout.el: Require 'cl during byte-compilation/interactive load,
1825 for the `assert' macro.
1826 (allout-mode-deactivate-hook): New hook, run when allout mode
1827 deactivates.
1828 (allout-developer): New allout customization subgroup.
1829 (allout-run-unit-tests-on-load): New allout-developer
1830 customization variable, when true allout unit tests are run towards
1831 end of file load/eval.
1832 (allout-inhibit-auto-fill): Disable auto-fill activity even during
1833 auto-fill-mode.
1834 (allout-resumptions): Remove, to be replaced by...
1835 (allout-add-resumptions): Register variable settings to be
1836 reinstated by `allout-do-resumptions'. The settings are made
1837 buffer-local, but the locality/globality of the suspended setting
1838 is restored on resumption.
1839 (allout-do-resumptions): Reinstate all settings suspended using
1840 `allout-add-resumptions'.
1841 (allout-test-resumptions): Unit tests (and intermediate variables)
1842 for resumptions.
1843 (allout-tests-globally-unbound, allout-tests-globally-true)
1844 (allout-tests-locally-true): Intermediate variables for
1845 resumptions unit tests.
1846 (allout-overlay-preparations): Replaces `allout-set-overlay-category'.
1847 (allout-exposure-category): Replaces 'allout-overlay-category variable.
1848 (allout-mode): Use `allout-add-resumptions' and `allout-do-resumptions'
1849 instead of retired `allout-resumptions'. For hook functions, use
1850 `local' parameter so hook settings are created and removed as
1851 buffer-local settings. Revise (resumptions) setting
1852 auto-fill-function so it is set only if already active. (The
1853 related fill-function settings are all made in either case, so
1854 that activating auto-fill-mode activity will have the custom
1855 allout-mode behaviors (hanging indent on topics, if configured for it).
1856 Remove all allout-exposure-category overlays on mode deactivation.
1857 (allout-hotspot-key-handler): New function extracted from
1858 `allout-pre-command-business', so the functionality can be used
1859 for other purposes, eg as a binding in an overlay.
1860 (allout-pre-command-business): Use new `allout-hotspot-key-handler'.
1861 (allout-auto-fill): Respect new `allout-inhibit-auto-fill'
1862 customization variable.
1863 (allout-run-unit-tests): Run the (currently quite small)
1864 repertoire of unit tests. Called just before the provide iff user
1865 has customized `allout-run-unit-tests-on-load' non-nil.
1866
1867 2006-07-14 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
1868
1869 * emacs-lisp/authors.el (authors-aliases): Update.
1870
1871 2006-07-14 Nick Roberts <nickrob@snap.net.nz>
1872
1873 * progmodes/gdb-ui.el (gdb-display-buffer): Check for
1874 gdb-source-window. Add dedicated argument.
1875 (gdb-display-separate-io-buffer, gdb-append-to-inferior-io)
1876 (gdb-display-breakpoints-buffer, gdb-display-stack-buffer)
1877 (gdb-display-threads-buffer, gdb-display-memory-buffer)
1878 (gdb-display-locals-buffer): Use it.
1879
1880 * progmodes/gud.el (gud-display-line): Use gdb-display-buffer.
1881 Set gdb-source-window.
1882
1883 2006-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
1884
1885 * emacs-lisp/autoload.el (make-autoload): Remove special handling of
1886 minor modes, redundant with the custom-autoload line above.
1887
1888 2006-07-12 Chong Yidong <cyd@stupidchicken.com>
1889
1890 * longlines.el (longlines-post-command-function): Handle open-line too.
1891
1892 2006-07-12 Richard Stallman <rms@gnu.org>
1893
1894 * progmodes/grep.el (grep-last-buffer): Doc fix.
1895
1896 * info.el (Info-try-follow-nearest-node): Doc fix.
1897
1898 * emacs-lisp/edebug.el (edebug-instrument-function):
1899 Err if find-function-noselect gives no position.
1900
1901 * emacs-lisp/find-func.el (find-function-search-for-symbol):
1902 If can't find definition, return nil for position.
1903 (find-function-do-it): Handle new return value
1904 of find-definition-noselect.
1905 (find-definition-noselect, find-variable-noselect): Doc fix.
1906 (find-function-noselect): Doc fix.
1907
1908 * help-mode.el (help-variable-def): Handle find-variable-noselect
1909 returning no position.
1910 (help-function-def): Likewise for find-function-search-for-symbol.
1911 (help-face-def): Likewise.
1912
1913 * help-fns.el (describe-variable): Handle find-variable-noselect
1914 returning no position.
1915
1916 * files.el (locate-file-completion): Avoid duplicates in result.
1917
1918 * cus-edit.el (custom-no-edit): New command.
1919 (custom-mode-map): Remap to custom-no-edit instead of
1920 using suppress-keymap.
1921
1922 2006-07-12 Nick Roberts <nickrob@snap.net.nz>
1923
1924 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
1925 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
1926 (tumme-set-exif-data, tumme-get-exif-data): Use shell-command-switch.
1927
1928 * thumbs.el (thumbs-call-convert): Use shell-command-switch.
1929
1930 2006-07-11 Kim F. Storm <storm@cua.dk>
1931
1932 * ido.el (ido-copy-current-file-name): Use buffer-name if
1933 buffer-file-name is nil.
1934
1935 2006-07-11 Chong Yidong <cyd@stupidchicken.com>
1936
1937 * simple.el (undo-ask-before-discard): Set to nil.
1938
1939 * vc.el (vc-exec-after): Don't delete process manually.
1940 (vc-print-log): Run log-view-mode in process sentinel inside
1941 inhibit-read-only. Don't shrink window due to timing issues.
1942
1943 * progmodes/ebrowse.el (ebrowse-display-member-buffer):
1944 Avoid using with-output-to-temp-buffer, which clobbers local vars.
1945
1946 2006-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
1947
1948 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1949 Fix ambiguity introduced by last change.
1950 (compilation-find-file): Move save-excursion to where it may
1951 make sense. Fix a left over `find-file'.
1952
1953 2006-07-11 Robert J. Chassell <bob@rattlesnake.com>
1954
1955 * textmodes/texinfmt.el (texinfo-format-separate-node):
1956 Insert a string before point, which fits documentation, not after.
1957 (texinfo-multitable-item): In a multitable row, insert any
1958 additional needed @tabs and spaces.
1959
1960 2006-07-11 Nick Roberts <nickrob@snap.net.nz>
1961
1962 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
1963 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
1964 (tumme-set-exif-data, tumme-get-exif-data): Use call-process
1965 instead of shell-command.
1966 (tumme-create-thumbnail-buffer, tumme-create-display-image-buffer)
1967 (tumme-display-thumbs, tumme-modify-mark-on-thumb-original-file)
1968 (tumme-display-image, tumme-get-exif-data): Use with-current-buffer.
1969 (tumme-display-properties-format, tumme-dired-insert-marked-thumbs)
1970 (tumme-thumbnail-set-image-description, tumme-gallery-generate)
1971 (tumme-rotate-original, tumme-get-exif-file-name): Fit to 80 columns.
1972
1973 2006-07-11 Kim F. Storm <storm@cua.dk>
1974
1975 * subr.el (sit-for): Doc fix. Specify normal arg list using fn-form.
1976 Remove special case for seconds < 0. Use (redisplay t) instead.
1977
1978 2006-07-10 Chong Yidong <cyd@stupidchicken.com>
1979
1980 * progmodes/cc-awk.el (c-awk-escaped-nls*): Use eval-and-compile to
1981 avoid compilation error.
1982
1983 * subr.el (sit-for): New function.
1984
1985 * play/hanoi.el (hanoi-sit-for): Check sit-for return value.
1986
1987 2006-07-10 Richard Stallman <rms@gnu.org>
1988
1989 * ldefs-boot.el (edebug): Update page.
1990
1991 2006-07-10 Kim F. Storm <storm@cua.dk>
1992
1993 * emacs-lisp/authors.el (authors-ignored-files): Ignore changes
1994 to FOR-RELEASE and TODO.
1995
1996 2006-07-10 Romain Francoise <romain@orebokech.com>
1997
1998 * emacs-lisp/authors.el (authors-aliases): Update.
1999
2000 2006-07-10 Alan Mackenzie <acm@muc.de>
2001
2002 * progmodes/cc-awk.el, cc-defs.el, cc-fonts.el, cc-langs.el:
2003 * cc-mode.el: Changes to eradicate eval-after-load.
2004
2005 2006-07-09 Chong Yidong <cyd@stupidchicken.com>
2006
2007 * emacs-lisp/helper.el (Helper-help-scroller): Don't signal error
2008 on non-char events.
2009
2010 2006-07-09 Romain Francoise <romain@orebokech.com>
2011
2012 * progmodes/compile.el (compilation-mode-font-lock-keywords):
2013 Don't highlight start/end markers as compilation messages.
2014
2015 * isearch.el (isearch-yank-line): Let-bind `inhibit-field-text-motion'
2016 to t.
2017
2018 2006-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
2019
2020 * textmodes/fill.el (fill-region-as-paragraph): Refine last change.
2021
2022 2006-07-08 Richard Stallman <rms@gnu.org>
2023
2024 * term/x-win.el (x-handle-display): Add doc string.
2025
2026 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
2027
2028 * subr.el (def-edebug-spec): Move here.
2029 * emacs-lisp/edebug.el (def-edebug-spec): Move to subr.el.
2030
2031 * imenu.el (imenu-choose-buffer-index): Doc fix.
2032
2033 2006-07-08 Romain Francoise <romain@orebokech.com>
2034
2035 * term/x-win.el (x-display-name): Fix typo.
2036
2037 2006-07-08 Eli Zaretskii <eliz@gnu.org>
2038
2039 * hexl.el (hexl-find-file): Doc fix.
2040
2041 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
2042
2043 2006-07-07 Chong Yidong <cyd@stupidchicken.com>
2044
2045 * term/x-win.el (x-display-name): Doc fix.
2046
2047 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
2048
2049 * textmodes/fill.el (fill-delete-prefix): Don't ignore excessively
2050 long prefixes.
2051 (fill-region-as-paragraph): Don't round up to a whole line.
2052 (fill-comment-paragraph): Don't include the code-before-the-comment
2053 when calling fill-region-as-paragraph.
2054
2055 * international/mule.el (make-char): Remove redundancy.
2056
2057 * emacs-lisp/bytecomp.el (byte-compile-form): The `byte-compile'
2058 property may contain an anonymous function rather than a symbol.
2059
2060 * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness.
2061
2062 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
2063 Use shy regexp. Fix incorrect backref to potentially unmatched group.
2064
2065 * dirtrack.el (dirtrack-default-directory-function): Remove.
2066 (dirtrack-directory-function): Use file-name-as-directory.
2067 (dirtrack-windows-directory-function): Simplify.
2068 (dirtrack-forward-slash, dirtrack-backward-slash)
2069 (dirtrack-replace-slash): Remove.
2070 (dirtrack-toggle): Adjust comint-preoutput-filter-functions as well.
2071 (dirtrack): Fix wrong parenthesizing; use match-string.
2072
2073 * progmodes/octave-inf.el: Remove spurious * in docstrings.
2074 (inferior-octave-mode): Only change the buffer-local value of
2075 comint-dynamic-complete-functions.
2076 (inferior-octave-mode-map, inferior-octave-mode-syntax-table):
2077 Move the initialization to the declaration.
2078 (inferior-octave-complete): Remove unused var `filter'.
2079
2080 * shell.el (shell-mode): Only change the buffer-local value of
2081 comint-dynamic-complete-functions.
2082
2083 2006-07-07 Carsten Dominik <dominik@science.uva.nl>
2084
2085 * textmodes/org.el (org-agenda-get-todos): Skip subtree also if
2086 entry is skipped because it has been scheduled.
2087 (org-prepare-agenda-buffers): Don't mark buffers as modified when
2088 changing `:org-archived' and `:org-comment' properties.
2089
2090 2006-07-06 Chong Yidong <cyd@stupidchicken.com>
2091
2092 * server.el (server-select-display): Don't make the temp frame
2093 minibuffer-only, in case it's not a temp frame.
2094 (server-process-filter): Don't delete the temp frame if it's the
2095 only one we have on that display.
2096
2097 * files.el (find-alternate-file): Doc fix.
2098
2099 2006-07-05 Richard Stallman <rms@gnu.org>
2100
2101 * files.el (abbreviate-file-name): Add save-match-data.
2102
2103 2006-07-03 Richard Stallman <rms@gnu.org>
2104
2105 * faces.el (read-face-name): Doc fix.
2106
2107 2006-07-05 Chong Yidong <cyd@stupidchicken.com>
2108
2109 * net/goto-addr.el (goto-address): Mark as safe for local evals.
2110
2111 2006-07-05 Andre Spiegel <spiegel@gnu.org>
2112
2113 * vc.el (vc-diff-internal): Fix prev change.
2114
2115 2006-07-05 Thien-Thi Nguyen <ttn@gnu.org>
2116
2117 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Use eval-buffer.
2118 * play/dunnet.el (dun-load-d, dun-eval): Likewise.
2119
2120 2006-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
2121
2122 * thingatpt.el (symbol-at-point): Don't use `form-at-point' which
2123 fails if the symbol contains chars like ( or '.
2124 (bounds-of-thing-at-point): Remove unused vars `end' and `beg'.
2125 (thing-at-point-bounds-of-url-at-point): Remove unused vars `url' and
2126 `short'.
2127
2128 2006-07-04 Kenichi Handa <handa@m17n.org>
2129
2130 * international/mule-cmds.el (set-language-info): If LANG-ENV is
2131 the current one, don't call set-language-environment, but call one
2132 of set-language-environment-XXX to make INFO effective now.
2133 (set-language-environment): Call set-language-environment-XXX
2134 functions instead of doing the various setups directly.
2135 (set-language-environment-coding-systems): Delete argument eol-type.
2136 (set-language-environment-input-method)
2137 (set-language-environment-nonascii-translation)
2138 (set-language-environment-charset)
2139 (set-language-environment-fontset)
2140 (set-language-environment-unibyte): New functions.
2141
2142 2006-07-03 Luc Teirlinck <teirllm@auburn.edu>
2143
2144 * locate.el (locate-update-when-revert): New option.
2145 (locate-update-path): New option (suggested by Michael Albinus).
2146 (locate-prompt-for-command): Whitespace change.
2147 (locate-update): No longer offer to update the locate database by
2148 default. Implement the two new options.
2149
2150 2006-07-04 Nick Roberts <nickrob@snap.net.nz>
2151
2152 * tooltip.el: Move comment about track-mouse...
2153
2154 * progmodes/gud.el: ...to here.
2155
2156 2006-07-03 Chong Yidong <cyd@stupidchicken.com>
2157
2158 * facemenu.el (facemenu-listed-faces): New var.
2159 (facemenu-unlisted-faces): Variable deleted.
2160 (facemenu-add-new-face): Use facemenu-listed-faces.
2161
2162 * emulation/viper-init.el, calendar/calendar.el:
2163 * progmodes/make-mode.el: Delete calls to facemenu-unlisted-faces.
2164
2165 2006-07-03 Carsten Dominik <dominik@science.uva.nl>
2166
2167 * textmodes/org.el (org-mode): Remove no invalid settings for
2168 calc embedded mode.
2169 (org-mode-p): New defsubst.
2170 (org-save-all-org-buffers): New function.
2171 (org-first-headline-recenter): Enclose outline-regexp in group
2172 delimiters.
2173 (org-set-tags): Keep single space after stars.
2174
2175 2006-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
2176
2177 * window.el (set-window-text-height): Only set window-min-height to
2178 1 if that's the requested size.
2179
2180 * diff-mode.el (diff-find-file-name): Obey cvs-pcl-cvs-dirchange-re.
2181 (diff-unified->context, diff-context->unified)
2182 (diff-reverse-direction): Make sure the end marker stays at the end.
2183 (diff-mode): Add the keymap table at the end of docstring.
2184 Use lexical-let rather than constructing a closure manually.
2185
2186 * files.el (find-file-noselect-1): Remove unused var assignment.
2187 (hack-local-variables-confirm): Print lists of strings as lists of
2188 strings rather than lists of symbols.
2189 (abbreviate-file-name, hack-local-variables-prop-line):
2190 Use match-string.
2191 (hack-one-local-variable): Move `make-local-variable' nearer its use.
2192 (recover-session-finish): Use line-end-position.
2193
2194 2006-07-02 Michael Albinus <michael.albinus@gmx.de>
2195
2196 * net/tramp.el (tramp-handle-shell-command): Preserve current-buffer.
2197
2198 2006-07-02 Daniel Pfeiffer <occitan@esperanto.org>
2199
2200 * progmodes/make-mode.el (makefile-macroassign-regex):
2201 Accept preceding keyword.
2202 (makefile-gmake-statements): Reorganize, now that makepp has
2203 "override" and also handle forgotten "override define".
2204 (makefile-makepp-statements): Add new "global", "override export"
2205 and "override global".
2206
2207 2006-06-30 Juanma Barranquero <lekktu@gmail.com>
2208
2209 * progmodes/ada-mode.el (ada-which-compiler, ada-mode-menu)
2210 (ada-compile-mouse-goto-error, ada-deactivate-properties)
2211 (ada-no-auto-case): Fix typos in docstrings.
2212
2213 2006-06-30 Nick Roberts <nickrob@snap.net.nz>
2214
2215 * info.el (Info-find-node-2): Search for makeinfo version more
2216 carefully.
2217
2218 2006-06-29 Carsten Dominik <dominik@science.uva.nl>
2219
2220 * textmodes/org.el (org-prepare-agenda-buffers):
2221 Use `invisible-OK' argument for `org-end-of-subtree'.
2222 (org-export-cleanup-toc-line): Rename from `org-html-cleanup-toc-line'.
2223 (org-beginning-of-item): Fix bug in regular expression for white line.
2224 (org-export-as-html): Enforce space after bullet in plain list items.
2225 (org-set-autofill-regexps): Require space after plain list bullet
2226 for paragraph-start.
2227 (org-ts-regexp3): New constant.
2228 (org-at-timestamp-p): New optional argument ALSO-INACTIVE.
2229 (org-timestamp-up-day, org-timestamp-down-day)
2230 (org-timestamp-change): Work with inactive timestamps.
2231 (org-ts-regexp1): Don't allow brackets in time stamps.
2232
2233 2006-06-29 Nick Roberts <nickrob@snap.net.nz>
2234
2235 * help-mode.el (help-xref-symbol-regexp): Add property as a keyword
2236 for ignoring links.
2237
2238 * faces.el (read-face-name): Use it.
2239
2240 2006-06-28 Juri Linkov <juri@jurta.org>
2241
2242 * buff-menu.el (list-buffers-noselect): Compare Info file
2243 with the string "dir" to detect Info directory.
2244
2245 * complete.el (partial-completion-mode): In lambda for
2246 `choose-completion-string-functions' use full function signature
2247 with 4 args, and move point to the end of the minibuffer only if arg
2248 `mini-p' is non-nil.
2249
2250 2006-06-28 John Paul Wallington <jpw@pobox.com>
2251
2252 * ibuffer.el (ibuffer-mode): Doc fix.
2253
2254 2006-06-28 Carsten Dominik <dominik@science.uva.nl>
2255
2256 * textmodes/org.el (org-context): New contexts :item-bullet,
2257 :latex-fragment, :latex-preview.
2258 (org-overlays-at, org-overlay-start, org-overlay-end):
2259 New compatibility functions.
2260 (org-inside-LaTeX-fragment-p): More accurate matching, using the
2261 exact regexp that will be used during export.
2262 (org-latex-regexps): New variable.
2263 (org-cdlatex-mode): Improve advice for `texmathp'.
2264 (turn-on-org-cdlatex): New function.
2265
2266 2006-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2267
2268 * term/mac-win.el (mac-handle-font-selection): Change keys of
2269 mac-atsu-font-table from strings to numbers.
2270 (mac-ts-caret-position): Use also when cursor-type is nil.
2271 (mac-ts-update-active-input-area): Add Mac OS Classic support.
2272 Relax condition for using overlay strings.
2273 Use mac-ts-caret-position face when cursor-type is nil.
2274
2275 2006-06-26 Kim F. Storm <storm@cua.dk>
2276
2277 * help.el (view-emacs-news): Declare `res' in the right let* form.
2278
2279 2006-06-25 Michael Albinus <michael.albinus@gmx.de>
2280
2281 * net/rcompile.el (remote-compile): Replace ange-ftp based
2282 implementation by Tramp functions.
2283 Suggested by Marc Abramowitz <msabramo@gmail.com>.
2284
2285 * net/tramp.el (tramp-unload-tramp): Provide a doc string.
2286
2287 2006-06-24 Yoshinori Koseki <kose@meadowy.org>
2288
2289 * international/fontset.el (setup-default-fontset): Fix a typo in
2290 the "Oriya-Akruti" registry name.
2291
2292 2006-06-23 Lars Hansen <larsh@soem.dk>
2293
2294 * desktop.el (desktop-full-file-name): New function.
2295 (desktop-kill, desktop-save, desktop-remove, desktop-read)
2296 (desktop-revert): Use it.
2297 (desktop-clear, desktop-save, desktop-remove): Add autoload cookie.
2298 (desktop-after-read-hook): Add option list-buffers.
2299 (desktop-locals-to-save): Add tab-width.
2300 (desktop-save-mode, desktop-no-desktop-file-hook, desktop-save-hook):
2301 Fix docstring.
2302
2303 2006-06-23 Carsten Dominik <dominik@science.uva.nl>
2304
2305 * textmodes/org.el (org-cdlatex-mode-map)
2306 (org-cdlatex-texmathp-advice-is-done): New variables.
2307 (org-cdlatex-mode): New minor mode.
2308 (org-inside-LaTeX-fragment-p, org-try-cdlatex-tab): New functions.
2309 (org-cdlatex-underscore-caret, org-cdlatex-math-modify): New commands.
2310 (org-export-with-archived-trees): New option.
2311 (org-open-file): Remove the call to `convert-standard-filename'.
2312 (org-archive-tag, org-agenda-skip-archived-trees)
2313 (org-cycle-open-archived-trees)
2314 (org-sparse-tree-open-archived-trees): New options.
2315 (org-cycle-hide-archived-subtrees, org-hide-archived-subtrees)
2316 (org-toggle-tag, org-prepare-agenda-buffers, org-agenda-skip):
2317 New functions.
2318 (org-agenda-toggle-archive-tag, org-toggle-archive-tag): New commands.
2319 (org-agenda-mode-map): Add binding of `org-agenda-toggle-archive-tag'.
2320 (org-mode-map): Add binding for `org-toggle-archive-tag'.
2321 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
2322 Call `org-prepare-agenda-buffers'.
2323 (org-occur, org-scan-tags): Call `org-hide-archived-subtrees'.
2324 (org-file-apps, org-file-apps-defaults-gnu)
2325 (org-file-apps-defaults-macosx, org-file-apps-defaults-windowsnt):
2326 Handle remote files by forcing them to be opened in Emacs.
2327
2328 2006-06-23 Andre Spiegel <spiegel@gnu.org>
2329
2330 * vc.el (vc-diff-knows-L): New variable.
2331 (vc-diff-internal): Use it to handle "diff" programs that don't
2332 understand -L. This works automatically, no user action is necessary.
2333
2334 2006-06-23 Daniel Brockman <daniel@brockman.se>
2335
2336 * net/rcirc.el (rcirc-default-user-full-name): Default to
2337 `rcirc-default-user-name' instead of `rcirc-user-name' (which no
2338 longer exists).
2339 (rcirc-process-list): Check `buffer-live-p' before attempting to
2340 switch to a buffer.
2341
2342 2006-06-23 Ryan Yeske <rcyeske@gmail.com>
2343
2344 * net/rcirc.el (rcirc-mode): Fix initialization of coding systems
2345 based on rcirc-coding-system-alist.
2346
2347 2006-06-23 Martin Rudalics <rudalics@gmx.at>
2348
2349 * cus-edit.el (customize-apropos): A better error message.
2350 (top level) <debug-ignored-errors>: Extend and update the list of
2351 ignored error messages.
2352
2353 2006-06-23 Michael Ernst <mernst@alum.mit.edu>
2354
2355 * complete.el (PC-do-completion): Retain capitalization of user
2356 input, when possible, even if completion-ignore-case is set.
2357
2358 2006-06-23 Eli Zaretskii <eliz@gnu.org>
2359
2360 * generic-x.el (bat-generic-mode): Support .cmd files.
2361
2362 * dos-w32.el (top level): Use find-file-not-found-functions
2363 instead of the obsolete find-file-not-found-hooks.
2364
2365 2006-06-22 Kim F. Storm <storm@cua.dk>
2366
2367 * progmodes/grep.el (grep-mode-font-lock-keywords): Correct regexps
2368 to recognize mode name containing submodes, such as Grep/lw.
2369
2370 2006-06-21 Kim F. Storm <storm@cua.dk>
2371
2372 * simple.el (line-move-1): Check for move-end-of-line instead of
2373 end-of-line when setting temporary-goal-column.
2374
2375 2006-06-21 Miles Bader <miles@gnu.org>
2376
2377 * play/cookie1.el (cookie): Work properly when there's only one entry.
2378
2379 2006-06-21 Nick Roberts <nickrob@snap.net.nz>
2380
2381 * progmodes/gdb-ui.el (gdb-exited): Ensure overlay arrow gets killed.
2382 (gdb-frame-handler): Generalize frame regexp for templates.
2383
2384 2006-06-20 Glenn Morris <rgm@gnu.org>
2385
2386 * calendar/appt.el (appt-display-format): Default value must be
2387 one of the customize options.
2388
2389 2006-06-20 Dan Nicolaescu <dann@ics.uci.edu>
2390
2391 * term/xterm.el (terminal-init-xterm): Update key availability info.
2392 Bind C-return.
2393
2394 * term.el (term-delete-lines, term-insert-lines): Clarify comments.
2395
2396 2006-06-20 Chong Yidong <cyd@stupidchicken.com>
2397
2398 * files.el (hack-local-variables): Run `hack-local-variables-hook'
2399 whether or not a local variables list is defined.
2400
2401 * msb.el (msb): Move `sit-for' hack here to handle both
2402 "mouse-down and drag" and "mouse-up and select" situations.
2403 (mouse-select-buffer): Move `sit-for' hack to `msb'.
2404
2405 2006-06-20 Kenichi Handa <handa@m17n.org>
2406
2407 * international/characters.el (word-combining-categories):
2408 Add entries for 2-byte Han characters.
2409
2410 2006-06-19 Richard Stallman <rms@gnu.org>
2411
2412 * bindings.el (mode-line-format): Save some mode line space.
2413
2414 * files.el (find-file-noselect): Improve the question wording.
2415 (basic-save-buffer-2): Mask UMASK against 666.
2416
2417 * mouse.el (mouse-drag-vertical-line-rightward-window): New function.
2418 (mouse-drag-vertical-line): Call it.
2419
2420 * cus-edit.el (customize-option, customize-option-other-window):
2421 Error if SYMBOL is nil.
2422
2423 2006-06-19 Carsten Dominik <dominik@science.uva.nl>
2424
2425 * textmodes/org.el: Require noutline, also on XEmacs.
2426 (org-end-of-subtree): Return point.
2427 (org-dblock-start-re, org-dblock-end-re): New constants.
2428 (org-create-dblock, org-prepare-dblock, org-map-dblocks)
2429 (org-dblock-update, org-update-dblock, org-beginning-of-dblock)
2430 (org-update-all-dblocks, org-find-dblock): New functions.
2431 (org-collect-clock-time-entries): New function.
2432 (org-html-handle-time-stamps): Never export CLOCK timeranges.
2433 (org-fixup-indentation): Modify to deal correctly with lines
2434 starting with TAB. Only one argument DIFF now.
2435 (org-demote, org-promote): Call `org-fixup-indentation' with just
2436 one argument, DIFF.
2437 (org-mode): Don't mark buffer as modified when aligning tables.
2438 (org-clock-sum): Don't mark buffer modified when adding time sum
2439 properties.
2440 (org-export-as-html): Add support for a link validation function.
2441 (org-archive-all-done): New function.
2442 (org-archive-subtree): New prefix argument. When set, archive all
2443 done subtrees in this buffer.
2444 (org-remove-clock-overlays)
2445 (org-remove-occur-highlights): Use `org-inhibit-highlight-removal'.
2446 (org-inhibit-highlight-removal): New variable, for dynamic scoping.
2447 (org-put-clock-overlay): Don't swallow last headline character
2448 when displaying overlay.
2449 (org-store-link): Link to `image-mode' with just the file name.
2450
2451 2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
2452
2453 * viper-cmd.el (viper-special-read-and-insert-char):
2454 Use read-key-sequence.
2455 (viper-after-change-undo-hook): Misc enhancements.
2456 (viper-after-change-undo-hook): New hook.
2457 (viper-undo): Use viper-after-change-undo-hook.
2458 (viper-add-newline-at-eob-if-necessary): Widen before making changes.
2459 (viper-next-line-at-bol): If point is on a widget or a button, simulate
2460 clicking on that widget/button.
2461
2462 * viper.el (viper-mode): Allow a separate cursor color in Emacs state.
2463
2464 * ediff-diff (ediff-test-patch-utility): Catch errors.
2465 (ediff-actual-diff-options, ediff-actual-diff3-options): New variables.
2466 (ediff-set-actual-diff-options): New function.
2467 (ediff-reset-diff-options, ediff-toggle-ignore-case):
2468 Use ediff-set-actual-diff-options.
2469 (ediff-extract-diffs): Catch errors.
2470 (ediff-whitespace): Add non-breakable space.
2471 (ediff-same-file-contents): Catch errors.
2472
2473 * ediff-mult.el (ediff-collect-custom-diffs):
2474 Save coding-system-for-read.
2475
2476 * ediff-vers.el (ediff-keep-tmp-versions): New variable.
2477 (ediff-vc-internal, ediff-vc-merge-internal):
2478 Use ediff-delete-version-file.
2479 (ediff-delete-version-file): New function.
2480
2481 * ediff-wind.el (ediff-control-frame-parameters): Set frame fringes.
2482
2483 * ediff.el (ediff-directories, ediff-directory-revisions)
2484 (ediff-merge-directories, ediff-merge-directories-with-ancestor)
2485 (ediff-directories-internal, ediff-merge-directory-revisions)
2486 (ediff-merge-directory-revisions-with-ancestor)
2487 (ediff-directories3): Use read-directory-name.
2488
2489 2006-06-18 Ralf Angeli <angeli@caeruleus.net>
2490
2491 * textmodes/tex-mode.el (tex-font-lock-match-suscript):
2492 Remove superfluous part of regexp for brace matching which is handled
2493 by `scan-lists' call.
2494
2495 2006-06-16 Richard Stallman <rms@gnu.org>
2496
2497 * obsolete/options.el (list-options): Put "obsolete" msg in buffer.
2498
2499 * files.el (basic-save-buffer-2): For a new precious file,
2500 use the default modes in the return value.
2501
2502 * facemenu.el (facemenu-color-alist): Doc fix.
2503
2504 * cus-edit.el (custom-guess-name-alist): Recognize `-flag'.
2505
2506 2006-06-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2507
2508 * cus-start.el (all): Add mac-ts-script-language-on-focus.
2509
2510 * term/mac-win.el (mac-text-encoding-ascii): New constant.
2511 (mac-utxt-to-string): Use it.
2512 (mac-ts-update-active-input-area): Use mac-ae-number.
2513
2514 2006-06-15 Dan Nicolaescu <dann@ics.uci.edu>
2515
2516 * term.el (term-handle-scroll, term-delete-lines)
2517 (term-insert-lines): Fix off by one errors.
2518
2519 2006-06-15 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
2520
2521 * net/tramp.el (tramp-touch): Use UTC to express time.
2522
2523 2006-06-15 Chong Yidong <cyd@stupidchicken.com>
2524
2525 * mail/sendmail.el (mail-send): Search explicitly for
2526 mail-header-separator when checking for corrupted header lines.
2527
2528 2006-06-15 Nick Roberts <nickrob@snap.net.nz>
2529
2530 * progmodes/gdb-ui.el (gdb-same-frame): New option.
2531 (gud-old-arrow, gdb-frame-begin, gdb-printing): New variables.
2532 (gdb-init-1): Initialise them.
2533 (gdb-starting): Reset gdb-printing
2534 (gdb-starting): Save value of gud-overlay-arrow-position.
2535 (gdb-frame-begin): Set gdb-frame-begin, gdb-printing.
2536 (gdb-stopped): Don't look for source if calling procedure e.g "p a ()".
2537 Use gdb-*-gdb-buffer conditionally on gdb-same-frame.
2538 (gdb-frame-gdb-buffer): Keep menu bar, tool bar for GUD buffer.
2539
2540 2006-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
2541
2542 * pcvs.el (cvs-retrieve-revision): Use decode-coding-inserted-region.
2543
2544 2006-06-13 Martin J. Reed <mjreed@essex.ac.uk> (tiny change)
2545
2546 * net/ldap.el (ldap-ldapsearch-args): Default to SASL search.
2547 (ldap-search-internal): Keep error messages, and a regexp fix.
2548
2549 2006-06-12 Thien-Thi Nguyen <ttn@gnu.org>
2550
2551 * files.el (hack-local-variables-confirm):
2552 Display string value using its printed representation.
2553
2554 2006-06-11 Chong Yidong <cyd@stupidchicken.com>
2555
2556 * server.el (server-edit): No-op if no server buffers exist.
2557
2558 2006-06-11 Robert J. Chassell <bob@rattlesnake.com>
2559
2560 * textmodes/page-ext.el (pages-directory-for-addresses):
2561 Including `pages-directory-address-mode' in the function results
2562 in the message "Buffer in which pages were found is deleted".
2563
2564 2006-06-10 Carsten Dominik <dominik@science.uva.nl>
2565
2566 * textmodes/org.el (org-agenda-mode-map): Add bindings for
2567 clocking functions.
2568
2569 (org-agenda-clock-in, org-check-running-clock)
2570 (org-clock-out-if-current, org-remove-clock-overlays)
2571 (org-put-clock-overlay): New functions.
2572 (org-clock-marker, org-clock-file-total-minutes)
2573 (org-clock-overlays): New variables.
2574 (org-clock-display, org-clock-sum, org-clock-cancel)
2575 (org-clock-out, org-clock-in): New commands.
2576 (org-export): New function.
2577 (org-emph-re): New constant.
2578 (org-set-emph-re, org-do-emphasis-faces): New functions.
2579 (org-emphasis-regexp-components, org-emphasis-alist): New options.
2580 (org-set-font-lock-defaults): Call `org-do-emphasis-faces'.
2581 (org-export-html-convert-emphasize): Use the configurable emphasis.
2582 (org-cleaned-string-for-export): Make multiline emphasis visible
2583 to the exporter. New optional argument PARAMETERS.
2584 (org-export-as-html): Specify :emph-multiline parameter to
2585 `org-cleaned-string-for-export'.
2586
2587 2006-06-10 Richard Stallman <rms@gnu.org>
2588
2589 * help.el (help-for-help-internal): Clean up help text.
2590
2591 2006-06-10 Andreas Schwab <schwab@suse.de>
2592
2593 * language/ethio-util.el (ethio-fidel-to-java-buffer): Fix quoting
2594 in doc string.
2595
2596 * progmodes/cperl-mode.el (cperl-short-docs): Likewise.
2597
2598 2006-06-09 Karl Chen <quarl@cs.berkeley.edu>
2599
2600 * progmodes/make-mode.el (makefile-fill-paragraph): Don't remove
2601 spaces after the comment start.
2602
2603 2006-06-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
2604
2605 * play/pong.el (pong-init-buffer):
2606 Fill buffer with spaces instead of ^A.
2607
2608 * textmodes/ispell.el (ispell-kill-ispell): If ispell has been
2609 launched asynchronously, delete its process instead of being cool.
2610 (ispell-async-processp): Check for `delete-process' existence
2611 instead of `kill-process' one for consistency.
2612
2613 2006-06-09 Nick Roberts <nickrob@snap.net.nz>
2614
2615 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers-1)
2616 (gdb-prompt, gdb-set-gud-minor-mode-existing-buffers): Show status
2617 in mode line at startup.
2618
2619 2006-06-08 Kim F. Storm <storm@cua.dk>
2620
2621 * ido.el (ido-take-first-match, ido-push-dir-first): New commands.
2622 (ido-init-completion-maps): Bind them to M-SPC and M-v.
2623 (ido-copy-current-file-name): Repeating C-w inserts whole file name.
2624 (ido-file-internal): Pass full file name to write-file.
2625 (ido-read-internal): Only pop stack elements automatically if they
2626 actually match an existing directory or file name.
2627
2628 2006-06-07 Kenichi Handa <handa@m17n.org>
2629
2630 * international/mule.el (find-auto-coding): Don't handle the short
2631 name `char-trans'.
2632
2633 * files.el (hack-local-variables-prop-line)
2634 (hack-local-variables): Cancel the previous change.
2635
2636 2006-06-06 Jesper Harder <harder@phys.au.dk>
2637
2638 * ediff-diff.el (ediff-test-utility): Protect against file-error.
2639
2640 2006-06-06 Chong Yidong <cyd@stupidchicken.com>
2641
2642 * diff-mode.el (diff-mode): Set buffer-read-only to t when
2643 diff-default-read-only is non-nil.
2644 (diff-hunk-kill, diff-file-kill, diff-split-hunk)
2645 (diff-refine-hunk): Set inhibit-read-only to t.
2646
2647 * diff.el (diff-sentinel, diff): Set inhibit-read-only to t when
2648 modifying the *Diff* buffer.
2649 (diff-process-filter): New filter function for diff process that
2650 sets inhibit-read-only to t when modifying the *Diff* buffer.
2651
2652 2006-06-06 Carsten Dominik <dominik@science.uva.nl>
2653
2654 * textmodes/org.el (org-archive-subtree): Use end-of-subtree as
2655 insertion point and control the number of empty lines.
2656 (org-paste-subtree): Limit the number of empty lines at the end of
2657 the inserted tree.
2658 (org-agenda): Use buffer name of current file for narrowing.
2659 (org-export-as-xml): Command removed.
2660 (org-export-xml-type): Option removed.
2661 (org-mode-map): Call `org-export-as-xoxo' directly.
2662 (org-get-indentation): New optional argument LINE.
2663 (org-fix-indentation, org-remove-tabs): New functions.
2664 (org-export-as-ascii, org-ascii-level-start): Determine and apply
2665 correct indentation for headlines that are converted it items.
2666 (org-skip-comments): Remove table lines that contain narrowing
2667 cookies but no other non-empty fields.
2668 (org-set-tags): Allow groups of mutually exclusive tags.
2669 (org-cmp-time): Sort 24:21 before items without time.
2670 (org-get-time-of-day): Fix the interpretation of 12pm and 12am.
2671 (org-open-at-point): Require double colon also for numbers.
2672
2673 2006-06-06 Kim F. Storm <storm@cua.dk>
2674
2675 * ido.el (ido-default-file-method, ido-default-buffer-method):
2676 Make choice values consistent with corresponding command names.
2677 (ido-visit-buffer): Update accordingly. Default to selected-window.
2678
2679 2006-06-06 Nick Roberts <nickrob@snap.net.nz>
2680
2681 * progmodes/gud.el (gud-running): Fix doc string.
2682 (gud-menu-map): Use :visible instead fo :enable for debugger test.
2683 (gud-tooltip-modes): Add python-mode.
2684 (gud-tooltip-print-command): Add pdb. Remove perldb.
2685
2686 2006-06-05 Eli Zaretskii <eliz@gnu.org>
2687
2688 * makefile.w32-in (bootstrap, $(lisp)/mh-e/mh-loaddefs.el):
2689 Quote $(EMACS).
2690
2691 2006-06-05 Richard Stallman <rms@gnu.org>
2692
2693 * faces.el (defined-colors): Doc fix.
2694
2695 2006-06-05 Thien-Thi Nguyen <ttn@gnu.org>
2696
2697 * vc.el (vc-process-filter): Inhibit undo info collection around
2698 call to insert.
2699 (vc-setup-buffer): Likewise for call to erase-buffer.
2700 (vc-do-command): Likewise for call to process-file.
2701
2702 2006-06-05 Nick Roberts <nickrob@snap.net.nz>
2703
2704 * progmodes/gud.el (gud-menu-map): Use a conditional help echo
2705 for gud-go.
2706 (gud-common-init): Other debuggers may trigger error.
2707
2708 2006-06-05 Kenichi Handa <handa@m17n.org>
2709
2710 * international/mule.el (find-auto-coding):
2711 Handle enable-character-translation in file header.
2712
2713 2006-06-04 Kim F. Storm <storm@cua.dk>
2714
2715 * emacs-lisp/authors.el (authors-aliases): Add mode aliases.
2716 (authors-fixed-entries): Fix spelling.
2717 (authors-canonical-file-name): Don't report error for wildcards.
2718
2719 * help.el (view-emacs-news): Rewrite to support new NEWS,
2720 NEWS.major, and NEWS.1-17 file naming. Add more intelligence,
2721 e.g. version 10 matches 1.10, and don't be confused by version 1.1
2722 being a prefix of 1.12 (etc). A numeric prefix arg also works.
2723
2724 2006-06-03 Vivek Dasmohapatra <vivek@etla.org>
2725
2726 * progmodes/sh-script.el (sh-quoted-exec): New face for quoted
2727 exec constructs like `foo bar`.
2728 (sh-quoted-subshell): New helper function to search for a possibly
2729 nested subshell (like `` or $()) within a "" quoted string.
2730 (sh-font-lock-keywords-var): Add sh-quoted-exec for Bash.
2731 (sh-apply-quoted-subshell): Flag quote characters inside a
2732 subshell, which is itself already in a quoted region, as
2733 punctuation, since this is the closest to what they actually are.
2734 (sh-font-lock-syntactic-keywords): Add sh-quoted-subshell and
2735 sh-apply-quoted-subshell.
2736 (sh-font-lock-syntactic-face-function): Apply the new face for
2737 text inside `` instead of the old font-lock-string-face.
2738
2739 2006-06-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2740
2741 * term/mac-win.el (mac-ts-active-input-overlay): Add defvar.
2742 (mac-ae-number, mac-ae-frame, mac-ae-script-language)
2743 (mac-bytes-to-text-range, mac-ae-text-range-array)
2744 (mac-ts-update-active-input-buf, mac-split-string-by-property-change)
2745 (mac-replace-untranslated-utf-8-chars, mac-ts-update-active-input-area)
2746 (mac-ts-unicode-for-key-event): New functions.
2747 (mac-handle-toolbar-switch-mode): Use mac-ae-frame.
2748 (mac-handle-font-selection): Use mac-ae-number.
2749 (mac-ts-active-input-buf, mac-ts-update-active-input-area-seqno):
2750 New variables.
2751 (mac-ts-caret-position, mac-ts-raw-text, mac-ts-selected-raw-text)
2752 (mac-ts-converted-text, mac-ts-selected-converted-text)
2753 (mac-ts-block-fill-text, mac-ts-outline-text)
2754 (mac-ts-selected-text, mac-ts-no-hilite): New faces.
2755 (mac-ts-hilite-style-faces): New constant.
2756 (mac-apple-event-map): Bind text input events.
2757 (mac-dispatch-apple-event): Use command-execute instead of
2758 call-interactively.
2759 (global-map): Don't bind mac-apple-event.
2760 (special-event-map): Bind mac-apple-event.
2761
2762 2006-06-02 Eli Zaretskii <eliz@gnu.org>
2763
2764 * makefile.w32-in (EMACS): Remove quotes from the Emacs executable
2765 file name.
2766 (emacs): Enclose the value of $(EMACS) in quotes.
2767
2768 2006-06-02 Juri Linkov <juri@jurta.org>
2769
2770 * international/mule.el (sgml-html-meta-auto-coding-function):
2771 Remove the condition `(search-forward "<html" size t)'.
2772 Replace `\"' with `[\"']?' in `re-search-forward'.
2773
2774 2006-06-02 Kenichi Handa <handa@m17n.org>
2775
2776 * files.el (hack-local-variables-prop-line): Ignore `char-trans'
2777 as well as `coding'.
2778 (hack-local-variables): Likewise.
2779
2780 * international/mule.el (enable-character-translation):
2781 Put permanent-local and safe-local-variable properties.
2782 (find-auto-coding): Handle char-trans: tag.
2783
2784 2006-06-02 Juri Linkov <juri@jurta.org>
2785
2786 * international/mule.el (sgml-html-meta-auto-coding-function):
2787 Limit the search by the end of the HTML header (if any).
2788
2789 2006-06-01 Richard Stallman <rms@gnu.org>
2790
2791 * subr.el (with-current-buffer): Doc fix.
2792
2793 2006-06-02 Masatake YAMATO <jet@gyve.org>
2794
2795 * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-*):
2796 Almost rewrite. Underlines over all lines of gcov output are too
2797 uncomfortable to read. Suggested by Dan Nicolaescu.
2798
2799 2006-06-01 Luc Teirlinck <teirllm@auburn.edu>
2800
2801 * progmodes/inf-lisp.el (inferior-lisp-mode): Doc fixes.
2802
2803 * shell.el (shell-mode): Use shell-mode-map in docstring.
2804
2805 * comint.el (comint-send-input): Do not add help-echo and
2806 mouse-face to input if `comint-use-prompt-regexp' is non-nil.
2807
2808 2006-06-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2809
2810 * term/x-win.el: Change x-menu-bar-start to menu-bar-open.
2811
2812 2006-06-01 Nick Roberts <nickrob@snap.net.nz>
2813
2814 * progmodes/gdb-ui.el (gdb-look-up-stack): New variable.
2815 (gdb-stopped, gdb-info-stack-custom): If there is no source info
2816 look up the stack and pop up GUD buffer if necessary.
2817 (gdb-frames-select): Remove redundant call to gud-display-frame.
2818 (gdb-info-threads-custom): Keep point at start of buffer.
2819 (gdb-find-file-hook): Make it work for pre-GDB 6.4.
2820
2821 2006-05-31 Juri Linkov <juri@jurta.org>
2822
2823 * replace.el (query-replace-read-from, query-replace-read-to):
2824 Bind `history-add-new-input' to nil. Call `add-to-history'.
2825
2826 2006-05-31 Takaaki Ota <Takaaki.Ota@am.sony.com>
2827
2828 * textmodes/table.el: Convert all HTML tags to lower case for
2829 XHTML compatibility.
2830
2831 2006-05-31 Masatake YAMATO <jet@gyve.org>
2832
2833 * progmodes/compile.el:
2834 (compilation-error-regexp-alist-alist::gcov-called-line):
2835 Don't put face on `-' lines in gcov file. Suggested by Dan Nicolaescu.
2836
2837 2006-05-31 Nick Roberts <nickrob@snap.net.nz>
2838
2839 * progmodes/gud.el (gud-query-cmdline, gud-common-init):
2840 Revert inadvertent changes made with last commit.
2841
2842 2006-05-30 Reiner Steib <Reiner.Steib@gmx.de>
2843
2844 * textmodes/flyspell.el (turn-on-flyspell, turn-off-flyspell):
2845 New functions.
2846
2847 * textmodes/text-mode.el (text-mode-hook): Use turn-on-flyspell.
2848
2849 2006-05-30 Carsten Dominik <dominik@science.uva.nl>
2850
2851 * textmodes/org.el (org-agenda-highlight-todo): Make sure regexp
2852 only matches in the right place.
2853 (org-upcoming-deadline): New face.
2854 (org-agenda-get-deadlines): Use new face `org-upcoming-deadline'.
2855 (org-export-ascii-underline): Rename constant `org-ascii-underline'
2856 and make it an option.
2857 (org-export-ascii-bullets): New option.
2858 (org-export-as-html): Many changes to emit valid XHTML.
2859 (org-par-open): New variable.
2860 (org-open-par, org-close-par-maybe, org-close-li-maybe): New functions.
2861 (org-html-do-expand, org-section-number): Fix case in `replace-match'.
2862 (org-timeline): Pass `org-timeline-show-empty-dates' to
2863 `org-get-all-dates'. Interpret empty dates returned by
2864 `org-get-all-dates'.
2865 (org-get-all-dates): New argument EMPTY. Add dates without
2866 entries to the list, mark large ranges of empty dates.
2867 (org-point-in-group, org-context): New functions.
2868
2869 2006-05-30 Nick Roberts <nickrob@snap.net.nz>
2870
2871 * progmodes/gud.el (gud-stop-subjob): Make it work in all buffers.
2872
2873 * progmodes/gdb-ui.el: Move gdb-mouse-toggle-breakpoint-* to
2874 C-mouse-1. Move gdb-mouse-until to mouse-3, gdb-mouse-jump
2875 to C-mouse-3 (for 2 button mice).
2876 (gdb-send): Do the right thing for C-d.
2877
2878 * speedbar.el (speedbar-detach): Delete.
2879 (speedbar-easymenu-definition-trailer): Remove speedbar-detach as
2880 it breaks things.
2881 (speedbar-reconfigure-keymaps): Always add extra items to pop up menu.
2882
2883 2006-05-30 Daniel Pfeiffer <occitan@esperanto.org>
2884
2885 * files.el (auto-mode-alist): Add makepp suffix and optional mk on
2886 Makeppfile.
2887
2888 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2889 Add makepp diagnostic.
2890
2891 2006-05-29 Richard Stallman <rms@gnu.org>
2892
2893 * window.el (fit-window-to-buffer): Doc fix.
2894
2895 * help.el (temp-buffer-max-height): Doc fix.
2896
2897 * subr.el (with-current-buffer): Doc fix.
2898
2899 2006-05-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2900
2901 * term/x-win.el: Bind F10 to menu-bar-start if available.
2902
2903 2006-05-28 Dan Nicolaescu <dann@ics.uci.edu>
2904
2905 * term.el (term-if-xemacs, term-ifnot-xemacs): Delete, replace
2906 uses with a simple test.
2907 (term-set-escape-char, term-mode, term-check-kill-echo-list)
2908 (term-send-raw-string, term-send-raw, term-mouse-paste)
2909 (term-char-mode, term-line-mode, term-exec, term-sentinel)
2910 (term-handle-exit, term-read-input-ring)
2911 (term-previous-matching-input-string)
2912 (term-previous-matching-input-string-position)
2913 (term-previous-matching-input-from-input)
2914 (term-replace-by-expanded-history, term-send-input)
2915 (term-skip-prompt, term-bol, term-send-invisible)
2916 (term-kill-input, term-delchar-or-maybe-eof)
2917 (term-backward-matching-input, term-check-source)
2918 (term-proc-query, term-emulate-terminal)
2919 (term-handle-colors-array, term-process-pager, term-pager-line)
2920 (term-pager-bob, term-unwrap-line, term-word)
2921 (term-dynamic-complete-filename)
2922 (term-dynamic-complete-as-filename)
2923 (term-dynamic-simple-complete): Replace one arm ifs with whens or
2924 unlesses.
2925
2926 2006-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
2927
2928 * files.el (hack-one-local-variable-eval-safep): Don't burp if used
2929 during bootstrapping.
2930
2931 * emacs-lisp/ewoc.el (ewoc--current-dll): Remove.
2932 Basically undo the change of 2006-05-26: use extra arguments instead of
2933 dynamic scoping.
2934 (ewoc-locate): Remove unused var `footer'.
2935
2936 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
2937
2938 * emacs-lisp/ewoc.el (ewoc--insert-new-node): Use ewoc--refresh-node.
2939
2940 * emacs-lisp/autoload.el (no-update-autoloads): Declare.
2941 (generate-file-autoloads): Obey it. Return whether autoloads were
2942 added at point or not.
2943 (update-file-autoloads): Use this new return value.
2944 Remove redundant test for the presence of an autoload cookie.
2945
2946 * emacs-lisp/autoload.el (autoload-find-file): New fun.
2947 This one calls hack-local-variables.
2948 (generate-file-autoloads, update-file-autoloads): Use it.
2949
2950 * textmodes/bibtex.el (bibtex-autokey-name-case-convert-function)
2951 (bibtex-sort-entry-class): Add safe-local-variable predicate.
2952 (bibtex-sort-entry-class-alist): Don't set the global value.
2953 (bibtex-init-sort-entry-class-alist): New fun.
2954 (bibtex-sort-buffer, bibtex-prepare-new-entry): Call it to compute
2955 bibtex-init-sort-entry-class-alist from the buffer-local value (if any)
2956 of bibtex-init-sort-entry-class.
2957
2958 2006-05-28 Richard Stallman <rms@gnu.org>
2959
2960 * subr.el (load-history-regexp): If FILE is relative, insist
2961 entire last name component must match it.
2962 (load-history-filename-element, load-history-regexp): Doc fixes.
2963
2964 2006-05-29 Kim F. Storm <storm@cua.dk>
2965
2966 * emacs-lisp/bindat.el (bindat-idx, bindat-raw): Rename dynamic vars
2967 `pos' and `raw-data' for clarity, as eval forms may access these.
2968
2969 2006-05-28 Kim F. Storm <storm@cua.dk>
2970
2971 * emacs-lisp/bindat.el (bindat--unpack-u8): Use aref also for strings.
2972
2973 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
2974
2975 * progmodes/make-mode.el (makefile-browser-map)
2976 (makefile-mode-syntax-table): Move initialization inside declaration.
2977 (makefile-fill-paragraph): Use the default comment-filling code.
2978
2979 2006-05-28 Chong Yidong <cyd@stupidchicken.com>
2980
2981 * replace.el (query-replace-defaults): New variable.
2982 (query-replace-read-from): Use `query-replace-defaults' for
2983 default value, instead of history list.
2984 (query-replace-read-to): Update `query-replace-defaults'.
2985
2986 2006-05-27 Chong Yidong <cyd@stupidchicken.com>
2987
2988 * msb.el (mouse-select-buffer): Minor fix to make popup menu work
2989 with no X toolkit.
2990
2991 2006-05-28 Nick Roberts <nickrob@snap.net.nz>
2992
2993 * tumme.el (tumme-show-all-from-dir-max-files): Fix typo.
2994 (tumme-show-all-from-dir): Add autoload.
2995
2996 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
2997
2998 * tumme.el: Change a lot of `(if .. (progn ..)' to `(when ..)'.
2999 (tumme-remove-tag): Fix bug.
3000
3001 2006-05-27 Thien-Thi Nguyen <ttn@gnu.org>
3002
3003 * emacs-lisp/ewoc.el (ewoc--create): No longer take HEADER and
3004 FOOTER args. Update unique caller.
3005 (ewoc-delete): Compute last node once before looping.
3006 (ewoc--node-branch): Merge into unique caller.
3007 (ewoc--node): Don't define constructor make-ewoc--node for this
3008 structure.
3009 (ewoc): Add member `hf-pp' to this structure.
3010 (ewoc--wrap): New func.
3011 (ewoc-create): Take additional arg NOSEP. If nil, wrap node and
3012 header/footer pretty-printers. Save header/footer pretty-printer.
3013 (ewoc-set-hf): Use ewoc's header/footer pretty-printer. *
3014
3015 * pcvs.el (cvs-make-cvs-buffer): Specify NOSEP to `ewoc-create'.
3016
3017 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
3018
3019 * dired.el (dired-mode-map): Change `tumme-tag-remove' to
3020 `tumme-delete-tag'. Rename `Remove Image Tag' to `Delete Image
3021 Tag'. Change "Compare directories..." to "Change Directories...".
3022 Move tumme commands to Operate, Regexp and Immediate menus.
3023 Change "Add Comment" to "Add Image Comment". Change "Add Image
3024 Tag" to "Add Image Tags".
3025
3026 * tumme.el (tumme-delete-tag): Rename from `tumme-tag-remove'.
3027 (tumme-setup-dired-keybindings): Change `tumme-add-remove' to
3028 `tumme-delete-tag'.
3029
3030 2006-05-26 Luc Teirlinck <teirllm@auburn.edu>
3031
3032 * shell.el (shell-mode): Call shell-dirtrack-mode after
3033 list-buffers-directory is made a local variable, to avoid setting
3034 the default value.
3035
3036 2006-05-26 Kevin Ryde <user42@zip.com.au>
3037
3038 * info.el (Info-index-next): Use where-is-internal to report
3039 actual binding of Info-index-next, rather than hard-coded `,'.
3040
3041 2006-05-26 Eli Zaretskii <eliz@gnu.org>
3042
3043 * menu-bar.el (menu-bar-apropos-menu): Move "Find Key in Manual"
3044 and "Find Command in Manual" to here.
3045
3046 * buff-menu.el (list-buffers-noselect): For Info buffers, use
3047 Info-current-file as the file name.
3048
3049 2006-05-26 Jonathan Yavner <jyavner@member.fsf.org>
3050
3051 * ses.el (defadvice undo-more): Delete this defadvice. The undo
3052 overrides will now be done a different way.
3053 (ses-set-parameter): Reapply this function for undo.
3054 (ses-set-header-row): Reconstruct header row during undo.
3055 (ses-widen): New function.
3056 (ses-goto-data, ses-reconstruct-all): Use new function.
3057 (ses-command-hook): Widen buffer during undo, before unupdating
3058 the cells.
3059 (ses-insert-row, ses-delete-row): Widen buffer during undo.
3060 (ses-load, ses-header-row): Permit empty (zero-row) spreadsheets.
3061 (ses-read-cell): Avoid stupid warning for RET RET on a cell whose
3062 formula hasn't been executed yet.
3063
3064 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
3065
3066 * comint.el (comint-kill-whole-line): Rename arg to count.
3067 Fix doc string.
3068
3069 2006-05-26 Chong Yidong <cyd@stupidchicken.com>
3070
3071 * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument
3072 to copy-file.
3073
3074 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
3075
3076 * simple.el (toggle-truncate-lines): Make arg optional for
3077 backward compatibility.
3078
3079 2006-05-26 Thien-Thi Nguyen <ttn@gnu.org>
3080
3081 * emacs-lisp/ewoc.el (ewoc--current-dll): New var.
3082 (ewoc--node-next, ewoc--node-prev, ewoc--node-nth): Don't take
3083 DLL arg. Instead, use ewoc--current-dll. Update all callers.
3084 (ewoc--set-buffer-bind-dll-let*): Bind ewoc--current-dll, not `dll'.
3085 (ewoc--adjust): Use ewoc--current-dll.
3086 (ewoc-next, ewoc-prev, ewoc-nth): Bind ewoc--current-dll.
3087
3088 2006-05-26 Carsten Dominik <dominik@science.uva.nl>
3089
3090 * textmodes/org.el (org-next-item, org-previous-item): Emit more
3091 compact error message.
3092 (org-tags-view): Refresh category table in each file.
3093 (org-table-justify-field-maybe): Remove superfluous arguments to
3094 `format'.
3095 (org-export-as-html): Insert "<p>" before postamble.
3096 (org-paste-subtree, org-kill-is-subtree-p): Check for empty kill ring.
3097
3098 2006-05-26 Kenichi Handa <handa@m17n.org>
3099
3100 * textmodes/po.el (po-find-charset): Pay attention to the case
3101 FILENAME is a cons (NAME . BUFFER).
3102 (po-find-file-coding-system-guts): Likewise.
3103
3104 * arc-mode.el (archive-set-buffer-as-visiting-file):
3105 Call find-operation-coding-system with (FILENAME . BUFFER).
3106
3107 * tar-mode.el (tar-extract): Call find-operation-coding-system
3108 with (FILENAME . BUFFER).
3109
3110 * international/mule.el (decode-coding-inserted-region):
3111 Call find-operation-coding-system with (FILENAME . BUFFER).
3112
3113 2006-05-25 Chong Yidong <cyd@stupidchicken.com>
3114
3115 * image-mode.el (image-toggle-display): Use buffer contents to
3116 generate image for a remote file.
3117
3118 2006-05-25 Juri Linkov <juri@jurta.org>
3119
3120 * replace.el (query-replace-read-from, query-replace-read-to):
3121 Remove 8th arg KEEP-ALL in read-from-minibuffer.
3122
3123 2006-05-25 Rajesh Vaidheeswarran <rv@gnu.org>
3124
3125 * whitespace.el (whitespace-cleanup): Change to cleanup
3126 region if one is active.
3127 * whitespace.el (whitespace-cleanup-internal): New internal method.
3128
3129 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
3130
3131 * dired.el (dired-mode-map): Add help-echo strings to tumme
3132 commands. Bind `tumme-dired-display-image' to C-t i.
3133
3134 * tumme.el (tumme-display-image): Change documentation string slightly.
3135 (tumme-dired-display-image): Add call to `display-buffer'.
3136
3137 2006-05-25 Thien-Thi Nguyen <ttn@gnu.org>
3138
3139 * emacs-lisp/bindat.el (bindat-unpack, bindat-pack):
3140 Signal error if RAW-DATA is a multibyte string.
3141
3142 2006-05-24 Richard Stallman <rms@gnu.org>
3143
3144 * subr.el (with-local-quit): When handling `quit' signal,
3145 make a chance for quit-flag to cause a quit.
3146
3147 * emacs-lisp/advice.el (ad-enable-advice, ad-activate)
3148 (ad-disable-advice): Add autoloads.
3149
3150 * subr.el (read-passwd): Copy PROMPT before changing its properties.
3151
3152 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
3153
3154 * dired.el (dired-mode-map): Change menu items for tumme as per
3155 suggestions in emacs-devel.
3156
3157 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
3158
3159 * dired.el (dired-mode-map): Fix breakage.
3160
3161 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
3162
3163 * tumme.el (tumme-display-dired-image): Rename to...
3164 (tumme-dired-display-image): ...this.
3165 (tumme-track-movement): Change default value to t.
3166 (tumme-display-thumbs): Add new optional parameter DO-NOT-POP,
3167 used from `tumme-next-line-and-display' and similar commands.
3168
3169 * dired.el (dired-mode-map): Add Thumbnail submenu under the
3170 Immediate menu. Add some tumme commands there.
3171
3172 2006-05-24 Luc Teirlinck <teirllm@auburn.edu>
3173
3174 * loadup.el ("jka-cmpr-hook"): Load it before it is needed.
3175
3176 2006-05-24 Chong Yidong <cyd@mit.edu>
3177
3178 * menu-bar.el, international/mule-cmds.el: Remove tooltips for
3179 menu entries that open submenus.
3180
3181 2006-05-24 Alan Mackenzie <acm@muc.de>
3182
3183 * startup.el (command-line): For names of preloaded files, don't
3184 append ".elc" (now done in Fload), and call file-truename on the
3185 lisp directory.
3186
3187 * subr.el (eval-after-load): Fix the doc-string. Allow FILE to
3188 match ANY loaded file with the right name, not just those in
3189 load-path. Put a regexp matching the file name into
3190 after-load-alist, rather than the name itself.
3191
3192 * subr.el: New functions load-history-regexp,
3193 load-history-filename-element, do-after-load-evaluation.
3194
3195 * international/mule.el (load-with-code-conversion): Do the
3196 eval-after-load stuff by calling do-after-load-evaluation.
3197
3198 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
3199
3200 * progmodes/gud.el (gud-sentinel): Condition on GUD buffer if it
3201 has not been killed.
3202
3203 2006-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3204
3205 * term/mac-win.el: Set idle timer to clean up expired Apple events.
3206 (mac-ae-get-url): Redispatch Apple event on unknown scheme.
3207 (mac-dispatch-apple-event): Resume Apple event if it is suspended.
3208 Optionally set error message in reply.
3209
3210 2006-05-24 Carsten Dominik <dominik@science.uva.nl>
3211
3212 * textmodes/org.el (org-open-at-point): Use renamed variable
3213 `org-confirm-shell-link-function'.
3214 (org-confirm-shell-link-function): Rename from
3215 `org-confirm-shell-links'.
3216 (org-export-directory): New function.
3217 (org-export-as-ascii, org-export-as-html, org-export-as-xoxo)
3218 (org-export-icalendar): Use `org-export-directory'.
3219 (org-indent-item): Keep cursor position.
3220 (org-link-file-path-type): New option.
3221 (org-export-as-html): Fix bug with plain lists starting in
3222 column 0.
3223 (org-export-as-html): Remove deadline formatting, this happens
3224 now already in `org-html-handle-time-stamps'.
3225 (org-export-html-style): Deadline class removed.
3226 (org-insert-labeled-timestamps-at-point): New option.
3227 (org-cycle, org-occur, org-scan-tags): Use `org-overview' instead
3228 of `hide-sublevels 1', in case the first headline is not level 1.
3229 (org-overview, org-content): New fuction.
3230 (org-cycle-global-status, org-cycle-subtree-status): Make these
3231 variables buffer-local.
3232 (org-global-cycle): New command.
3233 (org-shifttab): Use `org-global-cycle'.
3234 (org-insert-heading, org-insert-item): Go to end of new
3235 headline/item after creating it.
3236 (org-export-visible): Rename from `org-export-copy-visible'.
3237 Now creates a temporary org-file and applies an exporting command
3238 to it.
3239 (org-table-eval-formula): Support for lisp forms.
3240 (org-agenda-todo-ignore-scheduled): New option.
3241 (org-agenda-get-todos): Use new option
3242 `org-agenda-todo-ignore-scheduled'.
3243 (org-export-html-inline-images): New value `maybe'.
3244 (org-export-as-html): Inlining of images dependent on link description.
3245 (org-archive-subtree): Check for end-of-buffer before trying
3246 `kill-line'.
3247 (org-agenda-follow-mode): New option.
3248 (org-export-with-tags, org-export-with-timestamps): New options.
3249 (org-html-handle-time-stamps): New function.
3250 (org-keyword-time-regexp): New variable.
3251 (org-agenda-get-todos): Use `org-agenda-todo-list-sublevels'.
3252 (org-agenda-todo-list-sublevels): New option.
3253 (org-html-level-start): When TITLE is nil, just close all levels.
3254 (org-parse-key-lines, org-parse-export-options): Remove functions,
3255 replaced by `org-infile-export-plist'.
3256 (org-combine-plists, org-infile-export-plist)
3257 (org-default-export-plist): New functions.
3258 (org-export-html-preamble, org-export-html-postamble)
3259 (org-export-html-auto-preamble, org-export-html-auto-postamble):
3260 New variables.
3261 (org-export-publishing-directory): New option.
3262 (org-export-as-html, org-export-as-ascii): Use the new property
3263 lists for settings.
3264 (org-export-copy-visible, org-export-as-xoxo):
3265 Respect `org-export-publishing-directory'.
3266 (org-link-search, org-store-link, org-file-apps): Support for
3267 links to BibTeX database entries..
3268 (org-get-current-options, org-set-regexps-and-options):
3269 Implement logging as a startup option.
3270 (org-store-link): Make sure context string is never empty
3271 (org-insert-link): Use relative path when possible.
3272 (org-at-item-checklet-p): New function.
3273 (org-shifttab, org-shiftmetaleft, org-shiftmetaright)
3274 (org-shiftmetaup, org-shiftmetadown, org-metaleft)
3275 (org-metaright, org-metaup, org-metadown, org-shiftup)
3276 (org-shiftdown, org-shiftright, org-shiftleft)
3277 (org-ctrl-c-ctrl-c, org-cycle, org-return, org-meta-return):
3278 Dispatch using `call-interactively'.
3279 (org-call-with-arg): New defsubst.
3280 (org-tag-alist, org-use-fast-tag-selection): New options.
3281 (org-complete): Use `org-tag-alist'.
3282 (org-fast-tag-insert, org-fast-tag-selection): New functions.
3283 (org-next-item, org-previous-item): New commands.
3284 (org-beginning-of-item, org-end-of-item): Add (interactive) to
3285 make command.
3286 (org-shiftup, org-shiftdown): Accommodate the item-navigation commands.
3287
3288 2006-05-23 Thien-Thi Nguyen <ttn@gnu.org>
3289
3290 * emacs-lisp/ewoc.el (ewoc-delete): New function.
3291 (ewoc-filter): Use `ewoc-delete'.
3292
3293 * emacs-lisp/bindat.el (bindat-pack): Doc fix.
3294
3295 2006-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
3296
3297 * textmodes/bibtex.el (bibtex-format-entry, bibtex-clean-entry):
3298 Signal more user-friendly error messages.
3299
3300 * complete.el (PC-do-completion): Undo the addition of implicit
3301 wildcards if they did not lead to finding any match.
3302 (read-file-name-internal): Don't add the final > if the completion is
3303 not finished.
3304
3305 2006-05-22 Reiner Steib <Reiner.Steib@gmx.de>
3306
3307 * textmodes/bibtex.el (bibtex-maintain-sorted-entries):
3308 Quote safe-local-variable predicate.
3309
3310 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
3311
3312 * emacs-lisp/ewoc.el (ewoc-set-data): New function.
3313
3314 2006-05-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3315
3316 * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as safe.
3317
3318 * progmodes/make-mode.el (makefile-special-targets-list)
3319 (makefile-macro-table, makefile-target-table): Mark as risky.
3320 (makefile-query-one-target-method): Make this the alias for the
3321 following variable.
3322 (makefile-query-one-target-method-function): Make this the real name.
3323
3324 * textmodes/artist.el (artist-text-renderer): Make this the alias
3325 for the following variable.
3326 (artist-text-renderer-function): Make this the real name.
3327
3328 * textmodes/flyspell.el (flyspell-generic-check-word-p): Make this
3329 the alias for the following variable.
3330 (flyspell-generic-check-word-predicate): Make this the real name.
3331
3332 * textmodes/ispell.el (ispell-format-word): Make this the alias
3333 for the following variable.
3334 (ispell-format-word-function): Make this the real name.
3335 (ispell-message-text-end): Mark as risky.
3336
3337 * skeleton.el (skeleton-transformation, skeleton-filter)
3338 (skeleton-pair-filter): Make these the aliases for the following
3339 variables.
3340 (skeleton-transformation-function, skeleton-filter-function)
3341 (skeleton-pair-filter-function): Make these the real names.
3342
3343 * progmodes/sh-script.el (sh-mode): Use skeleton-filter-function
3344 and skeleton-pair-filter-function.
3345
3346 * textmodes/sgml-mode.el (sgml-transformation): Make this the
3347 alias for the following variable.
3348 (sgml-transformation-function): Make this the real name.
3349 (sgml-tag-alist): Mark as risky.
3350
3351 2006-05-21 Richard Stallman <rms@gnu.org>
3352
3353 * simple.el (kill-region): Interactively, pass point, then mark.
3354
3355 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
3356
3357 * emacs-lisp/ewoc.el (ewoc-create): Add autoload cookie.
3358
3359 2006-05-21 Romain Francoise <romain@orebokech.com>
3360
3361 * dired-x.el (dired-mode-map): Don't bind M-g.
3362
3363 2006-05-20 Richard Stallman <rms@gnu.org>
3364
3365 * dired.el (dired-mode-map): Put dired-goto-file on j, not M-g.
3366 (dired-goto-file): Doc fix.
3367
3368 2006-05-21 Kim F. Storm <storm@cua.dk>
3369
3370 * emulation/cua-base.el: Mention customizing cua-mode as alternative
3371 way to enable built-in cua-mode if user loads older CUA-mode package.
3372
3373 * ido.el (ido-read-file-name): Bind ido-show-dot-for-dired to nil
3374 if default-filename is specified.
3375
3376 2006-05-20 Eli Zaretskii <eliz@gnu.org>
3377
3378 * menu-bar.el (menu-bar-manuals-menu) <info-apropos>: New menu item.
3379
3380 * info.el (info-apropos): Make sure current-file and current-node
3381 have non-nil values. Speed up by using add-to-list instead of
3382 manual consing.
3383
3384 2006-05-20 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
3385
3386 * progmodes/make-mode.el (makefile-mode): Doc fix.
3387
3388 2006-05-20 Eli Zaretskii <eliz@gnu.org>
3389
3390 * dired-aux.el (dired-do-shell-command): Doc fix.
3391
3392 2006-05-20 Kevin Ryde <user42@zip.com.au>
3393
3394 * info-xref.el (info-xref-check-all-custom): Skip :tag part of
3395 ``(custom-manual :tag "Foo" "(foo)Node")''.
3396
3397 2006-05-20 Karl Chen <quarl@cs.berkeley.edu>
3398
3399 * progmodes/cc-vars.el (c-backslash-column): Mark as safe if its
3400 value is an integer.
3401
3402 2006-05-20 Eli Zaretskii <eliz@gnu.org>
3403
3404 * mail/rmail.el (rmail-mime-charset-pattern): Add "?:" before
3405 "format".
3406 (rmail-convert-to-babyl-format): Undo the change from 2006-04-19.
3407
3408 2006-05-20 Martin Rudalics <rudalics@gmx.at>
3409
3410 * progmodes/hideif.el (show-ifdef-block): Fix bug where parts of
3411 a hidden block remained hidden if `hide-ifdef-lines' is non-nil.
3412
3413 2006-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
3414
3415 * progmodes/gud.el (gdb-script-font-lock-keywords): Use a stricter
3416 regexp for keywords.
3417
3418 2006-05-20 Masayuki FUJII <boochang@m4.kcn.ne.jp> (tiny change)
3419
3420 * dnd.el (dnd-get-local-file-name): Specify LITERAL in
3421 replace-regexp-in-string.
3422
3423 * term/w32-win.el (w32-drag-n-drop): Substitute '/' for '\',
3424 encode, and escape file name on conversion to URL.
3425
3426 2006-05-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3427
3428 * dnd.el (dnd-handle-one-url): Change 3rd arg ARG to URL.
3429 Don't unescape URL.
3430 (dnd-get-local-file-name): Unescape URL on conversion to file name.
3431
3432 * x-dnd.el (x-dnd-handle-file-name): Encode and escape file names
3433 on conversion to URLs.
3434
3435 * net/browse-url.el (browse-url-file-url): Encode file name on
3436 conversion to URL.
3437
3438 * term/mac-win.el (mac-ae-open-documents): Escape file name on
3439 conversion to URL.
3440
3441 2006-05-19 Eli Zaretskii <eliz@gnu.org>
3442
3443 * progmodes/cc-styles.el (c-style-alist): Doc fix.
3444
3445 2006-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3446
3447 * term/mac-win.el (mac-bytes-to-digits): Remove function.
3448 (mac-handle-toolbar-switch-mode): Use coercion instead of it.
3449
3450 2006-05-19 Glenn Morris <rgm@gnu.org>
3451
3452 * calendar/diary-lib.el (diary-bahai-date)
3453 (list-bahai-diary-entries, mark-bahai-diary-entries)
3454 (mark-bahai-calendar-date-pattern): Not interactive.
3455 (add-to-diary-list): New optional arg LITERAL. Doc fix.
3456 (diary-entries-list): Change format of 4th element in each entry.
3457 (diary-list-entries): Use add-to-diary-list.
3458 (diary-goto-entry): Handle the case where the buffer visiting the
3459 diary has been killed.
3460 (fancy-diary-display): Add 'locator to button rather than 'marker.
3461 Only generate temp-face when there are marks to apply.
3462 (list-sexp-diary-entries): Pass literal to add-to-diary-list.
3463 (diary-fancy-date-pattern): New variable.
3464 (diary-time-regexp): Doc fix.
3465 (diary-anniversary, diary-time): New faces.
3466 (fancy-diary-font-lock-keywords): Use diary-fancy-date-pattern and
3467 diary-time-regexp. Add font-lock-multiline property where needed.
3468 Use new faces diary-anniversary and diary-time.
3469 (diary-fancy-font-lock-fontify-region-function): New function, to
3470 handle multiline font-lock pattern in fancy diary.
3471 (fancy-diary-display-mode): Set font-lock-fontify-region-function.
3472 (diary-font-lock-keywords): Tweak time regexp. Use new face
3473 diary-time.
3474
3475 2006-05-19 Alexander Shopov <ash@contact.bg> (tiny change)
3476
3477 * international/code-pages.el (mik): Table corrected.
3478
3479 2006-05-18 Kim F. Storm <storm@cua.dk>
3480
3481 * progmodes/grep.el (grep-find): Don't check grep-find-command
3482 before running command (breaks non-interactive usage).
3483
3484 2006-05-18 Thien-Thi Nguyen <ttn@gnu.org>
3485
3486 * emacs-lisp/ewoc.el (ewoc--adjust): New func.
3487 (ewoc--insert-new-node): Don't insert trailing newline.
3488 Instead, adjust successor nodes's start markers.
3489 (ewoc--refresh-node): Delete all text from current node's start
3490 marker to the next one's; adjust successor nodes's start markers.
3491 (ewoc--create): Doc fixes.
3492 (ewoc--refresh): Don't insert newline.
3493 (ewoc--set-hf): Use `ewoc--set-buffer-bind-dll-let*'.
3494 * pcvs.el (cvs-make-cvs-buffer):
3495 Specify extra newline for ewoc's header and footer.
3496 (cvs-update-header): Update initial header recognition.
3497 Append newline to final header and footer values.
3498 * pcvs-info.el (cvs-fileinfo-pp): Insert trailing newline.
3499
3500 2006-05-17 Richard Stallman <rms@gnu.org>
3501
3502 * files.el (file-name-extension): Doc fix.
3503
3504 2006-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3505
3506 * shell.el (shell-dirtrack-mode): Make it into a proper minor mode, so
3507 we can explicitly enable/disable rather than toggle.
3508 (shell-mode): Use it.
3509 (shell-cd): Don't try to reproduce what `cd' does.
3510
3511 2006-05-17 Kim F. Storm <storm@cua.dk>
3512
3513 * ido.el (ido-read-internal): Use only nondirectory part of
3514 default item.
3515
3516 2006-05-17 Thien-Thi Nguyen <ttn@gnu.org>
3517
3518 * emacs-lisp/ewoc.el (ewoc-data): Add docstring.
3519 (ewoc-nth): Doc fix.
3520
3521 (ewoc-map, ewoc-invalidate): Compute PP before looping.
3522
3523 2006-05-16 Eli Zaretskii <eliz@gnu.org>
3524
3525 * international/mule.el (auto-coding-alist): Add .lha to files
3526 read with no-conversion.
3527
3528 * files.el (auto-mode-alist): Add .lha files to archive file
3529 extensions.
3530
3531 * arc-mode.el (archive-arc-summarize, archive-lzh-summarize):
3532 Convert csize to integer when computing offsets within the
3533 compressed archive file.
3534
3535 2006-05-16 Kim F. Storm <storm@cua.dk>
3536
3537 * subr.el (add-to-history): Add KEEP-ALL arg and align functionality
3538 with read-from-minibuffer.
3539
3540 2006-05-16 Reiner Steib <Reiner.Steib@gmx.de>
3541
3542 * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p): New function.
3543 (byte-compile-warnings): Fix safe-local-variable property.
3544
3545 2006-05-16 Ken Manheimer <ken.manheimer@gmail.com>
3546
3547 * allout.el (allout-show-bodies, allout-old-style-prefixes)
3548 (allout-stylish-prefixes, allout-numbered-bullet)
3549 (allout-file-xref-bullet, allout-use-hanging-indents): Use simple
3550 predicates to qualify `safe-local-variable' property, when
3551 available, else use equivalent lambda.
3552 (allout-current-topic-collapsed-p): Do the right thing regarding
3553 trailing blank lines.
3554
3555 2006-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
3556
3557 * server.el (server-start): Only create a directory if needed.
3558 (server-edit, server-unload-hook): server-start => server-mode.
3559 (kill-emacs-hook): Cleanup upon exit.
3560
3561 2006-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
3562
3563 * hexl.el (hexlify-buffer): Encode process arguments manually.
3564
3565 2006-05-16 Nick Roberts <nickrob@snap.net.nz>
3566
3567 * progmodes/gud.el (gud-tooltip-tips): Add missing argument to
3568 call to gdb-tooltip-print.
3569
3570 2006-05-15 Romain Francoise <romain@orebokech.com>
3571
3572 * dired-x.el (dired-guess-shell-gnutar): On GNU and GNU/Linux
3573 systems, default to "tar" since those systems probably have GNU tar.
3574
3575 2006-05-14 Lars Hansen <larsh@soem.dk>
3576
3577 * desktop.el (desktop-missing-file-warning): Fix docstring.
3578 (desktop-restore-file-buffer): Correct question asked on missing file.
3579
3580 2006-05-14 Kim F. Storm <storm@cua.dk>
3581
3582 * progmodes/cc-subword.el (c-forward-subword, c-backward-subword):
3583 Add CUA move property.
3584
3585 2006-05-13 Chong Yidong <cyd@stupidchicken.com>
3586
3587 * custom.el (custom-push-theme): Load the variable before checking
3588 its `standard-value'.
3589
3590 2006-05-13 Lars Hansen <larsh@soem.dk>
3591
3592 * desktop.el (desktop-save): Use with-temp-buffer.
3593
3594 2006-05-12 Glenn Morris <rgm@gnu.org>
3595
3596 * calendar/cal-menu.el (calendar-mode-map, calendar-mouse-3-map):
3597 * calendar/calendar.el (calendar-mode-map):
3598 * calendar/diary-lib.el (include-other-diary-files,diary-mail-entries):
3599 * calendar/appt.el (appt-check, appt-make-list): Refer to
3600 diary-view-entries, diary-list-entries, diary-show-all-entries
3601 rather than obsolete aliases.
3602
3603 2006-05-12 Chong Yidong <cyd@stupidchicken.com>
3604
3605 * simple.el (line-move-finish): Avoid calling point motion hooks
3606 while processing intangibility.
3607
3608 2006-05-12 Dan Nicolaescu <dann@ics.uci.edu>
3609
3610 * term/xterm.el (terminal-init-xterm): Fix typo.
3611
3612 2006-05-12 Ken Manheimer <ken.manheimer@gmail.com>
3613
3614 * allout.el (allout-view-change-hook): Mark as being deprecated,
3615 to be replaced by `allout-exposure-change-hook'.
3616 (allout-exposure-change-hook): New, replacing
3617 `allout-view-change-hook'.
3618 (allout-flag-region): Run new hook `allout-exposure-change-hook',
3619 in addition to `allout-view-change-hook'.
3620 (allout-show-bodies, allout-old-style-prefixes)
3621 (allout-stylish-prefixes, allout-use-hanging-indents): Quote the
3622 lambda forms to prevent their showing up in variable help
3623 presentations as inscrutable byte-compiled code.
3624 (allout-numbered-bullet, allout-file-xref-bullet, allout-layout):
3625 Use string-or-null-p to qualify safe-local-variable values.
3626 (allout-reindent-bodies): Use memq to qualify matches against
3627 valid safe-local-variable values. Also, quote the lambda as above.
3628 (allout-use-mode-specific-leader): Add missing candidate-value
3629 symbols, use memq, and quote the lambda.
3630 (allout-overlay-interior-modification-handler): Remove unused
3631 variables `msg' and 'opened'.
3632 (allout-hidden-p): Constrain invisibility consideration to allout's
3633 invisibility spec, disregarding invisibility for other reasons.
3634
3635 2006-05-12 Reiner Steib <Reiner.Steib@gmx.de>
3636
3637 * files.el (version-control): Correct safe values.
3638
3639 2006-05-12 Thien-Thi Nguyen <ttn@gnu.org>
3640
3641 * emacs-lisp/ewoc.el (ewoc-refresh): Compute PP once before looping.
3642
3643 (ewoc--node-enter-before, ewoc--create-node): Delete funcs.
3644 (ewoc--insert-new-node): New func.
3645 Update callers of deleted funcs to use it, instead.
3646
3647 2006-05-11 Glenn Morris <rgm@gnu.org>
3648
3649 * calendar/calendar.el (diary-show-all-entries): Do not refer to
3650 obsolete alias `show-all-diary-entries'.
3651 (make-diary-entry): Not interactive.
3652 (cal-tex-cursor-month, cal-tex-cursor-month-landscape)
3653 (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
3654 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
3655 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3656 (cal-tex-cursor-year-landscape, cal-tex-cursor-filofax-year)
3657 (cal-tex-cursor-filofax-daily, cal-tex-cursor-year): Interactive.
3658
3659 2006-05-11 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
3660
3661 * calendar/calendar.el (calendar-french-date-string)
3662 (calendar-mayan-date-string, calendar-chinese-date-string)
3663 (calendar-astro-date-string, calendar-iso-date-string)
3664 (calendar-islamic-date-string, calendar-bahai-date-string)
3665 (calendar-hebrew-date-string, calendar-coptic-date-string)
3666 (calendar-ethiopic-date-string, calendar-persian-date-string):
3667 These functions are not interactive.
3668
3669 2006-05-11 Luc Teirlinck <teirllm@auburn.edu>
3670
3671 * files.el: Balance parentheses.
3672
3673 2006-05-11 Reiner Steib <Reiner.Steib@gmx.de>
3674
3675 * files.el, newcomment.el, outline.el, simple.el,
3676 emacs-lisp/bytecomp.el, progmodes/cc-compat.el,
3677 progmodes/cc-vars.el, progmodes/compile.el:
3678 Move `safe-local-variable' declarations to the respective files.
3679
3680 * help-fns.el (describe-variable): Don't print safe-var if it is
3681 byte-code. Improve wording as suggested by Luc Teirlinck.
3682
3683 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
3684
3685 * progmodes/gdb-ui.el (gdb-reset): Update speedbar if necessary.
3686 (gdb-var-evaluate-expression-handler, gdb-var-update-handler):
3687 Use a token for pending-triggers to ensure gdb-var-update
3688 gets called once per user input again for pre-GDB 6.4.
3689 (gdb-var-delete): Match on more complex expressions.
3690 (gdb-var-list-children-handler, gdb-var-create-handler):
3691 Use a token for consistency.
3692
3693 2006-05-11 Carsten Dominik <dominik@science.uva.nl>
3694
3695 * textmodes/org.el (org-read-date, org-goto-calendar)
3696 (org-agenda-goto-calendar):
3697 Bind `view-calendar-holidays-initially' to nil.
3698
3699 2006-05-11 Thien-Thi Nguyen <ttn@gnu.org>
3700
3701 * emacs-lisp/ewoc.el (ewoc--refresh-node): No longer save-excursion.
3702 Update all callers to do it there, instead.
3703
3704 2006-05-10 Glenn Morris <rgm@gnu.org>
3705
3706 * calendar/calendar.el (calendar-basic-setup): Set day to 1 in
3707 prefix arg case, to avoid view-diary-entries-initially error.
3708 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
3709 (calendar-date-is-legal-p): Handle dates with no day part.
3710
3711 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
3712
3713 * comint.el (comint-insert-input): Just make it when
3714 comint-use-prompt regexp is nil (default) and with the mouse.
3715 (comint-copy-old-input): Reinstate from 2004-06-23.
3716 (comint-mode-map): Bind C-c C-m to it.
3717
3718 2006-05-10 J.D. Smith <jdsmith@as.arizona.edu>
3719
3720 * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
3721 Remove spurious move to point-max (new comint behavior fixes).
3722
3723 * progmodes/idlwave.el (idlwave-push-mark): Removed obsolete
3724 compatibility function (Emacs 18/19).
3725 (idlwave-is-continuation-line): Always return point at start of
3726 previous non-blank continuation line.
3727 `keyword-parameters': Fix continued comment font-lock matcher.
3728 (idlwave-font-lock-fontify-region): Written, use as
3729 font-lock-fontify-region-function, to fix continued keyword
3730 fontification issues.
3731
3732 2006-05-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3733
3734 * term/mac-win.el (mac-font-panel-mode): Doc fix.
3735 (mac-service-selection, mac-service-open-file)
3736 (mac-service-open-selection, mac-service-mail-selection)
3737 (mac-service-mail-to, mac-service-insert-text): Rename from
3738 mac-services-*. All uses changed.
3739 (mac-apple-event-map): Rename event symbol `services' to `service'.
3740
3741 2006-05-10 Thien-Thi Nguyen <ttn@gnu.org>
3742
3743 * emacs-lisp/ewoc.el (ewoc--dll-create, ewoc--node-delete)
3744 (ewoc--node-enter-first, ewoc--node-enter-last)
3745 (ewoc--delete-node-internal): Merge funcs into unique callers.
3746
3747 2006-05-09 Chong Yidong <cyd@stupidchicken.com>
3748
3749 * emacs-lisp/crm.el (completing-read-multiple): Properly handle
3750 return value of read-from-minibuffer for empty input.
3751
3752 2006-05-09 Miles Bader <miles@gnu.org>
3753
3754 * comint.el (comint-insert-input): Remove redundant calls to setq
3755 and goto-char.
3756
3757 2006-05-10 Nick Roberts <nickrob@snap.net.nz>
3758
3759 * comint.el (comint-insert-input): Make it work when
3760 comint-use-prompt-regexp is t.
3761
3762 2006-05-10 Miles Bader <miles@gnu.org>
3763
3764 * subr.el (field-at-pos): New function.
3765
3766 * comint.el (comint-insert-input): Use it.
3767
3768 2006-05-09 Juri Linkov <juri@jurta.org>
3769
3770 * battery.el (battery-linux-proc-acpi): Also try
3771 `/proc/acpi/thermal_zone/THR2/temperature'.
3772
3773 * files.el <safe-local-variable>: Remove `eval' and `let' binding
3774 for now unused lambda `string-or-null'.
3775
3776 * add-log.el (change-log-default-name): Put `string-or-null-p'
3777 instead of lambda on `safe-local-variable' property.
3778
3779 * diff-mode.el (diff-context->unified): Use `region-beginning' and
3780 `region-end' instead of `mark' and `point'.
3781 (diff-unified->context, diff-reverse-direction, diff-fixup-modifs):
3782 Operate on region in Transient Mark mode when the mark is active.
3783 Use `region-beginning' and `region-end' instead of `mark' and
3784 `point'.
3785 (diff-hunk-text, diff-goto-source): Doc fix.
3786
3787 * startup.el (fancy-splash-screens, normal-splash-screen): Use
3788 face `mode-line-buffer-id' for mode-line buffer face instead of
3789 hard-coded `(:weight bold)'.
3790
3791 * arc-mode.el (archive-set-buffer-as-visiting-file): Bind
3792 buffer-undo-list to t (undo-ask is reproducible by visiting
3793 nested archives).
3794
3795 2006-05-09 Kim F. Storm <storm@cua.dk>
3796
3797 * progmodes/grep.el (rgrep): Set default directory of *grep*
3798 buffer if we start M-x rgrep in the *grep* buffer and choose
3799 a different base directory.
3800
3801 2006-05-09 Michael Albinus <michael.albinus@gmx.de>
3802
3803 * net/tramp.el (tramp-register-file-name-handlers): Enable Tramp
3804 completion also when ido is loaded.
3805
3806 2006-05-09 Masatake YAMATO <jet@gyve.org>
3807
3808 * font-lock.el (cpp-font-lock-keywords-source-directives): Addded
3809 "warning" and "import".
3810 (cpp-font-lock-keywords): Added "warning".
3811
3812 2006-05-08 Dan Nicolaescu <dann@ics.uci.edu>
3813
3814 * term/xterm.el (terminal-init-xterm): Add more key bindings.
3815
3816 2006-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
3817
3818 * mwheel.el (mwheel-scroll): Make sure that when scrolling multiple
3819 pages at a time, if we signal the end, we should indeed reach that end.
3820
3821 2006-05-08 David Reitter <david.reitter@gmail.com>
3822
3823 * emacs-lisp/easy-mmode.el (define-minor-mode): Only preserve messages
3824 output during execution of the body.
3825
3826 2006-05-08 Kim F. Storm <storm@cua.dk>
3827
3828 * progmodes/grep.el (lgrep, rgrep): Doc fixes.
3829
3830 2006-05-08 Thien-Thi Nguyen <ttn@gnu.org>
3831
3832 * emacs-lisp/ewoc.el (ewoc--set-buffer-bind-dll-let*):
3833 Use with-current-buffer.
3834
3835 2006-05-07 Kim F. Storm <storm@cua.dk>
3836
3837 * subr.el (add-to-history): Remove keep-dups arg.
3838
3839 * kmacro.el (kmacro-push-ring): Let-bind history-delete-duplicates
3840 to nil around call to add-to-history.
3841
3842 2006-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
3843
3844 * emacs-lisp/syntax.el (syntax-ppss): Flush the cache before rather
3845 than after a buffer modification.
3846
3847 2006-05-08 Nick Roberts <nickrob@snap.net.nz>
3848
3849 * progmodes/gdb-ui.el (gdb-var-create-handler): Move speedbar
3850 call to...
3851 (gud-watch): ...here so speedbar is raised for already watched
3852 expressions.
3853 (gdb-speedbar-refresh): Delete function.
3854 (gdb-speedbar-update, gdb-speedbar-timer-fn): New functions.
3855 Use speedbar-timer-fn instead of speedbar-refresh (reverting
3856 earlier change).
3857 (gdb-var-evaluate-expression-handler)
3858 (gdb-var-list-children-handler-1, gdb-var-update-handler-1): Use it.
3859
3860 * speedbar.el (speedbar-timer-fn): Remove save-window-excursion.
3861 Update localized contents for all buffers except ignored modes.
3862
3863 2006-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3864
3865 * term/mac-win.el (mac-utxt-to-string): Use `eq' instead of `='.
3866 (mac-atsu-font-table, mac-font-panel-mode): Add defvars.
3867 (mac-bytes-to-digits, mac-handle-toolbar-switch-mode)
3868 (mac-handle-font-panel-closed, mac-handle-font-selection):
3869 New functions.
3870 (mac-font-panel-mode): New minor mode.
3871 (mac-apple-event-map): Add bindings for toolbar toggle button and
3872 font panel.
3873 (menu-bar-showhide-menu): Add mac-font-panel-mode.
3874
3875 2006-05-07 John Paul Wallington <jpw@pobox.com>
3876
3877 * ibuffer.el (ibuffer-compressed-file-name-regexp):
3878 Avoid `regexp-opt'; simplify regexp for readability.
3879
3880 2006-05-06 Eli Zaretskii <eliz@gnu.org>
3881
3882 * ldefs-boot.el (dired-do-redisplay, dired-maybe-insert-subdir):
3883 * files.el (buffer-stale-function):
3884 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
3885 * autorevert.el (global-auto-revert-non-file-buffers): Point Info
3886 links to the main manual, not to emacs-xtra.
3887
3888 2006-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3889
3890 * term/mac-win.el (mac-utxt-to-string): Don't make adjustment for
3891 MacJapanese if text is ASCII-only.
3892
3893 2006-05-06 Nick Roberts <nickrob@snap.net.nz>
3894
3895 * progmodes/gdb-ui.el (gdb-goto-breakpoint): Use or instead of
3896 unless so nil isn't returned.
3897 (gdb-setup-windows, gdb-restore-windows): Reset gdb-source-window.
3898
3899 2006-05-06 Kim F. Storm <storm@cua.dk>
3900
3901 * subr.el (add-to-history): New function.
3902
3903 * ediff.el (ediff-files, ediff-files3, ediff-merge-files)
3904 (ediff-merge-files-with-ancestor):
3905 * env.el (setenv):
3906 * isearch.el (isearch-update-ring):
3907 * server.el (server-visit-files):
3908 * progmodes/grep.el (lgrep, rgrep):
3909 * progmodes/vhdl-mode.el (vhdl-generate-makefile-1):
3910 * progmodes/xscheme.el (xscheme-insert-expression):
3911 Use add-to-history.
3912
3913 * kmacro.el (kmacro-push-ring): Use add-to-history.
3914 (kmacro-ring-length): Remove unused defun.
3915 (kmacro-start-macro): Use kmacro-push-ring.
3916
3917 2006-05-06 Thien-Thi Nguyen <ttn@gnu.org>
3918
3919 * emacs-lisp/ewoc.el (ewoc-create, ewoc-set-hf): Use `insert'
3920 directly instead of a lambda expression that calls it.
3921
3922 2006-05-06 Kim F. Storm <storm@cua.dk>
3923
3924 * avoid.el (mouse-avoidance-point-position): Use posn-at-point
3925 instead of compute-motion.
3926
3927 2006-05-05 Dan Nicolaescu <dann@ics.uci.edu>
3928
3929 * ibuffer.el (ibuffer-compressed-file-name-regexp): Undo previous
3930 change.
3931
3932 2006-05-05 Reiner Steib <Reiner.Steib@gmx.de>
3933
3934 * startup.el (command-line-1): Refer to "Pure Storage" on
3935 pure-space-overflow.
3936
3937 2006-05-05 Martin Rudalics <rudalics@gmx.at>
3938
3939 * emacs-lisp/re-builder.el (reb-update-overlays): Cycle through
3940 provided faces once they all have been used up.
3941
3942 2006-05-05 Eli Zaretskii <eliz@gnu.org>
3943
3944 * startup.el (normal-splash-screen, fancy-splash-screens-1): Add a
3945 reference to the Lisp manual to the warning about pure space
3946 overflow.
3947
3948 2006-05-05 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
3949
3950 * textmodes/ispell.el (ispell-buffer-local-dict): Add a `no-reload'
3951 argument to avoid the call to `ispell-internal-change-dictionary'
3952 when not needed.
3953 (ispell-change-dictionary): Use this argument and call
3954 `ispell-internal-change-dictionary' after the possible change
3955 to `ispell-local-dictionary'.
3956 (ispell-internal-change-dictionary): Check for a change in
3957 personal dictionary use too.
3958
3959 2006-05-05 Eli Zaretskii <eliz@gnu.org>
3960
3961 * startup.el (command-line): On MS-Windows, probe "~", not
3962 "~USER", for warning about non-existent home directory
3963
3964 * arc-mode.el (archive-l-e): New optional argument `float' means
3965 generate a float value.
3966 (archive-arc-summarize, archive-lzh-summarize)
3967 (archive-zip-summarize, archive-zoo-summarize): Invoke archive-l-e
3968 with 3rd argument non-nil when file's size is being computed.
3969 Format the file sizes with %8.0f instead of %8d.
3970
3971 2006-05-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3972
3973 * cus-start.el (all): Add mac-dnd-known-types.
3974
3975 * term/mac-win.el (mac-utxt-to-string, mac-string-to-utxt)
3976 (mac-TEXT-to-string, mac-string-to-TEXT, mac-furl-to-string)
3977 (mac-TIFF-to-string): New functions.
3978 (x-get-selection, x-selection-value)
3979 (mac-select-convert-to-string): Use them.
3980 (mac-text-encoding-mac-japanese-basic-variant): New constant.
3981 (mac-dnd-types-alist): New customization variable.
3982 (mac-dnd-handle-furl, mac-dnd-handle-hfs, mac-dnd-insert-utxt)
3983 (mac-dnd-insert-TEXT, mac-dnd-insert-TIFF, mac-dnd-drop-data)
3984 (mac-dnd-handle-drag-n-drop-event): New functions.
3985 (mac-drag-n-drop): Remove function.
3986 (global-map): Bind drag-n-drop and M-drag-n-drop to
3987 mac-dnd-handle-drag-n-drop-event.
3988
3989 2006-05-04 Karl Chen <quarl@NOSPAM.quarl.org>
3990
3991 * progmodes/perl-mode.el (perl-beginning-of-function):
3992 Skip anonymous subs.
3993
3994 2006-05-04 Dan Nicolaescu <dann@ics.uci.edu>
3995
3996 * ibuffer.el (ibuffer-compressed-file-name-regexp): Avoid loading
3997 regexp-opt at run time.
3998
3999 * term.el (term-handle-ansi-escape): Fix off by one error.
4000
4001 2006-05-04 Nick Roberts <nickrob@snap.net.nz>
4002
4003 * progmodes/gdb-ui.el (gdb-force-update): Delete variable...
4004 (gdb-init-1, gdb-post-prompt): ...and references to it.
4005 (gdb-frame-handler): Strip directory name from filename if present.
4006
4007 * progmodes/gud.el (gdb-force-update): Delete defvar
4008 (gud-speedbar-buttons): ...and references to it. Use window-start
4009 to try to keep positon in watch expression.
4010
4011 2006-05-03 Richard Stallman <rms@gnu.org>
4012
4013 * simple.el (next-history-element, previous-history-element): Doc fix.
4014
4015 * isearch.el (isearch-update-ring): Doc fix.
4016
4017 2006-05-03 Dan Nicolaescu <dann@ics.uci.edu>
4018
4019 * isearch.el (isearch-update-ring): Take history-delete-duplicates
4020 into consideration. Replace one arm ifs with whens.
4021
4022 2006-05-03 Nick Roberts <nickrob@snap.net.nz>
4023
4024 * progmodes/gdb-ui.el (gud-watch): Let user select an expression.
4025 (menu): Fix typo.
4026
4027 2006-05-02 Miles Bader <miles@gnu.org>
4028
4029 * replace.el (occur-engine): Bind `inhibit-field-text-motion' to t.
4030
4031 2006-05-02 Jay Belanger <belanger@truman.edu>
4032
4033 * calc/calc-embed.el (calc-override-minor-modes-map)
4034 (calc-override-minor-modes): New variables.
4035 (calc-do-embedded): Make sure that Calc keystrokes aren't
4036 overwritten by minor modes.
4037
4038 2006-05-02 Chong Yidong <cyd@mit.edu>
4039
4040 * msb.el (msb): If EVENT is a down event, read and discard the up event.
4041
4042 2006-05-02 Reiner Steib <Reiner.Steib@gmx.de>
4043
4044 * startup.el (command-line-1): Refer to Lisp manual when
4045 pure-space-overflow occurs.
4046
4047 * files.el (byte-compile-dynamic, byte-compile-dynamic-docstrings)
4048 (byte-compile-warnings, find-file-visit-truename, indent-tabs-mode)
4049 (left-margin, no-byte-compile, no-update-autoloads, truncate-lines)
4050 (version-control): Don't use `t' for safe-local-variable declarations.
4051
4052 2006-05-01 Richard Stallman <rms@gnu.org>
4053
4054 * diff-mode.el (diff-mode-shared-map): Don't bind M-W, M-U, M-C,
4055 M-r, M-R, M-A, M-SPC or M-DEL.
4056 (diff-mode-map): diff-refine-hunk now on C-c C-w
4057 (diff-mode-map): Bind C-c C-e, C-c C-n, C-c C-r, C-c C-u.
4058
4059 * help-mode.el (help-mode): view-exit-action calls delete-window
4060 only when it is safe and possible.
4061
4062 * simple.el (undo-outer-limit-truncate): Put quotes around buffer name
4063 in messages.
4064
4065 * emacs-lisp/warnings.el (display-warning, lwarn): Doc fixes.
4066
4067 * tool-bar.el (tool-bar-setup): Put Help and Preferences items
4068 in the default tool-bar-map.
4069
4070 2006-05-01 Michael Albinus <michael.albinus@gmx.de>
4071
4072 * net/tramp.el (tramp-completion-file-name-handler-alist)
4073 (tramp-run-real-handler, tramp-completion-run-real-handler)
4074 (tramp-completion-handle-file-name-all-completions)
4075 (tramp-completion-handle-file-name-completion): Autoload them.
4076 (tramp-completion-handle-file-exists-p)
4077 (tramp-completion-handle-file-name-directory)
4078 (tramp-completion-handle-file-name-nondirectory)
4079 (tramp-completion-handle-expand-file-name): Remove them.
4080 (tramp-handle-file-name-directory): Return the real directory name.
4081 Returning "/" only doesn't need to be necessary any longer.
4082 (tramp-file-name-handler): Make special attention when in hostname
4083 completion mode.
4084 (tramp-completion-file-name-handler): Revert patch from 2006-04-28.
4085 (tramp-register-file-name-handlers):
4086 Register `tramp-completion-file-name-handler' only when
4087 `partial-completion-mode' is enabled.
4088 (tramp-completion-handle-file-name-all-completions):
4089 Delete directory part from results.
4090 (tramp-get-completion-methods, tramp-get-completion-user-host):
4091 Discard deleting "/", it doesn't work after the change of
4092 `tramp-handle-file-name-directory' above.
4093
4094 2006-05-01 Kim F. Storm <storm@cua.dk>
4095
4096 * progmodes/grep.el (grep-expand-template): Use save-match-data
4097 and symbol-value.
4098
4099 2006-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4100
4101 * term/mac-win.el (mac-ae-open-documents, mac-drag-n-drop):
4102 Use select-frame-set-input-focus instead of raise-frame.
4103 (global-map): Bind M-drag-n-drop to mac-drag-n-drop.
4104
4105 2006-05-01 Nick Roberts <nickrob@snap.net.nz>
4106
4107 * progmodes/gud.el (gud-def): Add %c case.
4108 (gud-speedbar-buttons): Don't bind case-fold-search unnecessarily.
4109 (gud-format-command): Make match case sensitive. Match on %F.
4110
4111 2006-04-30 Glenn Morris <rgm@gnu.org>
4112
4113 * calendar/cal-tex.el (cal-tex-preamble-extra): New variable.
4114 (cal-tex-preamble): Use cal-tex-preamble-extra.
4115 (cal-tex-list-diary-entries): Refer to `diary-list-entries' rather
4116 than alias `list-diary-entries'.
4117
4118 2006-04-29 Dan Nicolaescu <dann@ics.uci.edu>
4119
4120 * help-fns.el (describe-variable): Add info about safe local variables.
4121
4122 2006-04-29 Richard Stallman <rms@gnu.org>
4123
4124 * bindings.el (mode-line-format): help-echo doc fixes.
4125
4126 * net/tramp.el (tramp-file-name-handler-alist): Delete
4127 expand-file-name and other operations that can cause spurious loading.
4128
4129 2006-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
4130
4131 * files.el (safe-local-variable-p): Remove support for the special
4132 value t.
4133
4134 * textmodes/paragraphs.el (sentence-end-without-space):
4135 Fix safety predicate.
4136 (sentence-end-double-space, sentence-end-without-period)
4137 (paragraph-ignore-fill-prefix):
4138 * textmodes/fill.el (colon-double-space):
4139 * abbrev.el (abbrev-mode): Tighten the safety predicate.
4140
4141 * subr.el (booleanp): New fun.
4142
4143 * textmodes/reftex-vars.el (reftex-guess-label-type):
4144 Tighten the safety predicate.
4145
4146 2006-04-28 Kim F. Storm <storm@cua.dk>
4147
4148 * progmodes/grep.el (defgroup grep): Doc fix.
4149 (grep-auto-highlight): Remove.
4150 (grep-template): New defcustom.
4151 (grep-find-template): Rename from grep-tree-template.
4152 (grep-files-aliases): Rename from grep-tree-files-aliases.
4153 Remove "all" alias, add "l" alias.
4154 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories): Remove.
4155 (grep-find-ignored-directories): New defcustom to replace
4156 grep-tree-ignore-CVS-directories, to facilitate ignoring
4157 subdirectories for multiple version control systems.
4158 (grep-mode-map): Add Recursive grep item to GREP menu.
4159 (grep-regexp-history, grep-files-history): New defvars.
4160 (grep-probe): New helper function.
4161 (grep-compute-defaults): Use it to simplify code.
4162 Adapt to name changes.
4163 Use `.' as base in grep-find-template rather than <D>.
4164 (grep): Remove superfluous highlight-regexp arg. Fix doc.
4165 Call grep-compute-defaults unconditionally.
4166 (grep-expand-keywords): New defconst.
4167 (grep-expand-template): Rename from grep-expand-command-macros.
4168 Simplify via grep-expand-keywords. Look at case-fold-search instead
4169 of grep-tree-ignore-case to add -i option.
4170 Bind case-fold-search to nil while matching keywords.
4171 (grep-tree-last-regexp, grep-tree-last-files): Remove.
4172 (grep-read-regexp, grep-read-files): New helper functions.
4173 (rgrep): Rename from grep-tree. Rework to use proper histories.
4174 Adapt to changes in defcustoms and functions above.
4175 (lgrep): New command, as grep, but using same interactive UI as rgrep.
4176
4177 2006-04-28 Michael Albinus <michael.albinus@gmx.de>
4178
4179 * net/tramp.el (tramp-completion-file-name-handler):
4180 Disable Tramp's functionality while loading Tramp itself.
4181 (tramp-register-file-name-handlers): That's a defsubst now.
4182 Code from `tramp-repair-jka-compr' moved here. Apply it via
4183 `after-init-hook'.
4184 (tramp-repair-jka-compr): Remove.
4185
4186 2006-04-27 Jay Belanger <belanger@truman.edu>
4187
4188 * calc-embed.el (calc-embedded-make-info): Use `math-read-expr' to
4189 read expression when `math-read-big-expr' doesn't work.
4190
4191 2006-04-27 Reiner Steib <Reiner.Steib@gmx.de>
4192
4193 * startup.el (command-line-1): Display warning when
4194 pure-space-overflow is non-nil.
4195
4196 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4197
4198 * textmodes/bibtex.el (bibtex-user-optional-fields): Mark as
4199 risky.
4200
4201 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4202
4203 * textmodes/bibtex.el (bibtex-url): New optional arg no-browse.
4204 Return the URL or nil if none can be generated.
4205
4206 2006-04-27 Nick Roberts <nickrob@snap.net.nz>
4207
4208 * progmodes/gud.el (gud-comint-buffer): Move forward to stop
4209 byte compiler warnings.
4210 (gud-basic-call, gud-find-expr): Let user select an expression
4211 for printing. Print expression as well as value in GUD buffer.
4212
4213 2006-04-17 Ken Manheimer <ken.manheimer@gmail.com>
4214
4215 * allout.el: Remove local autoload declaration for
4216 pgg-gpg-symmetric-key-p, since that's now done in pgg-gpg.el.
4217 (allout-show-bodies, allout-header-prefix, allout-primary-bullet)
4218 (allout-plain-bullets-string, allout-distinctive-bullets-string)
4219 (allout-use-mode-specific-leader, allout-old-style-prefixes)
4220 (allout-stylish-prefixes, allout-numbered-bullet)
4221 (allout-file-xref-bullet, allout-presentation-padding)
4222 (allout-use-hanging-indents, allout-reindent-bodies): Mark as
4223 safe-local-variable with suitable value spec, and add autoload
4224 cookie for loaddefs inclusion. We now use an explicit spec everywhere.
4225 (move-beginning-of-line, move-end-of-line): Repair so these compat
4226 functions now actually resituate the point, when appropriate.
4227
4228 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
4229
4230 * progmodes/cc-subword.el (c-subword-mode-map): Use command remapping.
4231
4232 * add-log.el (add-log-iso8601-time-zone): Make parameter optional.
4233 (add-log-iso8601-time-string): Fix call to format-time-string.
4234
4235 2006-04-26 Kim F. Storm <storm@cua.dk>
4236
4237 * subr.el (posn-string, posn-image, posn-object): Doc fix.
4238
4239 2006-04-26 Masatake YAMATO <jet@gyve.org>
4240
4241 * progmodes/asm-mode.el (asm-mode, asm-mode-syntax-table):
4242 Add support for "//" style comments. Remove `b' flag
4243 from ?* in `asm-mode-syntax-table'.
4244
4245 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
4246
4247 * follow.el: Use (featurep 'xemacs) everywhere.
4248 (follow-mode): Use define-minor-mode.
4249 (follow-mode-map): Move initialization into the declaration.
4250 Use command remapping.
4251 (follow-emacs-version-xemacs-p): Remove.
4252 (follow-submit-feedback): Remove.
4253
4254 * allout.el (allout-layout, allout-passphrase-verifier-string)
4255 (allout-passphrase-hint-string): Tighten up a bit the safety predicate.
4256
4257 * textmodes/reftex-vars.el (reftex-vref-is-default)
4258 (reftex-fref-is-default, reftex-guess-label-type):
4259 Tighten up a bit the safety predicate.
4260
4261 * textmodes/paragraphs.el (sentence-end-double-space)
4262 (sentence-end-without-period, sentence-end-without-space)
4263 (page-delimiter, paragraph-ignore-fill-prefix):
4264 Tighten up a bit the safety predicate.
4265
4266 * textmodes/fill.el (colon-double-space): Tighten up the safety pred.
4267
4268 * progmodes/python.el (python-continuation-line-p)
4269 (python-beginning-of-statement): syntax-ppss may return
4270 a negative depth.
4271 (python-mode): Don't forcefully enable font-lock.
4272
4273 * time-stamp.el (time-stamp-start, time-stamp-end)
4274 (time-stamp-inserts-lines): Tighten up a bit the safety predicate.
4275
4276 * add-log.el: Remove spurious * in docstrings.
4277 (add-log-time-zone-rule): Rename from change-log-time-zone-rule.
4278 (add-change-log-entry): Use it here, since it's not specific
4279 to iso8601.
4280 (add-log-iso8601-time-string): Don't use it here any more.
4281 (change-log-indent-text, change-log-indent): Rename from add-log-*.
4282
4283 * abbrev.el (abbrev-mode): Tighten up a bit the safety predicate.
4284
4285 2006-04-25 Ryan Yeske <rcyeske@gmail.com>
4286
4287 * net/rcirc.el (rcirc-print): Revert last change with ignored nicks.
4288 (rcirc-toggle-low-priority): Doc fix.
4289 (rcirc-handler-NOTICE): Remove beginning of line anchor in
4290 ChanServ regexp.
4291 (rcirc-startup-channels-alist): Connect to #rcirc by default, not
4292 #emacs.
4293 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Add variables.
4294 (rcirc-decode-coding-system): Use utf-8 as the default.
4295 (rcirc-multiline-minor-mode): Set the fill-column.
4296 (rcirc-format-response-string): Display bright and dim nicks.
4297 (rcirc-browse-url): Update interactive spec to fill ARG.
4298 (rcirc-bright-nick, rcirc-dim-nick): Add faces.
4299 (rcirc-print): Ignore dim-nick messages wrt modeline-activity.
4300
4301 2006-04-24 J.D. Smith <jdsmith@as.arizona.edu>
4302
4303 * textmodes/bibtex.el (bibtex-find-entry): Don't demand matching
4304 case for @Article, etc.
4305
4306 2006-04-23 Michael Albinus <michael.albinus@gmx.de>
4307
4308 * net/tramp.el (tramp-register-file-name-handlers): New defun.
4309 Added with autoload cookie.
4310 (tramp-unload-file-name-handlers): Rename from
4311 `tramp-unload-file-name-handler-alist'.
4312
4313 2006-04-23 Romain Francoise <romain@orebokech.com>
4314
4315 * comint.el (comint-match-partial-filename): Doc fix.
4316
4317 2006-04-21 Glenn Morris <rgm@gnu.org>
4318
4319 * calendar/cal-menu.el (calendar-mode-map): Refer to
4320 `diary-view-entries' rather than alias `view-diary-entries'.
4321 * calendar/diary-lib.el (view-other-diary-entries): Ditto.
4322
4323 2006-04-21 Luc Teirlinck <teirllm@auburn.edu>
4324
4325 * progmodes/antlr-mode.el (antlr-default):
4326 * cus-edit.el (custom-documentation):
4327 * faces.el (scroll-bar, border, cursor, mouse): Avoid nil spec
4328 in defface.
4329
4330 2006-04-21 Kim F. Storm <storm@cua.dk>
4331
4332 * image.el (image-type): New defun split out of create-image.
4333 (create-image): Use it.
4334
4335 2006-04-21 Carsten Dominik <dominik@science.uva.nl>
4336
4337 * textmodes/org.el (org-mode-map): Catch conflict with old allout.el.
4338 (org-open-at-point): Remove the "...done" message to keep output
4339 in the echo area visible.
4340 (org-export-as-xoxo): Fix call to `indent-region'.
4341
4342 2006-04-21 Kevin Ryde <user42@zip.com.au>
4343
4344 * international/mule.el (keyboard-coding-system): defcustom
4345 info-link fixes: "Specify Coding" has been split, keyboard now in
4346 "Terminal Coding", and "Single-Byte Character Support" is now
4347 "Unibyte Mode".
4348
4349 2006-04-21 Nick Roberts <nickrob@snap.net.nz>
4350
4351 * progmodes/gdb-ui.el (gdb-data-list-register-values-handler):
4352 Use font-lock-warning-face for any errors e.g. no stack.
4353 (gdb-stack-list-locals-handler): Display any errors e.g. no stack.
4354
4355 2006-04-20 Dan Nicolaescu <dann@ics.uci.edu>
4356
4357 * progmodes/sh-script.el (sh-shell): Mark as safe.
4358
4359 * newcomment.el (comment-start, comment-start-skip)
4360 (comment-end-skip, comment-end): Mark as safe.
4361
4362 2006-04-20 Carsten Dominik <dominik@science.uva.nl>
4363
4364 * textmodes/org.el (org-deadline-announce): Face removed.
4365 (org-level-faces, org-n-levels): Convert to constant.
4366 (org-compatible-face): New function.
4367 (org-hide, org-level-1, org-level-2, org-level-3, org-level-4)
4368 (org-level-5, org-level-6, org-level-7, org-level-8)
4369 (org-special-keyword, org-warning, org-headline-done, org-link)
4370 (org-date, org-tag, org-todo, org-done, org-table, org-formula)
4371 (org-scheduled-today, org-scheduled-previously, org-time-grid):
4372 Face definition revised for better color tty support.
4373 (org-bold-re, org-italic-re, org-underline-re): New constants.
4374 (org-set-font-lock-defaults): Use the new constants.
4375 (org-agenda-highlight-todo): New function.
4376 (org-agenda-todo): Fix bug with point at end of line.
4377 (org-agenda-change-all-lines, org-finalize-agenda-entries):
4378 Fontify TODO keywords.
4379 (org-insert-link): Preserve relative path in ../ links.
4380 (org-export-as-html): Convert links pointing to .org files into
4381 links that will work beteen the exported HTML files.
4382 (org-todo-list): Fix bug when arg=0.
4383 (org-insert-heading): More fine-tuning.
4384
4385 2006-04-19 Romain Francoise <romain@orebokech.com>
4386
4387 * mail/rmail.el (rmail-convert-to-babyl-format): Use second group
4388 from `rmail-mime-charset-pattern'.
4389
4390 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
4391
4392 * progmodes/python.el (python-mode): Fix typo.
4393
4394 2006-04-18 J.D. Smith <jdsmith@as.arizona.edu>
4395
4396 * comint.el (comint-previous-input): Don't clobber input line
4397 when moving off either end of the input history ring.
4398 (comint-delete-input): New function, used by
4399 `comint-previous-input' and others.
4400 (comint-previous-matching-input):
4401 Use `coming-delete-input'. Save the partial input if leaving the
4402 edit line. Goto point-max before deleting input to avoid
4403 partial input fragments hanging around.
4404 (comint-restore-input): New function, used by `comint-previous-input'.
4405
4406 2006-04-18 Luc Teirlinck <teirllm@auburn.edu>
4407
4408 * imenu.el (imenu--index-alist): Balance parentheses.
4409
4410 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
4411
4412 * progmodes/python.el (python-mode): Add support for hs-minor-mode.
4413
4414 2006-04-19 Reiner Steib <Reiner.Steib@gmx.de>
4415
4416 * abbrev.el (read-abbrev-file): Use abbrev-file-name if optional
4417 file is nil.
4418
4419 2006-04-18 Richard Stallman <rms@gnu.org>
4420
4421 * tooltip.el (tooltip-mode, tooltip-use-echo-area): Doc fixes.
4422
4423 * imenu.el (imenu-create-index-function, imenu--index-alist)
4424 (imenu--last-menubar-index-alist, imenu--make-index-alist)
4425 (imenu-default-create-index-function, imenu--generic-function):
4426 Doc fixes.
4427
4428 * image-mode.el (image-toggle-display): Handle tar and arc subfiles.
4429
4430 * help-mode.el (help-mode): Set view-exit-action to delete window.
4431
4432 * env.el (setenv): Get rid of arg UNSET. Interactive unsetting
4433 now works by passing nil as arg.
4434
4435 * apropos.el (apropos-print): Don't do where-is on self-insert-command.
4436
4437 * abbrev.el (edit-abbrevs-redefine): Temporarily widen.
4438 (read-abbrev-file): Provide default when reading filename.
4439
4440 * files.el (enable-local-variables): Allow :all as value.
4441 (hack-local-variables): Implement that value.
4442 (safe-local-variable-values, safe-local-eval-forms)
4443 (enable-local-variables): Mark as risky.
4444 (find-file-visit-truename, kept-old-versions): Mark safe.
4445
4446 * time-stamp.el (time-stamp-format, time-stamp-line-limit)
4447 (time-stamp-start, time-stamp-end, time-stamp-inserts-lines)
4448 (time-stamp-count, time-stamp-pattern): Add safe-local-variable prop.
4449
4450 2006-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
4451
4452 * progmodes/tcl.el (tcl-send-string, tcl-send-region):
4453 Use forward-line so as to get to BOL even in the presence of fields.
4454 (tcl-eval-region): Strip surrounding space to avoid multiple prompts
4455 in return.
4456 (inferior-tcl): Tell tclsh to work in interactive mode.
4457
4458 * complete.el (partial-completion-mode):
4459 Use 'choose-completion-string-functions to make sure that
4460 choose-completion fills the minibuffer properly.
4461
4462 * complete.el (PC-old-read-file-name-internal): Remove.
4463 (PC-read-include-file-name-internal): Remove. Turn it into an advice
4464 of read-file-name-internal.
4465 (partial-completion-mode): Enable/disable this advice.
4466
4467 2006-04-18 Juanma Barranquero <lekktu@gmail.com>
4468
4469 * net/tramp.el (tramp-completion-file-name-handler): Revert change
4470 of 2006-04-17.
4471
4472 2006-04-18 Carsten Dominik <dominik@science.uva.nl>
4473
4474 * textmodes/org.el (org-insert-heading): Insert heading before
4475 current if at beginning of line.
4476 (org-todo, org-date): New faces.
4477 (org-table-align): Make sure tooltip window contains full text.
4478 (org-no-properties): New defsubst.
4479 (org-set-font-lock-defaults): Use new faces.
4480
4481 2006-04-18 Nick Roberts <nickrob@snap.net.nz>
4482
4483 * progmodes/gud.el (gud-speedbar-item-info): Display frame address
4484 for root variables.
4485
4486 * progmodes/gdb-ui.el (gdb-pc-address): Rename from gdb-frame-address.
4487 (gdb-frame-address): Re-use to identify frame for watch expression.
4488 (gdb-var-list, gdb-var-create-handler): Add frame address for root
4489 variables.
4490 (gdb-init-1, gdb-source, gdb-post-prompt)
4491 (gdb-assembler-custom, gdb-invalidate-assembler): Use gdb-pc-address.
4492 (gdb-frame-handler): Get gdb-frame-address.
4493
4494 2006-04-17 Michael Albinus <michael.albinus@gmx.de>
4495
4496 Sync with Tramp 2.0.53.
4497
4498 * net/tramp.el (tramp-completion-mode): ?\t has event-modifier
4499 'control. Reported by Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>.
4500 (tramp-completion-file-name-handler): Add autoload cookie for
4501 adding to `file-name-handler-alist'.
4502
4503 * net/tramp-smb.el (tramp-smb-wait-for-output): Wait always for
4504 the prompt. If it returns earlier (when detecting an error
4505 message), the rest of the output will merge accidently with the
4506 output of the next command. Reported by M Jared Finder
4507 <jared@hpalace.com>.
4508
4509 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
4510 for `process-file', in order to let it work for older Emacsen too.
4511
4512 2006-04-17 Ralf Angeli <angeli@iwi.uni-sb.de>
4513
4514 * textmodes/tex-mode.el (tex-font-lock-match-suscript): New function.
4515 (tex-font-lock-keywords-3): Use it.
4516
4517 2006-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
4518
4519 * newcomment.el (comment-add): New function.
4520 (comment-region-default, comment-dwim): Use it.
4521
4522 2006-04-15 Michael Olson <mwolson@gnu.org>
4523
4524 * emacs-lisp/tq.el: Improve comments.
4525 (tq-queue-head-question): New accessor function.
4526 (tq-queue-head-regexp, tq-queue-head-closure, tq-queue-head-fn):
4527 Update for modified queue structure.
4528 (tq-queue-add): Accept `question' argument.
4529 (tq-queue-pop): If a question is pending, send it.
4530 (tq-enqueue): Accept new optional argument `delay-question'.
4531 If this is non-nil, and at least one other question is pending a
4532 response, queue the question rather than sending it immediately.
4533
4534 2006-04-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4535
4536 * calendar/appt.el (appt-add): Check whether an appointment is
4537 already present in appt-time-msg-list. Simplify code.
4538
4539 2006-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4540
4541 * progmodes/cc-langs.el (c-mode-menu):
4542 Don't presume c-subword-mode is bound.
4543
4544 2006-04-13 Bill Wohler <wohler@newt.com>
4545
4546 * cus-edit.el (customize-package-emacs-version-alist): Update docstring.
4547 (customize-package-emacs-version): Use cdr instead of cadr now
4548 that alists use dotted pairs.
4549
4550 * custom.el (defcustom): Fix docstring for :package-version.
4551
4552 2006-04-13 Michael Albinus <michael.albinus@gmx.de>
4553
4554 * net/tramp.el (tramp-display-shell-command-buffer): New defvar.
4555 (tramp-handle-shell-command): Display output buffer only when
4556 `tramp-display-shell-command-buffer' is true.
4557 (tramp-handle-process-file): Set `tramp-display-shell-command-buffer'.
4558
4559 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
4560
4561 * textmodes/org.el (org-set-autofill-regexps): Set only the local
4562 values of `adaptive-fill-regexp' and `adaptive-fill-function'.
4563
4564 2006-04-13 Romain Francoise <romain@orebokech.com>
4565
4566 * pcvs-parse.el (cvs-parse-table): Use `with-temp-buffer' to avoid
4567 leaving temporary .cvsignore buffers behind.
4568
4569 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
4570
4571 * textmodes/org.el (org-set-regexps-and-options)
4572 (org-get-current-options): Better names for the startup folding
4573 options.
4574
4575 2006-04-13 Thien-Thi Nguyen <ttn@gnu.org>
4576
4577 * vc.el (vc-annotate): Arrange for point to end up at the same
4578 line number as in the original, but only when using a new buffer.
4579
4580 2006-04-12 Stuart Herring <herring@lanl.gov> (tiny change)
4581
4582 * files.el (hack-one-local-variable-eval-safep):
4583 Recognize `edebug-form-spec' for `put', but only if it passes
4584 `edebug-basic-spec'. Generalize `put' handling.
4585
4586 * emacs-lisp/edebug.el (edebug-basic-spec): New function for
4587 vetting file-local form specs.
4588
4589 * allout.el (allout-layout): Autoload its `safe-local-variable'
4590 property.
4591
4592 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
4593
4594 * textmodes/org.el (org-ctrl-c-ctrl-c): Improve documentation string.
4595 (org-agenda-mouse-1-follows-link)
4596 (org-mouse-1-follows-link): New options.
4597 (org-format-agenda-item): Fix bug if TAGS is nil.
4598 (org-agenda-get-scheduled): Quote `priority' symbol in plist.
4599
4600 2006-04-13 Nick Roberts <nickrob@snap.net.nz>
4601
4602 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers):
4603 GDB 6.1+ gives full filename for "info sources" so use
4604 file-name-nondirectory.
4605
4606 2006-04-12 Romain Francoise <romain@orebokech.com>
4607
4608 * subr.el (read-passwd): Bind `message-log-max' to nil.
4609
4610 2006-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4611
4612 * progmodes/perl-mode.el (perl-indent-new-calculate):
4613 Recompute parse-start after jumping backward by a whole sexp.
4614
4615 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4616
4617 * vc.el (vc-ensure-vc-buffer): Only change current-buffer, not the
4618 window configuration.
4619 (vc-annotate-display-select): Select the buffer so that current-buffer
4620 (and selected-window) is the output buffer at the end of vc-annotate.
4621
4622 2006-04-11 J.D. Smith <jdsmith@as.arizona.edu>
4623
4624 * vc.el (vc-annotate-color-map): Add custom TTY color map for
4625 8-color terminals, to use all of the colors in a sensible order.
4626 256-color terminals work well with the standard map.
4627 (vc-annotate-lines): Only strip the first color character if it
4628 is "#", to allow for terminal-style named colors.
4629 (vc-annotate-warp-version): Pass buf to `goto-line' to ensure
4630 the correct buffer is scrolled.
4631
4632 2006-04-11 Richard Stallman <rms@gnu.org>
4633
4634 * emacs-lisp/bytecomp.el (byte-compile-file):
4635 Bind enable-local-variables to :safe, and make normal-mode obey it.
4636
4637 * files.el (enable-local-variables): Allow value :safe.
4638 (normal-mode): Doc fix.
4639 (hack-local-variables): Implement enable-local-variables = :safe.
4640 (hack-local-variables-confirm): Don't prevent quitting.
4641
4642 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4643
4644 * loadhist.el (unload-feature): A bit of sanity check of
4645 load-history entries. Cancel timer-vars before unbinding them.
4646
4647 * hexl.el (hexl-isearch-search-function): Fix regexp-building code to
4648 quote special chars, and make the trick work on the hex part of the
4649 buffer as well.
4650 (hexl-mode, hexl-save-buffer, hexl-mode-exit)
4651 (hexl-maybe-dehexlify-buffer): Use restore-buffer-modified-p.
4652
4653 * startup.el (normal-splash-screen): Fix last change so we don't wait
4654 2 minutes if we don't show the splash screen.
4655
4656 2006-04-11 Carsten Dominik <dominik@science.uva.nl>
4657
4658 * textmodes/org.el (org-export-plain-list-max-depth)
4659 (org-table-spaces-around-separators)
4660 (org-radio-targets, org-activate-camels)
4661 (org-table-spaces-around-invisible-separators): Options removed.
4662 (org-time-stamp-rounding-minutes, org-remember-templates)
4663 (org-ellipsis, org-activate-links, org-descriptive-links):
4664 New options.
4665 (org-remember-apply-template, org-current-time)
4666 (org-finish-edit-table-field)
4667 (org-link-unescape, org-link-escape)
4668 (org-string-width, org-table-clean-line, org-html-do-expand)
4669 (org-edit-agenda-file-list, org-store-new-agenda-file-list)
4670 (org-read-agenda-file-list): New functions.
4671 (org-table-edit-field)
4672 (org-table-create-or-convert-from-region): New commands
4673 (org-table-toggle-vline-visibility): Command removed.
4674 (org-table-convert-region): Made a command.
4675 (orgtbl-deleta-backward-char,orgtbl-delete-char): Remove commands.
4676 Replace with the normal org- functions.
4677 (org-self-insert-command): Don't trigger realign unnecessarily
4678 when blanking a field that is not full.
4679 (org-mode): `Set buffer-invisibility-spec' for links.
4680 (org-activate-links2): Hide link part and only show descriptive
4681 part of the link.
4682 (org-insert-link): Modify for new linking system.
4683 (org-store-link): Store description separately, for use by
4684 `org-insert-link'.
4685 (org-table-align): Use `org-string-width'.
4686 (defgroup): Completely new group structure for custom variables.
4687 (org-agenda-files): Option: Single file name allowed. Function:
4688 Optional argument unrestrited means ignore any restricitons.
4689 (org-install-agenda-files-menu): Find a buffer in Org-mode before
4690 trying to modify the menu. Use generalized access to
4691 `org-agenda-files.'
4692 (org-agenda-list, org-todo-list, org-cycle-agenda-files)
4693 (org-agenda-file-to-front, org-remove-file, org-diary)
4694 (org-tags-view, org-export-icalendar-all-agenda-files)
4695 (org-export-icalendar-combine-agenda-files): Use generalized
4696 access to `org-agenda-files'.
4697 (org-remember-handler): Correctly preserve heading if present.
4698 (org-table-insert-row, org-table-insert-hline): Deal with
4699 invisible characters.
4700
4701 2006-04-10 J.D. Smith <jdsmith@as.arizona.edu>
4702
4703 * vc.el (vc-annotate-display-mode): Made default 'fullscale.
4704 (vc-annotate-color-map): New 18 element constant
4705 value/saturation, rotating hue colormap, from red->blue.
4706 (vc-annotate-mode-menu): "Default" -> "By Color Map Range".
4707 (vc-annotate-display-select): Switch to annotate-mode elsewhere.
4708 (vc-annotate): To avoid killing the required local variables,
4709 set them before the end of `with-output-to-temp-buffer', and
4710 after first switching to annotate-mode.
4711 (vc-annotate-warp-version): Add buffer argument in goto-line to
4712 ensure annotation, not source, is scrolled.
4713
4714 2006-04-10 Bill Wohler <wohler@newt.com>
4715
4716 * custom.el (defcustom, custom-handle-keyword):
4717 Add :package-version keyword.
4718 (custom-add-package-version): New function. Sets value of new
4719 property 'custom-package-version from :package-version keyword.
4720 (defcustom): Create Common Keywords section in docstring.
4721 (defface, defgroup): Replace definitions of a select few keywords
4722 with a reference to the Common Keywords in defcustom.
4723 (defcustom, defface, defgroup): Replace reference to Customization
4724 chapter in manual with hyperlink.
4725
4726 * cus-edit.el (customize-package-emacs-version-alist):
4727 New variable.
4728 (customize-changed-options): Add check for custom-package-version.
4729 (customize-package-emacs-version): New function to look up Emacs
4730 version corresponding to the given package version.
4731
4732 * emacs-lisp/find-func.el (find-function-regexp): Allow dashes in
4733 defun name, in similar fashion to find-variable-regexp.
4734
4735 2006-04-10 Eli Zaretskii <eliz@gnu.org>
4736
4737 * international/mule-cmds.el (set-locale-environment): Fix last
4738 change for when the locale's preferences don't specify any encoding.
4739
4740 2006-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
4741
4742 * emacs-lisp/find-func.el (find-function-search-for-symbol): Fix regexp
4743 so the defined var/fun doesn't need to be quoted.
4744
4745 2006-04-10 Richard Stallman <rms@gnu.org>
4746
4747 * finder.el (finder-mode-map): Add n and p bindings.
4748
4749 2006-04-10 Nick Roberts <nickrob@snap.net.nz>
4750
4751 * progmodes/gdb-ui.el (gdb-init-1): Re-initialise gdb-main-file to nil.
4752 (gdb-get-version): Make it work for pre "interpreter mi" (GDB 5.3?).
4753 (gdb-setup-windows): Put something in source window if we can't find
4754 the source file.
4755 (gdb-frame-handler): Make it work again with just assembly.
4756 (gdb-data-list-register-values-handler): Make it work when there is
4757 no stack.
4758
4759 2006-04-09 Richard Stallman <rms@gnu.org>
4760
4761 * mail/rmail.el (rmail-mime-charset-pattern): Ignore format and delsp
4762 specs while looking for charset.
4763
4764 * textmodes/picture.el (picture-mode-exit): Run picture-mode-exit-hook.
4765
4766 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
4767 Make them faces.
4768 (lm-font-lock-keywords): Update appropriately.
4769
4770 2006-04-10 Kim F. Storm <storm@cua.dk>
4771
4772 * simple.el (filter-buffer-substring): Add NOPROPS arg, so
4773 it can also replace buffer-substring-no-properties.
4774
4775 * emulation/cua-base.el (cua-delete-region, cua-paste)
4776 (cua-repeat-replace-region): Use filter-buffer-substring.
4777
4778 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
4779 (cua-cut-region-to-global-mark): Likewise.
4780
4781 * emulation/cua-rect.el (cua--extract-rectangle)
4782 (cua-incr-rectangle, cua--rectangle-aux-replace): Likewise.
4783
4784 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4785
4786 * textmodes/bibtex.el (bibtex-entry-update): New optional arg
4787 entry-type. Add field delimiters to numerical fields if they are
4788 not present.
4789
4790 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4791
4792 * textmodes/bibtex.el (bibtex-find-text-internal): Add new element
4793 string-const to return value.
4794 (bibtex-remove-delimiters): Use it.
4795
4796 2006-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
4797
4798 * emacs-lisp/bytecomp.el (byte-compile-form): Don't call
4799 cl-byte-compile-compiler-macro unless it exists.
4800
4801 2006-04-08 Eli Zaretskii <eliz@gnu.org>
4802
4803 * files.el (hack-local-variables-confirm) <offer-save>:
4804 Clarify message text. Suggested by Ralf Angeli.
4805
4806 2006-04-08 Michael Cadilhac <michael.cadilhac@lrde.org>
4807
4808 * rect.el (kill-rectangle): Don't barf if `kill-read-only-ok' is set.
4809 (delete-extract-rectangle-line): Use `filter-buffer-substring'
4810 instead of `buffer-substring' and `delete-region'. (Most of the
4811 code actually copied from `kill-region'.)
4812
4813 2006-04-08 Ryan Yeske <rcyeske@gmail.com>
4814
4815 * rcirc.el (rcirc-default-server): Rename from rcirc-server.
4816 (rcirc-default-port): Rename from rcirc-port.
4817 (rcirc-default-nick): Rename from rcirc-nick.
4818 (rcirc-default-user-name): Rename from rcirc-user-name.
4819 (rcirc-default-user-full-name): Rename from rcirc-user-full-name.
4820 (rcirc-low-priority-flag): New variable.
4821 (rcirc-decode-coding-system): New defcustom.
4822 (rcirc-encode-coding-system): New defcustom.
4823 (rcirc-coding-system-alist): New defcustom.
4824 (rcirc-multiline-major-mode): New defcustom.
4825 (rcirc-nick): New internal variable.
4826 (rcirc-process): Remove variable.
4827 (rcirc-server-buffer): New variable.
4828 (rcirc): Update to use rcirc-default-* variables above.
4829 (rcirc-connect): Do not add window-configuration-hook-here.
4830 (rcirc-server): New internal variable.
4831 (rcirc-connect): Do not send keepalive pings if
4832 rcirc-keepalive-seconds is nil.
4833 (with-rcirc-server-buffer): New macro.
4834 (rcirc-send-string): Encode with rcirc-encode-coding-system.
4835 (rcirc-server-name): Rename from rcirc-server.
4836 (rcirc-buffer-process): New function.
4837 (rcirc-buffer-nick): New function.
4838 (rcirc-buffer-target): Remove function.
4839 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
4840 New commands.
4841 (rcirc-mode-map): Change binding of C-c C-l to
4842 rcirc-toggle-low-priority.
4843 (rcirc-mode): Initialize coding system based on
4844 rcirc-coding-system-alist. New change-major-mode-hook to part the
4845 channel on a mode change. Make kill-buffer-hook buffer-local.
4846 (rcirc-change-major-mode-hook): New function.
4847 (rcirc-clean-up-buffer): Rename from rcirc-kill-buffer-hook-1.
4848 (rcirc-last-post-time): New variable.
4849 (rcirc-process-message): Store the last time user posted a message
4850 to this target.
4851 (rcirc-multiline-minor-mode): New mode.
4852 (rcirc-multiline-minor-mode-map): New mode map.
4853 (rcirc-edit-multiline): Put multiline-edit buffer in
4854 rcirc-multiline-major-mode along with rcirc-multiline-minor-mode.
4855 (rcirc-print): Ignore any line starting with an ignored nick.
4856 (rcirc-print): Decode using rcirc-decode-coding-system.
4857 (rcirc-track-minor-mode): Update global-mode-string when disabling
4858 this mode.
4859 (minor-mode-alist): Add LowPri indicator.
4860 (rcirc-toggle-low-priority): New function.
4861 (rcirc-last-non-irc-buffer): Prefix arg now no means switch to
4862 next lowpriority buffer with activity.
4863 (rcirc-record-activity): Sort buffers in rcirc-activity by the
4864 last time the user posted a message in to the target.
4865 (rcirc-update-activity-string): New formatting for low priority
4866 buffers.
4867 (rcirc-split-activity): New function.
4868 (rcirc-handler-PART, rcirc-handler-KICK)
4869 (rcirc-handler-PART-or-KICK): Kick responses are printed properly.
4870 (rcirc-nick-away-alist): New variable.
4871 (rcirc-handler-301): New handler. Away messages are printed once
4872 per change.
4873
4874 2006-04-08 Eli Zaretskii <eliz@gnu.org>
4875
4876 * info.el (Info-follow-nearest-node): Doc fix.
4877
4878 * international/mule-cmds.el (set-locale-environment): Make sure
4879 the coding-system preferred by the locale's language has the same
4880 EOL conversion type as the original buffer-file-coding-system.
4881 (locale-language-names): Add a few MS Windows language codes.
4882
4883 2006-04-07 Richard Stallman <rms@gnu.org>
4884
4885 * simple.el (eval-expression): Doc fix.
4886
4887 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp)
4888 (eval-defun): Doc fixes.
4889
4890 2006-04-07 Reiner Steib <Reiner.Steib@gmx.de>
4891
4892 * pgg-gpg.el: Revert to revision 1.8 to allow the use of gpg-agent.
4893
4894 2006-04-07 Nick Roberts <nickrob@snap.net.nz>
4895
4896 * progmodes/gdb-ui.el (gdb-init-2): Set current filename using
4897 GDB list command without argument for greater generality.
4898
4899 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
4900
4901 * subr.el (string-or-null-p): New function.
4902
4903 * textmodes/paragraphs.el (sentence-end): Use string-or-null-p.
4904
4905 * textmodes/ispell.el (ispell-local-dictionary): Use string-or-null-p.
4906
4907 * files.el: Update comment about safe-local-variable declarations.
4908
4909 2006-04-06 J.D. Smith <jdsmith@as.arizona.edu>
4910
4911 * progmodes/idlwave.el: Updated to IDLWAVE version 6.0.
4912 See idlwave.org.
4913
4914 * progmodes/idlw-shell.el: Updated to IDLWAVE version 6.0.
4915 See idlwave.org. Includes code to obsolete idlw-rinfo.el.
4916
4917 * progmodes/idlw-help.el: Updated to IDLWAVE version 6.0.
4918 See idlwave.org.
4919
4920 * progmodes/idlw-complete-structtag.el: Updated to IDLWAVE
4921 version 6.0 (minimal changes). See idlwave.org.
4922
4923 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version
4924 6.0 (minimal changes). See idlwave.org.
4925
4926 * progmodes/idlw-rinfo.el: File obsoleted and removed.
4927
4928 2006-04-06 Romain Francoise <romain@orebokech.com>
4929
4930 * pgg-gpg.el: Sync back with Gnus 5.10, reverting changes that add
4931 symmetric encryption features and a new asynchronous interface to
4932 GnuPG. This new version is version 1.4, plus whitespace changes.
4933
4934 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
4935
4936 * files.el: Move some `safe-local-variable' declarations to the
4937 respective files.
4938
4939 * textmodes/ispell.el (ispell-check-comments)
4940 (ispell-local-dictionary): Mark as safe.
4941
4942 * abbrev.el (abbrev-mode): Mark as safe.
4943
4944 * add-log.el (change-log-default-name): Mark as safe.
4945
4946 * textmodes/reftex-vars.el (reftex-vref-is-default)
4947 (reftex-fref-is-default, reftex-level-indent)
4948 (reftex-guess-label-type): Mark as safe.
4949
4950 * textmodes/fill.el (colon-double-space): Mark as safe.
4951
4952 * textmodes/paragraphs.el (paragraph-start, paragraph-separate)
4953 (sentence-end-double-space, sentence-end-without-period)
4954 (sentence-end-without-space, sentence-end, sentence-end-base)
4955 (page-delimiter, paragraph-ignore-fill-prefix): Mark as safe.
4956
4957 2006-04-06 Kim F. Storm <storm@cua.dk>
4958
4959 * ido.el (ido-mode): Remove ido-ignore-unc-host-regexps from
4960 the :set-after list.
4961 (ido-downcase-unc-hosts): New user option. Default on.
4962 (ido-ignore-unc-host-regexps): Don't reset ido-unc-hosts-cache
4963 when it is set, as regexps are now applied on the fly.
4964 (ido-unc-hosts): Keep all known hosts in ido-unc-hosts-cache.
4965 Make C-a DTRT--filter hosts through ido-ignore-unc-host-regexps
4966 on the fly, but only when ido-process-ignore-lists is set.
4967 Do case insensitive filtering if ido-downcase-unc-hosts is set.
4968 Only downcase names if ido-downcase-unc-hosts is set.
4969
4970 2006-04-06 Juanma Barranquero <lekktu@gmail.com>
4971
4972 * ido.el (ido-unc-hosts-cache): Fix typo in docstring.
4973
4974 * woman.el (WoMan-xref-man-page): Fix call to `substring'.
4975
4976 2006-04-05 Kim F. Storm <storm@cua.dk>
4977
4978 * ido.el (ido-mode): Set after ido-unc-hosts and
4979 ido-ignore-unc-host-regexps.
4980 (ido-save-history): Save ido-unc-hosts-cache.
4981 (ido-load-history): Load ido-unc-hosts-cache.
4982 (ido-reread-directory): Refresh unc hosts cache in // dir.
4983
4984 * startup.el (fancy-splash-screens): Set emulation-mode-map-alists
4985 to nil while displaying slash screen.
4986
4987 2006-04-05 Daiki Ueno <ueno@unixuser.org>
4988
4989 * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
4990 Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
4991
4992 2006-04-05 Kenichi Handa <handa@m17n.org>
4993
4994 * international/characters.el: Setup cases of Latin, Greek, and
4995 Cyrillic characters in CJK charsets.
4996
4997 2006-03-29 Daiki Ueno <ueno@unixuser.org>
4998
4999 * pgg-gpg.el (pgg-gpg-start-process): Don't bind
5000 default-enable-multibyte-characters. This reverts the change from
5001 revision 6.17 which is no longer necessary because the passphrase
5002 is sent separately now. GnuPG messages are unreadable under
5003 multibyte locales with default-enable-multibyte-characters set to nil.
5004
5005 2006-04-04 Andreas Schwab <schwab@suse.de>
5006
5007 * files.el: Mark `left-margin', `byte-compile-dynamic-docstrings'
5008 and `byte-compile-warnings' as `safe-local-variable'.
5009
5010 2006-04-04 Dan Nicolaescu <dann@ics.uci.edu>
5011
5012 * man.el (Man-mode-map): Restore the \r binding.
5013 (Man-abstract-xref-man-page): If Man-target-string is a function,
5014 call it.
5015 (Man-highlight-references): Use Man-default-man-entry to get the
5016 target. Deal with xrefs too.
5017 (Man-highlight-references0): Don't call the target function.
5018
5019 * woman.el (WoMan-xref-man-page): Strip the section number, woman
5020 cannot deal with it.
5021
5022 2006-04-04 Daiki Ueno <ueno@unixuser.org>
5023
5024 * pgg-gpg.el: Clean up process buffers every time gpg processes
5025 complete.
5026
5027 2006-04-04 Kenichi Handa <handa@m17n.org>
5028
5029 * sort.el (sort-build-lists): Don't bind inhibit-field-text-motion
5030 here.
5031 (sort-lines, sort-numeric-fields, sort-fields, sort-columns):
5032 Temporarily bind inhibit-field-text-motion to t.
5033
5034 2006-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
5035
5036 * startup.el (normal-splash-screen): Only set mode-line-format in the
5037 splash buffer, so as not to interfere when debugging the code.
5038 Ignore errors when switching buffer.
5039
5040 2006-04-03 Romain Francoise <romain@orebokech.com>
5041
5042 * dired.el (dired-dnd-protocol-alist): Fix typo.
5043
5044 2006-04-03 Reiner Steib <Reiner.Steib@gmx.de>
5045
5046 * savehist.el (savehist): Add :version.
5047 (savehist-ignored-variables): New variable.
5048 (savehist-minibuffer-hook): Don't save variables listed in
5049 `savehist-ignored-variables'.
5050
5051 * dired.el (dired-dnd-protocol-alist): Mention that change does
5052 only apply to new buffers in doc string.
5053
5054 2006-04-03 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
5055
5056 * recentf.el (recentf-open-files-item): Include newline in button
5057 field, so opening a file will work, when the point is at the end
5058 of the file name. Allow, for example, to [i]search a file by
5059 extension and just push RET to open it.
5060
5061 2006-04-03 Daiki Ueno <ueno@unixuser.org>
5062
5063 * pgg-gpg.el (pgg-gpg-process-filter)
5064 (pgg-gpg-wait-for-completion): Check if buffer is alive.
5065
5066 * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
5067 lines, temporary fix.
5068
5069 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
5070
5071 * ibuf-macs.el (define-ibuffer-column): Document the new parameter.
5072
5073 2006-04-02 Richard Stallman <rms@gnu.org>
5074
5075 * progmodes/compile.el (compilation-message-face): Make it defcustom.
5076
5077 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
5078
5079 * ibuf-macs.el (define-ibuffer-column): Add a new key:
5080 header-mouse-map.
5081
5082 * ibuffer.el (ibuffer-name-header-map, ibuffer-size-header-map)
5083 (ibuffer-mode-header-map): New keymaps.
5084 (ibuffer-update-title-and-summary): Enable mouse face highlighting
5085 and keybindings for column headers.
5086 (name,size,mode) <define-ibuffer-column>: Add a header-mouse-map
5087 property.
5088
5089 2006-04-02 Drew Adams <drew.adams@oracle.com> (tiny change)
5090
5091 * speedbar.el (speedbar-after-create-hook): Doc fix.
5092
5093 2006-04-02 Michael Ernst <mernst@alum.mit.edu>
5094
5095 * shell.el (shell-directory-tracker)
5096 (shell-dynamic-complete-command): Doc fixes.
5097
5098 2006-04-01 Matt Hodges <MPHodges@member.fsf.org>
5099
5100 * pcomplete.el (pcomplete-show-completions): Recognize TAB on text
5101 terminals.
5102
5103 2006-04-01 Kim F. Storm <storm@cua.dk>
5104
5105 * ido.el (ido-unc-hosts-cache): New defvar.
5106 (ido-unc-hosts): If value of defcustom is a function, call it to
5107 get list of UNC hosts. Add function-item choices to specify
5108 ido-unc-hosts-net-view or user function.
5109 (ido-ignore-unc-host-regexps): New defcustom.
5110 (ido-unc-hosts-net-view, ido-unc-hosts): New functions.
5111 (ido-is-unc-root, ido-is-unc-host, ido-file-name-all-completions)
5112 (ido-exhibit): Call ido-unc-hosts to get list of UNC hosts.
5113
5114 2006-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
5115
5116 * pcvs-util.el (cvs-insert-strings): Fix bug with strings longer than
5117 wwidth.
5118
5119 2006-03-31 Juanma Barranquero <lekktu@gmail.com>
5120
5121 * ido.el (ido-cache-unc-host-shares-time, ido-report-no-match)
5122 (ido-max-work-file-list, ido-switch-buffer)
5123 (ido-read-file-name-as-directory-commands):
5124 Fix typos in docstrings.
5125
5126 2006-03-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5127
5128 * term/mac-win.el (mac-system-coding-system): Define and use after
5129 Mac-specific coding systems are ready.
5130
5131 2006-03-27 Romain Francoise <romain@orebokech.com>
5132
5133 * net/rcirc.el (rcirc-connect): Add autoload cookie.
5134
5135 * ldefs-boot.el: Update.
5136
5137 2006-03-27 Daiki Ueno <ueno@unixuser.org>
5138
5139 * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
5140 passphrases when it is not needed.
5141 (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
5142 passphrase stuff from gpg, should only be necessary when you use
5143 gpg with a smartcard.
5144
5145 2006-03-27 Nick Roberts <nickrob@snap.net.nz>
5146
5147 * comint.el (comint-dynamic-list-completions): Allow user to
5148 select *Completions* buffer.
5149
5150 2006-03-27 Carsten Dominik <dominik@science.uva.nl>
5151
5152 * textmodes/org.el (org-get-level-face): Fix bug with level counting.
5153
5154 2006-03-26 Andreas Schwab <schwab@suse.de>
5155
5156 * progmodes/gud.el (gdb): Only complain about multiple debugging
5157 when the gdb process is still running.
5158
5159 2006-03-25 Eli Zaretskii <eliz@gnu.org>
5160
5161 * mail/rmail.el (tool-bar-map): Defvar it.
5162 (rmail-tool-bar-map): Tool-bar buttons for Rmail.
5163 (rmail-perm-variables): Make rmail-tool-bar-map a local variable.
5164
5165 2006-03-25 Sven Joachim <svenjoac@gmx.de> (tiny change)
5166
5167 * help.el (print-help-return-message): Suggest to use
5168 display-buffer instead of switch-to-buffer-other-window to restore
5169 the previous window without selecting it.
5170
5171 2006-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5172
5173 * frame.el (select-frame-by-name): Call x-focus-frame also when
5174 window-system is mac.
5175
5176 * term/mac-win.el: Adjust Courier font specifications in
5177 x-fixed-font-alist.
5178 (mac-select-convert-to-string): Use utf-16be-mac or utf-16le-mac
5179 when directly encoding to UTF-16 in native byte order, no BOM.
5180
5181 2006-03-25 Kim F. Storm <storm@cua.dk>
5182
5183 * emulation/cua-base.el (cua-rectangle-mark-key): New defcustom.
5184 (cua--init-keymaps): Use it instead of fixed C-return.
5185 (cua-mode): Set after it.
5186
5187 * emulation/cua-rect.el (cua--init-rectangles):
5188 Use cua-rectangle-mark-key instead of fixed C-return.
5189
5190 2006-03-25 Nick Roberts <nickrob@snap.net.nz>
5191
5192 * progmodes/gdb-ui.el (gdba): Revert 2006-03-10 change for case of
5193 "run" in .gdbinit.
5194 (gdb-var-create-regexp): Remove "^done" prefix for gdb-mi.el.
5195
5196 2006-03-24 Romain Francoise <romain@orebokech.com>
5197
5198 * files.el (ctl-x-5-map): Really bind C-x 5 C-o to
5199 `display-buffer-other-frame'.
5200
5201 2006-03-24 Kim F. Storm <storm@cua.dk>
5202
5203 * apropos.el (apropos-synonyms): Add selection => region.
5204
5205 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
5206
5207 * progmodes/gdb-ui.el (gdb-var-create-regexp)
5208 (gdb-var-list-children-regexp, gdb-var-update-regexp)
5209 (gdb-var-list-children-regexp-1, gdb-var-update-regexp-1)
5210 (gdb-data-list-register-values-regexp)
5211 (gdb-stack-list-locals-regexp, gdb-stack-list-locals-handler):
5212 Future proof against new fields being added to MI output.
5213 (gdb-send): Don't treat backslashes for program input as
5214 continuations.
5215 (gdb-assembler-handler): Don't use window-start for this handler.
5216 (gdb-frame-handler): Don't change to hollow arrow if overlay
5217 arrow doesn't move to new frame.
5218
5219 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
5220
5221 * progmodes/gdb-ui.el (gdb-continuation): Declare earlier to
5222 prevent compiler warnings.
5223 (gdb-stopped): Check for gud-last-last-frame (case: signal).
5224 (breakpoint-disabled): Make lighter for contrast with overlay arrow.
5225 (gdb-assembler-custom): Use hollow-right-triangle for assembler
5226 buffer too.
5227
5228 2006-03-23 Reiner Steib <reinersteib+gmane@imap.cc>
5229
5230 * pgg-gpg.el (pgg-gpg-update-agent): Check for
5231 make-network-process, so we can use the same code in Gnus v5-10
5232 too and have this file fully synchronized with that release.
5233
5234 2006-03-23 Romain Francoise <romain@orebokech.com>
5235
5236 * ibuf-ext.el (ibuffer-read-filter-group-name):
5237 Use `ibuffer-generate-filter-groups' to make completion list match
5238 the filter groups that are really displayed in the Ibuffer buffer.
5239 (ibuffer-generate-filter-groups): Add new args noempty, nodefault.
5240
5241 2006-03-23 Kenichi Handa <handa@m17n.org>
5242
5243 * international/mule-cmds.el (sort-coding-systems): Describe that
5244 the argument is modified in docstring.
5245
5246 2006-03-22 Sascha Wilde <wilde@sha-bang.de>
5247
5248 * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
5249 (pgg-gpg-update-agent): New function.
5250 (pgg-gpg-use-agent-p): New function.
5251 (pgg-gpg-process-region, pgg-gpg-encrypt-region)
5252 (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
5253 (pgg-gpg-sign-region): Use it.
5254
5255 2006-03-21 Chong Yidong <cyd@stupidchicken.com>
5256
5257 * cus-edit.el (custom-face-set): Call custom-push-theme before
5258 face-spec set so that `changed' theme is correctly saved.
5259 (custom-face-reset-standard): Reset to recalculated face rather
5260 than defface spec.
5261
5262 * custom.el (custom-push-theme): Only save `changed' theme if the
5263 current face does not match the defface specs.
5264
5265 2006-03-21 Simon Josefsson <jas@extundo.com>
5266
5267 * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
5268 <wilde@sha-bang.de>.
5269 (pgg-gpg-use-agent): New variable.
5270 (pgg-gpg-process-region): Use it.
5271 (pgg-gpg-encrypt-region): Likewise.
5272 (pgg-gpg-encrypt-symmetric-region): Likewise.
5273 (pgg-gpg-decrypt-region): Likewise.
5274 (pgg-gpg-sign-region): Likewise.
5275 (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
5276
5277 2006-03-21 Carsten Dominik <dominik@science.uva.nl>
5278
5279 * textmodes/org.el (org-open-at-point): Fix bug in wiki-style
5280 bracket links.
5281
5282 2006-03-21 Kim F. Storm <storm@cua.dk>
5283
5284 * progmodes/gdb-ui.el (gdb-reset): Set buffer local value of
5285 fringe-indicator-alist instead of modifying global value.
5286 (gdb-frame-handler): Likewise.
5287
5288 2006-03-21 Nick Roberts <nickrob@snap.net.nz>
5289
5290 * diff-mode.el (diff-function): Make it inherit from diff-header
5291 instead of diff-context.
5292
5293 * progmodes/gdb-ui.el (hollow-right-triangle): Define as fringe
5294 bitmap.
5295 (gdb-info-stack-custom): Rename from gdb-info-frames-custom and
5296 change names in macro above for consistency.
5297 (gdb-frame-handler): Use hollow-right-triangle for all selected
5298 frames which except the innermost (where execution has stopped).
5299 (gdb-reset): Reset buffer-local values of overlay-arrow.
5300
5301 2006-03-20 Richard Stallman <rms@gnu.org>
5302
5303 * simple.el (set-mark-command): Doc fix.
5304
5305 * files.el (display-buffer-other-frame): New command.
5306 (ctl-x-4-map): Bind C-x 5 C-o to it.
5307
5308 2006-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
5309
5310 * jit-lock.el (jit-lock-function): Check for the actual defer-timer
5311 rather than just defer-time, in case defer-time has been changed but
5312 the timer isn't running yet.
5313 (jit-lock-deferred-fontify): Correspondingly let-bind defer-timer.
5314
5315 2006-03-19 Luc Teirlinck <teirllm@auburn.edu>
5316
5317 * help-mode.el (help-follow-symbol): New function.
5318 Essentially identical to the old `help-follow', but do not let
5319 `push-button' do the work when on an xref.
5320 (help-mode-map): Bind `help-follow-symbol' to "C-c C-c".
5321
5322 2006-03-19 Richard Stallman <rms@gnu.org>
5323
5324 * help-mode.el (help-xref-symbol-regexp): Make no xref for symbol
5325 preceded by the word `program'.
5326 (help-follow-mouse, help-follow): Throw error if not on xref.
5327 Delete no longer used args.
5328
5329 2006-03-20 Nick Roberts <nickrob@snap.net.nz>
5330
5331 * progmodes/gdb-ui.el (gdb-stopped): Even when there is no source
5332 annotation ensure gud-overlay-arrow-position is redisplayed.
5333
5334 2006-03-19 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5335
5336 * textmodes/bibtex.el (bibtex-include-OPTkey)
5337 (bibtex-entry-field-alist, bibtex-generate-url-list): Mark as risky.
5338 (bibtex-autokey-name-case-convert)
5339 (bibtex-autokey-titleword-case-convert): Make these the aliases
5340 for the following two variables.
5341 (bibtex-autokey-name-case-convert-function)
5342 (bibtex-autokey-titleword-case-convert-function): Make these the
5343 real names.
5344 (bibtex-font-lock-keywords): Make bibtex-font-lock-url and
5345 bibtex-font-lock-crossref sublists.
5346 (bibtex-mode): Revert 2005-12-30 change (which made
5347 completion-ignore-case buffer-local).
5348 (bibtex-url): Simplify.
5349
5350 2006-03-19 Kim F. Storm <storm@cua.dk>
5351
5352 * emulation/cua-rect.el (cua--highlight-rectangle): Set overlay
5353 cursor property value to 2 (to align with C level change).
5354
5355 2006-03-19 Bill Wohler <wohler@newt.com>
5356
5357 * image.el (image-load-path-for-library): Shorten first line in
5358 docstring.
5359
5360 2006-03-18 Richard Stallman <rms@gnu.org>
5361
5362 * mail/rmail.el (rmail-reply-regexp): Undo previous change.
5363
5364 2006-03-18 Ben North <ben@redfrontdoor.org> (tiny change)
5365
5366 * isearch.el (isearch-other-meta-char): Handle user bindings for
5367 shifted control characters.
5368
5369 2006-03-18 Agustin Martin <agustin.martin@hispalinux.es>
5370
5371 * textmodes/ispell.el (ispell-skip-region-alist): Add "_+" to the
5372 part that matches email addresses, file names, etc.
5373
5374 2006-03-18 Eli Zaretskii <eliz@gnu.org>
5375
5376 * term/w32-win.el (mouse-set-font):
5377 Mention w32-list-proportional-fonts in the doc string.
5378
5379 2006-03-18 Kim F. Storm <storm@cua.dk>
5380
5381 * ido.el (ido-cache-ftp-work-directory-time): Doc fix.
5382 (ido-unc-hosts): New user option to explicitly define list of know
5383 UNC-style hosts for completion.
5384 (ido-cache-unc-host-shares-time): New user option.
5385 (ido-is-unc-root, ido-is-unc-host, ido-cache-unc-valid):
5386 New helper functions for UNC file-name support.
5387 (ido-may-cache-directory): Check for UNC host. Simplify.
5388 (ido-wash-history): Clean out old UNC hosts.
5389 (ido-nonreadable-directory-p): UNC hosts are always readable.
5390 (ido-directory-too-big-p): UNC hosts are never too big.
5391 (ido-set-current-directory): Handle UNC root path.
5392 (ido-file-name-all-completions): Complete UNC host names from
5393 ido-unc-hosts list. Cache UNC host shares.
5394 (ido-make-file-list-1): Don't filter UNC root.
5395 (ido-exhibit): Check for // in root directory, and switch to UNC
5396 mode by setting ido-current-directory to //.
5397
5398 2006-03-17 Luc Teirlinck <teirllm@auburn.edu>
5399
5400 * cus-edit.el (customize-changed-options): Mention explicit
5401 version number as default in prompt.
5402
5403 2006-03-17 Bill Wohler <wohler@newt.com>
5404
5405 * image.el (image-load-path-for-library): Minor docstring fix.
5406
5407 2006-03-17 Carsten Dominik <dominik@science.uva.nl>
5408
5409 * textmodes/org.el (org-read-date): Include subgroup 5 into
5410 replacement text.
5411 (org-popup-calendar-for-date-prompt): Fix customization type.
5412
5413 2006-03-17 Nick Roberts <nickrob@snap.net.nz>
5414
5415 * progmodes/gdb-ui.el (gud-watch): Provide completion.
5416 (gdb-continuation): New variable.
5417 (gdb-send): Deal with continuation lines.
5418
5419 * progmodes/gud.el (gud-gdb-complete-command)
5420 (gud-gdb-run-command-fetch-lines): Adapt for use with watch
5421 expressions.
5422 (gud-tooltip-mode): Use buffer-local value.
5423
5424 2006-03-16 Kim F. Storm <storm@cua.dk>
5425
5426 * ido.el (ido-edit-input): Use selected match, if any.
5427
5428 2006-03-16 Bill Wohler <wohler@newt.com>
5429
5430 * image.el (image-load-path-for-library): Prefer user's images in
5431 image-load-path.
5432
5433 2006-03-16 Martin Rudalics <rudalics@gmx.at>
5434
5435 * mouse.el (mouse-drag-vertical-line): Use window-inside-edges
5436 when checking for attempt to drag leftmost or rightmost scrollbar.
5437
5438 2006-03-16 Nick Roberts <nickrob@snap.net.nz>
5439
5440 * progmodes/gdb-ui.el (gdb-inferior-status): New variable.
5441 (gdb-force-mode-line-update): New function.
5442 (gdb-resync, gdb-starting, gdb-signal, gdb-exited, gdb-stopped)
5443 (gdb-exited): Use them.
5444 (gdb-signal): New function.
5445 (gdb-annotation-rules): Provide a rule for it.
5446
5447 2006-03-16 Kenichi Handa <handa@m17n.org>
5448
5449 * international/mule.el (auto-coding-regexp-alist): Add entries
5450 for Unicode BOM.
5451
5452 * sort.el (sort-build-lists): Temporarily bind
5453 inhibit-field-text-motion to t.
5454
5455 2006-03-15 Luc Teirlinck <teirllm@auburn.edu>
5456
5457 * locate.el (locate-command, locate-make-command-line)
5458 (locate-fcodes-file, locate-update-command)
5459 (locate-prompt-for-command, locate, locate-with-filter)
5460 (locate-get-file-positions): Doc fixes.
5461 (locate-buffer-name, locate-header-face): Remove leading `*' in
5462 defcustom.
5463 (locate-filter-output): Use `keep-lines' instead of its alias
5464 `delete-non-matching-lines'.
5465 (locate-get-filename, locate-get-dirname): Add introductory comment.
5466 (locate-find-directory-other-window): Give appropriate error
5467 message if used outside main listing.
5468
5469 2006-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
5470
5471 * font-lock.el (font-lock-lines-before): Delete variable, subsumed by
5472 the new extend-region feature.
5473 (font-lock-after-change-function): Update correspondingly.
5474 * jit-lock.el (jit-lock-after-change): Update correspondingly.
5475 * progmodes/grep.el (font-lock-lines-before): Don't disable.
5476
5477 2006-03-15 Bill Wohler <wohler@newt.com>
5478
5479 * image.el (image-load-path-for-library): Fix example by not
5480 recommending that one binds image-load-path. Just defvar it to
5481 placate compiler and only use it if previously defined.
5482
5483 2006-03-15 Carsten Dominik <dominik@science.uva.nl>
5484
5485 * textmodes/org.el (org-insert-centered): Use `string-width' to
5486 make underlining work for wide characters.
5487 (org-goto-map, org-agenda-mode-map, org-mode-map): Explicitly bind
5488 TAB to `org-cycle', to make sure that no binding in
5489 `outline-mode-map' can supercede it.
5490
5491 2006-03-14 Ken Manheimer <ken.manheimer@gmail.com>
5492
5493 * allout.el: Increment version to 2.2.1 in file commentary.
5494
5495 (allout-version): Increment to 2.2.1.
5496
5497 (allout-default-layout): New customization variable, used when the
5498 file lacks a specific allout-layout. Uses allout-layout-type for
5499 recursively nested definition.
5500
5501 (allout-layout-type): Widget defining allout layouts, necessary for
5502 self-recursive definition.
5503
5504 (allout-mode): Incorporate allout-default-layout as fallback for
5505 allout-layout.
5506
5507 (allout-layout): Mark as 'safe-local-variable', and refer mention
5508 fallback to `allout-default-layout' in absence of a specified value.
5509 (allout-passphrase-verifier-string)
5510 (allout-passphrase-hint-string): Mark as 'safe-local-variable'.
5511
5512 (allout-file-passphrase-verifier-string): Obsolete variable, removed.
5513
5514 (allout-get-encryption-passphrase-verifier): Use correct name of
5515 passphrase verifier in docstring.
5516
5517 2006-03-15 Nick Roberts <nickrob@snap.net.nz>
5518
5519 * progmodes/gdb-ui.el (gdb-var-list): Change order of first two
5520 elements.
5521 (gdb-find-watch-expression): Make it work for arrays too.
5522 Follow change to gdb-var-list.
5523 (gud-watch): Allow the user to enter variable name with a prexix
5524 arg. Create keybindings.
5525 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
5526 (gdb-var-list-children-handler, gdb-var-update-handler)
5527 (gdb-var-delete, gdb-edit-value, gdb-speedbar-expand-node)
5528 (gdb-var-list-children-handler-1, gdb-var-update-handler-1):
5529 Follow change to gdb-var-list.
5530 (gdb-starting): Don't show the overlay arrows when program is running.
5531
5532 * progmodes/gud.el (gud-speedbar-buttons): Follow change to
5533 gdb-var-list.
5534
5535 2006-03-14 Bill Wohler <wohler@newt.com>
5536
5537 * image.el (image-load-path-for-library): Pass value of path
5538 rather than symbol. Always return list of directories.
5539 Guarantee that image directory comes first.
5540
5541 2006-03-14 Alan Mackenzie <acm@muc.de>
5542
5543 * font-core.el (font-lock-extend-region\(-function\)?.):
5544 New function/variable.
5545
5546 * font-lock.el (font-lock-after-change-function):
5547 Call font-lock-extend-region. Obey font-lock-lines-before.
5548 (font-lock-default-fontify-region): Remove reference to
5549 font-lock-lines-before.
5550
5551 * jit-lock.el (jit-lock-after-change):
5552 Call font-lock-extend-region. Obey font-lock-lines-before.
5553
5554 2006-03-14 David Ponce <david@dponce.com>
5555
5556 * tree-widget.el (tree-widget-themes-load-path)
5557 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
5558
5559 2006-03-13 Ryan Yeske <rcyeske@gmail.com>
5560
5561 * net/rcirc.el (rcirc) <defgroup>: Add link to manual.
5562 (rcirc-print): Mark the start of text at the end of the prompt.
5563 (rcirc-track-minor-mode): Add autoload cookie.
5564 (rcirc-update-activity-string): Add space to front of mode-line
5565 indicator.
5566
5567 2006-03-13 Miles Bader <miles@gnu.org>
5568
5569 * net/rcirc.el (rcirc-nick-abbrevs): Remove variable.
5570 (rcirc-abbrev-nick): Remove function.
5571 (rcirc-format-response-string): Don't call `rcirc-abbrev-nick'.
5572
5573 2006-03-13 David Ponce <david@dponce.com>
5574
5575 * tree-widget.el: Handle themes across all occurrences of the main
5576 themes sub-directory found in tree-widget-themes-load-path.
5577 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
5578 (tree-widget--locate-sub-directory): Return all occurrences.
5579 (tree-widget-themes-path): New function.
5580 Replace tree-widget-themes-directory, and return a list of directories.
5581 (tree-widget-set-parent-theme)
5582 (tree-widget-lookup-image): Use it.
5583
5584 2006-03-13 Carsten Dominik <dominik@science.uva.nl>
5585
5586 * textmodes/org.el (org-link-search): Avoid self-matching of
5587 links, allow target text to be distributed over several lines.
5588 (org-search-not-link): New function.
5589 (org-set-regexps-and-options, org-get-current-options):
5590 New startup options.
5591 (org-export-as-html): Take odd-level setting from local variable.
5592 (org-fontify-emphasized-text): New option.
5593 (org-set-font-lock-defaults): Include emphasized text.
5594 (org-follow-mhe-link): Allow folder-only links, fix folder name.
5595 (org-font-lock): Customize group renamed from `org-faces'.
5596
5597 2006-03-13 John Paul Wallington <jpw@pobox.com>
5598
5599 * ibuf-ext.el (ibuffer-never-show-predicates): Add `require'
5600 keyword; require `ibuf-ext' feature. Thanks to Zhang Wei.
5601
5602 2006-03-12 Luc Teirlinck <teirllm@auburn.edu>
5603
5604 * cus-start.el (all): Delete :version keyword for members of the
5605 fringe group, since the entire group is new in 22.1.
5606
5607 2006-03-13 Nick Roberts <nickrob@snap.net.nz>
5608
5609 * progmodes/gdb-ui.el (gdb-stack-list-locals-handler): Add local
5610 map if value is hexadecimal (an address).
5611 (gud-watch): Only search roots for existing watch expressions.
5612 (gdb-speedbar-refresh): Bind speedbar-shown-directories to nil to
5613 prevent caching problems with speedbar-update-directory-contents.
5614
5615 2006-03-12 Juri Linkov <juri@jurta.org>
5616
5617 * battery.el (battery-linux-proc-acpi): Check `capacity' for non-nil
5618 before comparing with `low' and `warn'.
5619
5620 * info.el (Info-dir-remove-duplicates): Move point to the
5621 beginning of the current line after deleting the entries from
5622 redundant heading. Use marker for `limit' and compare it with
5623 point before calling `re-search-forward'.
5624
5625 2006-03-11 Luc Teirlinck <teirllm@auburn.edu>
5626
5627 * simple.el (yank): Fix typo in docstring.
5628
5629 2006-03-11 Ryan Yeske <rcyeske@gmail.com>
5630
5631 * mail/rmailsum.el (rmail-summary-next-msg): Skip deleted
5632 messages, where "D" is the 6th character.
5633
5634 2006-03-11 Eli Zaretskii <eliz@gnu.org>
5635
5636 * simple.el (yank): Fix last change.
5637
5638 2006-03-11 David Ponce <david@dponce.com>
5639
5640 * ispell.el (ispell-find-aspell-dictionaries): Add aliases before
5641 merging elements from the standard ispell-dictionary-alist.
5642 (ispell-aspell-add-aliases): Add aliases to the passed dictionary
5643 alist, and return the new alist.
5644
5645 2006-03-11 Richard Stallman <rms@gnu.org>
5646
5647 * mail/rmail.el (rmail-ignored-headers): Discard DomainKey-Signature.
5648
5649 * eshell/eshell.el (eshell-prefer-to-shell): Variable deleted;
5650 the way it is implemented is too unclean.
5651
5652 * simple.el (kill-region, yank): Doc fix.
5653
5654 * battery.el (battery-echo-area-format): Doc fix.
5655 (battery-mode-line-format): Likewise.
5656 (battery-linux-proc-apm, battery-linux-proc-acpi): Likewise.
5657 (battery-linux-proc-acpi): Ignore batteries that say "charged".
5658
5659 2006-03-11 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
5660
5661 * progmodes/octave-mod.el (octave-indent-for-comment):
5662 Behave according to do string.
5663
5664 2006-03-11 Agustin Martin <agustin.martin@hispalinux.es>
5665
5666 * textmodes/ispell.el (ispell-menu-map-needed) [ispell-message]:
5667 Be visible only if major mode is Mail Mode.
5668
5669 * textmodes/flyspell.el (flyspell-external-point-words)
5670 (flyspell-process-localwords): Fix last changes.
5671
5672 2006-03-11 Eli Zaretskii <eliz@gnu.org>
5673
5674 * calendar/holidays.el (list-holidays): Doc fix.
5675
5676 * international/mule.el (auto-coding-alist): Add .odt
5677 (OpenOffice's open document) files.
5678
5679 * files.el (auto-mode-alist): Add .odt (OpenOffice's open
5680 document) files. Mention in the doc string the need to sync with
5681 auto-coding-alist.
5682
5683 2006-03-10 Chong Yidong <cyd@stupidchicken.com>
5684
5685 * files.el (hack-local-variables-confirm): Don't prompt for ! if
5686 enable-local-variables is set to always query, or there is no
5687 savable variable.
5688
5689 2006-03-10 Bill Wohler <wohler@newt.com>
5690
5691 * image.el (image-load-path-for-library): Merge at least three
5692 functions from Gnus and MH-E into this one function that can now
5693 be shared.
5694
5695 2006-03-11 Nick Roberts <nickrob@snap.net.nz>
5696
5697 * progmodes/gdb-ui.el (gdb-remove-text-properties): Rename from
5698 gdb-remove-mouse-face and remove help-echo too.
5699 (gdb-enqueue-input): Correct conditional clause.
5700
5701 2006-03-10 Glenn Morris <rgm@gnu.org>
5702
5703 * calendar/calendar.el (calendar-holidays): Doc fix.
5704 * calendar/holidays.el (list-holidays): Doc fix.
5705
5706 2006-03-10 Nick Roberts <nickrob@snap.net.nz>
5707
5708 * progmodes/gdb-ui.el (gdba): Don't call gdb-init-1 explicitly as
5709 it gets called in gdb-prompt anyway.
5710 (gdb-use-separate-io-buffer): Only restore window arrangement for
5711 gdb-many-windows.
5712 (gdb-enqueue-input): Make it harder to send GDB input when program
5713 is running.
5714 (gdb-buffer-list): New variable.
5715 (gdb-remove-mouse-face): New function.
5716 (gdb-starting): Use it when GDB input won't get sent.
5717
5718 2006-03-08 Juanma Barranquero <lekktu@gmail.com>
5719
5720 * help.el (view-lossage): Remove trailing whitespace before
5721 inserting "\n".
5722
5723 2006-03-07 Chong Yidong <cyd@stupidchicken.com>
5724
5725 * files.el (hack-local-variables-confirm):
5726 Set coding-system-for-read to nil before writing to .emacs.
5727
5728 * arc-mode.el (archive-extract): Check if an existing buffer name
5729 comes from a different archive.
5730
5731 * help.el (describe-key-briefly): If KEY is a down event, read and
5732 discard the up event.
5733
5734 2006-03-07 Nick Roberts <nickrob@snap.net.nz>
5735
5736 * progmodes/gud.el (gud-speedbar-buttons): Allow pointers to
5737 be edited and use font-lock-warning-face for any changes.
5738
5739 * progmodes/gdb-ui.el (gdb-edit-value-handler): New function.
5740 (gdb-edit-value): Use it to report any errors.
5741
5742 2006-03-07 Juanma Barranquero <lekktu@gmail.com>
5743
5744 * help.el (describe-key): Remove leftover test code.
5745
5746 2006-03-07 Carsten Dominik <dominik@science.uva.nl>
5747
5748 * textmodes/org.el: Move defvars out of eval-when-compile.
5749 Use buffer-file-name variable.
5750 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused
5751 arg `file'.
5752 (org-level-faces): Remove startup dependency.
5753 (org-cycle, org-map-tree, org-scan-tags)
5754 (org-remember-handler): Don't call `outline-level' directly.
5755 (org-mhe-search-all-folders): New option.
5756 (org-mhe-get-message-folder-from-index)
5757 (org-mhe-get-message-folder): Fix indexing search.
5758 (org-format-agenda-item): Handle nil TAGS argument.
5759 (org-cleaned-string-for-export, org-activate-target-links)
5760 (org-make-target-link-regexp): Deal with empty radio target list.
5761 (org-tag): New face.
5762 (org-get-level-face): New function.
5763 (org-set-font-lock-defaults): Simplify setup for headlines.
5764 (org-complete): Pass common substring to `display-completion-list'.
5765
5766 2006-03-06 David Ponce <david@dponce.com>
5767
5768 * tree-widget.el: Update Commentary header.
5769 (tree-widget-theme-name): Ignore parent themes.
5770 (tree-widget-set-parent-theme): New function.
5771 (tree-widget-set-theme): Use it.
5772 (tree-widget-set-image-properties): Move definition. Does nothing
5773 if image properties have already been set.
5774 (tree-widget-image-properties): Move definition. Receive an image
5775 name. Set the :pointer property.
5776 (tree-widget-lookup-image): Doc fix. Search in parent themes.
5777 Don't set the :pointer image property.
5778 (tree-widget-convert-widget): New function. Handle :dynargs
5779 compatibility here.
5780 (tree-widget): Use it to :convert-widget. Add the :expander-p
5781 predicate to control when the :expander function is entered.
5782 Thanks to Ken Manheimer <ken.manheimer@gmail.com> for the idea.
5783 (tree-widget-value-create): Handle :expander-p. widget-apply
5784 :expander.
5785 (tree-widget-expander-p): New function. Default value of the
5786 :expander-p property.
5787
5788 2006-03-06 Chong Yidong <cyd@stupidchicken.com>
5789
5790 * help.el (describe-key): Properly handle the return value of
5791 read-key-sequence when grabbing an up-event. Cleanup mouse-1
5792 remaps. Handle string and vector `follow-link' values.
5793
5794 2006-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
5795
5796 * complete.el (PC-expand-many-files): Try be more careful when parsing
5797 the shell's output.
5798
5799 2006-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
5800
5801 * outline.el (hide-sublevels): Provide better interactive default.
5802
5803 2006-03-06 Kenichi Handa <handa@m17n.org>
5804
5805 * international/fontset.el (create-fontset-from-fontset-spec):
5806 Fix regexp for paring FONTSET-SPEC (allow spaces after `:').
5807
5808 2006-03-05 Luc Teirlinck <teirllm@auburn.edu>
5809
5810 * progmodes/gud.el (gud-jdb-marker-filter): Quote `[' with two
5811 backslashes instead of one in regexp.
5812 (gud-tooltip-dereference): Add missing optional argument.
5813
5814 2006-03-04 John Paul Wallington <jpw@pobox.com>
5815
5816 * wdired.el (toplevel): Require `cl' at compile-time.
5817
5818 2006-03-04 Andreas Schwab <schwab@suse.de>
5819
5820 * server.el (server-process-filter): Handle errors during
5821 evaluation of the argument.
5822
5823 2006-03-03 John Paul Wallington <jpw@pobox.com>
5824
5825 * t-mouse.el (t-mouse-drag-start, t-mouse-swap-alt-keys): Doc fix;
5826 escape parentheses at beginning of line.
5827 (t-mouse-tty, t-mouse-make-event): Doc fix; use imperative.
5828 (t-mouse-mode): Remove period from end of error message.
5829
5830 2006-03-03 Agustin Martin <agustin.martin@hispalinux.es>
5831
5832 * textmodes/flyspell.el (flyspell-process-localwords):
5833 Be case-sensitive.
5834
5835 2006-03-03 Martin Rudalics <rudalics@gmx.at>
5836
5837 * cus-edit.el (custom-quote): Remove function, since it has been
5838 moved to custom.el.
5839
5840 * font-lock.el (lisp-font-lock-keywords-2)
5841 * emacs-lisp/rx.el (rx-check-any, rx-check-not)
5842 * generic-x.el (reg-generic-mode): Quote "]"s in regexps when
5843 they have no special meaning.
5844
5845 * midnight.el (clean-buffer-list): Handle case where base-buffer of
5846 indirect buffer gets killed before indirect buffer. Use dolist.
5847
5848 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
5849
5850 * emacs-lisp/edebug.el (edebug-display): Use `edebug-sit-for-seconds'
5851 value instead of a literal constant (1) on more pauses.
5852
5853 2006-03-03 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
5854
5855 * textmodes/flyspell.el (flyspell-external-point-words):
5856 Be case-sensitive.
5857
5858 2006-03-03 Ryan Yeske <rcyeske@gmail.com>
5859
5860 * net/rcirc.el (rcirc-url-regexp): Match entire url when it starts
5861 with "www".
5862
5863 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
5864
5865 * allout.el: Restablish intermediate missing comment header to
5866 preserve outline structure.
5867 (allout-beginning-of-current-entry): Skip invisible text.
5868 (allout-open-topic): Fix opening a topic at end-of-buffer.
5869 (allout-minor-mode): Move nearer to allout-mode function.
5870
5871 2006-03-02 Carsten Dominik <dominik@science.uva.nl>
5872
5873 * textmodes/org.el (org-paste-subtree): Remove (debug) form.
5874
5875 2006-03-02 Nick Roberts <nickrob@snap.net.nz>
5876
5877 * dframe.el (dframe-frame-mode): Don't burp when menu-bar-lines
5878 is nil.
5879
5880 * progmodes/gud.el (gud-speedbar-menu-items):
5881 Use buffer-local-value and add missing :visible keyword.
5882
5883 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Quieten speedbar-refresh.
5884
5885 2006-03-01 Carsten Dominik <dominik@science.uva.nl>
5886
5887 * textmodes/reftex-index.el (reftex-index-map): `follow-mouse'
5888 must be `follow-link'.
5889
5890 * textmodes/reftex-toc.el (reftex-toc-map): Likewise.
5891
5892 * textmodes/org.el (org-export-as-html): Fix bugs in HTML
5893 formatting: No nested anchors.
5894 (org-all-targets): Fix bug with XEmacs compatibility.
5895 (org-read-date): Add (require 'parse-time).
5896 (org-set-tags): Fix bug with extra inserted space.
5897 (org-export-html-style): Define a style class for targets.
5898 (org-agenda-keymap, org-mouse-map): Add a binding for `follow-link'.
5899 (org-hide-leading-stars): New option.
5900 (org-hide): New face.
5901 (org-set-font-lock-defaults): Allow to hide leading stars.
5902 (org-get-legal-level, org-tr-level): New functions.
5903 (org-odd-levels-only): New option.
5904 (org-level-faces, org-paste-subtree, org-convert-to-odd-levels)
5905 (org-demote, org-promote): Deal with double-star levels.
5906 (org-convert-to-odd-levels): New command.
5907
5908 2006-03-01 Nick Roberts <nickrob@snap.net.nz>
5909
5910 * speedbar.el (speedbar-update-localized-contents): Try to
5911 preserve window-start.
5912 (speedbar-update-directory-contents): Try to preserve window-start
5913 and window-point.
5914 (speedbar-update-special-contents): Don't move back to start of window.
5915
5916 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Rename from
5917 gdb-speedbar-timer-fn. Use speedbar-refresh instead of
5918 speedbar-timer-fn.
5919 (gdb-var-update-handler, gdb-var-update-handler-1): Use it.
5920 (gdb-speedbar-expand-node): Use speedbar-delete-subblock
5921 instead of gdb-speedbar-timer-fn.
5922
5923 2006-02-28 Jay Belanger <belanger@truman.edu>
5924
5925 * calc/calccomp.el (math-compose-tex-matrix): Add a latex option.
5926 (math-compose-expr): Use latex option when calling
5927 `math-compose-tex-matrix' for latex mode.
5928
5929 2006-02-28 Nick Roberts <nickrob@snap.net.nz>
5930
5931 * speedbar.el: Re-instate comments about developing for speedbar
5932 [this is what info and gdb-ui use even if better methods exist now].
5933
5934 * t-mouse.el: New file.
5935 (t-mouse-tty): Use with-temp-buffer. Add more terminal types.
5936 (t-mouse-lispy-buffer-posn-from-coords): Remove.
5937 (t-mouse-make-event-element): Use posn-at-x-y instead.
5938 (t-mouse-make-event): Deal with Fedora Core 3.
5939 (t-mouse-make-event): Don't sink the `stupid text mode menubar'.
5940 (t-mouse-mouse-position-function): New function. Use it instead
5941 of advising mouse-position.
5942 (t-mouse-mode): New minor mode.
5943 (t-mouse-stop, t-mouse-run): Remove. Use t-mouse-mode instead.
5944
5945 2006-02-27 Glenn Morris <rgm@gnu.org>
5946
5947 * calendar/calendar.el (calendar-holidays): Doc fix.
5948
5949 2006-02-27 Nick Roberts <nickrob@snap.net.nz>
5950
5951 * progmodes/gdb-ui.el (gdb-source-window): New variable.
5952 Re-introduce the concept of a source window.
5953 (gdb-get-buffer-create): Rename from gdb-get-create-buffer for
5954 consistency with get-buffer-create.
5955 (def-gdb-auto-update-handler, gdb-info-locals-handler)
5956 (gdb-data-list-register-values-handler)
5957 (gdb-stack-list-locals-handler): Try to preserve window-start as
5958 well as window-point.
5959 (gdb-display-source-buffer): New function (old concept).
5960 (gdb-goto-breakpoint): Use it.
5961
5962 * progmodes/gud.el (gud-display-line): Use gdb-display-source-buffer
5963 for gdb-ui/gdb-mi (old concept).
5964
5965 2006-02-27 Carsten Dominik <dominik@science.uva.nl>
5966
5967 * textmodes/reftex-index.el (reftex-index-map): Add `follow-mouse'
5968 binding.
5969
5970 * textmodes/reftex-toc.el (reftex-toc-map): Add `follow-mouse' binding.
5971
5972 * textmodes/reftex-sel.el (reftex-select-label-map)
5973 (reftex-select-bib-map): Add `follow-mouse' binding.
5974
5975 2006-02-26 Luc Teirlinck <teirllm@auburn.edu>
5976
5977 * jka-cmpr-hook.el (jka-compr-compression-info-list)
5978 (jka-compr-mode-alist-additions, jka-compr-load-suffixes):
5979 Give :set functions to provide automatic updating.
5980 Update docstring. Give compiler defvars early in the file
5981 and move the defcustoms to a later spot where all called functions
5982 are defined.
5983 (jka-compr-file-name-handler-entry): Doc fix.
5984 (jka-compr-compression-info-list--internal)
5985 (jka-compr-mode-alist-additions--internal)
5986 (jka-compr-load-suffixes--internal): New variables.
5987 (jka-compr-install): Set the three above variables.
5988 Update `load-file-rep-suffixes' instead of `load-suffixes'.
5989 (jka-compr-update, jka-compr-set): New functions.
5990 (auto-compression-mode): Doc fix.
5991
5992 * jka-compr.el (jka-compr-uninstall): Replace `mapcar' with `mapc'.
5993 Update `load-file-rep-suffixes' instead of `load-suffixes'.
5994 Use jka-compr-compression-info-list--internal,
5995 jka-compr-mode-alist-additions--internal and
5996 jka-compr-load-suffixes--internal.
5997
5998 * files.el (load-library):
5999 * loadhist.el (file-loadhist-lookup):
6000 * startup.el (command-line):
6001 * subr.el (locate-library):
6002 * emacs-lisp/autoload.el (update-directory-autoloads):
6003 * emacs-lisp/find-func.el (find-library-suffixes):
6004 Use `get-load-suffixes' instead of `load-suffixes'.
6005
6006 * subr.el (locate-library):
6007 * emacs-lisp/find-func.el (find-library-name):
6008 Use `load-file-rep-suffixes' instead of '("").
6009
6010 2006-02-26 Kim F. Storm <storm@cua.dk>
6011
6012 * ido.el (ido-save-history, ido-load-history): Simplify.
6013 Don't use find-file-noselect to avoid interference from other modes.
6014
6015 2006-02-25 Thien-Thi Nguyen <ttn@gnu.org>
6016
6017 * progmodes/sh-script.el (sh-mode): Fix bug: Arrange
6018 to use the default shell if filename is not available.
6019 Reported by Giorgos Keramidas.
6020
6021 2006-02-25 John Williams <jrw@pobox.com> (tiny change)
6022
6023 * progmodes/etags.el (tags-completion-table): Do completion from
6024 all the tables in the current list, as documented in the manual.
6025
6026 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6027
6028 * CC Mode Update to 5.31.3.
6029
6030 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6031
6032 * progmodes/cc-mode.el (c-postprocess-file-styles):
6033 Bind inhibit-read-only to t, around the call to
6034 c-remove-any-local-eval-or-mode-variables, so that it works on a
6035 RO file.
6036
6037 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6038
6039 * progmodes/cc-awk.el: Correct a typo.
6040
6041 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6042
6043 * progmodes/cc-cmds.el, cc-mode.el: Rename c-hungry-backspace to
6044 c-hungry-delete-backwards, at the request of RMS. Leave the old
6045 name as an alias.
6046
6047 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6048
6049 * progmodes/cc-mode.el: Correct a typo.
6050
6051 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6052
6053 * progmodes/cc-defs.el: Update the version number to 5.31.3.
6054
6055 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6056
6057 * progmodes/cc-cmds.el (c-electric-brace): Fix clean-up
6058 brace-else-brace (error due to mbeg, mend being undefined).
6059
6060 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6061
6062 * progmodes/cc-mode.el: File Local variables: Solve the problem
6063 where both `mode' and c-file-offsets are specified: `mode' will
6064 overwrite c-f-o's settings:
6065 (c-remove-any-local-eval-or-mode-variables): New function.
6066 (c-postprocess-file-styles): Call the above new function, within
6067 c-tentative-buffer-change, to splat `mode' and `eval' before the
6068 second hack-local-variables.
6069
6070 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6071
6072 * progmodes/cc-mode.el:
6073 [Supersedes patch to cc-engine.el 2005-12-16T20:07:49Z!monnier@iro.umontreal.ca]
6074 (c-after-change): Protect the match data with save-match-data.
6075 It was getting corrupted by c-after-change-check-<>-operators.
6076
6077 * cc-defs.el: [Supersedes patch V1.38]:
6078 (top level): Check for a buggy font-lock-compile-keywords ONLY in
6079 XEmacs. GNU Emacs 22 now has a check which would throw an error here.
6080
6081 * progmodes/cc-awk.el (c-awk-after-change): Protect the match data
6082 with save-match-data. It was being corrupted when Font Lock was
6083 not enabled.
6084
6085 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6086
6087 * progmodes/cc-langs.el (c-mode-menu): Add menu items for Electric
6088 Mode and Subword Mode.
6089
6090 * progmodes/cc-engine.el (c-beginning-of-statment-1): Distinguish
6091 real labels ("case 1:" or "foo:") from non-labels ("public:").
6092 (c-forward-objc-directive): Replace c-forward-token-2 with crude
6093 coding; c-f-t-2 doesn't move over a token at EOB.
6094
6095 * progmodes/cc-defs.el (c-version): Update version number to 5.31.2.
6096
6097 * progmodes/cc-cmds.el, cc-mode.el, cc-engine.el
6098 (c-update-modeline): Concatenate the minor mode indicators
6099 directly onto mode-name, removing c-submode-indicators.
6100 Sometimes, c-s-i got separated from the mode name on the mode line.
6101
6102 * progmodes/cc-cmds.el (c-electric-brace, c-electric-semi&comma)
6103 (c-electric-colon): Correct doc-strings: "/ln" -> "/la".
6104
6105 2006-02-24 Martin Stjernholm <bug-cc-mode@gnu.org>
6106
6107 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Improve the
6108 error message when there's an evaluation error to show whether
6109 it's loaded from source or not.
6110 (c-filter-ops): Make it available at runtime too to work when
6111 `c-make-init-lang-vars-fun' needs to evaluate from source.
6112
6113 2006-02-24 Juanma Barranquero <lekktu@gmail.com>
6114
6115 * help.el (help): Revert last part of 2006-02-23 change (deletion
6116 of the `provide' call).
6117
6118 2006-02-23 Juri Linkov <juri@jurta.org>
6119
6120 * compare-w.el (compare-windows-highlight): Add new value
6121 `persistent' and change :type from `boolean' to `choice'.
6122 (compare-windows-overlays1, compare-windows-overlays2):
6123 New internal variables.
6124 (compare-windows-highlight): If compare-windows-highlight is
6125 `persistent', add current overlays to compare-windows-overlays[12]
6126 instead of adding compare-windows-dehighlight to pre-command-hook.
6127 (compare-windows-dehighlight): Delete all overlays from
6128 compare-windows-overlays[12].
6129
6130 * info.el (Info-search): Don't bind search-spaces-regexp to
6131 Info-search-whitespace-regexp in non-regexp isearch mode.
6132
6133 2006-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
6134
6135 * help.el (describe-mode): Pass `mode-name' to format-mode-line.
6136
6137 2006-02-23 Juanma Barranquero <lekktu@gmail.com>
6138
6139 * textmodes/org.el (org-xemacs-p)
6140 (org-export-html-show-new-buffer, org-table-may-need-update)
6141 (org-insert-item, org-mhe-get-message-real-folder)
6142 (org-mhe-get-message-folder-from-index)
6143 (org-mhe-get-message-folder, org-mhe-get-message-num)
6144 (org-mhe-get-header, org-make-org-heading-search-string)
6145 (org-make-org-heading-camel, org-table-sort-lines)
6146 (org-format-org-table-html, org-format-table-table-html):
6147 Fix typos in docstrings.
6148
6149 2006-02-23 Carsten Dominik <dominik@science.uva.nl>
6150
6151 * textmodes/org.el (org-cleaned-string-for-export)
6152 (org-solidify-link-text): New function.
6153 (org-add-hook): Use `add-local-hook' instead of `make-local-hook' for
6154 XEmacs, just to silence the compiler.
6155 (org-export-as-ascii, org-export-as-html-and-open):
6156 Use `org-cleaned-string-for-export' and create internal links.
6157 (org-follow-mhe-link): Require mh-e, use folder.
6158
6159 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
6160
6161 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face properly.
6162
6163 * progmodes/gdb-ui.el (gdb-debug-ring-max): Rename from
6164 gdb-debug-log-length.
6165 (gdb-debug-ring): Rename from gdb-debug-log-ring. Don't make
6166 it a real ring but...
6167 (gud-gdba-marker-filter): ...make it work like mark-ring.
6168 (gdb-enable-debug): Rename from gdb-enable-debug-log.
6169 (gdb-mouse-jump): New function. Add bindings.
6170
6171 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
6172
6173 * progmodes/gdb-ui.el (gdb-signalled): New variable and function.
6174 (gdb-debug-log-ring): Rename from gdb-debug-log and make a ring.
6175 (gdb-send, gdb-send-item, gud-gdba-marker-filter): Use it.
6176 (gdb-debug-log-length): Customize it's length.
6177 (gud-watch, gdb-var-create-handler): Display function::var format
6178 but don't use to create variable object.
6179 (gdb-var-create-handler): Use message-box in place of message.
6180 (gdb-stopped): Call gdb-exited if signalled.
6181
6182 2006-02-22 Carsten Dominik <dominik@science.uva.nl>
6183
6184 * textmodes/reftex.el (reftex-locate-file): Remove duplicate function.
6185
6186 * textmodes/reftex-vars.el (reftex-try-all-extensions): New option.
6187
6188 * textmodes/reftex.el (reftex-locate-file): Search all extensions
6189 if `reftex-try-all-extensions' is set.
6190
6191 * textmodes/reftex-dcr.el (reftex-view-crossref): New argument to
6192 fail silently when there is no valid argument at point.
6193 (reftex-view-crossref-when-idle): Call `reftex-view-crossref' with
6194 `fail-silently' argument. From a patch by David Reiter.
6195
6196 * textmodes/org.el (org-mark-ring-push, org-mark-ring-goto):
6197 New commands.
6198 (org-mark-ring): New variable.
6199 (org-mark-ring-length): New option.
6200 (org-open-at-point, org-goto, org-open-file): Push old position
6201 onto the mark ring.
6202 (org-add-hook): New function.
6203 (org-export-table-remove-special-lines): New option.
6204 (org-skip-comments, org-format-org-table-html): Respect new
6205 option `org-export-table-remove-special-lines'.
6206 (org-open-file): Allow special command configuration for
6207 directory link.
6208 (org-file-apps): Fix bugs in customize type, added setting
6209 for directories.
6210 (org-activate-tags, org-format-agenda-item, org-complete)
6211 (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
6212 (org-get-tags, org-get-buffer-tags, org-open-at-point)
6213 (org-link-search, org-make-org-heading-search-string)
6214 (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
6215 (org-radio-targets, org-file-link-context-use-camel-case)
6216 (org-activate-camels): New options.
6217 (org-update-radio-target-regexp, org-all-targets)
6218 (org-make-target-link-regexp, org-activate-target-links):
6219 New functions.
6220 (org-make-org-heading-search-string): New function.
6221 (org-store-link, org-insert-link): Use new option
6222 `org-file-link-context-use-camel-case'.
6223 (org-activate-camels): Use new option `org-activate-camels'.
6224 (org-link-regexp): Add mhe prefix.
6225 (org-open-at-point, org-store-link): Support for mhe links.
6226 (org-mhe-get-message-real-folder, org-mhe-get-message-folder)
6227 (org-mhe-get-message-folder-from-index, org-mhe-get-message-num)
6228 (org-mhe-get-header, org-follow-mhe-link): New functions.
6229 (org-remove-angle-brackets, org-add-angle-brackets):
6230 New functions.
6231 (org-bracket-link-regexp): New constant.
6232 (org-read-date): Fix bug that was rejecting all typed dates.
6233 (org-link-search): Make hierarchy above visible after a match.
6234 (org-follow-bbdb-link): Inhibit electric mode for BBDB.
6235 (org-store-link): Fix bug with link creation when cursor is in
6236 an empty line.
6237 (org-open-at-point): Fix bug with matching a link.
6238 Fixed buggy argument sequence in call to `org-view-tags'.
6239 (org-compile-prefix-format): Set `org-prefix-has-tag'.
6240 (org-prefix-has-tag): New variable.
6241 (org-format-agenda-item): Remove tags from headline
6242 if appropriate.
6243 (org-agenda-remove-tags-when-in-prefix): New option.
6244
6245 2006-02-21 Michael Kifer <kifer@cs.stonybrook.edu>
6246
6247 * ediff-diff.el (ediff-setup-diff-regions, ediff-setup-diff-regions3):
6248 Fix the regular expressions.
6249
6250 2006-02-21 Richard M. Stallman <rms@gnu.org>
6251
6252 * progmodes/sh-script.el (sh-mode): Set shell type based on file name
6253 if there's no other specific basis.
6254
6255 * emacs-lisp/unsafep.el (unsafep): Don't treat &rest or &optional
6256 as variables at all.
6257 (unsafep-variable): Rename arg; doc fix.
6258
6259 * abbrevlist.el (list-one-abbrev-table): Add autoload.
6260
6261 * calendar/appt.el (diary-selective-display): Add defvar.
6262
6263 * sort.el (sort-columns): Use Posix arg syntax for `sort'.
6264
6265 * isearch.el (search-whitespace-regexp): Fix custom type.
6266
6267 * help.el (describe-key-briefly): Compute interactive args
6268 in same was as before previous change.
6269
6270 * files.el (enable-local-variables): Doc fix.
6271
6272 2006-02-21 Kim F. Storm <storm@cua.dk>
6273
6274 * fringe.el: Cleanup as file is now pre-loaded.
6275 (fringe-bitmaps): Initialize unconditionally.
6276 (fringe-mode, set-fringe-style): Remove autoload cookies.
6277
6278 2006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
6279
6280 * fringe.el (fringe-bitmaps): Rename `horisontal-bar' to
6281 `horizontal-bar'.
6282 (fringe-cursor-alist): Use `horizontal-bar'.
6283
6284 2006-02-20 Kim F. Storm <storm@cua.dk>
6285
6286 * fringe.el (fringe-bitmaps): Update to new bitmap names.
6287 (fringe-indicator-alist, fringe-cursor-alist): Initialize.
6288
6289 * loadup.el: Load "fringe" on window systems.
6290
6291 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
6292
6293 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for all
6294 out of scope components.
6295
6296 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): Don't enable by
6297 default.
6298
6299 2006-02-20 Chong Yidong <cyd@stupidchicken.com>
6300
6301 * custom.el (customize-mark-to-save, customize-mark-as-set):
6302 Load the symbol first.
6303
6304 2006-02-20 Juanma Barranquero <lekktu@gmail.com>
6305
6306 * buff-menu.el (list-buffers-noselect): Turn also "\n" into a
6307 strech spec so it doesn't display as "^J" on the header line
6308 when `Buffer-menu-use-header-line' is t.
6309
6310 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
6311
6312 * speedbar.el (speedbar-make-button): Keep text properties
6313 of string arguments if desired.
6314
6315 * progmodes/gud.el (gud-speedbar-buttons): Fontify watch
6316 expessions.
6317
6318 * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Force update
6319 of speedbar.
6320
6321 2006-02-19 Ryan Yeske <rcyeske@gmail.com>
6322
6323 * ffap.el (ffap-read-file-or-url): Bind `completion-ignore-case'
6324 to value of `read-file-name-completion-ignore-case'.
6325
6326 2006-02-19 Chong Yidong <cyd@stupidchicken.com>
6327
6328 * custom.el (customize-mark-as-set): Push to `user' theme.
6329
6330 * cus-edit.el (custom-save-variables): Allow unthemed values.
6331 (customize-set-variable): Push setting to `user' theme.
6332
6333 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
6334
6335 * progmodes/gud.el: Don't require font-lock as it's now
6336 automatically loaded.
6337 (gud-speedbar-buttons): Replace gdb-var-changed with
6338 gdb-force-update.
6339
6340 * progmodes/gdb-ui.el (gdb-force-update): Rename from
6341 gdb-var-changed.
6342 (gdb-post-prompt): Use it.
6343 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
6344 (gdb-var-update-handler, gdb-var-delete)
6345 (gdb-speedbar-expand-node, gdb-var-list-children-handler-1)
6346 (gdb-var-update-handler-1): Don't set gdb-var-changed, just set
6347 gdb-force-update in gdb-post-prompt.
6348 (gdb-reset): Clear watch expressions from speedbar when quitting.
6349
6350 2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
6351
6352 * viper-cmd.el (viper-insert-state-post-command-sentinel)
6353 (viper-change-state-to-vi, viper-change-state-to-emacs):
6354 Make aware of cursor coloring in the Emacs state.
6355 (viper-special-read-and-insert-char): Use read-char-exclusive.
6356 (viper-minibuffer-trim-tail): Workaround for fields in minibuffer.
6357
6358 * viper-init.el (viper-emacs-state-cursor-color): New variable.
6359
6360 * viper-util.el (viper-save-cursor-color)
6361 (viper-get-saved-cursor-color-in-replace-mode)
6362 (viper-get-saved-cursor-color-in-insert-mode)
6363 (viper-restore-cursor-color): Make aware of the cursor color in Emacs
6364 state.
6365 (viper-get-saved-cursor-color-in-emacs-mode): New function.
6366
6367 * ediff-diff.el (ediff-ignore-case, ediff-ignore-case-option)
6368 (ediff-ignore-case-option3, ediff-actual-diff-options)
6369 (ediff-actual-diff3-options): New variables to control case sensitivity.
6370 (ediff-make-diff2-buffer, ediff-setup-fine-diff-regions)
6371 (ediff-setup-diff-regions3): Make aware of case-sensitivity.
6372 (ediff-toggle-ignore-case): New function.
6373 (ediff-extract-diffs, ediff-extract-diffs3): Preserve point in buffers.
6374
6375 * ediff-help.el (ediff-long-help-message-narrow2)
6376 (ediff-long-help-message-compare2, ediff-long-help-message-compare3)
6377 (ediff-long-help-message-word-mode): Add ignore-case command.
6378 (ediff-help-for-quick-help): Add ignore-case command.
6379
6380 * ediff-merg.el: Move provide to the end.
6381
6382 * ediff-ptch.el: Move provide to the end.
6383
6384 * ediff-wind.el: Move provide to the end.
6385
6386 * ediff-mult.el: Move provide to the end.
6387 (ediff-set-meta-overlay): Enable follow-link.
6388
6389 * ediff.el: Move provide to the end.
6390 Break recursive load cycle in eval-when-compile.
6391 (ediff-patch-buffer): Better heuristics.
6392
6393 * ediff-util.el: Move provide to the end.
6394 Break recursive load cycle in eval-when-compile.
6395 (ediff-setup-keymap): Add binding for #c. Replace some defsubsts with
6396 defuns.
6397 (ediff-submit-report): Pass the values of ediff-diff3-program,
6398 ediff-diff3-options.
6399
6400 2006-02-19 Juanma Barranquero <lekktu@gmail.com>
6401
6402 * help-fns.el (help-do-arg-highlight): Recognize also ARG- followed by
6403 the opening bracket of the following bracketing pairs: {}, [], (), <>,
6404 `' (for example, in the docstring of `windmove-default-keybindings').
6405
6406 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
6407
6408 * progmodes/gud.el (gud-speedbar-buttons): Update properly for
6409 shadow face. Don't provide binding to edit variable when it is
6410 out of scope.
6411
6412 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
6413 (gdb-var-update-handler): Detect out of scope variables with pre
6414 GDB 6.4 too.
6415 (gdb-post-prompt): Revert change from 2006-02-17 (force update).
6416 Reset status of variable objects to nil in update handlers.
6417 (gdb-var-update-handler-1): Detect when a variable object comes
6418 in scope. setcar on var changes gdb-var-list directly.
6419
6420 2006-02-17 Juri Linkov <juri@jurta.org>
6421
6422 * ffap.el (ffap) <defface>: Add explicit face declaration.
6423 (ffap-highlight): Use face `ffap' directly instead of checking
6424 for its existence.
6425
6426 * icomplete.el (icomplete-get-keys): Use `t' for the second arg
6427 `visible-ok' of `other-buffer' to find the right original buffer.
6428
6429 * info.el (Info-search): Skip `Local Variables' node.
6430
6431 2006-02-17 Juri Linkov <juri@jurta.org>
6432
6433 * info.el (Info-find-file): Check for symbols `apropos', `history',
6434 `toc' in the input filename, and return these symbols as is.
6435 (Info-find-node-2): Set Info-current-file to symbols `apropos',
6436 `history', `toc' instead of strings.
6437 (Info-set-mode-line): For non-string Info-current-file use the
6438 symbol's name inside **.
6439 (Info-isearch-push-state): Add quote before Info-current-file and
6440 Info-current-node.
6441 (Info-isearch-pop-state): Use `equal' instead of `string='.
6442 (Info-extract-pointer, Info-following-node-name): Use
6443 `match-string-no-properties' instead of `match-string'.
6444 (Info-up): Check `old-file' for `stringp'.
6445 (Info-history): Use `equal' instead of `string-equal'.
6446 Check `file' for `stringp'.
6447 (Info-history): Use symbol `history' instead of string as first arg
6448 of `Info-find-node'.
6449 (Info-toc): Check `Info-current-file' for `stringp'. Use symbol
6450 `toc' instead of string.
6451 (Info-extract-menu-node-name): Use `buffer-substring-no-properties'
6452 instead of `buffer-substring', and `match-string-no-properties'
6453 instead of `match-string'.
6454 (Info-index-nodes): Check for symbols `apropos', `history', `toc'
6455 instead of strings.
6456 (info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
6457 Use symbol `apropos' instead of string.
6458 (Info-copy-current-node-name): Check `Info-current-file' for
6459 `stringp' and construct a command with `Info-find-node' from it.
6460 (Info-fontify-node): Use `match-string-no-properties' instead of
6461 `match-string' and check file names for `stringp'.
6462 (Info-desktop-buffer-misc-data): Check for symbols `apropos',
6463 `history', `toc' instead of strings.
6464
6465 2006-02-17 Chong Yidong <cyd@stupidchicken.com>
6466
6467 * files.el: Rearrange functions and variables in the file local
6468 variables section.
6469
6470 2006-02-17 Reiner Steib <Reiner.Steib@gmx.de>
6471
6472 * files.el: Add truncate-lines, ispell-check-comments and
6473 ispell-local-dictionary as safe local variables.
6474
6475 2006-02-18 Nick Roberts <nickrob@snap.net.nz>
6476
6477 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for
6478 out of scope variables.
6479 (gud-speedbar-buttons): Use unless.
6480
6481 * progmodes/gdb-ui.el (gdb-var-list): Update doc string.
6482 (gdb-init-1, gdb-var-changed): Set gdb-var-changed to t initially.
6483 (gdb-show-changed-values): Also use for out of scope variables.
6484 (gdb-var-update-handler-1): Note if variable goes out of scope.
6485
6486 2006-02-17 Ryan Yeske <rcyeske@gmail.com>
6487
6488 * net/rcirc.el (rcirc-connect): Make all arguments optional, and
6489 default to global variable values for unsupplied args.
6490 (rcirc-get-buffer-create): Fix bug with setting the target.
6491 (rcirc-any-buffer): Rename from rcirc-get-any-buffer, and include
6492 test for rcirc-always-use-server-buffer-flag here.
6493 (rcirc-response-formats): Add %N, which is a facified nick. %n
6494 uses the default face. Change the ACTION format string. If the
6495 "nick" is the server, don't print anything for that field.
6496 Comment fixes.
6497 (rcirc-target-buffer): Don't test
6498 rcirc-always-use-server-buffer-flag here.
6499 (rcirc-print): Squeeze extra spaces out of the text before message.
6500 (rcirc-put-nick-channel): Strip potential "@" char from nick
6501 before adding them to nick table.
6502 (rcirc-url-regexp): Improve to match address like "foo.com".
6503
6504 2006-02-17 Eli Zaretskii <eliz@gnu.org>
6505
6506 * allout.el (allout-hidden-p): Move this defsubst before
6507 allout-overlay-interior-modification-handler, where it is first
6508 used.
6509
6510 2006-02-17 Ken Manheimer <ken.manheimer@gmail.com>
6511
6512 * allout.el: Use allout invisible-text overlays instead of
6513 selective display for concealed text. Also, lots of general
6514 cleanup, and improved compatibility code.
6515
6516 (allout-version) Incremented, corrected, revised, and refined
6517 module commentary.
6518
6519 (provide 'allout): Moved to the bottom, added a require of overlay.
6520
6521 (allout-encrypt-unencrypted-on-saves): Defaults to t instead of
6522 `except-current'.
6523 (allout-write-file-hook-handler): Minimize delay.
6524 (count-trailing-whitespace-region): New function so
6525 auto-encryption of current topic can resituate cursor exactly.
6526 PGP/GPG encryption trims trailing whitespace from lines, which
6527 must be accounted for across encryption then decryption.
6528
6529 (allout-command-prefix): Now defaults to "\C-c<space>" rather than
6530 just plain "\C-c", to avoid intruding on user's keybinding space.
6531
6532 (allout-toggle-current-subtree-encryption): Pass along fetch-pass
6533 parameter, so user request to provide a new password is done.
6534
6535 (allout-outside-normal-auto-fill-function, allout-auto-fill):
6536 Refined mechanism for auto-filling behavior while in allout mode.
6537
6538 (allout-mode): Explicitly specify the mode map in the docstring.
6539 Clarify provision for various write-file hook var names.
6540 Adjusted for invisible-text overlays instead of selective-display.
6541
6542 (allout-depth): Really return 0 if not within any topic. This
6543 rectifies `allout-beginning-of-level' and sequence numbering
6544 errors that occur when cutting and pasting numbered topics.
6545 Changed from a in-line subst to a regular function, as well.
6546
6547 (allout-pre-next-prefix): Renamed from allout-pre-next-preface.
6548
6549 (allout-end-of-subtree, allout-end-of-subtree)
6550 (allout-end-of-entry, allout-end-of-current-heading)
6551 (allout-next-visible-heading, allout-open-topic, allout-show-entry)
6552 (allout-show-children, allout-show-to-offshoot)
6553 (allout-hide-current-entry, allout-show-current-entry): Rectified
6554 handling of trailing blank lines between items.
6555
6556 (allout-line-boundary-regexp, set-allout-regexp, allout-depth)
6557 (allout-current-depth, allout-unprotected, allout-hidden-p)
6558 (allout-on-current-heading-p, allout-listify-exposed)
6559 (allout-chart-subtree, allout-goto-prefix)
6560 (allout-back-to-current-heading, allout-get-body-text)
6561 (allout-snug-back, allout-flag-current-subtree, allout-show-all)
6562 (allout-hide-region-body, allout-toggle-subtree-encryption)
6563 (allout-encrypt-string, allout-encrypted-key-info)
6564 (allout-next-topic-pending-encryption, allout-encrypt-decrypted)
6565 (allout-file-vars-section-data): Adjusted for use with
6566 invisible-text overlays instead of selective-display.
6567
6568 (allout-kill-line, allout-kill-topic, allout-yank-processing):
6569 Reworked for use with invisible text overlays.
6570
6571 (allout-current-topic-collapsed-p): New function.
6572
6573 (allout-hide-current-subtree): Use allout-current-topic-collapsed-p
6574 to know when to close the containing topic.
6575
6576 (allout-pre-command-business, allout-post-command-business):
6577 Simplify undo-batching and dynamic isearch exposure.
6578
6579 (allout-set-overlay-category): New for invisible-text overlays.
6580 Sets properties of allout-overlay-category, used by
6581 allout-flag-region to set invisible-text overlay properties.
6582 (allout-get-invisibility-overlay): Get the first qualifying
6583 invisibility overlay, so we can find the extent of it.
6584 (allout-back-to-visible-text): Get to just before the beginnining
6585 of the current invisibility overlay, if any.
6586
6587 (allout-overlay-insert-in-front-handler)
6588 (allout-overlay-interior-modification-handler)
6589 (allout-before-change-handler, allout-isearch-end-handler): New
6590 functions to handle extraordinary actions affecting concealed
6591 text.
6592
6593 (allout-flag-region): Use overlays instead of selective-display
6594 for invisible text - by inheritence from the properties of
6595 allout-overlay-category in mainline Emacs, and applied
6596 property-by-property in XEmacs, some recent versions of which
6597 don't inherit the properties from the category. Provisions to
6598 respond to concealed-text edits simplified drastically.
6599
6600 (allout-isearch-rectification, allout-isearch-was-font-lock)
6601 (allout-isearch-expose, allout-enwrap-isearch)
6602 (allout-isearch-abort, allout-pre-was-isearching)
6603 (allout-isearch-prior-pos, allout-isearch-did-quit)
6604 (allout-isearch-dynamic-expose)
6605 (allout-hide-current-entry-completely): Functions deleted.
6606
6607 (allout-undo-aggregation): Explicit undo aggregation no longer
6608 necessary due to transition away from selective-display.
6609
6610 (set-allout-regexp, allout-up-current-level)
6611 (allout-next-visible-heading, allout-forward-current-level)
6612 (allout-open-topic, allout-reindent-body, allout-rebullet-topic)
6613 (allout-kill-line, allout-yank-processing, allout-show-children)
6614 (allout-expose-topic, allout-old-expose-topic)
6615 (allout-listify-exposed, allout-insert-latex-header)
6616 (allout-toggle-subtree-encryption, allout-encrypt-string)
6617 (remove-from-invisibility-spec, allout-hide-current-subtree):
6618 Ditched unused variables.
6619
6620 2006-02-17 Agustin Martin <agustin.martin@hispalinux.es>
6621
6622 * textmodes/ispell.el (ispell-change-dictionary): Call
6623 ispell-buffer-local-dict instead of
6624 ispell-accept-buffer-local-defs.
6625 (ispell-local-dictionary-alist): Accept as valid any coding-system
6626 supported by Emacs.
6627 (ispell-dictionary-alist-3): Esperanto dictionary's coding system
6628 changed to iso-8859-3.
6629
6630 2006-02-17 Nick Roberts <nickrob@snap.net.nz>
6631
6632 * speedbar.el (speedbar-frame-width): Make an inline function
6633 instead of a macro. Use frame-width.
6634 (speedbar-try-completion, speedbar-update-contents)
6635 (speedbar-timer-fn): Use consp.
6636 (speedbar-update-localized-contents): Try to preserve point.
6637
6638 * progmodes/gdb-ui.el (gdba, gdb-var-list): Improve doc strings.
6639 (menu): Re-order menu items.
6640 (gdb-var-update-regexp, gdb-var-update-regexp-1): Match "in_scope"
6641 field.
6642 (gdb-var-update-handler-1): Use it for GDB 6.4+.
6643 (gdb-post-prompt): Speed things by not forcing update.
6644
6645 2006-02-16 Chong Yidong <cyd@stupidchicken.com>
6646
6647 * wid-edit.el (widget-button-click): For mouse-1, cancel button
6648 press and perform default action if we get a mouse movement event.
6649
6650 2006-02-16 Juanma Barranquero <lekktu@gmail.com>
6651
6652 * calendar/icalendar.el (icalendar--get-event-property)
6653 (icalendar--get-event-property-attributes): Fix typos in
6654 docstrings.
6655
6656 * progmodes/flymake.el (flymake-fix-file-name): Fix typo in
6657 docstring.
6658
6659 2006-02-15 Juanma Barranquero <lekktu@gmail.com>
6660
6661 * bs.el (bs-mode): Use `buffer-disable-undo'.
6662 (bs--get-file-name): Simplify.
6663 (bs-show-in-buffer): Mark the buffer as not modified.
6664
6665 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
6666
6667 * wid-edit.el (widget-keymap): Bind down-mouse-1 to
6668 widget-button-click.
6669
6670 * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
6671 (custom-mode): Update docstring.
6672
6673 * cus-theme.el (custom-new-theme-mode-map): Remove mouse-1
6674 binding.
6675
6676 * files.el (hack-local-variables-confirm): Allow scrolling if the
6677 file variable list is too long. Kill temp buffer after use.
6678
6679 2006-02-15 Nick Roberts <nickrob@snap.net.nz>
6680
6681 * progmodes/gud.el (gdb): Improve doc string.
6682 (gdb-script-font-lock-keywords): Expand allowed character set.
6683
6684 * progmodes/gdb-ui.el (gdb-use-separate-io-buffer)
6685 (gdb-display-separate-io-buffer, gdb-frame-separate-io-buffer)
6686 (gdb-separate-io-interrupt, gdb-separate-io-quit)
6687 (gdb-separate-io-stop, gdb-separate-io-eof):
6688 Rename from gdb-inferior-* to gdb-separate-*.
6689 (gdb-set-gud-minor-mode-existing-buffers-1): Improve doc string.
6690
6691 2006-02-14 Jay Belanger <belanger@truman.edu>
6692
6693 * calc/calc-arith.el (math-check-known-scalarp): Make sure
6694 expression is a symbol before checking that it is bound.
6695
6696 * calc/calcalg2.el (math-integrate-by-parts): Do a more careful
6697 test to see if equation can be solved.
6698
6699 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
6700
6701 * wid-edit.el (widget-button-click): Use :pressed-face property
6702 for overlay face, if it exists.
6703
6704 * cus-edit.el (custom-manual, custom-add-see-also)
6705 (custom-add-parent-links, custom-group-link): Add :pressed-face
6706 property to links.
6707
6708 * files.el (hack-local-variables): Remove ignored variables before
6709 checking if any variables need setting.
6710
6711 2006-02-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6712
6713 * cus-start.el (all): Add x-gtk-whole-detached-tool-bar.
6714
6715 2006-02-14 Juanma Barranquero <lekktu@gmail.com>
6716
6717 * help.el (where-is): Fix message for remapped commands.
6718
6719 * mwheel.el (mouse-wheel-click-event, mouse-wheel-mode):
6720 Fix typos in docstrings.
6721
6722 2006-02-13 Chong Yidong <cyd@stupidchicken.com>
6723
6724 * files.el (safe-local-variable-values): New option.
6725 (hack-local-variables-prop-line): Return a list of variable-value
6726 pairs if MODE-ONLY is non-nil.
6727 (hack-local-variables): Construct list of variable-value pairs,
6728 and apply or reject them in one go. Ask for confirmation if
6729 variables are not known safe.
6730 (hack-local-variables-confirm): Complete rewrite. Support
6731 `safe-local-variable-values'.
6732 (enable-local-variables): Update docstring to reflect new
6733 behavior.
6734 (ignored-local-variables): Ignore ignored-local-variables and
6735 safe-local-variable-values.
6736 (safe-local-variable-p): New function.
6737 (risky-local-variable-p): `safe-local-variable' property check
6738 moved to safe-local-variable-p.
6739 (hack-one-local-variable): Checks moved to hack-local-variables.
6740
6741 (byte-compile-dynamic, c-basic-offset, c-file-style)
6742 (c-indent-level, comment-column, fill-column, fill-prefix)
6743 (indent-tabs-mode, kept-new-versions, no-byte-compile)
6744 (no-update-autoloads, outline-regexp, page-delimiter)
6745 (paragraph-start, paragraph-separate, sentence-end)
6746 (sentence-end-double-space tab-width, version-control):
6747 Add `safe-local-variable' property.
6748
6749 * find-lisp.el: Delete nonexistent `autocompile' file variable.
6750
6751 * icomplete.el, play/landmark.el: Change nonexistent
6752 `outline-layout' file variable to `allout-layout'.
6753
6754 2006-02-14 Nick Roberts <nickrob@snap.net.nz>
6755
6756 * progmodes/gdb-ui.el (gud-watch, gdb-invalidate-registers-1)
6757 (gdb-get-changed-registers): Test value of gud-minor-mode relative
6758 to gud-comint-buffer.
6759 (gdb-speedbar-expand-node, gdb-locals-mode): Use functions in
6760 gdb-ui.el for gdb-mi.el.
6761 (gdb-post-prompt, gdb-get-changed-registers): Move test for
6762 registers buffer to gdb-get-changed-registers.
6763 (gdb-breakpoint-regexp): New regexp. Allow toggling and
6764 deletion of catchpoints (throw and catch).
6765 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
6766 (gdb-goto-breakpoint): Use it for both gdb-ui and gdb-mi.
6767 (gdb-find-file-hook, gdb-set-gud-minor-mode-existing-buffers-1)
6768 (gdb-var-list-children-1, gdb-info-breakpoints-custom)
6769 (gdb-var-update-1, gdb-invalidate-locals-1): Use also for gdb-mi.
6770
6771 2006-02-13 Jay Belanger <belanger@truman.edu>
6772
6773 * calc/calc-arith.el (math-check-known-matrixp): Make sure
6774 expression is a symbol before checking that it is bound.
6775
6776 2006-02-13 Richard M. Stallman <rms@gnu.org>
6777
6778 * mouse.el (mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
6779 for the minibuffer too, but not if resize-mini-windows will interfere.
6780
6781 * help.el (describe-key-briefly, describe-key): Do all arg-reading
6782 inside `interactive' spec.
6783 (describe-key-briefly-internal, describe-key-internal):
6784 Functions merged back into their callers.
6785
6786 2006-02-13 Martin Rudalics <rudalics@gmx.at>
6787
6788 * info.el (info-xref-visited): Inherit from info-xref too.
6789 (Info-set-mode-line): Replace occurrences of `%' by `%%'
6790 when propertizing Info-current-file and Info-current-node.
6791
6792 2006-02-13 Juri Linkov <juri@jurta.org>
6793
6794 * tumme.el (tumme-thumbnail-storage): Fix docstring.
6795 (tumme-thumb-name): Fix per-directory format.
6796
6797 2006-02-13 Juanma Barranquero <lekktu@gmail.com>
6798
6799 * subr.el (substitute-key-definition): Doc fix (hide internal arg).
6800
6801 2006-02-12 Miles Bader <miles@gnu.org>
6802
6803 * net/rcirc.el (rcirc-format-response-string): Fix small bugs.
6804
6805 2006-02-13 Mathias Dahl <mathias.dahl@gmail.com>
6806
6807 * tumme.el: Remove history section. If someone needs the it, it
6808 can always be found in CVS.
6809
6810 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
6811
6812 * tumme.el (tumme-thumbnail-storage): Update docstring. Add info
6813 about the Thumbnail Managing Standard option.
6814
6815 2006-02-12 Richard M. Stallman <rms@gnu.org>
6816
6817 * subr.el (substitute-key-definition): Doc fix.
6818
6819 * simple.el (blink-matching-paren-dont-ignore-comments): Doc fix.
6820
6821 * files.el (magic-mode-alist): Don't use `\\s ' in regexps.
6822
6823 * info.el (Info-mode): Doc fix.
6824
6825 * progmodes/ebrowse.el (ebrowse-global-prefix-key): Change to C-c C-m.
6826
6827 2006-02-12 Michael Albinus <michael.albinus@gmx.de>
6828
6829 * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
6830 because on Solaris a POSIX compatible "id" is needed. Reported by
6831 Magnus Henoch <mange@freemail.hu>.
6832
6833 2006-02-12 Juri Linkov <juri@jurta.org>
6834
6835 * tumme.el: Remove todo item about Thumbnail Managing Standard.
6836 (tumme) <defgroup>: Change :group to `multimedia'.
6837 (tumme-thumbnail-storage): Add choice `standard' for Thumbnail
6838 Managing Standard.
6839 (tumme-cmd-create-thumbnail-options): Use %w and %h instead of %s.
6840 Fix dostring.
6841 (tumme-cmd-create-temp-image-options): Use %w and %h instead of %x
6842 and %y. Fix docstring.
6843 (tumme-cmd-pngnq-program, tumme-cmd-pngcrush-program)
6844 (tumme-cmd-create-standard-thumbnail-command): New user options.
6845 (tumme-thumb-size): Set default to 128 if tumme-thumbnail-storage
6846 is `standard'. Fix docstring.
6847 (tumme-thumb-width, tumme-thumb-height): New user options.
6848 (tumme-external-viewer): Try to find various viewers.
6849 (tumme-get-thumbnail-image): Use `create-image' instead of
6850 constructing the `image' structure.
6851 (tumme-insert-thumbnail): Use `png' if tumme-thumbnail-storage is
6852 `standard'.
6853 (tumme-thumb-name): Add file name generation for standard storage.
6854 Simplify code for other storages.
6855 (tumme-thumb-name): Use width %w and height %h instead of size %s.
6856 Add modification time %m and thumbnail-nq8 %q.
6857 Use `tumme-cmd-create-standard-thumbnail-command' if
6858 tumme-thumbnail-storage is `standard'.
6859 (tumme-dired-insert-marked-thumbs): New autoload command.
6860 (tumme-dired-after-readin-hook): New function.
6861 (tumme-line-up-dynamic): Use `tumme-thumb-width' instead of
6862 `tumme-thumb-size'.
6863 (tumme-display-image): Replace size-x %x and size-y %y with
6864 width %w and height %h.
6865
6866 * dired.el (dired-mode-map): Bind `\C-t\C-t' to
6867 `tumme-dired-insert-marked-thumbs'.
6868
6869 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
6870
6871 * tumme.el (tumme-write-tag): Fix small bug (file name did not
6872 include path).
6873 (tumme-mark-tagged-files): Fix bug in regexp used to find rows
6874 matching tag.
6875
6876 2006-02-12 Miles Bader <miles@gnu.org>
6877
6878 * net/rcirc.el (rcirc-nick-abbrevs, rcirc-response-formats):
6879 New variables.
6880 (rcirc-abbrev-nick): New function.
6881 (rcirc-format-response-string): Rewrite to use the formats in
6882 `rcirc-response-formats' and expand escape sequences therein.
6883 A text-property `rcirc-text' is added over the actual response
6884 text to make easy to find inside the returned string.
6885 (rcirc-print): When filling, just look for the `rcirc-text'
6886 text-property to find the appropriate fill prefix, instead of
6887 using hardwired patterns.
6888
6889 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
6890
6891 * tumme.el: Enhance some docstrings. Add todo item about Thumbnail
6892 Managing Standard.
6893
6894 2006-02-11 Kim F. Storm <storm@cua.dk>
6895
6896 * ido.el (ido-buffer-internal): Set mark for ido-insert-buffer.
6897 Don't use insert-buffer; do insert-buffer-substring directly.
6898 (ido-file-internal): Set mark for ido-insert-file. Use insert-file-1.
6899
6900 2006-02-11 Martin Rudalics <rudalics@gmx.at>
6901
6902 * files.el (revert-buffer, recover-file): Replace buffer-read-only
6903 with inhibit-read-only. Suggested by Stefan Monnier.
6904 (revert-buffer): Let insert-file-contents discard
6905 buffer-undo-list. Simplify code.
6906 (find-file, find-file-existing, revert-buffer): Doc-string fixes.
6907
6908 2006-02-11 Eli Zaretskii <eliz@gnu.org>
6909
6910 * menu-bar.el (menu-bar-select-yank): Add a doc string.
6911
6912 * help.el (describe-key-briefly): Now a wrapper for
6913 describe-key-briefly-internal. Bind enable-disabled-menus-and-buttons
6914 to t. Populate yank-menu if empty.
6915 (describe-key-briefly-internal): Renamed from describe-key-briefly.
6916 (describe-key): Now a wrapper for describe-key-internal. Bind
6917 enable-disabled-menus-and-buttons to t. Populate yank-menu if empty.
6918 (describe-key-internal): Renamed from describe-key.
6919
6920 2006-02-11 Milan Zamazal <pdm@zamazal.org>
6921
6922 * progmodes/glasses.el (glasses-separator): Doc fix.
6923 (glasses-original-separator): New defcustom.
6924 (glasses-make-readable, glasses-convert-to-unreadable): Use it.
6925
6926 2006-02-11 Martin Rudalics <rudalics@gmx.at>
6927
6928 * mwheel.el (mouse-wheel-up-event): Doc fix.
6929
6930 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
6931
6932 * tumme.el (tumme-dir): Change default value to "~/.emacs.d/tumme/".
6933 (tumme-dir): New function. Copied from thumbs.el.
6934
6935 2006-02-10 Juanma Barranquero <lekktu@gmail.com>
6936
6937 * desktop.el (desktop-outvar): Fix typo.
6938 (desktop-save-buffer-p): Doc fix.
6939
6940 * subr.el (substitute-key-definition): Fix typo.
6941
6942 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6943
6944 * frame.el (select-frame-set-input-focus): Call x-focus-frame also
6945 when window-system is mac.
6946
6947 * term/mac-win.el (fontset-standard): Rename from "fontset-mac".
6948
6949 2006-02-10 Kim F. Storm <storm@cua.dk>
6950
6951 * subr.el (substitute-key-definition-key): Pass t for NOERROR to
6952 indirect-function instead of using condition-case.
6953
6954 2006-02-10 Mathias Dahl <mathias.dahl@gmail.com>
6955
6956 * tumme.el (tumme-copy-with-exif-file-name): Try to make docstring
6957 less `colloquial'...
6958
6959 2006-02-09 Mathias Dahl <mathias.dahl@gmail.com>
6960
6961 * tumme.el: Add a couple of todo items.
6962
6963 2006-02-09 Lars Hansen <larsh@soem.dk>
6964
6965 * hilit-chg.el: Add highlight-changes-mode to desktop-locals-to-save.
6966 (highlight-changes-mode): Don't change desktop-locals-to-save.
6967
6968 2006-02-09 Chong Yidong <cyd@stupidchicken.com>
6969
6970 * image-mode.el (image-toggle-display): Clear image cache if using
6971 filename.
6972
6973 2006-02-09 Masatake YAMATO <jet@gyve.org>
6974
6975 * dired-x.el (dired-guess-shell-alist-default): Add .man as
6976 a `dired-man' target.
6977
6978 * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start
6979 boundary of symbols.
6980
6981 2006-02-08 Peter Doornbosch <peter.doornbosch@luminis.nl> (tiny change)
6982
6983 * vc-svn.el (vc-svn-print-log): Show recent commits as well.
6984
6985 2006-02-09 Juanma Barranquero <lekktu@gmail.com>
6986
6987 * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
6988 `mapcar'; return nil.
6989
6990 2006-02-08 Chong Yidong <cyd@stupidchicken.com>
6991
6992 * mouse.el (mouse-drag-track): Don't change window if we rebind to
6993 some other event.
6994
6995 2006-02-08 Ryan Yeske <rcyeske@gmail.com>
6996
6997 * net/rcirc.el (rcirc-startup-channels-alist):
6998 Add irc.freenode.net and #emacs as defaults.
6999 (rcirc-ignore-all-activity-flag): Remove variable.
7000 (rcirc-authinfo): New variable.
7001 (rcirc-authinfo-filename): Remove variable.
7002 (rcirc-always-use-server-buffer-flag): New flag.
7003 (rcirc): M-x rcirc will automatically connect without prompting.
7004 C-u M-x rcirc will prompt. Use rcirc-connect to create a
7005 connection in lisp.
7006 (rcirc-process-server-response-1): Remove everything but the nick
7007 portion of the sender so it doesn't need to be done everywhere
7008 else. Update related code.
7009 (global-map): Remove global keybindings.
7010 (rcirc-get-buffer-create): Make sure rcirc-topic is set.
7011 (rcirc-send-input): Split into several functions.
7012 (rcirc-process-input-line, rcirc-process-message)
7013 (rcirc-process-command): New functions.
7014 (rcirc-target-buffer): New function to determine where to route
7015 messages.
7016 (rcirc-user-nick): Save match data.
7017 (rcirc-toggle-ignore-buffer-activity)
7018 (rcirc-update-activity-string): Remove global ignore functionality,
7019 which can be done now by toggling rcirc-track-minor-mode.
7020 (rcirc-track-minor-mode-map): New keymap.
7021 (rcirc-track-minor-mode): New minor-mode.
7022 (ignore): Make the ignore output nicer. Always print it when
7023 adding or removing nicks.
7024 (rcirc-url-regexp): Improve.
7025 (rcirc-mangle-text): Remove properties before using text in the
7026 modeline.
7027 (rcirc-authenticate): Authentication data comes from
7028 rcirc-authinfo, not the file pointed to by rcirc-authinfo-file.
7029 (rcirc-server-prefix): Inherit from rcirc-server.
7030
7031 2006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change)
7032
7033 * Makefile.in (compile): Append "|| true" to the end of the `find'
7034 command, like compile-always does.
7035
7036 2006-02-08 Sam Steingold <sds@gnu.org>
7037
7038 * net/tramp.el (tramp-maybe-open-connection): Do not wait for
7039 output from a dead connection.
7040
7041 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
7042
7043 * dired.el (dired-mode-map): Add more bindings for tumme.
7044
7045 2006-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
7046
7047 * wdired.el (wdired-mode-map): Use remap.
7048 (wdired-get-filename): Massage.
7049 (wdired-perm-mode-map): Don't copy bindings from wdired-mode-map.
7050 (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit): Use the
7051 `keymap' property rather than `local-map'.
7052
7053 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
7054
7055 * tumme.el (tumme-get-thumbnail-image): New utility function.
7056 Suggested by from Chong Yidong.
7057 (tumme-dired-with-window-configuration): Rename from
7058 `tumme-dired'. Add code to save window configuration.
7059 (tumme-restore-window-configuration): New command to restore the
7060 window configuration that `tumme-dired-with-window-configuration'
7061 saves before it changes the window configuration.
7062 (tumme-show-all-from-dir): New command to display thumbnails for
7063 all files in a directory entered by the user, like M-x thumbs.
7064 (tumme-display-thumbs): Call `pop-to-buffer' after all thumbnails
7065 have been created.
7066 (tumme-display-thumbnail-original-image): Call `display-buffer'.
7067 (obsolete-tumme-display-thumbnail-original-image-and-buffer):
7068 Remove obsolete test function.
7069
7070 2006-02-07 Juanma Barranquero <lekktu@gmail.com>
7071
7072 * vc.el (small-temporary-file-directory): Remove defvar; there's
7073 a defcustom for it in files.el.
7074
7075 * tumme.el (tumme-get-thumbnail-image): Add missing arg to `error'.
7076 Fix typo in message.
7077 (tumme-gallery-generate): Fix typo in `error' message.
7078 (tumme-display-window-height-correction)
7079 (tumme-display-window-width-correction, tumme-line-up-dynamic)
7080 (tumme-line-up-interactive): Dox fixes.
7081 (tumme-cmd-rotate-original-options, tumme-display-properties-format)
7082 (tumme-restore-window-configuration, tumme-format-properties-string)
7083 (tumme-create-thumbs, tumme-display-previous-thumbnail-original):
7084 Fix typos in docstrings.
7085
7086 2006-02-07 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
7087
7088 * wdired.el (wdired-get-filename): Fix bug: Don't re-normalize OLD.
7089
7090 2006-02-07 Nick Roberts <nickrob@snap.net.nz>
7091
7092 * progmodes/gud.el (gud-tooltip-mode): Remove autoload cookie.
7093 User should use hook if desired.
7094
7095 * progmodes/gdb-ui.el (gdb-post-prompt): Regenerate breakpoints
7096 buffer if necessary.
7097 (gdb-delete-frame-or-window): New function.
7098 (gdb-breakpoints-mode-map): Bind "q" to it.
7099
7100 2006-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
7101
7102 * textmodes/nroff-mode.el: Clean up name space.
7103 (nroff-mode-syntax-table): Remove spurious `1' in the syntax of \n.
7104 (nroff-mode): Obey the global setting of nroff-electric-mode.
7105 (nroff-electric-mode): Use define-minor-mode and derived-mode-p.
7106
7107 * calendar/calendar.el (calendar-increment-month): Typo in last change.
7108
7109 2006-02-06 Thien-Thi Nguyen <ttn@gnu.org>
7110
7111 * vc-svn.el (vc-svn-previous-version, vc-svn-next-version): New funcs.
7112
7113 2006-02-06 Lars Hansen <larsh@soem.dk>
7114
7115 * generic-x.el (etc-fstab-generic-mode): Add file system types
7116 cifs and usbdevfs. Allow special chars in file names.
7117
7118 2006-02-05 Jay Belanger <belanger@truman.edu>
7119
7120 Update copyright notices of the files in lisp/calc.
7121
7122 2006-02-05 Romain Francoise <romain@orebokech.com>
7123
7124 Update copyright notices of all files in the lisp/play directory.
7125
7126 2006-02-04 Luc Teirlinck <teirllm@auburn.edu>
7127
7128 * ldefs-boot.el: Regenerate.
7129
7130 * emacs-lisp/find-func.el (find-definition-noselect): Minor doc fix.
7131
7132 2006-02-05 Kim F. Storm <storm@cua.dk>
7133
7134 * files.el (magic-mode-regexp-match-limit): New defvar.
7135 (set-auto-mode): Use it to limit magic-mode-alist matching.
7136
7137 2006-02-04 Kevin Rodgers <ihs_4664@yahoo.com>
7138
7139 * simple.el (display-message-or-buffer): Compare the number of
7140 characters to the frame width when determining whether a 1-line
7141 message string will fit in the echo area. Count screen lines
7142 instead of buffer lines when determining whether a multi-line
7143 message will fit in the echo area/minibuffer window.
7144
7145 2006-02-04 Eli Zaretskii <eliz@gnu.org>
7146
7147 * info.el (Info-index, Info-mode): Improve the description of the
7148 `i' command.
7149
7150 * ldefs-boot.el: Regenerate.
7151
7152 2006-02-03 Werner Lemberg <wl@gnu.org>
7153
7154 * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
7155 greedy to find the closing bracket in \*[...] and similar
7156 expressions. This is a first rough fix -- many additional
7157 refinements are necessary to make nroff mode really usable with groff.
7158
7159 2006-02-03 Jens Petersen <petersen@redhat.com> (tiny change)
7160
7161 * international/mule-cmds.el (set-locale-environment):
7162 Add "/usr/share/X11/locale/locale.alias" to search list for xorg-x11
7163 libX11.
7164
7165 2006-02-03 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
7166
7167 * arc-mode.el (archive-maybe-copy): Fix the way directories in the
7168 archive are created in archive-tmpdir.
7169
7170 2006-02-02 John Paul Wallington <jpw@pobox.com>
7171
7172 * ibuffer.el (ibuffer-compressed-file-name-regexp): New defcustom.
7173 (ibuffer-fontification-alist): Use it.
7174 (ibuffer-mode-map): Bind `ibuffer-mark-compressed-file-buffers'
7175 to "* z" and the Ibuffer Mark menu.
7176
7177 * ibuf-ext.el (ibuffer-mark-compressed-file-buffers): New command.
7178
7179 2006-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
7180
7181 * textmodes/table.el (*table--cell-describe-mode)
7182 (*table--cell-describe-bindings): Undo last change since
7183 print-help-return-message is not obsoleted by anything at all.
7184
7185 2006-02-02 Luc Teirlinck <teirllm@auburn.edu>
7186
7187 * emulation/cua-base.el (cua-mode): Doc fix.
7188
7189 2006-02-02 Juanma Barranquero <lekktu@gmail.com>
7190
7191 * dframe.el (dframe-handle-make-frame-visible)
7192 (dframe-handle-iconify-frame, dframe-get-focus)
7193 (dframe-select-attached-frame, dframe-power-click)
7194 (dframe-frame-mode): Fix typos in docstrings.
7195
7196 * ezimage.el (ezimage-mail, ezimage-object-out-of-date)
7197 (ezimage-insert-image-button-maybe, ezimage-insert-over-text):
7198 Fix typos in docstrings.
7199
7200 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer)
7201 (hi-lock-face-buffer, hi-lock-font-lock-hook)
7202 (hi-lock-archaic-interface-message-used)
7203 (hi-lock-file-patterns-range): Fix typos in docstrings.
7204
7205 * savehist.el (savehist-loaded, savehist-load, savehist-install)
7206 (savehist-autosave, savehist-trim-history): Fix typos in docstrings.
7207
7208 * mail/mailclient.el (mailclient-place-body-on-clipboard-flag):
7209 Fix typo in docstring.
7210
7211 * net/newsticker.el (newsticker--decode-iso8601-date)
7212 (newsticker--set-customvar, newsticker--buffer-insert-item)
7213 (newsticker--do-run-auto-mark-filter)
7214 (newsticker--parse-generic-feed): Doc fixes.
7215 (newsticker--retrieval-timer-list, newsticker-url-list)
7216 (newsticker-hide-immortal-items-in-echo-area)
7217 (newsticker-hide-obsolete-items-in-echo-area)
7218 (newsticker-new-item-face, newsticker--enclosure)
7219 (newsticker-buffer-update, newsticker-w3m-show-inline-images)
7220 (newsticker--parse-atom-0.3, newsticker--parse-rss-1.0)
7221 (newsticker--parse-generic-feed, newsticker--cache-contains)
7222 (newsticker--stat-num-items, newsticker-download-enclosures):
7223 Fix typos in docstrings.
7224
7225 * net/rcirc.el (rcirc-debug): Doc fix.
7226 (rcirc-fill-column, rcirc-receive-message-hooks)
7227 (rcirc-browse-url-map, rcirc-read-only-flag, rcirc-prompt)
7228 (rcirc-mode, rcirc-generate-new-buffer-name)
7229 (rcirc-startup-channels, rcirc-ignore-update-automatic)
7230 (rcirc-cmd-ignore, rcirc-browse-url, rcirc-url-regexp):
7231 Fix typos in docstrings.
7232 (rcirc-print): "?\ " -> "?\s".
7233 (rcirc-cmd-join): Improve argument/docstring consistency.
7234
7235 2006-02-01 Mark A. Hershberger <mah@everybody.org>
7236
7237 * xml.el (xml-parse-region): Move save-excursion and set-buffer up
7238 before narrow-to-region.
7239
7240 2006-02-01 Richard M. Stallman <rms@gnu.org>
7241
7242 * simple.el (move-beginning-of-line): Scan properly for invis change.
7243
7244 * replace.el (multi-occur-in-matching-buffers): Fix prev change.
7245
7246 2006-02-01 Michael Albinus <michael.albinus@gmx.de>
7247
7248 * net/tramp.el (tramp-convert-file-attributes): Set file's gid
7249 change bit only when id-format is 'integer. Reported by Matt
7250 Hodges <M.P.Hodges@rl.ac.uk>.
7251
7252 2006-02-01 Juanma Barranquero <lekktu@gmail.com>
7253
7254 * hilit-chg.el (highlight-changes-initial-state)
7255 (highlight-changes-global-initial-state): Doc fixes.
7256 (highlight-changes-global-modes, global-highlight-changes):
7257 Fix typos in docstrings.
7258
7259 2006-02-01 Kim F. Storm <storm@cua.dk>
7260
7261 * emulation/cua-base.el (cua-mode): Mention that CUA enables
7262 transient-mark-mode in doc string.
7263
7264 2006-01-31 Richard M. Stallman <rms@gnu.org>
7265
7266 * replace.el (multi-occur): Doc fix.
7267 (multi-occur-in-matching-buffers): Rename from
7268 multi-occur-by-filename-regexp. Prefix arg says match
7269 buffer names instead of file names.
7270
7271 2006-01-31 Juanma Barranquero <lekktu@gmail.com>
7272
7273 * bs.el: Allow non-default values of `bs-header-lines-length'.
7274 (bs--running-in-xemacs): Remove (not needed anymore).
7275 (bs--set-window-height): Simplify by using `fit-window-to-buffer'
7276 instead of `shrink-window', thus avoiding having to compute the
7277 height of the window.
7278 (bs--up): Wrap around even when there's no header.
7279 (bs--down): Use `forward-line' instead of `next-line'.
7280
7281 2006-01-30 Chong Yidong <cyd@stupidchicken.com>
7282
7283 * image-mode.el (image-toggle-display): Use file name if possible,
7284 instead of unnecessarily allocating a (possibly huge) lisp string.
7285
7286 2006-01-30 John Paul Wallington <jpw@pobox.com>
7287
7288 * subr.el (toplevel): Define `cl-assertion-failed' condition here
7289 because the `assert' macro signals it at runtime.
7290
7291 * emacs-lisp/cl.el (toplevel): Remove definition of
7292 `cl-assertion-failed' condition.
7293
7294 2006-01-30 Nick Roberts <nickrob@snap.net.nz>
7295
7296 * thumbs.el (thumbs-marked-list): Make buffer-local and
7297 permanent-local.
7298 (thumbs-insert-thumb): Make help-echo non-sticky.
7299 (thumbs-file-alist): Use eolp as check for (non)-image.
7300
7301 2006-01-30 Juanma Barranquero <lekktu@gmail.com>
7302
7303 * ediff-mult.el (ediff-meta-buffer-keymap-setup-hook)
7304 (ediff-before-session-group-setup-hooks)
7305 (ediff-default-filtering-regexp, ediff-meta-mark-equal-files):
7306 Fix typos in docstrings.
7307
7308 * window.el (bw-dir, bw-eqdir, balance-windows)
7309 (split-window-keep-point): Fix typos in docstrings.
7310
7311 * textmodes/org.el (org-allow-space-in-links, org-closed-string)
7312 (org-quote-string, org-calendar-to-agenda-key)
7313 (org-agenda-sorting-strategy, org-agenda-use-time-grid)
7314 (org-show-following-heading, org-tags-column)
7315 (org-use-tag-inheritance, org, org-allow-space-in-links)
7316 (org-usenet-links-prefer-google, org-file-apps-defaults-gnu)
7317 (org-enable-table-editor, org-calc-default-modes)
7318 (org-table-allow-automatic-line-recalculation)
7319 (org-export-html-style, org-export-with-fixed-width)
7320 (org-export-with-sub-superscripts, org-special-keyword)
7321 (org-formula, org-time-grid, org-table-may-need-update)
7322 (org-mode, org-goto-ret, org-goto-left, org-goto-right)
7323 (org-goto-quit, org-get-indentation, org-end-of-item)
7324 (org-move-item-down, org-move-item-up)
7325 (org-renumber-ordered-list, org-todo, org-log-done, org-occur)
7326 (org-remove-occur-highlights, org-read-date, org-goto-calendar)
7327 (org-agenda, org-agenda-day-view, org-agenda-previous-date-line)
7328 (org-agenda-log-mode, org-agenda-toggle-diary)
7329 (org-agenda-toggle-time-grid, org-agenda-cleanup-fancy-diary)
7330 (org-agenda-file-to-end, org-agenda-no-heading-message)
7331 (org-agenda-get-closed, org-format-agenda-item)
7332 (org-cmp-priority, org-cmp-category, org-cmp-time)
7333 (org-agenda-change-all-lines, org-agenda-diary-entry)
7334 (org-scan-tags, org-after-todo-state-change-hook, org-tags-view)
7335 (org-link-search, org-camel-to-words, org-open-file)
7336 (org-remember-handler, org-table-convert-region)
7337 (org-table-move-row-down, org-table-move-row-up)
7338 (org-table-copy-region, org-table-wrap-region)
7339 (org-table-toggle-vline-visibility)
7340 (org-table-get-vertical-vector, org-table-modify-formulas)
7341 (org-table-get-specials, org-recalc-commands)
7342 (org-table-rotate-recalc-marks, org-table-eval-formula)
7343 (orgtbl-make-binding, org-in-invisibility-spec-p, org-cycle)
7344 (org-level-color-stars-only, org-insert-heading):
7345 Fix typos in docstrings.
7346 (last-arg): Add defvar.
7347
7348 * makefile.w32-in (WINS): Add erc.
7349 (MH_E_SRC): Update (copied from lisp/Makefile.in).
7350
7351 2006-01-29 Bill Wohler <wohler@newt.com>
7352
7353 * Makefile.in (MH_E_SRC): Add mh-compat.el, mh-folder.el,
7354 mh-letter.el, mh-limit.el, mh-scan.el, mh-show.el, mh-thread.el,
7355 mh-tool-bar.el, mh-xface.el. Remove mh-customize.el, mh-init.el.
7356 (mh-autoloads): Don't use comments on otherwise empty lines.
7357
7358 2006-01-29 Edward O'Connor <ted@oconnor.cx>
7359
7360 * emulation/viper.el (viper-major-mode-modifier-list): Add
7361 insert-state and vi-state entries for erc-mode.
7362 (viper-go-away, viper-set-hooks): Add and remove
7363 viper-comint-mode-hook from erc-mode-hook as appropriate.
7364
7365 * emulation/viper.el (viper-insert-state-mode-list): Add erc-mode.
7366
7367 2006-01-29 Juanma Barranquero <lekktu@gmail.com>
7368
7369 * bs.el (bs--format-aux): Implement `middle' alignment as
7370 described in the docstring for `bs-attributes-list'.
7371 (bs--get-name): Simplify. Don't pad the buffer name.
7372
7373 2006-01-27 Agustin Martin <agustin.martin@hispalinux.es>
7374
7375 * textmodes/ispell.el (ispell-find-aspell-dictionaries): If no
7376 English aspell dictionary is installed, use the first entry of
7377 ispell-dictionary-alist-1.
7378
7379 2006-01-27 Kevin Rodgers <ihs_4664@yahoo.com>
7380
7381 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
7382 Doc fix.
7383
7384 2006-01-27 Michael Albinus <michael.albinus@gmx.de>
7385
7386 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
7387 for `process-file', in order to let it work for older Emacsen too.
7388
7389 2006-01-27 Eli Zaretskii <eliz@gnu.org>
7390
7391 * international/latexenc.el: Add a suitable `coding:' tag.
7392 (latexenc-find-file-coding-system): Undo last change.
7393
7394 2006-01-27 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
7395
7396 * international/latexenc.el (latexenc-find-file-coding-system):
7397 Make sure latexenc-main-file is a regular file and is readable.
7398
7399 2006-01-27 Andre Spiegel <spiegel@gnu.org>
7400
7401 * vc-rcs.el (vc-rcs-fetch-master-state, vc-rcs-consult-headers):
7402 Pass FILE to vc-user-login-name.
7403
7404 * vc-sccs.el (vc-sccs-state): Pass FILE to vc-user-login-name.
7405
7406 2006-01-27 Nick Roberts <nickrob@snap.net.nz>
7407
7408 * thumbs.el (thumbs-do-thumbs-insertion): Suppress message when
7409 there are no more images to display.
7410 (thumbs-mark, thumbs-unmark): Revert change so that they move to
7411 the next image.
7412
7413 2006-01-26 Richard M. Stallman <rms@gnu.org>
7414
7415 * cus-edit.el (custom-mode): Doc: Use advertised-widget-backward.
7416
7417 * wid-edit.el (advertised-widget-backward): New alias.
7418 (widget-keymap): Use advertised-widget-backward for S-TAB.
7419
7420 * tumme.el: Correct the keywords.
7421 (tumme-dir-max-size): Use defvar.
7422 (tumme-setup-dired-keybindings, tumme-dired): Add autoload cookie.
7423
7424 * simple.el (move-beginning-of-line): Take account of fields.
7425 (clone-indirect-buffer-other-window): Take args like
7426 clone-indirect-buffer, and work like it.
7427
7428 * help-fns.el (describe-function): Don't pass `nil' as default.
7429
7430 * files.el (risky-local-variable-p): Follow var aliases.
7431
7432 * subr.el (lazy-completion-table): Doc fix.
7433
7434 * mail/rmailsum.el (rmail-make-summary-line-1): Don't set
7435 global binding of `line'.
7436
7437 2006-01-25 Andre Spiegel <spiegel@gnu.org>
7438
7439 * vc-hooks.el (vc-user-login-name): Rewritten to handle access via
7440 Tramp.
7441
7442 * vc.el (vc-default-dired-state-info): Pass FILE to
7443 vc-user-login-name.
7444 (vc-default-update-changelog): Don't use vc-user-login-name, we
7445 don't need it here.
7446
7447 * net/tramp-vc.el (vc-user-login-name): Comment out defadvice, it is
7448 no longer necessary.
7449
7450 2006-01-25 Kenichi Handa <handa@m17n.org>
7451
7452 * international/mule.el (decode-char): Avoid the overhead of
7453 calling utf-lookup-subst-table-for-decode if
7454 utf-translate-cjk-mode is nil.
7455 (encode-char): Avoid the overhead of calling
7456 utf-lookup-subst-table-for-encode if utf-translate-cjk-mode is
7457 nil.
7458
7459 2006-01-22 Kenichi Handa <handa@m17n.org>
7460
7461 * international/mule.el (make-subsidiary-coding-system): Reset
7462 `coding-system-define-form' property of subsidiaries to nil.
7463 Avoid duplicated entry in coding-system-alist.
7464 (make-coding-system): Avoid duplicated entry in
7465 coding-system-alist.
7466 (define-coding-system-alias): Likewise.
7467
7468 2006-01-24 Luc Teirlinck <teirllm@auburn.edu>
7469
7470 * completion.el: Minor fixes in introductory comment.
7471 (completion-def-wrapper): Fix alist.
7472
7473 2006-01-25 Nick Roberts <nickrob@snap.net.nz>
7474
7475 * thumbs.el (thumbs-new-image-size): New function.
7476 (thumbs-increment-image-size-element)
7477 (thumbs-decrement-image-size-element, thumbs-increment-image-size)
7478 (thumbs-decrement-image-size): Delete.
7479 (thumbs-resize-image-1): Rename from thumbs-resize-image. Keep old
7480 temp files and use to resize.
7481 (thumbs-resize-image): Rename from thumbs-resize-image-interactive.
7482 Use increment argument to enlarge/shrink. Preserve point.
7483 (thumbs-shrink-image): Rename from thumbs-resize-image-size-down.
7484 (thumbs-enlarge-image): Rename from thumbs-resize-image-size-up
7485 (thumbs-show-thumbs-list): Set thumbs-buffer to current-buffer.
7486 (thumbs-mark, thumbs-unmark): Preserve point.
7487 (thumbs-modify-image): Keep old temp files and use to modify.
7488 Cleanup old temp files at load time. Preserve point.
7489 (thumbs-view-image-mode-map): Use new command names.
7490
7491 2006-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
7492
7493 * log-view.el (log-view-minor-wrap): First rev is the one at point.
7494
7495 * calendar/cal-menu.el: Avoid macros from calendar.el so as to break
7496 the nastiest part of the cyclic dependency.
7497 (cal-menu-update): Use dotimes and calendar-increment-month.
7498
7499 * calendar/calendar.el: Remove unnecessary leading stars in docstrings.
7500 (calendar-week-start-day): Add an :initializer.
7501 (calendar-mode-map): Use suppress-keymap, and command remapping.
7502 (describe-calendar-mode): Setup xref-stack info for the back button.
7503 (calendar-star-date): Insert before delete.
7504 (calendar-set-mode-line): Add file-modified info if applicable.
7505 (calendar-increment-month): New function.
7506
7507 2006-01-24 Tobias C. Rittweiler <tcr@freebits.de> (tiny change)
7508
7509 * font-lock.el (lisp-font-lock-keywords-2):
7510 Recognize "& keywords" only at word boundaries.
7511
7512 2006-01-24 Nick Roberts <nickrob@snap.net.nz>
7513
7514 * thumbs.el (thumbs-extra-images): New variable. Make it buffer-local
7515 and permanent-local.
7516 (thumbs-max-image-number): New variable.
7517 (thumbs-do-thumbs-insertion): Use them.
7518 (thumbs-per-line): Change default to 4.
7519 (thumbs-marked-list): Rename from thumbs-markedL.
7520 (thumbs-cleanup-thumbsdir, thumbs-delete-images)
7521 (thumbs-rename-images): Use -list instead of L for internal variables.
7522 (thumbs-call-convert): Use call-process instead of shell-command.
7523 (thumbs-insert-thumb): Add filename as help-echo to each image.
7524 (thumbs-show-from-dir): Rename from thumbs-show-all-from-dir.
7525 Give dir to thumbs-show-thumbs-list.
7526 (thumbs-show-thumbs-list): Set default-directory to that of images.
7527 (thumbs-dired-show): Rename from thumbs-dired-show-all.
7528 (thumbs-display-thumbs-buffer, thumbs-show-more-images): New functions.
7529 (thumbs-mode-map): Bind "+" to thumbs-show-more-images.
7530 (thumbs-view-image-mode-map): Bind "^" to thumbs-display-thumbs-buffer.
7531
7532 2006-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
7533
7534 * ses.el (ses-read-cell): Provide a default value.
7535
7536 2006-01-23 Juanma Barranquero <lekktu@gmail.com>
7537
7538 * term/w32-win.el (image-library-alist): Add additional names for
7539 GIF library.
7540
7541 2006-01-23 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
7542
7543 * international/latexenc.el (latexenc-find-file-coding-system):
7544 Add file-regular-p check.
7545
7546 2006-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
7547
7548 * simple.el (clone-buffer): Don't show the new buffer in the same
7549 window.
7550
7551 2006-01-23 Juri Linkov <juri@jurta.org>
7552
7553 * faces.el (link, link-visited): New faces based on default values
7554 of `info-xref' and `info-xref-visited'.
7555
7556 * info.el (info-xref): Inherit from `link'.
7557 (info-xref-visited): Inherit from `link-visited'.
7558
7559 * cus-edit.el (custom-buffer-create-internal): Use widget type
7560 `custom-manual' instead of `info-link' and don't set properties
7561 `button-face' and `mouse-face' explicitly.
7562 (custom-browse-group-tag, custom-browse-variable-tag)
7563 (custom-browse-face-tag): Inherit from widget class
7564 `custom-group-link' instead of `push-button'.
7565 (custom-button-unraised): Inherit from `underline' face.
7566 (custom-link): Inherit from `link' face. Fix doc and group.
7567 (custom-add-parent-links, custom-group-value-create): Don't set
7568 properties `button-face' and `mouse-face' explicitly for
7569 `custom-group-link' widget.
7570 (custom-group-link): Add properties `button-face' and `mouse-face'
7571 to widget definition.
7572 (custom-field-keymap): New variable. Put `custom-field-keymap' to
7573 editable-field's :keymap property.
7574 (custom-mode): Fix docstring: substitute keybindings for
7575 `widget-forward' and `widget-backward' from `widget-keymap',
7576 `widget-complete' from `custom-field-keymap', replace old
7577 `Custom-move-and-invoke' with `widget-move-and-invoke'. Untabify.
7578
7579 * desktop.el (desktop-load-file): Check for `fboundp' before
7580 calling `symbol-function'.
7581
7582 * simple.el (clone-buffer, clone-indirect-buffer)
7583 (clone-indirect-buffer-other-window): Use `read-buffer' instead of
7584 `read-string'. Fix prompts.
7585
7586 * play/doctor.el (doctor-mode-map): Rename from `doc-mode-map'.
7587
7588 2006-01-23 Nick Roberts <nickrob@snap.net.nz>
7589
7590 * thumbs.el (thumbs-file-alist): Avoid creating duplicate entries.
7591
7592 2006-01-22 Luc Teirlinck <teirllm@auburn.edu>
7593
7594 * startup.el (inhibit-splash-screen, initial-scratch-message):
7595 Doc fixes.
7596
7597 2006-01-22 Michael Albinus <michael.albinus@gmx.de>
7598
7599 Sync with Tramp 2.0.52.
7600
7601 * net/tramp.el, net/tramp-ftp.el, net/tramp-util.el,
7602 net/tramp-vc.el: Add code for unloading Tramp. See comment before
7603 `tramp-unload-tramp' for checklist.
7604
7605 * net/tramp.el: Require `timer-funcs' instead of `timer' if in
7606 XEmacs. Contributed by Steve Youngs <steve@sxemacs.org>.
7607 (tramp-unload-file-name-handler-alist)
7608 (tramp-unload-tramp): New defuns.
7609 (tramp-advice-PC-expand-many-files): New defadvice.
7610 (tramp-save-PC-expand-many-files, tramp-setup-complete) Defuns
7611 removed.
7612 (tramp-handle-expand-file-name): Remove double slash.
7613 (tramp-handle-file-attributes-with-ls): Return t as 9th attribute.
7614 It doesn't matter, because it will be converted later on.
7615 (tramp-handle-file-ownership-preserved-p): Rewritten. The old
7616 implementation was just heuristic.
7617 (tramp-post-connection): Set uid and gid properties.
7618 (tramp-convert-file-attributes): Set file's gid change bit.
7619 (tramp-get-remote-uid, tramp-get-remote-gid): New defuns.
7620 (tramp-handle-expand-file-name): Use "~root" for tilde expansion
7621 in case of su(do)? methods. The home directory of the local user
7622 will be taken else.
7623 (tramp-open-connection-telnet)
7624 (tramp-open-connection-rsh, tramp-open-connection-su)
7625 (tramp-open-connection-multi): Set PS1 to "$ ". Otherwise, a
7626 local shell prompt could hurt. Reported by Romain Francoise
7627 <romain@orebokech.com>.
7628 (tramp-let-maybe): Add `edebug-form-spec' property.
7629 (tramp-handle-expand-file-name): Bind `default-directory' locally
7630 to "/" in order to avoid problems with UNC shares or Cygwin
7631 mounts.
7632 (tramp-md5-function): Fix typo in error message.
7633
7634 * net/tramp-ftp.el (tramp-ftp-enable-ange-ftp): New defun.
7635
7636 * net/tramp-util.el (top): Apply `ignore' instead of `identity'
7637 for byte-compiler pacification.
7638
7639 2006-01-22 Andre Spiegel <spiegel@gnu.org>
7640
7641 * vc-rcs.el (vc-rcs-state-heuristic): Use file-attributes with
7642 ID-FORMAT `string'. This allows us to get rid of
7643 `vc-user-login-name UID'.
7644
7645 * vc-sccs.el (vc-sccs-state-heuristic): Likewise.
7646
7647 2006-01-22 John Paul Wallington <jpw@pobox.com>
7648
7649 * hl-line.el (hl-line-highlight, hl-line-move): Doc fixes.
7650
7651 2006-01-21 Martin Rudalics <rudalics@gmx.at>
7652
7653 * emacs-lisp/find-func.el (find-definition-noselect)
7654 (find-variable-noselect): Search variables in C source code too.
7655 (find-function-C-source, find-function-noselect, find-function)
7656 (find-function-other-frame, find-variable-noselect, find-variable)
7657 (find-variable-other-frame, find-variable-at-point):
7658 Fix docstrings.
7659
7660 2006-01-21 Francesco Potorti` <pot@gnu.org>
7661
7662 * mail/rmailout.el (rmail-output): Don't use content-type if it is nil.
7663
7664 2006-01-21 Agustin Martin <agustin.martin@hispalinux.es>
7665
7666 * textmodes/flyspell.el (flyspell-emacs-popup, flypell-xemacs-popup):
7667 Default to disabling the "Save affix" question.
7668
7669 2006-01-21 Marien Zwart <marienz@gentoo.org> (tiny change)
7670
7671 * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as
7672 the first arg to run-python.
7673
7674 2006-01-21 Eli Zaretskii <eliz@gnu.org>
7675
7676 * startup.el (command-line-1): Handle --no-desktop if desktop.el
7677 is not loaded.
7678
7679 2006-01-20 Jay Belanger <belanger@truman.edu>
7680
7681 * calc/calcalg2.el (calc-sum-rec): Fix the sum when the lower
7682 limit is 0.
7683
7684 * calc/calc-arith.el (math-add-symb-fancy): Check the length of
7685 the correct variable.
7686
7687 2006-01-20 Carsten Dominik <dominik@science.uva.nl>
7688
7689 * textmodes/org.el (org-open-at-point): Fixed bug with matching a
7690 link. Fixed buggy argument sequence in call to `org-view-tags'.
7691 (org-compile-prefix-format): Set `org-prefix-has-tag'.
7692 (org-prefix-has-tag): New variable.
7693 (org-format-agenda-item): Remove tags from headline if
7694 appropriate.
7695 (org-agenda-remove-tags-when-in-prefix): New option.
7696 (org-get-tags-at): New function.
7697
7698 2006-01-20 Nick Roberts <nickrob@snap.net.nz>
7699
7700 * thumbs.el (thumbs-buffer): New variable. Make it buffer local.
7701 (thumbs-find-image): Move image name and number from buffer name
7702 to mode name. Set thumbs-buffer. Preserve point so that large
7703 images remain visible.
7704 (thumbs-file-alist): Construct list in thumbs-buffer and reverse
7705 order.
7706 (thumbs-show-image-num): Get image from thumbs-file-alist. Set
7707 mode name.
7708 (thumbs-next-image, thumbs-previous-image): Make them work.
7709
7710 2006-01-19 Luc Teirlinck <teirllm@auburn.edu>
7711
7712 * cus-edit.el (custom-buffer-create-internal): State in the text above
7713 the whole buffer buttons that they do not operate on hidden items.
7714 (custom-face-menu): Use `custom-face-save' instead of
7715 `custom-face-save-command'.
7716 (custom-face-save-command): Make it an alias for `custom-face-save'
7717 and declare it obsolete.
7718 (custom-face-save): Doc fix.
7719
7720 * dired.el (dired-no-confirm): Add quote.
7721 (dired-subdir-alist-pre-R): Add quote in
7722 `make-variable-buffer-local' form and remove unbalanced parenthesis.
7723
7724 2006-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
7725
7726 * textmodes/table.el (table-mode-indicator): Typo in last change.
7727
7728 2006-01-19 Richard M. Stallman <rms@gnu.org>
7729
7730 * outline.el (hide-leaves): Don't call outline-end-of-heading.
7731 Fixes bug reported in Nov 2005.
7732
7733 * isearch.el (isearch-forward): Doc fix.
7734
7735 * dired.el (dired-move-to-filename-regexp): Define as alias.
7736 (dired-no-confirm): Use defcustom.
7737 (dired-subdir-alist-pre-R): Put defvar at top level.
7738
7739 * battery.el (battery-linux-proc-acpi): Handle "last full capacity".
7740
7741 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
7742 Mark as risky.
7743
7744 * simple.el (set-mark-command): Doc fix.
7745 (clone-indirect-buffer-other-window):
7746 Read arg like clone-indirect-buffer.
7747 (move-beginning-of-line): Skip invisible newlines.
7748
7749 2006-01-19 Masatake YAMATO <jet@gyve.org>
7750
7751 * progmodes/cpp.el (cpp-edit-load): Make the order of
7752 listed conditions in a base C code buffer and its associate
7753 CPP Edit buffer the same.
7754
7755 2006-01-19 Kenichi Handa <handa@m17n.org>
7756
7757 * mail/rmail.el (rmail-enable-mime): Docstring fixed.
7758 (rmail-mime-feature): Likewise.
7759 (rmail-require-mime-maybe): Use display-warning to show a warning
7760 message.
7761
7762 * international/mule.el (auto-coding-regexp-alist-lookup): New fun.
7763 (find-auto-coding): Use auto-coding-regexp-alist-lookup.
7764
7765 2006-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
7766
7767 * array.el: Move defvars out of eval-when-compile.
7768 (array-make-template): Replace undeclared global var with a local one.
7769 (array-mode): Inline initialization functions.
7770 (array-init-local-variables, array-init-max-row)
7771 (array-init-max-column, array-init-columns-per-line)
7772 (array-init-field-width, array-init-rows-numbered)
7773 (array-init-line-length, array-init-lines-per-row): Remove.
7774
7775 * play/doctor.el: Move defvars out of eval-when-compile. Use dolist.
7776 (doc-mode-map): Define explicitly.
7777 (doctor-txtype): Use mapc.
7778
7779 * textmodes/table.el: Move defvars out of eval-when-compile.
7780 Remove harmful code meant to avoid byte-compiler warnings.
7781 (table-fixed-mode-indicator): Remove. Use a more complex mode-line
7782 specification that checks table-fixed-width-mode directly.
7783 (table-recognize-region, table-recognize-cell):
7784 Use restore-buffer-modified-p.
7785 (table-fixed-width-mode): Remove code that refreshes
7786 table-fixed-mode-indicator.
7787 (*table--cell-describe-bindings, *table--cell-describe-mode):
7788 Avoid obsolete name print-help-return-message.
7789 (table--test-cell-list): Don't use replace-regexp from elisp.
7790 (table--point-entered-cell-function, table--point-left-cell-function):
7791 Don't set table-fixed-mode-indicator, use force-mode-line-update.
7792
7793 * textmodes/org.el: Move defvars out of eval-when-compile. Move code
7794 that was after the end of file. Use buffer-file-name variable.
7795 (org-timestamp-change): Use with-current-buffer.
7796 (org-todo-list): Don't unnecessarily define a new buffer-local var.
7797 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused arg
7798 `file'.
7799
7800 * progmodes/fortran.el: Move defvars out of eval-when-compile.
7801 (fortran-break-line): Remove unused var `opoint'.
7802 (fortran-abbrev-start): Obey help-event-list.
7803
7804 2006-01-18 Jesper Harder <harder@phys.au.dk>
7805
7806 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring.
7807
7808 2006-01-18 Masatake YAMATO <jet@gyve.org>
7809
7810 * progmodes/make-mode.el (makefile-imake-mode): New mode
7811 derived from makefile-mode.
7812 (makefile-imake-mode-syntax-table): New syntax table
7813 derived from makefile-mode-syntax-table.
7814 (makefile-mode): Write about makefile-imake-mode in doc string.
7815 (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode.
7816 (makefile-imake-font-lock-keywords): New font lock keywords.
7817
7818 * files.el (auto-mode-alist): Add Imakefile.
7819
7820 2006-01-17 Agustin Martin <agustin.martin@hispalinux.es>
7821
7822 * textmodes/flyspell.el (ispell-kill-ispell-hook): Add to the hook when
7823 loading the file rather than when turning on flyspell-mode.
7824
7825 2006-01-16 Luc Teirlinck <teirllm@auburn.edu>
7826
7827 * cus-edit.el (customize-rogue): Minor doc fix.
7828
7829 2006-01-17 Juri Linkov <juri@jurta.org>
7830
7831 * dired-aux.el (dired-diff): Use dired-dwim-target-directory
7832 instead of the file at the mark as default if the file at the mark
7833 is the same as the file at point or if dired-dwim-target-directory
7834 is not the same as the current directory and the mark is not active.
7835
7836 * log-view.el (log-view-minor-wrap): Use the same logic to get
7837 revisions as `log-view-diff'.
7838
7839 * info.el (Info-revert-find-node): Check for Info-current-file
7840 before preserving new-history.
7841
7842 * man.el (Man-heading-regexp): Add `/'.
7843
7844 * textmodes/sgml-mode.el: Add `coding: iso-2022-7bit' cookie.
7845 (html-mode): Set `sentence-end-base' instead of `sentence-end'.
7846
7847 2006-01-16 Juri Linkov <juri@jurta.org>
7848
7849 * faces.el (mode-line-faces): New defgroup.
7850 (mode-line-highlight): Move definition after new defgroup.
7851 (mode-line, mode-line-inactive, mode-line-highlight):
7852 Replace :group `modeline' with `mode-line-faces'.
7853 (mode-line-buffer-id): New face.
7854 (modeline-buffer-id): New face alias.
7855 (vertical-border): Remove :group `modeline'.
7856
7857 * bindings.el (propertized-buffer-identification): Use face
7858 `mode-line-buffer-id' instead of `Buffer-menu-buffer'.
7859 (mode-line-next-buffer, mode-line-previous-buffer): New functions.
7860 (mode-line-buffer-identification-keymap): For mouse-1 replace
7861 `mode-line-unbury-buffer' with `mode-line-previous-buffer'.
7862 Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for
7863 mouse-3.
7864
7865 * buff-menu.el (buffer-menu-buffer) <defface>: Renamed from
7866 Buffer-menu-buffer. Doc fix.
7867 (Buffer-menu-buffer): Face alias to buffer-menu-buffer.
7868 (list-buffers-noselect): Use `buffer-menu-buffer' face instead of
7869 `Buffer-menu-buffer'.
7870
7871 * info.el (Info-mode-line-node-keymap): New defvar.
7872 (Info-set-mode-line): Use `stringp' to check Info-current-file.
7873 Propertize Info-current-node with `mode-line-buffer-id' and
7874 `mode-line-highlight' faces and `Info-mode-line-node-keymap'.
7875
7876 * time.el (display-time-mail-face): Replace :group `faces' with
7877 `mode-line-faces'.
7878
7879 2006-01-16 Kenichi Handa <handa@m17n.org>
7880
7881 * international/code-pages.el: Add autoload cookies for cp125[0345678].
7882
7883 * language/european.el (cp1252): New alias for windows-1252.
7884
7885 * international/mule.el (autoload-coding-system): Prepare for EOL
7886 variants.
7887
7888 2006-01-15 Dan Nicolaescu <dann@ics.uci.edu>
7889
7890 * term.el (term-raw-map): Add mapping for insert.
7891 (term-send-insert): New.
7892 (term-mode): Make variables local here instead of doing it in
7893 `term-emulate-terminal'.
7894 (term-emulate-terminal): Delete incorrect optimization for cr+lf.
7895 Scroll reverse needs to take into account the scroll region.
7896 Saving and restoring the cursor should save the color attributes too.
7897 (term-reset-terminal): Reset the scroll region.
7898 (term-handle-ansi-escape): Cursor up and down should take into
7899 account the scroll region.
7900 (term-set-scroll-region): Rename from `term-scroll-region'.
7901 Move to 0,0 after setting the region.
7902 (term-handle-scroll): Handle scroll up.
7903 (term-down): Fix off by one error.
7904 (term-delete-lines): Do not delete outside the scroll region.
7905 (term-insert-lines): Take into account the scroll region.
7906
7907 2006-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
7908
7909 * textmodes/ispell.el (ispell-internal-change-dictionary)
7910 (ispell-change-dictionary): Undo most of last change of 2006-01-13.
7911 (start, end): Move declaration outside of eval-when-compile.
7912
7913 * textmodes/flyspell.el (flyspell-kill-ispell-hook): New fun.
7914 (flyspell-mode-on): Use it.
7915
7916 * textmodes/ispell.el (ispell-kill-ispell): Run new hook
7917 ispell-kill-ispell-hook.
7918
7919 2006-01-14 Luc Teirlinck <teirllm@auburn.edu>
7920
7921 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
7922 (Custom-reset-saved): Do not ask for confirmation in single option
7923 buffers.
7924
7925 2006-01-13 Richard M. Stallman <rms@gnu.org>
7926
7927 * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement.
7928
7929 2006-01-13 Romain Francoise <romain@orebokech.com>
7930
7931 * add-log.el (add-change-log-entry, change-log-merge):
7932 Conditionally use `hard-newline'.
7933
7934 2006-01-13 Martin Rudalics <rudalics@gmx.at>
7935
7936 * wid-edit.el (widget-field-end): If the overlay is no longer
7937 associated with a buffer, behave as if the overlay didn't exist.
7938
7939 * cus-edit.el (custom-add-see-also, custom-add-parent-links):
7940 Make sure the links use the `custom-link' face.
7941
7942 2006-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
7943
7944 * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
7945 (ld-script-mode): Don't set indent-line-function since we don't
7946 have one.
7947
7948 2006-01-13 Carsten Dominik <dominik@science.uva.nl>
7949
7950 * textmodes/org.el (org-open-file): Use mailcap for selecting an
7951 application.
7952 (org-file-apps-defaults-gnu): Use mailcap as the default for
7953 selecting an application on a UNIX system.
7954 (org-agenda-show-tags): New command.
7955 (org-table-insert-hline): Keep cursor in current table line.
7956 (org-table-convert): Offset effect of modifying
7957 `org-table-insert-hline'.
7958 (org-format-agenda-item): New optional argument TAG.
7959 (org-compile-prefix-format): Handle %T format for the tag.
7960 (org-expand-wide-chars): New function.
7961 (org-table-insert-row, org-table-insert-hline):
7962 Use `org-expand-wide-chars'.
7963 (org-open-file): Fix bug in program launch.
7964 (org-get-time-of-day): Fix bug with times before 1am.
7965 (org-agenda-menu): Add tags commands.
7966
7967 2006-01-13 Agustin Martin <agustin.martin@hispalinux.es>
7968
7969 * textmodes/ispell.el (ispell-init-process): Include the used
7970 dictionary in ispell process start message.
7971 (ispell-internal-change-dictionary): When flyspell-mode is active
7972 and dictionary is changed, make sure ispell process is restarted
7973 and flyspell word cache cleared out for the current buffer.
7974 (ispell-change-dictionary): Make sure flyspell word cache is
7975 cleared out in all buffers with active flyspell mode when
7976 dictionary is globally changed.
7977 Call ispell-internal-change-dictionary after dictionary change.
7978
7979 2006-01-13 Eli Zaretskii <eliz@gnu.org>
7980
7981 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
7982
7983 * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in.
7984 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright
7985 years. Fix small differences wrt Makefile.in.
7986 (recompile): Use --eval '(batch-byte-recompile-directory 0)', like
7987 Makefile.in does.
7988
7989 2006-01-12 Bill Wohler <wohler@newt.com>
7990
7991 * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with
7992 mh-search.el.
7993
7994 2006-01-12 Masatake YAMATO <jet@gyve.org>
7995
7996 * progmodes/ld-script.el: Update copyright year.
7997
7998 2006-01-12 Chong Yidong <cyd@stupidchicken.com>
7999
8000 * cus-theme.el (custom-theme-add-variable, custom-theme-add-face):
8001 Don't add widget if setting undefined.
8002
8003 2006-01-12 John Paul Wallington <jpw@pobox.com>
8004
8005 * help-fns.el (describe-variable): Remove newlines from void
8006 variable output.
8007
8008 2006-01-13 Nick Roberts <nickrob@snap.net.nz>
8009
8010 * wdired.el (wdired-mode-map): Add help echo for
8011 wdired-abort-changes.
8012
8013 * man.el (Man-file-name-regexp): Adjust for a list of files.
8014
8015 2006-01-12 Masatake YAMATO <jet@gyve.org>
8016
8017 * progmodes/ld-script.el (auto-mode-alist): Support
8018 suffix conventions used in netbsd and eCos.
8019
8020 2006-01-11 Luc Teirlinck <teirllm@auburn.edu>
8021
8022 * cus-edit.el (custom-reset-menu, custom-buffer-create-internal)
8023 (custom-variable-menu, custom-face-menu, custom-group-menu)
8024 (Custom-mode-menu): Change names of menu items. (As discussed on
8025 emacs-devel.)
8026 (custom-face-menu): Add "Undo Edits" item.
8027
8028 * startup.el (init-file-user): defcustom -> defvar.
8029
8030 * tooltip.el (tooltip-mode): Doc fix.
8031
8032 2006-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
8033
8034 * reveal.el (reveal-post-command): window-buffer signals an error on
8035 dead windows rather than returning nil.
8036 (reveal-open-new-overlays): An overlay might die while we open others.
8037
8038 2006-01-11 Bill Wohler <wohler@newt.com>
8039
8040 * cus-dep.el (generated-custom-dependencies-file): Fix typo and
8041 phrasing in docstring.
8042
8043 * Makefile.in (MH_E_SRC): Rename from MH-E-SRC since the dashes
8044 can give some systems gas. Add new file mh-buffers.el.
8045
8046 2006-01-06 Masatake YAMATO <jet@gyve.org>
8047
8048 * font-lock.el (cpp-font-lock-keywords): Font lock keywords for
8049 C preprocessor forward ported from GNU Emacs 21.2.
8050
8051 * progmodes/asm-mode.el (asm-font-lock-keywords):
8052 Use `cpp-font-lock-keywords'.
8053
8054 * progmodes/ld-script.el (ld-script-font-lock-keywords): Ditto.
8055
8056 * progmodes/ld-script.el (auto-mode-alist): Use \\> instead
8057 of $ for "\\.ld[s]?".
8058
8059 2006-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
8060
8061 * progmodes/tcl.el (tcl-indent-command): Use indent-for-tab-command.
8062 (tcl-indent-line): Return `noindent' if inside a string.
8063
8064 * progmodes/flymake.el (flymake-split-string): Remove more than one
8065 empty string at beg/end of the result.
8066 (flymake-find-buildfile, flymake-find-possible-master-files):
8067 Use expand-file-name.
8068 (flymake-fix-file-name): Don't replace \ with / and don't remove ./
8069 since expand-file-name does it for us. Use directory-file-name.
8070 (flymake-ler-get-full-file, flymake-ler-get-file, flymake-ler-get-line)
8071 (flymake-ler-get-type, flymake-ler-get-text)
8072 (flymake-ler-make-ler): Remove. Replace by defstruct. Update callers.
8073 (flymake-current-line-no): Remove spurious interactive spec.
8074 (flymake-delete-temp-directory): Remove unused var `slash-pos'.
8075 (flymake-check-include): Remove arg inc-path merged into inc-name.
8076 (flymake-check-patch-master-file-buffer): Fit in 80 columns.
8077 Arg regexp-list replaced by a simple regexp.
8078 (flymake-master-make-header-init, flymake-master-tex-init):
8079 Correspondingly replace regexp-list with a regexp. Fix regexp.
8080
8081 2006-01-10 Simon Josefsson <jas@extundo.com>
8082
8083 * mail/smtpmail.el (smtpmail-try-auth-methods): Add comment
8084 describing AUTH PLAIN fix.
8085
8086 2006-01-10 Thien-Thi Nguyen <ttn@gnu.org>
8087
8088 * mail/emacsbug.el (report-emacs-bug-text-prompt): Delete var.
8089 (report-emacs-bug): Don't record initial prompt text.
8090 Instead, add text properties to prompting text.
8091 (report-emacs-bug-hook): Delete prompting text.
8092
8093 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
8094
8095 * progmodes/flymake.el (flymake-find-buildfile): Remove invariant arg
8096 `dirs'. Adjust callers.
8097
8098 2006-01-09 John Paul Wallington <jpw@gnu.org>
8099
8100 * cus-edit.el (custom-comment) <defface>: Add TTY definitions.
8101
8102 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
8103
8104 * reveal.el (reveal-open-new-overlays): New extracted fun.
8105 (reveal-close-old-overlays): Idem. Check overlays's liveness before
8106 using them. Simplify the code.
8107 (reveal-post-command): Use them. Fix up obsolete windows in
8108 reveal-open-spots.
8109
8110 * progmodes/flymake.el: Use `require' rather than autoload for
8111 XEmacs's overlays.
8112 (flymake-get-common-file-prefix, flymake-build-relative-filename):
8113 Delete. Use file-relative-name instead.
8114 (flymake-get-syntax-check-program-args, flymake-perl-init):
8115 Simplify the resulting code.
8116
8117 * log-view.el (log-view-file-re, log-view-message-re): Add support
8118 for DaRCS output.
8119
8120 2006-01-09 Alex Schroeder <alex@gnu.org>
8121
8122 * mail/rmail.el (rmail-reply-regexp): Also ignore mailing list
8123 identifiers sometimes added in square brackets at the beginning of
8124 subject lines.
8125
8126 2006-01-07 Richard M. Stallman <rms@gnu.org>
8127
8128 * cus-edit.el (Custom-set, Custom-save): Doc fix.
8129 (Custom-reset-current, Custom-reset-saved): Change question text.
8130 (Custom-reset-standard): Likewise.
8131 (custom-variable-reset-saved): Doc fix.
8132
8133 2006-01-07 Eli Zaretskii <eliz@gnu.org>
8134
8135 * startup.el (init-file-user): Doc fix.
8136
8137 2006-01-07 Alex Schroeder <alex@gnu.org>
8138
8139 * mail/rmail.el (rmail-current-subject): New function.
8140 (rmail-current-subject-regexp): New function.
8141 (rmail-next-same-subject): Use it.
8142
8143 * mail/rmailsum.el (rmail-summary-by-topic):
8144 Use rmail-current-subject and rmail-current-subject-regexp.
8145 (rmail-summary-next-same-subject): Ditto.
8146
8147 * net/rcirc.el (rcirc-send-input): No longer check whether the
8148 process is open, since not all commands need an open process.
8149 (rcirc-send-string): Check whether the process is open before
8150 sending anything.
8151 (rcirc-ignore-list): New option.
8152 (rcirc-ignore-list-automatic): New variable.
8153 (rcirc-print): Take rcirc-ignore-list into account.
8154 (rcirc-cmd-ignore): New command.
8155 (rcirc-ignore-update-automatic): New function.
8156 (rcirc-handler-PART, rcirc-handler-QUIT): Use it to maintain the
8157 list if ignored nicks.
8158 (rcirc-handler-NICK): Ditto, and also ignore the new nick.
8159
8160 2006-01-06 David Reitter <david.reitter@gmail.com>
8161
8162 * mail/emacsbug.el (report-emacs-bug): Let explanations correctly
8163 reflect the address to which the report will be sent.
8164
8165 2006-01-06 Eli Zaretskii <eliz@gnu.org>
8166
8167 * progmodes/ld-script.el (auto-mode-alist): Recognize linker
8168 scripts whose file-name extensions are "\.x[bdsru]?[cn]?$".
8169
8170 2006-01-01 Michael Ernst <mernst@alum.mit.edu> (tiny changes)
8171
8172 * textmodes/tildify.el: Fix typos (misspellings) in the commentary.
8173
8174 * emacs-lisp/find-func.el (find-definition-noselect): Fix typo in
8175 the doc string: "functoin" => "function".
8176 * ldefs-boot.el: Likewise.
8177
8178 * textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
8179 message text: "Duplicat" => "Duplicate".
8180
8181 2006-01-06 Sven Joachim <svenjoac@gmx.de> (tiny change)
8182
8183 * files.el (basic-save-buffer-2): If backing-up failed, reset
8184 buffer-backed-up to nil.
8185
8186 2006-01-06 Nick Roberts <nickrob@snap.net.nz>
8187
8188 * progmodes/gud.el (gdb-script-skip-to-head)
8189 (gdb-script-calculate-indentation): Indent for breakpoint command
8190 lists also.
8191
8192 2006-01-05 Bill Wohler <wohler@newt.com>
8193
8194 * Makefile.in (compile-always): Add mh-autoloads dependency.
8195 (bootstrap): Remove mh-autoloads dependency, as compile dependency
8196 provides it.
8197 (updates): Remove mh-autoloads dependency, since it probably has
8198 already run recently (via recompile).
8199
8200 2006-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
8201
8202 * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
8203 argument `force' to disable the flyspell-last-buffer optimization.
8204 (flyspell-mode-on): Use it.
8205
8206 * progmodes/flymake.el (flymake-get-cleanup-function): Default to
8207 flymake-simple-cleanup.
8208 (flymake-allowed-file-name-masks): Use this new default.
8209 All the functions are now called in the right buffer rather than
8210 passing the buffer as argument.
8211 (flymake-process-sentinel): Switch to buffer before calling cleanup.
8212 (flymake-parse-err-lines): Remove redundant buffer arg.
8213 (flymake-get-program-dir): Comment out unused function.
8214 (flymake-start-syntax-check, flymake-start-syntax-check-process):
8215 Remove redundant buffer argument.
8216 (flymake-get-real-file-name, flymake-simple-java-cleanup)
8217 (flymake-simple-cleanup, flymake-master-cleanup): Remove buffer arg.
8218
8219 2006-01-05 Richard M. Stallman <rms@gnu.org>
8220
8221 * info.el (Info-find-node): Don't record previous node if have none.
8222 (info): Go to directory only if history is empty.
8223
8224 * simple.el (mark): Doc fix.
8225
8226 2006-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8227
8228 * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
8229 already of desired type.
8230 (mac-ae-list): Coerce parameter to "list" type.
8231 (mac-dispatch-apple-event): Replace cadr part of event with a
8232 dummy position so that event-start returns it.
8233
8234 2006-01-05 Carsten Dominik <dominik@science.uva.nl>
8235
8236 * textmodes/org.el (org-end-of-subtree): New function.
8237 (org-cycle, org-subtree-end-visible-p, org-scan-tags):
8238 Use `org-end-of-subtree'.
8239 (org-agenda, org-agenda-convert-date): Protect calls to
8240 `fit-window-to-buffer'.
8241 (org-tags-view): Force matching of sublevels when doing a
8242 todo-only search. Define the correct redo command, including the
8243 arguments.
8244 (org-agenda-redo): Display message.
8245 (org-check-for-org-mode): New function.
8246 (org-agenda-type): New variable.
8247 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
8248 Set `org-agenda-type'.
8249 (org-agenda-check-type): New function.
8250 (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
8251 (org-agenda-week-view, org-agenda-day-view)
8252 (org-agenda-next-date-line, org-agenda-previous-date-line)
8253 (org-agenda-log-mode, org-agenda-toggle-diary)
8254 (org-agenda-toggle-time-grid, org-agenda-date-later)
8255 (org-agenda-date-prompt, org-agenda-diary-entry)
8256 (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
8257 (org-agenda-convert-date, org-agenda-menu):
8258 Use `org-agenda-check-type'.
8259 (org-make-overlay, org-delete-overlay)
8260 (org-detatch-overlay, org-move-overlay, org-overlay-put):
8261 New compatibility functions.
8262 (org-calendar-select-mouse): New command.
8263
8264 2006-01-04 Chong Yidong <cyd@stupidchicken.com>
8265
8266 * cus-edit.el (Custom-reset-current, Custom-reset-saved)
8267 (Custom-reset-standard): Fix y-or-n-p messages.
8268 (custom-link): New face for links.
8269 (custom-buffer-create-internal, custom-manual): Use it.
8270 (custom-face-save): Push to theme-face before setting face spec.
8271
8272 * wid-edit.el (widget-default-mouse-face-get): New function.
8273 (widget-specify-button): Handle mouse-face like button-face.
8274
8275 * custom.el (load-theme): Clear old theme settings if reloading.
8276
8277 2006-01-03 Luc Teirlinck <teirllm@auburn.edu>
8278
8279 * cus-edit.el (custom-buffer-create-internal): Move whole buffer
8280 "Erase Customization" button back to same position it occupies in
8281 the individual State menus.
8282
8283 2006-01-04 Kim F. Storm <storm@cua.dk>
8284
8285 * wid-edit.el (key-sequence): Rework widget to read key binding
8286 using `kbd' syntax. Use C-q to insert literal key, event, or code.
8287 (widget-key-sequence-default-value): Default value for empty sequence.
8288 (widget-key-sequence-map): New map for reading key binding. Bind C-q.
8289 (widget-key-sequence-read-event): New command for C-q.
8290 (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
8291 (widget-key-sequence-value-to-external): New functions.
8292
8293 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
8294
8295 * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
8296 Use expand-file-name.
8297 (flymake-delete-temp-directory): Use expand-file-name,
8298 file-name-directory, and directory-file-name.
8299 (flymake-strrchr): Delete.
8300 (flymake-start-syntax-check): Don't pass the redundant buffer argument
8301 to the init-f function.
8302 (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
8303 (flymake-init-find-buildfile-dir)
8304 (flymake-init-create-temp-source-and-master-buffer-copy)
8305 (flymake-simple-make-init-impl, flymake-simple-make-init)
8306 (flymake-master-make-init, flymake-master-make-header-init)
8307 (flymake-simple-make-java-init, flymake-simple-ant-java-init)
8308 (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
8309 (flymake-xml-init): Remove corresponding redundant buffer argument.
8310 (flymake-allowed-file-name-masks): Remove last elems that are equal to
8311 the default anyway. Clean up regexps.
8312
8313 * progmodes/flymake.el (flymake-temp-source-file-name)
8314 (flymake-master-file-name, flymake-temp-master-file-name)
8315 (flymake-base-dir): New buffer-local vars.
8316 (flymake-buffer-data, flymake-get-buffer-value)
8317 (flymake-set-buffer-value): Replace those hash-tables by the new
8318 buffer-local vars. Update callers.
8319
8320 * progmodes/flymake.el (flymake-check-start-time)
8321 (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
8322 (flymake-last-change-time, flymake-new-err-info, flymake-timer):
8323 Move definition, so we can remove redundant earlier declaration.
8324 (flymake-replace-regexp-in-string, flymake-split-string)
8325 (flymake-get-temp-dir): Use defalias.
8326 (flymake-popup-menu): Remove `pos' argument. Use posn-at-point.
8327 (flymake-xemacs-window-edges): Remove unused function.
8328 (flymake-get-point-pixel-pos): Move.
8329 (flymake-pid-to-names, flymake-reg-names)
8330 (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
8331 Replace by a simple list flymake-processes and by process-buffer.
8332 Update callers. Other than simplify the code, it uses buffers rather
8333 than buffer-names so it doesn't get confused by uniquify.
8334 (flymake-buffer-data): The global value should just be nil.
8335
8336 * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
8337 Optimize the body of a defalias like any other code.
8338
8339 * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
8340 Make sure we've setup font-lock's vars. It may influence which
8341 function we then call.
8342 (font-lock-default-fontify-buffer): Don't bother calling set-defaults
8343 here since it's too late anyway.
8344
8345 2006-01-03 Romain Francoise <romain@orebokech.com>
8346
8347 * startup.el (fancy-splash-tail, normal-splash-screen):
8348 Update copyright year.
8349
8350 2006-01-02 J.D. Smith <jdsmith@as.arizona.edu>
8351
8352 * mouse.el (mouse-drag-track): Rename, from
8353 `mouse-drag-region-1'. Includes optional argument required to
8354 enable post-drag event processing (e.g. delete region keys).
8355 Can be used without this argument to track a mouse region and operate
8356 on it as soon as the drag completes.
8357 (mouse-drag-region): Use `mouse-drag-track'.
8358
8359 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
8360
8361 * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
8362 Move to `custom-buffer' group.
8363
8364 * cus-theme.el: Rewrite the Custom New Theme Mode interface.
8365 (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
8366 (custom-theme-insert-face-marker, custom-theme-variable-menu)
8367 (custom-theme-face-menu): New variables.
8368 (custom-theme-add-variable, custom-theme-variable-action)
8369 (custom-variable-reset-theme, custom-theme-delete-variable)
8370 (custom-face-reset-theme, custom-theme-face-action)
8371 (custom-theme-delete-face, custom-theme-merge-theme)
8372 (custom-theme-add-face, custom-theme-visit-theme): New functions.
8373
8374 2006-01-01 Chong Yidong <cyd@stupidchicken.com>
8375
8376 * custom.el: Move Custom Themes commentary to start of theme code.
8377 (custom-known-themes): Rename `standard' theme to `changed'.
8378 (custom-push-theme): Caller no longer specifies what theme to use
8379 when doing `reset'---the setting is simply removed from the theme.
8380 Delete MODE from `theme-value' and `theme-settings' properties.
8381 (custom-declare-theme): Ignore &rest args since we don't use them.
8382
8383 (custom-loaded-themes): Delete variable.
8384 (custom-theme-load-themes, custom-theme-loaded-p)
8385 (custom-theme-value): Delete functions.
8386
8387 (custom-declare-theme): Signal error on invalid theme names.
8388 (provide-theme): custom-loaded-themes was deleted.
8389 (load-theme): Load the file unconditionally.
8390 (enable-theme): Call `load-theme' if theme is undefined.
8391 (custom-enabled-themes): Only update value for successful loads.
8392 (disable-theme): Complete from enabled themes when interactive.
8393 (custom-variable-theme-value): Calculate theme value directly.
8394
8395 (custom-theme-reset-variables, custom-reset-variables): Mark as
8396 XEmacs compatibility functions. We don't actually use these.
8397
8398 * cus-edit.el (custom-variable-state-set):
8399 Use custom-variable-theme-value instead of custom-theme-value.
8400 (custom-face-state-set): Rename `standard' theme to `changed'.
8401 (custom-save-variables, custom-save-faces): Delete unneeded
8402 references to custom-reset-variables.
8403 (custom-save-resets): Delete function.
8404 (custom-save-variables, custom-save-faces): MODE argument deleted.
8405 (custom-save-variables, custom-save-faces): Ignore theme values.
8406
8407 * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
8408 compatibility function.
8409
8410 2006-01-01 Richard M. Stallman <rms@gnu.org>
8411
8412 * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
8413 (Custom-reset-current, Custom-reset-saved): Likewise.
8414 (Custom-reset-standard): Show message if aborted.
8415 (custom-mode): Doc fix, describing those commands.
8416
8417 * mouse.el (mouse-drag-region-1): When following link via mouse-2,
8418 put on event-kind property.
8419
8420 2005-12-31 Chong Yidong <cyd@stupidchicken.com>
8421
8422 * custom.el (provide-theme): Ban `user' theme name.
8423 (custom-enabling-themes): New variable.
8424 (enable-theme): Don't enable user if custom-enabling-themes is t.
8425 (custom-enabled-themes): Make it a defcustom.
8426 (custom-theme-recalc-face): No-op if face is undefined.
8427
8428 * cus-edit.el (custom-button-mouse): New variable.
8429 (custom-button-mouse): New face.
8430 (custom-raised-buttons, custom-mode): Use it.
8431
8432 * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
8433
8434 2005-12-31 Eli Zaretskii <eliz@gnu.org>
8435
8436 * progmodes/gud.el (gud-display-line): Support hl-line in the
8437 source buffer.
8438
8439 2005-12-31 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
8440
8441 * mouse.el (mouse-drag-window-above): Verify that the found window
8442 overlaps with the given window in the horizontal dimension.
8443
8444 2005-12-31 Eli Zaretskii <eliz@gnu.org>
8445
8446 * Makefile.in (cvs-update): New target.
8447
8448 * makefile.w32-in (cvs-update): Ditto.
8449
8450 2005-12-30 Chong Yidong <cyd@stupidchicken.com>
8451
8452 * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
8453 (custom-new-theme-mode-map): New variable.
8454
8455 2005-12-30 Richard M. Stallman <rms@gnu.org>
8456
8457 * custom.el (custom-load-themes): Function deleted.
8458
8459 * cus-edit.el (custom-save-loaded-themes): Function deleted.
8460 (custom-save-variables): Don't delete or add custom-load-themes call.
8461
8462 2005-12-30 Stefan Monnier <monnier@iro.umontreal.ca>
8463
8464 * cus-start.el: Add `visible-cursor'.
8465
8466 * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
8467 (flymake-parse-output-and-residual): Remove `source-buffer' argument.
8468 (flymake-process-filter): Switch to buffer before calling it instead.
8469 (flymake-post-syntax-check, flymake-highlight-err-lines)
8470 (flymake-delete-own-overlays, flymake-parse-err-lines)
8471 (flymake-start-syntax-check, flymake-start-syntax-check-process)
8472 (flymake-count-lines, flymake-parse-residual):
8473 Remove constant buffer argument.
8474 (flymake-start-syntax-check-for-current-buffer): Remove.
8475 Update callers to use flymake-start-syntax-check instead.
8476 (flymake-display-err-menu-for-current-line):
8477 Remove unused var `mouse-pos'.
8478 (flymake-restore-formatting): Comment out unused function.
8479 (flymake-report-status, flymake-report-fatal-status): Remove buffer
8480 argument, use current-buffer instead. Update callers.
8481
8482 2005-12-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8483
8484 * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
8485 buffer-local because choose-completion-delete-max-match requires
8486 that we set completion-ignore-case (i.e., binding via let is not
8487 sufficient).
8488 (bibtex-complete): Always set completion-ignore-case and
8489 choose-completion-string-functions. The latter is needed because
8490 choose-completion-string-functions keeps its value if we quit the
8491 *Completions* buffer without requesting a completion.
8492
8493 2005-12-30 Andreas Schwab <schwab@suse.de>
8494
8495 * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
8496
8497 2005-12-30 Eli Zaretskii <eliz@gnu.org>
8498
8499 * jit-lock.el (jit-lock-chunk-size): Doc fix.
8500
8501 2005-12-30 Juri Linkov <juri@jurta.org>
8502
8503 * locate.el (locate-fcodes-file, locate-header-face)
8504 * progmodes/delphi.el (delphi-other-face)
8505 * progmodes/glasses.el (glasses-face): Add tag "None" to const nil.
8506
8507 * paren.el (show-paren-match, show-paren-mismatch): Use existing
8508 group `paren-showing-faces'.
8509
8510 * net/goto-addr.el (goto-address-highlight-keymap): Fix docstring.
8511 (goto-address): Fix docstring.
8512
8513 * net/webjump.el (webjump-sample-sites): Update URLs.
8514
8515 * textmodes/fill.el (fill-single-word-nobreak-p): Use `sentence-end'.
8516
8517 * subr.el (cancel-change-group): Add listp around pending-undo-list.
8518
8519 2005-12-29 Stefan Monnier <monnier@iro.umontreal.ca>
8520
8521 * font-lock.el (font-lock-compile-keywords): Signal an error when
8522 font-lock-set-defaults hasn't been called.
8523
8524 2005-12-29 Luc Teirlinck <teirllm@auburn.edu>
8525
8526 * subr.el (noreturn, 1value): Doc fixes.
8527
8528 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8529
8530 * textmodes/bibtex.el (bibtex-text-in-field-bounds): Handle case
8531 that assoc-string returns nil.
8532
8533 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8534
8535 * textmodes/bibtex.el (bibtex-entry-type-whitespace)
8536 (bibtex-entry-type-str, bibtex-empty-field-re)
8537 (bibtex-search-backward-string, bibtex-preamble-prefix)
8538 (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Remove.
8539 (bibtex-any-valid-entry-type): New variable.
8540 (bibtex-parse-field-name): Simplify.
8541 (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key.
8542 (bibtex-preamble-prefix): Include left delimiter.
8543 (bibtex-search-forward-field, bibtex-search-backward-field):
8544 Allow unbounded search past entry boundaries (required by bibtex-pop).
8545 (bibtex-text-in-field-bounds): Use push.
8546 (bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
8547 (bibtex-parse-preamble, bibtex-valid-entry)
8548 (bibtex-beginning-first-field): New functions.
8549 (bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp.
8550 (bibtex-map-entries): Fix docstring.
8551 (bibtex-flash-head): New arg prompt. Simplify.
8552 (bibtex-enclosing-field): Include code of bibtex-inside-field.
8553 (bibtex-insert-kill): Simplify. Always insert text past the
8554 current field or entry.
8555 (bibtex-format-entry): Use bibtex-parse-field.
8556 (bibtex-pop): Use bibtex-beginning-of-entry and
8557 bibtex-end-of-entry to initiate the search. Insert empty field if
8558 we found ourselves.
8559 (bibtex-print-help-message): New args field and comma.
8560 Handle entry keys.
8561 (bibtex-make-field): Use bibtex-beginning-of-entry.
8562 (bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any
8563 invalid entry.
8564 (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
8565 Handle preambles. Simplify code for thorough test.
8566 (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
8567 New arg comma. Handle entry heads.
8568 (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
8569 (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
8570 New arg comma.
8571 (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
8572 (bibtex-fill-field): Simplify.
8573 (bibtex-fill-entry): Use bibtex-beginning-first-field and
8574 bibtex-parse-field.
8575 (bibtex-convert-alien): Do not wait before calling bibtex-validate.
8576 (bibtex-complete): Use bibtex-parse-preamble.
8577
8578 2005-12-29 Nick Roberts <nickrob@snap.net.nz>
8579
8580 * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1):
8581 Display name of expression instead of convenience variable.
8582 (gdb-post-prompt): Only call gdb-get-changed-registers if needed.
8583
8584 * progmodes/gud.el (gud-tooltip-dereference): Rename from
8585 toggle-gud-tooltip-dereference.
8586 (gud-tooltip-print-command): Move concatenation of "*" to expr to...
8587 (gud-tooltip-tips): ...here when dereferencing.
8588
8589 2005-12-28 Bill Wohler <wohler@newt.com>
8590
8591 * simple.el (mh-e-user-agent): Move to mh-e/mh-comp.el and autoload.
8592
8593 2005-12-28 Stefan Monnier <monnier@iro.umontreal.ca>
8594
8595 * vc.el (vc-annotate-display): Replace optional arg `color-map' with
8596 compulsory arg `ratio'. Inline body of vc-annotate-time-span.
8597 (vc-annotate-display-autoscale): Adjust call.
8598 (vc-annotate-display-default): Adjust call. Make arg compulsory.
8599 Fix interactive spec.
8600 (vc-annotate-time-span): Remove.
8601 (vc-annotate-oldest-in-map): Rename from vc-annotate-car-last-cons.
8602 (vc-annotate-mode-menu, vc-annotate-display-autoscale)
8603 (vc-annotate-display-select): Use new name.
8604
8605 * vc.el (vc-annotate-mode-map): Remove obsolete binding.
8606 (vc-annotate-mode-menu): Remove left-over redundant declaration.
8607 Correct the construction of span entries. Simplify.
8608 (vc-annotate-display-select): Fix the nil case.
8609 (vc-annotate): Remove obsolete (and now broken) code.
8610 (vc-annotate-extract-revision-at-line): Remove obsolete code.
8611 (vc-annotate-time-span): Remove unused arg `quantize'. Simplify.
8612
8613 2005-12-28 Luc Teirlinck <teirllm@auburn.edu>
8614
8615 * subr.el (lazy-completion-table): Correct typo in docstring.
8616
8617 * startup.el (command-line): Use `custom-reevaluate-setting' for
8618 `send-mail-function'.
8619
8620 * mail/sendmail.el (send-mail-function): Autoload the standard-value.
8621
8622 2005-12-05 Ralf Angeli <angeli@iwi.uni-sb.de>
8623
8624 * mail/smtpmail.el (smtpmail-try-auth-methods):
8625 Send credentials together with "AUTH PLAIN" command.
8626
8627 2005-12-27 Richard M. Stallman <rms@gnu.org>
8628
8629 * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
8630 mouse-2, go back to previously selected window, so it's selected
8631 when mouse-2 command runs.
8632
8633 2005-12-27 Juri Linkov <juri@jurta.org>
8634
8635 * descr-text.el (describe-text-sexp): Use square brackets for
8636 button [Show] to distinguish it from the property value `show'.
8637 (describe-property-list): Use `insert-text-button' with
8638 `help-face' type instead of putting face in quotes, because button
8639 is not created automatically for a list of faces.
8640 (describe-text-properties-1): Put button-type value in quotes to
8641 distinguish from plain text "button".
8642 (describe-char): Display code point values in hex. Don't use
8643 `symbol-name' for `current-input-method' because it is a string.
8644 Use `insert-text-button' with `help-face' type instead of putting
8645 hardcoded face in quotes, because button is not created automatically.
8646
8647 2005-12-27 Richard M. Stallman <rms@gnu.org>
8648
8649 * progmodes/glasses.el (glasses-face): More specific custom type.
8650
8651 * files.el (set-visited-file-name): Doc fix.
8652
8653 * textmodes/flyspell.el (flyspell-external-point-words):
8654 Use local var buffer-scan-pos to advance scan for next misspelling.
8655 Advance it only after we find the misspelling.
8656
8657 2005-12-27 Agustin Martin <agustin.martin@hispalinux.es>
8658
8659 * textmodes/flyspell.el (flyspell-external-point-words):
8660 New criteria for finding the misspelling in the buffer.
8661
8662 2005-12-27 Nick Roberts <nickrob@snap.net.nz>
8663
8664 * help-mode.el (help-insert-string): Set help-xref-stack-item
8665 rather than call help-setup-xref.
8666
8667 * descr-text.el (describe-char): Revert previous changes for
8668 optional buffer argument.
8669
8670 2005-12-27 Juri Linkov <juri@jurta.org>
8671
8672 * help-mode.el (help-insert-string): New function. Save buffer
8673 contents in cases where it is impossible to recompute the old contents.
8674
8675 * descr-text.el (describe-char): Set help-xref-stack-item
8676 explicitly after buffer has been generated.
8677
8678 2005-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8679
8680 * cus-start.el (all): Add x-gtk-show-hidden-files.
8681
8682 2005-12-26 Richard M. Stallman <rms@gnu.org>
8683
8684 * replace.el (perform-replace): Calculate match-again
8685 before skipping read-only matches.
8686
8687 * paren.el (paren-showing-faces): New group.
8688 (show-paren-match, show-paren-mismatch): Move to that group.
8689
8690 * button.el (button): Put into group `basic-faces'.
8691
8692 * progmodes/make-mode.el: Remove faces from group `faces'.
8693
8694 * apropos.el (apropos, apropos-value): Doc fix.
8695 (apropos-documentation): Doc fix.
8696
8697 2005-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
8698
8699 * subr.el (lazy-completion-table): Remove argument `args'.
8700
8701 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
8702 Don't use the `args' argument of lazy-completion-table.
8703
8704 2005-12-26 Nick Roberts <nickrob@snap.net.nz>
8705
8706 * descr-text.el (describe-char): Add optional argument for buffer.
8707 Set buffer appropriately. Call help-setup-xref.
8708 Suggested by Stefan Monnier.
8709
8710 2005-12-26 Juri Linkov <juri@jurta.org>
8711
8712 * descr-text.el: Require `help-fns' at runtime. Don't require
8713 `button' for byte compilation.
8714 (describe-text-widget): Add `help-echo' for first button.
8715 Use `help-info' for second.
8716 (describe-property-list): Use `help-argument-name' instead of `italic'.
8717 (describe-text-category): Add prompt to interactive spec.
8718 Call `help-setup-xref'.
8719 (describe-char): Use `help-character-set'. Add `help-echo' for
8720 code point. Use `help-input-method'. Remove superfluous insert.
8721
8722 2005-12-25 Richard M. Stallman <rms@gnu.org>
8723
8724 * progmodes/cc-defs.el (c-emacs-features): Do parse-partial-sexp
8725 at point, in case of narrowing.
8726
8727 * progmodes/delphi.el (delphi-other-face): Allow nil in type.
8728
8729 * locate.el (locate-header-face): Allow nil in type.
8730
8731 * progmodes/cpp.el (cpp-face-none-list): Use cpp-face instead of face.
8732
8733 2005-12-25 Romain Francoise <romain@orebokech.com>
8734
8735 * battery.el (battery-linux-proc-acpi): Also try
8736 `/proc/acpi/thermal_zone/THM0/temperature'.
8737
8738 2005-12-24 Chong Yidong <cyd@stupidchicken.com>
8739
8740 * custom.el (custom-push-theme): Fix docstring.
8741
8742 * cus-edit.el (custom-variable-set, custom-variable-save)
8743 (custom-variable-save): Custom-quote widget values.
8744 (customize-save-variable): Fix custom-push-theme call.
8745
8746 2005-12-24 Eli Zaretskii <eliz@gnu.org>
8747
8748 * w32-fns.el (w32-batch-update-autoloads): New function.
8749
8750 * makefile.w32-in (autoloads, $(lisp)/mh-e/mh-loaddefs.el):
8751 Use w32-batch-update-autoloads, and don't setq generated-autoload-file
8752 from the command line.
8753
8754 2005-12-23 Chong Yidong <cyd@stupidchicken.com>
8755
8756 * custom.el (custom-push-theme): Clarify docstring. VALUE nil for
8757 reset means to remove setting from theme entirely. Don't keep
8758 expanding theme-settings list; delete old entries if necessary.
8759
8760 * cus-edit.el (custom-buffer-create-internal): Move "Erase
8761 customization" button one line up.
8762 (custom-themed): New face.
8763 (custom-magic-alist): New value, THEMED, for theme settings.
8764 (custom-variable-state-set, custom-face-state-set):
8765 Check theme-value instead of saved-value.
8766 (custom-variable-reset-standard, custom-face-reset-standard):
8767 Remove theme setting entirely. Recalculate new values.
8768 (custom-variable-set, custom-variable-set)
8769 (custom-variable-reset-saved, custom-variable-reset-backup)
8770 (custom-face-set, custom-face-reset-saved): Update `user' theme.
8771 (custom-variable-save): Fix typos.
8772
8773 2005-12-23 Juri Linkov <juri@jurta.org>
8774
8775 * emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
8776 Add autoload cookies.
8777 (edebug-outside-d-c-i-n-s-w): New variable.
8778 (edebug-display, edebug-outside-excursion): Use it to save the
8779 original value of default-cursor-in-non-selected-windows.
8780 Set default-cursor-in-non-selected-windows to t while Edebug
8781 is active.
8782 (edebug-mode, edebug-eval-mode): Doc fix.
8783
8784 * mouse.el (mouse-choose-completion): Replace `buffer-substring'
8785 with `buffer-substring-no-properties' to remove common substring
8786 highlighting.
8787
8788 * info.el (info-other-window, info): Rename function argument
8789 `file' to `file-or-node'.
8790 (Info-complete-menu-item): Use local variable `complete-nodes' to
8791 keep the global value of `Info-complete-nodes' unchanged for
8792 subsequent completions.
8793 (info-tool-bar-map): Put `Info-index' icon just before `Info-search'.
8794
8795 * simple.el (get-next-valid-buffer, last-buffer)
8796 (next-error-buffer-p, next-error-find-buffer)
8797 (minibuffer-history-sexp-flag): Doc fix.
8798
8799 * savehist.el (savehist-mode-hook): Add `:group'.
8800
8801 * log-view.el: Call autoload for vc-find-version.
8802 (log-view-current-file): Adjust subgroup numbers.
8803 (log-view-current-tag): Add `length'.
8804
8805 2005-12-23 Richard M. Stallman <rms@gnu.org>
8806
8807 * vc.el (vc-annotate-car-last-cons): Defn moved up.
8808
8809 2005-12-23 Juri Linkov <juri@jurta.org>
8810
8811 * hi-lock.el (hi-lock-archaic-interface-message-used)
8812 (hi-lock-archaic-interface-deduce, hi-lock-mode): Doc fix.
8813 (hi-lock-mode): Display "Hi" in the mode line only when
8814 hi-lock-interactive-patterns or hi-lock-file-patterns is non-nil.
8815 (hi-lock-write-interactive-patterns):
8816 Use hi-lock-file-patterns-prefix instead of hard-coded "Hi-lock".
8817 (hi-lock-set-pattern, hi-lock-set-file-patterns)
8818 (hi-lock-font-lock-hook): Set 3rd arg `how' of
8819 font-lock-add-keywords to t.
8820
8821 2005-12-23 David Koppelman <koppel@ece.lsu.edu>
8822
8823 * hi-lock.el (hi-lock-highlight-range): New variable.
8824 (hi-lock-mode, hi-lock-unface-buffer): Call font-lock-fontify-buffer
8825 only if font-lock-fontified is non-nil. Remove overlays.
8826 (hi-lock-set-pattern): Call font-lock-fontify-buffer if
8827 font-lock-fontified is non-nil, otherwise use overlays (instead of
8828 text properties).
8829 (hi-lock-string-serialize-hash, hi-lock-string-serialize-serial):
8830 New variables.
8831 (hi-lock-string-serialize) New function.
8832
8833 2005-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8834
8835 * menu-bar.el (menu-find-file-existing): New function.
8836 (menu-bar-file-menu): Use menu-find-file-existing for Open.
8837
8838 * tool-bar.el (tool-bar-setup): Open changed to menu-find-file-existing.
8839
8840 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
8841
8842 * vc.el: Remove unnecessary leading * in docstrings.
8843 (vc-annotate-mode-map): Move initialization into declaration.
8844 (vc-static-header-alist): Nitpick on the regexp.
8845 (vc-default-init-version): New fun.
8846 (vc-register): Use it.
8847 (vc-insert-headers): Use dolist.
8848 (vc-annotate-get-backend): Remove unused function.
8849 (vc-annotate-add-menu): Remove. Build the menu directly at toplevel.
8850 (vc-annotate-mode): Remove corresponding call.
8851 (vc-annotate-car-last-cons): Simplify.
8852 (vc-annotate-buffers): Remove var.
8853 (vc-annotate-backend): Make it buffer-local.
8854 (vc-annotate): Move the interaction to the interactive spec.
8855 Add a `buf' argument.
8856 (vc-annotate-warp-version): Use this new `buf' argument to avoid
8857 killing&creating a vc-annotate buffer, which is very disruptive when
8858 the buffers are shown in dedicated frames.
8859
8860 2005-12-23 Nick Roberts <nickrob@snap.net.nz>
8861
8862 * descr-text.el: Add FSF as maintainer.
8863 (describe-text-mode, describe-text-mode-map)
8864 (describe-text-mode-hook, describe-text-done): Delete. Use normal
8865 help-mode.
8866 (describe-text-widget, describe-text-sexp)
8867 (describe-property-list, describe-text-category)
8868 (describe-text-properties, describe-text-properties-1)
8869 (describe-char): Use help buttons instead of widgets.
8870 (describe-char-unicodedata-file): Make URL link in doc string.
8871
8872 2005-12-22 Richard M. Stallman <rms@gnu.org>
8873
8874 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
8875 (custom-buffer-create-internal): Reword the top-of-buffer help intro.
8876 Don't include buttons that write a file when there's no file.
8877 (custom-variable-menu, custom-face-menu, custom-group-menu):
8878 Don't include commands that write a file when there's no file.
8879 (customize-browse): Reword the top-of-buffer help intro.
8880 (custom-buffer-create-internal): Fix previous change.
8881 (customize-changed-options-previous-release): Prev release is 21.1.
8882 (customize-changed-options): Doc fix.
8883 (customize-changed): New alias.
8884 (custom-reset-menu, custom-magic-alist, Custom-mode-menu):
8885 Say "standard values".
8886 (Custom-reset-standard): Doc fix.
8887 (custom-face-reset-standard): Doc fix.
8888
8889 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
8890
8891 * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
8892 even if font-lock-mode is non-nil since it may be t without having
8893 turned on font-lock-mode-internal.
8894 (font-lock-choose-keywords): Minor optimization.
8895 (font-lock-add-keywords, font-lock-remove-keywords)
8896 (font-lock-set-defaults): Don't call make-local-variable on a variable
8897 that we know to already be local.
8898
8899 2005-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
8900
8901 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't print progress
8902 messages if in the minibuffer.
8903
8904 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
8905
8906 * textmodes/flyspell.el (flyspell-check-word-p): Don't quote - in a RE.
8907 (tex-mode-flyspell-verify, flyspell-get-word)
8908 (flyspell-external-point-words): Don't use point-min/max uselessly.
8909
8910 * emacs-lisp/lisp.el (lisp-complete-symbol): Mostly undo the change
8911 by Kevin Rodgers. Instead, just hide the completions buffer if we
8912 don't need to show it.
8913
8914 2005-12-21 Luc Teirlinck <teirllm@auburn.edu>
8915
8916 * wid-edit.el (file, directory): Doc fixes for the `define-widget's.
8917
8918 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
8919
8920 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
8921 delete-windows-on with an inexistent buffer.
8922
8923 2005-12-22 Nick Roberts <nickrob@snap.net.nz>
8924
8925 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
8926 Delete defcustom variable :tag names.
8927
8928 2005-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
8929
8930 * log-view.el (log-view-file-re, log-view-message-re): Use shy groups.
8931 (log-view-font-lock-keywords): Ajust subgroup numbers.
8932 (log-view-current-tag): Don't hard code the number of subgroups.
8933
8934 2005-12-20 Juri Linkov <juri@jurta.org>
8935
8936 * tooltip.el (tooltip): Move defgroup before define-minor-mode.
8937 (tooltip-x-offset, tooltip-y-offset): Doc fix.
8938
8939 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
8940 (menu-bar-non-minibuffer-window-p): Instead of checking
8941 display-multi-frame-p, use selected-frame when menu-updating-frame
8942 is nil.
8943
8944 2005-12-20 Stuart Herring <herring@lanl.gov> (tiny change)
8945
8946 * align.el (align-rules-list): Use [ \t] instead of \s-
8947 for column separators in text mode.
8948
8949 2005-12-20 Nick Roberts <nickrob@snap.net.nz>
8950
8951 * help-mode.el (help-customize-variable, help-customize-face):
8952 Don't pop help-xref-stack as help-follow no longer pushes
8953 anything on to it.
8954
8955 2005-12-20 Carsten Dominik <dominik@science.uva.nl>
8956
8957 * textmodes/org.el (org-agenda-custom-commands): New option.
8958 (org-agenda): Offer custom commands on splash screen.
8959 (org-make-tags-matcher): Parser for Boolean logic added.
8960 (org-agenda-set-tags): New command.
8961 (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
8962 (org-set-tags): Efficiency improvements.
8963 (org-auto-align-tags): New option.
8964 (org-todo, org-demote, org-promote): Realign tags.
8965 (org-tags-completion-function): Use also "&" and "|" as separators.
8966 (org-org-menu): Agenda commands simplified.
8967
8968 2005-12-19 Luc Teirlinck <teirllm@auburn.edu>
8969
8970 * cus-edit.el (customize-apropos, customize-apropos-options):
8971 Docstring changes.
8972
8973 * font-lock.el (font-lock): Add tags to the links in the defgroup.
8974
8975 2005-12-19 Chong Yidong <cyd@stupidchicken.com>
8976
8977 * longlines.el (longlines-mode): Wrap while widened.
8978 (longlines-decode-region, longlines-encode-region): Compute max
8979 just once.
8980
8981 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8982
8983 * cus-edit.el (mac): New group.
8984
8985 * cus-start.el (all): Add user options in macterm.c. Add test for
8986 Mac-related built-ins. Fix test for GTK-related built-ins.
8987
8988 * term/mac-win.el (mac-handle-language-change)
8989 (mac-ae-open-documents, mac-ae-get-url, mac-services-open-file)
8990 (mac-services-open-selection, mac-services-mail-selection)
8991 (mac-services-mail-to, mac-services-insert-text)
8992 (mac-dispatch-apple-event): Add docstrings.
8993 (x-get-selection, mac-select-convert-to-string): Select coding
8994 system from `utf-16be' and `utf-16le' using `byteorder'.
8995
8996 2005-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
8997
8998 * subr.el (lazy-completion-table): Don't be fooled if the var holds
8999 a "list" (lambda ...) rather than a real completion list.
9000
9001 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
9002 lexical-let when encountering ((lambda (...) ...) ...).
9003
9004 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
9005
9006 * progmodes/sh-script.el (sh-mode):
9007 * language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
9008 * textmodes/picture.el (picture-mode): Update docstrings.
9009
9010 2005-12-17 Eli Zaretskii <eliz@gnu.org>
9011
9012 * makefile.w32-in (autoloads, custom-deps): Warn that parts of
9013 commands enclosed in $(ARGQUOTE)s should not be split between two
9014 lines, as that will break with GNU Make >3.80, when sh.exe is used
9015 and arg quoting is with '..'.
9016 (autoloads): Don't break the quoted --eval expression between
9017 several lines.
9018
9019 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
9020
9021 * emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
9022 Capture error from printing circular structures.
9023
9024 2005-12-17 Martin Rudalics <rudalics@gmx.at>
9025
9026 * wid-edit.el (widget-checkbox-action): Clear undo info.
9027
9028 2005-12-16 Bill Wohler <wohler@newt.com>
9029
9030 * menu-bar.el (kill-this-buffer): Set a good example by using menu
9031 bar, not menubar in comment.
9032
9033 2005-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
9034
9035 * progmodes/cc-engine.el (c-after-change-check-<>-operators):
9036 After-change-functions should not clobber the match data.
9037
9038 2005-12-16 Juri Linkov <juri@jurta.org>
9039
9040 * simple.el (choose-completion): Use `buffer-substring-no-properties'
9041 instead of `buffer-substring'.
9042 (completion-common-substring): Doc fix.
9043 (completion-setup-function): Use minibuffer-completion-contents
9044 instead of minibuffer-contents. Don't set common-string-length
9045 initially. Remove special handling of partial-completion-mode.
9046 Move computation of completion-base-size into one cond.
9047 Call completion-base-size-function in mainbuf. In computation of
9048 completion-base-size for file name completion don't move point to
9049 the end of the minibuffer. Move computation of common-string-length
9050 into one cond. Start putting faces only when common-string-length>=0.
9051 Add condition to put completions-common-part when
9052 common-string-length>0.
9053
9054 * complete.el (PC-do-completion): Remove `(equal (point) beg)' to
9055 place point at the first different character in the minibuffer
9056 even if this position is at the beginning of the minibuffer.
9057
9058 * info.el (Info-read-node-name-1): In completion-base-size-function's
9059 lambda return 1 if common-substring or minibuffer-completion-contents
9060 starts with (, and 0 otherwise.
9061
9062 * emacs-lisp/crm.el (crm-minibuffer-completion-help):
9063 Use `crm-current-element' for second arg of `display-completion-list'.
9064
9065 2005-12-16 Klaus Zeitler <kzeitler@lucent.com>
9066
9067 * files.el (set-auto-mode): Look for an interpreter specified on
9068 the first line also if search for mode specification succeeded,
9069 but the mode is not known.
9070
9071 2005-12-16 Carsten Dominik <dominik@science.uva.nl>
9072
9073 * textmodes/org.el (org-tags-match-list-sublevels): New option.
9074 (org-open-at-point): Implement tag searches as links.
9075 (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
9076 (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
9077 (org-tags-sparse-tree, org-tags-view, org-set-tags)
9078 (org-agenda-dispatch): New commands.
9079 (org-use-tag-inheritance, org-tags-column): New options.
9080 (org-tab-follows-link, org-return-follows-link): New options.
9081 (org-tags): New customize group.
9082 (org-start-icalendar-file): Get local time zone.
9083 (org-tags-completion-function): New function.
9084 (org-set-font-lock-defaults): Make sure links will also be
9085 highlighted inside headlines.
9086
9087 2005-12-16 Mark Plaksin <happy@usg.edu> (tiny change)
9088
9089 * term.el (term-emulate-terminal):
9090 Let term-handle-ansi-terminal-messages override what Bash says about
9091 its current directory.
9092
9093 2005-12-16 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
9094
9095 * bindings.el (last-buffer): Move to simple.el.
9096 * simple.el (last-buffer): Move here.
9097 (get-next-valid-buffer): New function.
9098 (next-buffer): Use frame-local buffer list, maintain buried buffer list.
9099 (prev-buffer): Ditto. Rename to `previous-buffer'.
9100
9101 * menu-bar.el (menu-bar-update-buffers): Update uses of `prev-buffer'.
9102 * bindings.el (global-map): Ditto.
9103
9104 2005-12-15 Luc Teirlinck <teirllm@auburn.edu>
9105
9106 * cus-edit.el: Introductory comment change.
9107 (custom-magic-alist): Change message string for the `rogue' state.
9108
9109 2005-12-15 Richard M. Stallman <rms@gnu.org>
9110
9111 * tooltip.el: Delete defcustom variable :tag names.
9112
9113 * complete.el (partial-completion-mode): Doc fix.
9114
9115 * textmodes/flyspell.el (flyspell-external-point-words):
9116 Use save-excursion to ensure we don't move backward in the
9117 search loop, not even one character.
9118 (flyspell-delete-all-overlays): Use remove-overlays directly.
9119
9120 * textmodes/ispell.el (ispell-current-personal-dictionary): New var.
9121 (ispell-start-process): Set that variable.
9122 Clear ispell-buffer-local-name.
9123 (ispell-internal-change-dictionary):
9124 Set ispell-current-dictionary after killing process.
9125 (ispell-buffer-local-dict):
9126 Don't set spell-personal-dictionary after killing process.
9127 (ispell-buffer-local-words): Don't clear out ispell-buffer-local-name.
9128 (ispell-tex-skip-alists, ispell-html-skip-alists)
9129 (ispell-skip-region-alist): Mark as risky.
9130
9131 * net/newsticker.el (newsticker--retrieval-timer-list)
9132 (newsticker--display-timer, newsticker-running-p)
9133 (newsticker-ticker-running-p): Definitions moved up.
9134
9135 2005-12-16 Nick Roberts <nickrob@snap.net.nz>
9136
9137 * progmodes/gdb-ui.el (gdb-many-windows): Echo new state in minibuffer.
9138
9139 2005-12-15 David Ponce <david@dponce.com>
9140
9141 * recentf.el (recentf-dialog-goto-first): Fix missing error condition.
9142 (recentf-edit-list, recentf-open-files): Signal an error when
9143 there is no recent file.
9144
9145 2005-12-14 Lennart Borgman <lennart.borgman.073@student.lu.se>
9146
9147 * textmodes/texinfmt.el (texinfo-format-region): Set buffer to
9148 read-only except for texinfo-format-region evaluation.
9149
9150 2005-12-14 Richard M. Stallman <rms@gnu.org>
9151
9152 * vc.el (vc-default-previous-version, vc-default-next-version)
9153 (vc-do-command): Doc fixes.
9154
9155 2005-12-14 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9156
9157 * textmodes/bibtex.el (bibtex-expand-strings)
9158 (bibtex-autokey-expand-string, bibtex-name-part)
9159 (bibtex-entry-type-whitespace, bibtex-entry-type-str)
9160 (bibtex-any-entry-maybe-empty-head, bibtex-string-type)
9161 (bibtex-preamble-prefix, bibtex-string-empty-key): New variables.
9162 (bibtex-entry-type, bibtex-entry-head): Match only valid entries.
9163 (bibtex-entry-postfix, bibtex-known-entry-type-re)
9164 (bibtex-valid-entry-re, bibtex-any-valid-entry-re)
9165 (bibtex-valid-entry-whitespace-re, bibtex-empty-field-re)
9166 (bibtex-field-name-for-parsing, bibtex-remove-delimiters-string)
9167 (bibtex-beginning-of-last-entry): Remove.
9168 (bibtex-parse-field-name): Use bibtex-field-name. Issue error
9169 message if comma is missing but buffer is read-only.
9170 (bibtex-parse-field-text): Handle whitespaces at the end of field
9171 text. Return 3-element list with beginning and end of field text
9172 and end of field.
9173 (bibtex-end-of-text-in-field, bibtex-end-of-field): Change accordingly.
9174 (bibtex-parse-field): Remove arg name. Use bibtex-field-name.
9175 (bibtex-search-forward-field, bibtex-search-backward-field):
9176 Search always delimited by limits of entry. Use more efficient
9177 search algorithms.
9178 (bibtex-name-in-field): Use bibtex-start-of-name-in-field and
9179 bibtex-end-of-name-in-field.
9180 (bibtex-text-in-field-bounds): Handle BibTeX strings when
9181 extracting the content of a field.
9182 (bibtex-text-in-field): Use search limits.
9183 (bibtex-parse-string-prefix): Handle empty string keys based on
9184 bibtex-string-empty-key.
9185 (bibtex-parse-string): Fix docstring.
9186 (bibtex-text-in-string): Use bibtex-text-in-field-bounds.
9187 (bibtex-preamble-prefix, bibtex-strings): New functions.
9188 (bibtex-skip-to-valid-entry): Include preceding whitespace in
9189 BibTeX entries (consistent with other BibTeX functions).
9190 (bibtex-map-entries): Use bibtex-skip-to-valid-entry.
9191 (bibtex-search-entry): Fix docstring. Simplify.
9192 (bibtex-flash-head, bibtex-complete-string-cleanup)
9193 (bibtex-count-entries, bibtex-sort-buffer): Simplify.
9194 (bibtex-beginning-of-first-entry): Use bibtex-skip-to-valid-entry.
9195 (bibtex-parse-entry): New optional arg content.
9196 (bibtex-format-entry, bibtex-autofill-entry, bibtex-url): Use it.
9197 Use bibtex-text-in-field-bounds.
9198 (bibtex-print-help-message): Handle BibTeX strings and preambles.
9199 (bibtex-end-of-entry): Use bibtex-preamble-prefix and
9200 bibtex-parse-string-postfix.
9201 (bibtex-find-text-internal): New function.
9202 (bibtex-remove-delimiters): Use it.
9203 (bibtex-find-text): Use it. New optional arg help.
9204 (bibtex-complete): Handle BibTeX string and preamble entries.
9205 (bibtex-Preamble): Fix order of closing delimiters.
9206
9207 2005-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
9208
9209 * vc.el (vc-default-revert): New fun.
9210
9211 * vc-mcvs.el (vc-mcvs-revert): Fix call to vc-default-revert.
9212
9213 2005-12-14 Romain Francoise <romain@orebokech.com>
9214
9215 * font-lock.el (font-lock-keywords-alist): Rename `append' to `how'.
9216 (font-lock-add-keywords, font-lock-update-removed-keyword-alist):
9217 (font-lock-remove-keywords): Likewise.
9218
9219 2005-12-14 Juri Linkov <juri@jurta.org>
9220
9221 * log-view.el (log-view-diff): Doc fix.
9222
9223 * isearch.el (isearch-query-replace): Use (mark) instead of
9224 isearch-opoint if mark is active in transient-mark-mode.
9225
9226 2005-12-14 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
9227
9228 * isearch.el (isearch-query-replace): Check for isearch-other-end.
9229
9230 2005-12-14 Per Abrahamsen <abraham@dina.kvl.dk>
9231
9232 * progmodes/cpp.el (cpp-face): New widget.
9233 (cpp-known-face, cpp-unknown-face, cpp-edit-list): Use it.
9234
9235 2005-12-14 Juri Linkov <juri@jurta.org>
9236
9237 * help-macro.el (make-help-screen): Bind `inhibit-read-only' to t
9238 around `erase-buffer' and `insert'.
9239
9240 * descr-text.el (describe-text-properties): Replace buffer name
9241 "*Help-2*" with "*Help*<2>".
9242 (describe-char): Add functions print-help-return-message,
9243 toggle-read-only. Use help-setup-xref with nil to not store
9244 describe-char in help-xref-stack. Use help-make-xrefs to
9245 make [back] button.
9246
9247 * desktop.el (desktop-minor-mode-table): Add vc-dired-mode with nil.
9248
9249 * wdired.el (wdired-old-point): New internal variable.
9250 (wdired-change-to-wdired-mode): Set it buffer-locally.
9251 (wdired-abort-changes): Restore point after aborting changes.
9252
9253 2005-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
9254
9255 * vc.el (vc-do-command): Add a new value t for okstatus.
9256
9257 * vc-svn.el (vc-svn-registered): Use it to avoid popping up a spurious
9258 frame in case of errors.
9259
9260 2005-12-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9261
9262 * menu-bar.el (menu-bar-showhide-fringe-menu): Move "On the Right"
9263 so it comes after "On the Left" in the menu.
9264
9265 2005-12-12 Luc Teirlinck <teirllm@auburn.edu>
9266
9267 * cus-edit.el (customize-apropos, customize-apropos-options)
9268 (customize-apropos-faces, customize-apropos-groups): Doc fixes.
9269
9270 2005-12-12 Bill Wohler <wohler@newt.com>
9271
9272 * vc-svn.el (vc-svn-registered): Fix problem of visiting
9273 non-writable Subversion-controlled files by saving window
9274 configuration before calling vc-do-command. vc-do-command calls
9275 pop-to-buffer on error which is unexpected during registration.
9276
9277 2005-12-12 Jay Belanger <belanger@truman.edu>
9278
9279 * calc/README: Update the summary of changes.
9280
9281 2005-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
9282
9283 * descr-text.el (describe-char): Rework last fix to solve the problem
9284 is the same way it's solved for everything else in that function
9285 (i.e. by extracting the info before setting up the *Help* buffer).
9286
9287 2005-12-12 Kim F. Storm <storm@cua.dk>
9288
9289 * subr.el (version-regexp-alist): Allow space as separator before
9290 non-numeric part, e.g. "1.0 alpha".
9291 (version-to-list): Interpret .X.Y version as 0.X.Y version.
9292
9293 2005-12-12 Carsten Dominik <dominik@science.uva.nl>
9294
9295 * textmodes/org.el (org-agenda, org-timeline, org-todo):
9296 Implement Logging and the keep-modes setting.
9297 (org-get-category): Make sure a string is returned.
9298 (org-log-done): New function.
9299 (org-log-done, org-closed-string): New options.
9300
9301 2005-12-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9302
9303 * tooltip.el (tooltip-y-offset): Change default to 20.
9304
9305 2005-12-12 Richard M. Stallman <rms@gnu.org>
9306
9307 * mouse.el (mouse-drag-vertical-line): Use adjust-window-trailing-edge.
9308
9309 * frame.el (display-hourglass): Doc fix.
9310
9311 * help.el (help-for-help-internal): Simplify entry for `a'.
9312
9313 * info.el (Info-on-current-buffer): Doc fix.
9314 (info-insert-file-contents): Don't test (featurep 'jka-compr).
9315
9316 * startup.el (inhibit-splash-screen): Make this the real name.
9317 (inhibit-startup-message): Make this the alias.
9318 (command-line): Find only simple.el, and use its directory
9319 to fill in other preloaded files' names.
9320 (command-line): Deactivate the mark if deactivate-mark is set.
9321
9322 * international/mule.el (load-with-code-conversion):
9323 Bind deactivate-mark.
9324
9325 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
9326
9327 2005-12-11 Luc Teirlinck <teirllm@auburn.edu>
9328
9329 * cus-edit.el (customize-apropos): Avoid listing an option more
9330 than once under different aliases. No longer list user options
9331 that are not defined with defcustom (unless a prefix arg is given).
9332 Doc fix.
9333 (customize-apropos-options): Doc fix.
9334
9335 2005-12-11 Juri Linkov <juri@jurta.org>
9336
9337 * frame.el (set-background-color, set-foreground-color)
9338 (set-cursor-color, set-mouse-color, set-border-color):
9339 Add explicit prompts to read colors by `facemenu-read-color'.
9340 (show-trailing-whitespace, blink-cursor-delay)
9341 (blink-cursor-interval, display-hourglass, hourglass-delay):
9342 Remove tags.
9343 (display-hourglass, hourglass-delay): Doc fix.
9344 (cursor-in-non-selected-windows): Capitalize words in tag.
9345
9346 * faces.el (frame-background-mode): Replace `choice-item' keywords
9347 with `const' to not make [default] button. Change default value tag
9348 from `default' to `automatic'. Doc fix.
9349 (trailing-whitespace) <defface>: Change group `whitespace' to
9350 `whitespace-faces'.
9351
9352 2005-12-11 Richard M. Stallman <rms@gnu.org>
9353
9354 * buff-menu.el (Buffer-menu-sort-column): Not a user variable.
9355
9356 2005-12-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9357
9358 * term/mac-win.el: Create keymap for mac-apple-event-map.
9359
9360 2005-12-11 Nick Roberts <nickrob@snap.net.nz>
9361
9362 * tooltip.el (tooltip-mode): Move to start of file so that it
9363 appears at top of customize buffer.
9364
9365 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
9366 Add the gud groupname.
9367 (gud-tooltip-mode): Add the tooltip groupname.
9368 (gud-tooltip-echo-area): Add the gud groupname. Remove tag to
9369 avoid conflict with tooltip-use-echo-area.
9370
9371 2005-12-10 Romain Francoise <romain@orebokech.com>
9372
9373 * help.el (help-for-help-internal): Add `r' in doc string.
9374
9375 2005-12-10 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
9376
9377 * align.el (align-regexp, align-highlight-rule):
9378 Use region-beginning and region-end instead of point and mark, so that
9379 repetition (with `repeat-complex-command') recomputes the region
9380 bounds.
9381
9382 2005-12-10 Lennart Borgman <lennart.borgman.073@student.lu.se>
9383
9384 * window.el (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
9385 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
9386 (bw-refresh-edges, bw-adjust-window, bw-balance-sub): New functions.
9387 (balance-windows): Rewrite using the above new functions.
9388
9389 2005-12-10 David Koppelman <koppel@ece.lsu.edu>
9390
9391 * hi-lock.el (hi-lock-mode): Rename from hi-lock-buffer-mode;
9392 react if global-hi-lock-mode seems intended.
9393 (global-hi-lock-mode) Renamed from hi-lock-mode.
9394 (hi-lock-archaic-interface-message-used)
9395 (hi-lock-archaic-interface-deduce): New variables.
9396 (turn-on-hi-lock-if-enabled, hi-lock-line-face-buffer)
9397 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
9398 (hi-lock-find-patterns, hi-lock-font-lock-hook):
9399 Replace hi-lock-buffer-mode with hi-lock-mode.
9400
9401 2005-12-10 Kevin Rodgers <ihs_4664@yahoo.com>
9402
9403 * emacs-lisp/lisp.el (lisp-complete-symbol): Regenerate the
9404 completion list, even after a partial completion has been
9405 inserted in the current buffer. If there are more than 1
9406 completion, redisplay the *Completions* buffer; if the
9407 completion is unique, delete the *Completions* window.
9408
9409 2005-12-10 Eli Zaretskii <eliz@gnu.org>
9410
9411 * mail/rmail.el (rmail-next-same-subject): Handle multiple "Re: "
9412 strings and long subject lines that were broken into multiple
9413 lines at arbitrary places. Handle subjects that have "Re: " in
9414 the middle.
9415
9416 2005-12-10 John W. Eaton <jwe@octave.org>
9417
9418 * emacs/octave-mod.el (octave-electric-space): Don't indent
9419 comments or strings if octave-auto-indent is nil.
9420
9421 2005-12-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9422
9423 * term/mac-win.el: Require url when compiling.
9424 Call mac-process-deferred-apple-events after loading init files.
9425 (mac-apple-event-map): New defvar. Define event handlers in it.
9426 (core-event, internet-event): New Apple event class symbols.
9427 (open-application, reopen-application, open-documents)
9428 (print-documents, open-contents, quit-application)
9429 (application-died, show-preferences, autosave-now, get-url):
9430 New Apple event ID symbols.
9431 (about): New HICommand ID symbol.
9432 (mac-event-spec, mac-event-ae): New macros.
9433 (mac-ae-parameter, mac-ae-list, mac-bytes-to-integer)
9434 (mac-ae-selection-range, mac-ae-text-for-search)
9435 (mac-ae-open-documents, mac-ae-text, mac-ae-get-url): New functions.
9436 (mac-application-menu-map): Remove keymap. Handlers for HICommand
9437 and Services menu events are now defined in mac-apple-event-map.
9438 (mac-drag-n-drop): Remove selection range handling.
9439
9440 2005-12-10 Kenichi Handa <handa@m17n.org>
9441
9442 * simple.el (zap-to-char):
9443 * isearch.el (isearch-process-search-char): Translate CHAR by
9444 translation-table-for-input.
9445
9446 2005-12-09 Chong Yidong <cyd@stupidchicken.com>
9447
9448 * foldout.el (foldout-exit-fold): Properly hide subtree.
9449
9450 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
9451
9452 * files.el (save-buffer):
9453 * international/ucs-tables.el (ucs-set-table-for-input):
9454 * mail/mail-extr.el (mail-extract-address-components):
9455 * mail/sendmail.el (mail-mode): Reformat doc string.
9456
9457 2005-12-09 Juri Linkov <juri@jurta.org>
9458
9459 * isearch.el (isearch-highlight): Change main overlay priority
9460 from 1 to 1001. Simplify.
9461 (isearch-lazy-highlight-update): Change lazy overlay priority
9462 from 0 to 1000.
9463
9464 * replace.el (replace-highlight): Change overlay priority from
9465 1 to 1001.
9466
9467 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
9468 Change overlay priority from 1 to 1001. Reuse existing overlay.
9469
9470 * compare-w.el (compare-windows-highlight): Change overlay
9471 priority from 1 to 1000.
9472
9473 * menu-bar.el (menu-bar-edit-menu): Add listp around
9474 pending-undo-list to disable menu item "undo" when pending
9475 undo list is empty.
9476
9477 * locate.el (locate): Disable undo in *Locate* buffer.
9478
9479 2005-12-09 Kim F. Storm <storm@cua.dk>
9480
9481 * mail/smtpmail.el (smtpmail-via-smtp): Disable undo in SMTP buffer.
9482
9483 2005-12-09 David Ponce <david@dponce.com>
9484
9485 * recentf.el: Improvement of the menu code.
9486 (recentf-enabled-p): Move before first use. Use `kill-emacs-hook'
9487 instead of menu hook.
9488 (recentf-show-menu, recentf-hide-menu): New functions.
9489 (recentf-menu-customization-changed, recentf-mode): Use them.
9490 (recentf-menu-action, recentf-max-menu-items)
9491 (recentf-menu-open-all-flag, recentf-menu-append-commands-flag)
9492 (recentf-arrange-by-rule-others)
9493 (recentf-arrange-by-rules-min-items)
9494 (recentf-arrange-by-rule-subfilter) : Don't use
9495 `recentf-menu-customization-changed'.
9496 (recentf-arrange-rules): Likewise. Accept functions to compute
9497 sub-menu titles.
9498 (recentf-menu-filter): Likewise. Doc fix.
9499 (recentf-menu-value-shortcut): Doc fix.
9500 (recentf-dump-variable): Quote atom value.
9501 (recentf-make-menu-items): Update to use it as a menu filter.
9502 (recentf-match-rule): New function.
9503 (recentf-arrange-by-rule): Use it.
9504 (recentf-indirect-mode-rule): New function.
9505 (recentf-build-mode-rules): Use it.
9506 (recentf-dir-rule): New function.
9507 (recentf-arrange-by-dir): Use it.
9508 (recentf-filter-changer-current): Rename from
9509 `recentf-filter-changer-state'. All references updated.
9510 (recentf-filter-changer-alist): Update filter names.
9511 (recentf-filter-changer-select): New function.
9512 (recentf-filter-changer): Use it. Make a sub-menu from filters
9513 available in `recentf-filter-changer-alist'.
9514 (recentf-data-cache, recentf-clear-data)
9515 (recentf-update-menu): Remove. All references updated.
9516 (recentf-match-rule-p, recentf-build-dir-rules)
9517 (recentf-filter-changer-goto-next)
9518 (recentf-filter-changer-get-current)
9519 (recentf-filter-changer-get-next): Remove.
9520
9521 2005-12-08 Luc Teirlinck <teirllm@auburn.edu>
9522
9523 * cus-edit.el (custom-buffer-create-internal): Relabel the whole
9524 buffer "Reset" button to "Reset to Current" for consistency with
9525 the State buttons.
9526
9527 2005-12-08 John Paul Wallington <jpw@pobox.com>
9528
9529 * ibuf-ext.el (define-ibuffer-filter filename):
9530 If `dired-directory' is a list then really use its car.
9531
9532 2005-12-08 Kim F. Storm <storm@cua.dk>
9533
9534 * emulation/cua-rect.el (cua--rectangle-aux-replace):
9535 Fix indention of text on right side of replaced rectangle.
9536
9537 2005-12-09 Nick Roberts <nickrob@snap.net.nz>
9538
9539 * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
9540 No need to check gud-comint-buffer is bound.
9541 (gdb): Prevent multiple debugging when first session uses gdba.
9542
9543 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9544
9545 CC Mode update to 5.31.
9546
9547 * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
9548 Emacsen which lack `define-minor-mode'. (Currently Emacs <21.
9549 We might do this function properly in the future).
9550
9551 * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el:
9552 New macros c-sentence-end and c-default-value-sentence end, to cope
9553 with Emacs 22's new function `sentence-end'.
9554
9555 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9556
9557 * progmodes/cc-cmds.el (c-show-syntactic-information): Solve the
9558 compat issue using `c-put-overlay' and `c-delete-overlay'.
9559
9560 * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay):
9561 New compat macros to handle overlays/extents.
9562
9563 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9564
9565 * progmodes/cc-fix.el: Add definitions of the macros push and pop
9566 (for GNU Emacs 20.4)
9567
9568 * progmodes/cc-defs.el:
9569 (i) Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4)
9570
9571 * progmodes/cc-cmds.el (c-show-syntactic-information): Change the
9572 highlighting mechanism so it will work in XEmacs too.
9573
9574 * progmodes/cc-defs.el: Insert c-int-to-char.
9575
9576 * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
9577 call to the new macro c-int-to-char. This solves XEmacs's
9578 regarding characters as different from integers.
9579
9580 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9581
9582 * progmodes/cc-fonts.el (c-make-syntactic-matcher):
9583 New internal helper.
9584
9585 (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
9586 construct to make the indirect face lookup work in XEmacs.
9587
9588 (c-cpp-matchers): Append the negation char face to the existing
9589 fontification, so that the cpp face doesn't disappear.
9590 Use `c-make-syntactic-matcher' to avoid negation chars in comments
9591 and strings.
9592
9593 * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
9594 to map to `font-lock-negation-char-face' in emacsen where it exists.
9595
9596 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9597
9598 * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
9599
9600 * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el:
9601 Rename "c-subword-move-mode" as "c-subword-mode".
9602
9603 * progmodes/cc-mode.el: Added tty suitable bindings for C-c
9604 <delete> and C-c C-<delete>. (To the c-hungry- delete functions).
9605
9606 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9607
9608 * progmodes/cc-mode.el: Added autoload directive for
9609 `c-subword-move-mode' for use in older emacsen.
9610
9611 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9612
9613 * progmodes/cc-mode.el:
9614 (i) Insert a binding for C-c C-backspace into
9615 c-bind-special-erase-keys which works in TTYs.
9616 (ii) Make sure that when file styles are used, any explicitly
9617 given style variables take priority over those in the style.
9618 Do this by calling `hack-local-variables' a second time.
9619
9620 * progmodes/cc-vars.el: Add language specific customization
9621 widgets for AWK to c-doc-comment-style, c-require-final-newline
9622 and c-default-style. Add a defcustom for awk-mode-hook.
9623 Give c-syntactic-element and c-syntactic-context doc-strings by
9624 directly setting their `variable-documentation' propery.
9625 This allows Emacs 22.1 to read these with C-h v.
9626
9627 * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan Monnier).
9628
9629 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9630
9631 * progmodes/cc-fonts.el, cc-vars.el
9632 (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection)
9633 (gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
9634 Masatake YAMATO.
9635
9636 (c-doc-comment-style): Made GtkDoc default in C mode.
9637
9638 * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
9639 and C-c C-<delete>.
9640
9641 (c-bind-special-erase-keys): New function for use on
9642 `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
9643
9644 * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
9645 <delete> key behavior in XEmacs according to `delete-forward-p'.
9646 C.f. `c-electric-delete'.
9647
9648 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9649
9650 * progmodes/cc-mode.el: Give c-hungry-backspace and
9651 c-hungry-delete-forward permanent key bindings.
9652
9653 * progmodes/cc-cmds.el (c-electric-semi&comma):
9654 Bind c-syntactic-context for calls to "criteria functions", for
9655 consistency with other calls to user functions.
9656
9657 * progmodes/cc-cmds.el (c-indent-command): Expunge use of
9658 `current-prefix-arg', since this might be the prefix arg to a
9659 command which calls c-indent-command as a function. Change the
9660 interactive spec from "p" to "P".
9661
9662 * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
9663 reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
9664 was difficult to understand.
9665
9666 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9667
9668 * progmodes/cc-engine.el (c-on-identifier): Fix bug when at the
9669 first char of an identifier.
9670
9671 * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
9672 +" syntax in C++.
9673
9674 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9675
9676 * progmodes/cc-cmds.el (c-mask-paragraph): Correct, so that
9677 auto-fill doesn't split a c-comment's last word from a hanging
9678 "*/" when a space is typed between them after fill-column.
9679
9680 * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
9681
9682 * progmodes/cc-styles.el (c-set-style)
9683 (c-setup-paragraph-variables): Abort the command if we're not in a
9684 CC Mode buffer.
9685
9686 * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
9687 with blank comment-prefix, and a blank line as the comment's
9688 second line.
9689
9690 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9691
9692 * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
9693 Incorporate the patterns added in the Emacs development branch
9694 for the new Emacs 22 face `font-lock-negation-char-face'.
9695
9696 * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
9697 of "red" since it stands out better in xterms and DOS terminals.
9698
9699 * progmodes/cc-engine.el (c-literal-faces):
9700 Add `font-lock-comment-delimiter-face' which is new in Emacs 22.
9701
9702 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9703
9704 * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
9705 forcibly enable c-electric-flag.
9706
9707 * progmodes/cc-vars.el, cc-cmds.el: New clean-up
9708 `comment-close-slash' on c-electric-slash: if enabled, typing `/' just
9709 after the comment-prefix of a C-style comment will close that comment.
9710
9711 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9712
9713 * progmodes/cc-fonts.el (c-basic-matchers-before)
9714 (c-complex-decl-matchers): Fix the "not-arrow-prefix" regexp used
9715 in Pike.
9716
9717 * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
9718 digraphs.
9719
9720 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
9721 (c-cpp-message-directives, c-cpp-include-directives)
9722 (c-opt-cpp-macro-define, c-opt-cpp-macro-define-start)
9723 (c-cpp-expr-directives): Introduce new language constants to
9724 control cpp syntax in a cleaner way.
9725
9726 (c-cpp-expr-functions): Rename from c-cpp-defined-fns.
9727
9728 (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
9729
9730 * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines)
9731 (c-multiline-string-start-char): New language constants and
9732 variables to specify how newlines in string literals work.
9733
9734 (c-font-lock-invalid-string): Use them.
9735
9736 * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
9737 unbalanced close brace is entered. Optimization by avoiding going
9738 back over arbitrarily large blocks. Removed hints that this
9739 function only would be relevant/useful in AWK.
9740
9741 (c-electric-brace): Indent syntactically after the cleanups since
9742 lineup functions might do it differently then.
9743
9744 * progmodes/cc-engine.el, cc-langs.el
9745 (c-opt-op-identifier-prefix): New language constant and variable.
9746
9747 (c-just-after-func-arglist-p, c-after-special-operator-id)
9748 (c-search-decl-header-end, c-inside-bracelist-p): Use it.
9749
9750 * progmodes/cc-align.el, cc-engine.el
9751 (c-after-special-operator-id): New helper to handle C++ operator
9752 identifiers.
9753
9754 (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p)
9755 (c-guess-basic-syntax): Handle C++ operator identifiers in
9756 declarations.
9757
9758 * progmodes/cc-langs.el (c-assignment-operators): Add the
9759 trigraph version of ^= too.
9760
9761 * progmodes/cc-langs.el (c-assignment-operators): Add the
9762 trigraph version of |= in C++.
9763
9764 * progmodes/cc-fonts.el (c-font-lock-declarators):
9765 Handle `c-decl-hangon-kwds' after the identifier name.
9766
9767 * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
9768 whether an arglist is "nonempty", ignore a comment after the open
9769 paren if it isn't followed by a non-comment token on the same line.
9770
9771 * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4:
9772 Enable heuristics below the point to cope with classes inside special
9773 brace lists in Pike.
9774
9775 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9776
9777 * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
9778
9779 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9780
9781 * progmodes/cc-guess.el (cc-guess-install): New function to
9782 install an already guessed style in another buffer.
9783
9784 * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
9785 sets `inhibit-read-only' - `c-save-buffer-state' should be used
9786 anyway if the change always is undone.
9787
9788 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9789
9790 Implement togglable electricity:
9791
9792 * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
9793 saying when it should be used.
9794
9795 * progmodes/cc-engine.el: Add the new buffer-local variable,
9796 c-electric-flag.
9797
9798 * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
9799 c-toggle-auto-newline.
9800
9801 * progmodes/cc-mode.el: Rename c-toggle-auto-state to
9802 c-toggle-auto-newline. Remove the binding for
9803 c-toggle-auto-hungry-state. Add the binding C-c C-l for the new
9804 c-toggle-electric-state.
9805
9806 * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
9807
9808 * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
9809 c-\(forward\|backward\)-subword.
9810 (c-update-modeline): Add the new modeline flag `l' for
9811 `c-electric-flag'. Make the auto-newline flag `a' dependent on `l'.
9812 (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'.
9813 Make the old name an alias of the new name.
9814 (c-toggle-electric-state): New function.
9815 (c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\)):
9816 Adapt these functions to do electric things only when
9817 c-electric-flag is non-nil.
9818 (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
9819 new functions from c-electric-brace.
9820 (c-point-syntax): Add a check for "virtual semicolons" in AWK
9821 mode, so that the tentative extra newline doesn't change the
9822 syntax of the following brace.
9823 (c-electric-brace): Restructure by extracting the above functions.
9824 Tidy up the coding somewhat.
9825 (c-electric-semi&comma, c-electric-colon, c-electric-paren):
9826 restructure a bit.
9827
9828 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9829
9830 * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
9831 anchor position(s) using faces. Thanks to Masatake YAMATO for the idea.
9832
9833 * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
9834 (c-submode-indicators): Change name from `c-auto-hungry-string'
9835 since it's now used to track another submode.
9836
9837 (c-update-modeline): Convert to function and extended to check
9838 `c-subword-move-mode'.
9839
9840 (c-forward-into-nomenclature, c-backward-into-nomenclature):
9841 Convert to compat aliases for `c-forward-subword' and
9842 `c-backward-subword'.
9843
9844 * progmodes/cc-subword.el: New functions and minor mode to handle
9845 SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
9846
9847 (c-forward-subword, c-backward-subword, c-mark-subword)
9848 (c-kill-subword, c-backward-kill-subword, c-transpose-subwords)
9849 (c-capitalize-subword, c-downcase-subword, c-upcase-subword):
9850 Functions corresponding to the standard word handling functions.
9851
9852 (c-subword-move-mode): Minor mode that replaces all the standard
9853 word handling functions with their subword equivalences.
9854
9855 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9856
9857 * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
9858 entry for one-liner-defun.
9859
9860 * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
9861 name in its def-edebug-spec.
9862
9863 * progmodes/cc-cmds.el (c-electric-brace): Make the
9864 one-liner-defun clean-up work with empty-defun-braces. o-l-d now
9865 compacts space before a comment, if this will make things fit on
9866 one line.
9867
9868 Introduce an "awk" style, mainly for auto-newline and clean-ups.
9869
9870 * progmodes/cc-align.el: New function c-snug-1line-defun-close
9871
9872 * progmodes/cc-cmds.el: In c-electric-brace, add code for new
9873 clean-up one-liner-defun.
9874
9875 * progmodes/cc-styles.el: Add the new "awk" style.
9876
9877 * progmodes/cc-vars.el: Add description of one-liner-defun to
9878 c-cleanup-list's doc-string. New user options,
9879 c-max-one-liner-length. In c-default-style, set the default style
9880 for AWK to "awk".
9881
9882 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9883
9884 * progmodes/cc-engine.el (c-forward-label): Fix fontification of
9885 macros inside labels.
9886
9887 * progmodes/cc-engine.el (c-looking-at-bos): Obsolete in favor of
9888 `c-at-statement-start-p' and `c-at-expression-start-p'.
9889
9890 * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
9891 error if the mark isn't set.
9892
9893 * progmodes/cc-engine.el (c-guess-continued-construct)
9894 (c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
9895 accurately detect functions inside functions.
9896
9897 * progmodes/cc-engine.el (c-at-expression-start-p): New function
9898 like `c-at-statement-start-p' that additionally recognizes commas
9899 and expression parentheses as delimiters.
9900
9901 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Add flag
9902 to avoid heuristics that doesn't work for unclosed blocks.
9903 (c-at-statement-start-p): New function.
9904
9905 * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
9906 Objective-C directives, e.g. directives spanning lines should work
9907 reasonably well now.
9908
9909 (c-put-c-type-property, c-clear-c-type-property): New helpers.
9910
9911 (c-forward-objc-directive): New function to move over any ObjC
9912 directive.
9913
9914 (c-just-after-func-arglist-p, c-guess-basic-syntax)
9915 (c-basic-matchers-before): Use it.
9916
9917 (c-font-lock-objc-iip-decl): Remove.
9918
9919 * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
9920 in the template arglist recognition.
9921
9922 * progmodes/cc-styles.el (c-style-alist): Fix several
9923 inconsistencies in the Whitesmith style.
9924
9925 * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks):
9926 New lineup function to get lines after Whitesmith style blocks
9927 correctly indented.
9928
9929 (c-lineup-whitesmith-in-block): Back out the compensation for
9930 opening parens since it's done using `add' lists in the style
9931 definition instead. Don't use the anchor position since it varies
9932 too much between the syntactic symbols. :P
9933
9934 * progmodes/cc-vars.el (c-valid-offset): Update.
9935
9936 * progmodes/cc-engine.el (c-evaluate-offset): Extend to handle
9937 lists where the offsets are combined according to several
9938 different methods: `first', `min', `max', and `add'.
9939 Report offset evaluation errors with `c-benign-error' so that some kind
9940 of reindentation still is done.
9941
9942 * progmodes/cc-engine.el (c-guess-basic-syntax):
9943 Anchor `arglist-intro' the same way as `arglist-cont-nonempty' and
9944 `arglist-close'.
9945
9946 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix similar
9947 situations for `arglist-cont-nonempty' and `arglist-close'.
9948
9949 * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New const.
9950
9951 * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
9952 cc-bytecomp-boundp' in a number of places.
9953
9954 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a
9955 macro related issue.
9956
9957 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9958
9959 * progmodes/cc-awk.el: Change the terminology of regexps: A char
9960 list is now [asdf], a char class [:alpha:].
9961 Include code for char classes.
9962 Set c-awk-NL-prop on lines ending in open strings. (Bug fix.)
9963 Add character classes (e.g. "[:alpha:]") into AWK Mode's regexps.
9964
9965 Remove (nearly all of) the cruft associated with AWK Mode's former
9966 concept of "virtual semicolons":
9967
9968 Adapt c-beginning-of-statement, c-end-of-statement (together with
9969 subfunctions) to use the new notion of "virtual semicolon" in
9970 place of the old awkward special handling for AWK. There remains
9971 much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
9972 * progmodes/cc-cmds.el:
9973 (c-ascertain-adjacent-literal): In the backwards direction, now
9974 recognises AWK regexp delimiters as string delimiters.
9975 (c-after-statement-terminator-p): Adapt for virtual semicolons;
9976 check more rigorously for "end of macro".
9977 (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
9978 virtual semicolons;
9979 (c-beginning-of-statement): Adapt for virtual semicolons; Separate
9980 out the code for forward movement into ...
9981 (c-end-of-statement): Now contains the code for forward movement,
9982 adapted for virtual semicolons.
9983
9984 * progmodes/cc-engine.el:
9985 (c-ws*-string-limit-regexp): New regexp.
9986 (c-forward-single-comment, c-backward-single-comment): Comment out
9987 the (now redundant) "special" AWK stuff.
9988
9989 * progmodes/cc-styles.el, cc-vars.el: Change the settings of
9990 c-string-par-start, c-string-par-separate to be more like Text
9991 Mode than Fundamental Mode.
9992
9993 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9994
9995 * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
9996 to the fontified region so that fontification doesn't occur
9997 outside it (could happen e.g. when fontifying a line with an
9998 unfinished declaration).
9999
10000 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10001
10002 * progmodes/cc-awk.el: Move regexps for analysing AWK code to near the
10003 start of the file. ^L now separate sections of the file.
10004 (c-awk-non-eol-esc-pair-re, c-awk-blank-or-comment-line-re)
10005 (c-awk-one-line-possibly-open-string-re)
10006 (c-awk-regexp-one-line-possibly-open-char-class-re)
10007 (c-awk-one-line-possibly-open-regexp-re)
10008 (c-awk-one-line-non-syn-ws*-re): New defonsts.
10009 (c-awk-at-vsemi-p, c-awk-vsemi-status-unknown-p): New functions.
10010
10011 Amend the concept of "virtual semicolons" (in the indentation
10012 engine) for languages like AWK, such that they are now
10013 conceptually attached to end of the last token of a statement, not
10014 the end of the line. (In AWK Mode, however, the pertinent text
10015 property is still physically set on the EOL.) Remove the specific
10016 tests for awk-mode, thus facilitating the introduction of other
10017 language modes where EOLs can end statements.
10018 (Note: The funtionality in cc-cmds.el, specifically
10019 c-beginning/end-of-statement has yet to be amended.)
10020
10021 * progmodes/cc-defs.el (c-at-vsemi-p, c-vsemi-status-unknown-p):
10022 New macros.
10023
10024 * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
10025 c-stmt-delim-chars. New c-lang-defvars: c-at-vsemi-p-fn,
10026 c-vsemi-status-unknown-p-fn (in a new page).
10027
10028 * progmodes/cc-engine.el: In c-beginning-of-statement-1,
10029 c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
10030 numerous awkward forms like
10031 (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
10032 with (c-at-vsemi-p). Fix a few typos. In c-guess-basic-syntax, new
10033 variable before-ws-ip, the place just after char-before-ip appears.
10034
10035 * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
10036 a comment.
10037
10038 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10039
10040 * progmodes/cc-cmds.el (c-electric-brace): Clean up using
10041 `c-tentative-buffer-changes'.
10042
10043 * progmodes/cc-defs.el (c-region-is-active-p): Simplify and
10044 convert to macro to choose between Emacs and XEmacs at compile time.
10045
10046 (c-set-region-active): New set counterpart to `c-region-is-active-p'.
10047
10048 (c-tentative-buffer-changes): New macro to handle temporary buffer
10049 changes in a convenient way.
10050
10051 (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
10052 for `c-tentative-buffer-changes'.
10053
10054 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tighten up
10055 the checks for paren sexps between the point and the keyword, to
10056 avoid some false alarms.
10057
10058 * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
10059 Fixed a situation where an error could be thrown for unbalanced
10060 parens. Changed to make use of c-keyword-member' to avoid some
10061 repeated regexp matches.
10062
10063 (c-opt-lambda-key, c-opt-inexpr-block-key, c-opt-inexpr-class-key):
10064 These language variable are no longer necessary.
10065
10066 (c-block-stmt-kwds): New language constant used by
10067 c-looking-at-inexpr-block'.
10068
10069 (c-guess-basic-syntax): Remove an optional check that looked at
10070 the existence of the now removed language variables.
10071
10072 * progmodes/cc-engine.el (c-fdoc-shift-type-backward)
10073 (c-forward-decl-or-cast-1): Fix invalid recognition of C++ style
10074 object instantiation expressions as declarations in some contexts.
10075 This bug only affected languages where the declarator can't be
10076 enclosed in parentheses.
10077
10078 * progmodes/cc-styles.el (c-style-alist): Fix the GNU style to
10079 insert newlines before and after substatement braces.
10080
10081 * progmodes/cc-engine.el: Improved the heuristics for recognizing
10082 function declaration headers and the handling of C++ style member
10083 init lists.
10084
10085 (c-just-after-func-arglist-p): Rewritten to use
10086 `c-forward-decl-or-cast-1'. Now behaves a bit differently too.
10087
10088 (c-beginning-of-member-init-list): Remove since it isn't used anymore.
10089
10090 (c-guess-basic-syntax): Adapt case 5B for the new
10091 `c-just-after-func-arglist-p'. Merge cases 5B.1 and 5B.3.
10092 Remove cases 5D.1 and 5D.2 since they aren't trigged anymore (case 5B.1
10093 covers all cases now).
10094
10095 * progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'.
10096
10097 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10098
10099 * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
10100 c-string-par-start/separate c-sentence-end-with-esc-eol,
10101 initialised in c-setup-paragraph-variables, used in string
10102 scanning subroutines of c-beginning-of-statement.
10103
10104 * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
10105 which precedes the newly inserted `{'.
10106
10107 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10108
10109 * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
10110 function for declaration level blocks. It should now cope with
10111 templates better and also be a lot more comprehensible.
10112
10113 (c-looking-at-decl-block): The new function.
10114
10115 (c-search-uplist-for-classkey): The old one. It's now a wrapper
10116 for compatibility.
10117
10118 (c-add-class-syntax, c-guess-continued-construct)
10119 (c-guess-basic-syntax): Adapt for `c-looking-at-decl-block'.
10120
10121 (c-decl-block-key): Change to tell apart ambiguous and
10122 unambiguous keywords. Pike specials are now handled directly in
10123 the code instead.
10124
10125 (c-block-prefix-disallowed-chars, c-block-prefix-charset):
10126 New language constants and variables to make the backward skip in
10127 `c-looking-at-decl-block' as tight as possible.
10128
10129 (c-nonsymbol-token-char-list): New language constant.
10130
10131 * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
10132 find balanced template arglists backwards.
10133
10134 * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
10135 making char classes for `c-syntactic-skip-backward'.
10136
10137 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify case
10138 16D - can't be a class-close at that point.
10139
10140 * progmodes/cc-engine.el (c-guess-basic-syntax)
10141 (c-add-class-syntax): Don't narrow out the enclosing declaration
10142 level. This makes everything a lot easier, and it was actually
10143 only four small places that needed it to work. Some places that
10144 previously did `widen' are removed now, which has the effect that
10145 `c-guess-basic-syntax' never will look at things outside the
10146 current narrowment now. The anchor position for `topmost-intro'
10147 is affected by this, but it was so bogus it was basically useless
10148 before, and now it's equally bogus but in a slightly different way.
10149
10150 (c-narrow-out-enclosing-class): Gone.
10151
10152 (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
10153 the narrowed region.
10154
10155 (c-least-enclosing-brace): Remove silly optional argument.
10156
10157 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
10158 the point could be left directly after an open paren when finding
10159 the beginning of the first decl in the block.
10160
10161 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
10162 Specify which submatch to use.
10163
10164 * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
10165
10166 (c-decl-start-re): No longer any need for special treatment of
10167 ObjC due to the above.
10168
10169 (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
10170 presumably follows C in that regard.
10171
10172 * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
10173 New language constants to specify operator tokens inside
10174 identifiers in a more high level way.
10175
10176 (c-opt-identifier-prefix-key): New internal language constant.
10177
10178 (c-opt-identifier-concat-key, c-opt-after-id-concat-key)
10179 (c-identifier-start, c-identifier-key): Now completely calculated
10180 from other constants.
10181
10182 (c-identifier-last-sym-match): Decommission since it's no longer used.
10183
10184 (c-operators): Use `c-identifier-ops'. Document `postfix-if-paren'.
10185
10186 * progmodes/cc-engine.el (c-forward-name): Remove the
10187 optimization when c-identifier-key is equal to c-symbol-key since
10188 it doesn't work in byte compiled files. Don't record empty
10189 regions as identifiers.
10190
10191 * progmodes/cc-langs.el (c-filter-ops): New helper function to
10192 simplify access to `c-operators' and its likes.
10193
10194 (c-operator-list, c-all-op-syntax-tokens)
10195 (c-nonsymbol-token-regexp, c-<>-multichar-token-regexp)
10196 (c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds)
10197 (c-primary-expr-regexp, c-cast-parens): Use it.
10198
10199 * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
10200 an explicit language in functions.
10201
10202 * progmodes/cc-defs.el (c-make-keywords-re): Add an appendable
10203 variant of adornment.
10204
10205 * progmodes/cc-langs.el (c-any-class-key): Remove unused language
10206 variable.
10207
10208 (c-type-decl-prefix-key): Remove some now unnecessary cruft from
10209 the Pike value.
10210
10211 * progmodes/cc-engine.el (c-on-identifier)
10212 (c-simple-skip-symbol-backward): Small fix for handling "-"
10213 correctly in `skip-chars-backward'. Affected the operator lfun
10214 syntax in Pike.
10215
10216 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disable the
10217 diagnostic message about precompiled language vars not being used.
10218
10219 * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
10220 "__attribute__" is followed by a parenthesis.
10221
10222 (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re)
10223 (c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
10224 language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
10225
10226 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el:
10227 Internal cleanups to properly detect the declared identifiers in
10228 various declarations.
10229
10230 (c-decl-start-kwds): New language constant to recognize
10231 declarations that can start anywhere. Used for class declarations
10232 in Pike.
10233
10234 (c-specifier-key, c-not-decl-init-keywords)
10235 (c-decl-prefix-or-start-re, c-find-decl-prefix-search)
10236 (c-find-decl-spots): Implement `c-decl-start-kwds'.
10237
10238 (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds)
10239 (c-decl-hangon-key, c-forward-decl-or-cast-1): Separate the
10240 handling of the compiler specific extension keywords into a new
10241 language constant `c-decl-hangon-kwds' that defines keyword
10242 clauses to be ignored in declarations.
10243
10244 (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
10245 past unrecognized tokens when handling `c-colon-type-list-kwds'.
10246 Necessary to stop at the declared identifier in e.g. IDL valuetype
10247 declarations.
10248
10249 (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds)
10250 (c-prefix-spec-kwds-re, c-postfix-spec-kwds)
10251 (c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key)
10252 (c-forward-decl-or-cast-1): Recognize the declared identifier in
10253 class and enum declarations as such and not as part of the type.
10254
10255 (c-forward-decl-or-cast-1, c-forward-label): Relax the
10256 interpretation of PRECEDING-TOKEN-END when there's no preceding token.
10257
10258 (c-forward-decl-or-cast-1): Don't disregard sure signs of
10259 declarations when there's some syntax error later on.
10260
10261 (c-complex-decl-matchers): Did away with a reference to
10262 `c-specifier-key'.
10263
10264 * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
10265 value - this variable is always dynamically bound.
10266
10267 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el
10268 * cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el
10269 * cc-cmds.el, cc-defs.el: Change the policy for marking up
10270 functions that might do hidden buffer changes: All such internal
10271 functions are now marked instead of those that don't.
10272
10273 (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments)
10274 (c-(forward|backward)-single-comment, c-parse-state, c-on-identifier)
10275 (c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments)
10276 (c-literal-type): Allow these functions to make hidden buffer changes,
10277 so that they are free to use text property caching later on.
10278
10279 (c-electric-backspace, c-electric-delete-forward, c-electric-pound)
10280 (c-electric-brace, c-electric-slash, c-electric-star)
10281 (c-electric-semi&comma, c-electric-colon, c-electric-lt-gt)
10282 (c-electric-paren, c-electric-continued-statement, c-indent-command)
10283 (c-indent-region, c-mask-paragraph, c-indent-new-comment-line)
10284 (c-context-line-break): Add `c-save-buffer-state' calls to comply
10285 with the changed semantics of the functions above.
10286
10287 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a bug
10288 when macros occur in obscure places. Optimized the sexp movement
10289 a bit.
10290
10291 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10292
10293 Enhancements for c-beginning-of-statement to work in AWK Mode:
10294
10295 * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
10296 (completed statement) with `}' (statement completed by closing
10297 brace or semicolon) and `$' (statement completed by EOL).
10298
10299 (c-awk-virtual-semicolon-ends-prev-line-p)
10300 (c-awk-virtual-semicolon-ends-line-p)
10301 (c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward)
10302 (c-awk-at-statement-end-p): New functions.
10303
10304 * progmodes/cc-cmds.el: Simplify the structure of functions
10305 c-forward-over-illiterals, c-back-over-illiterals. Enhance these
10306 two functions and c-beginning-of-statement to handle AWK Mode.
10307
10308 * progmodes/cc-engine.el: Enhance c-forward-single-comment,
10309 c-backward-single-comment for AWK mode. Attempt to clarify their
10310 doc-strings.
10311
10312 * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
10313
10314 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10315
10316 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
10317 label handling. Labels are now recognized in a uniform and more
10318 robust way, regardless of context. Text properties are put on all
10319 labels to recognize the following declarations better.
10320 Multiword labels are handled both in indentation and fontification for
10321 the benefit of language extensions like Qt. For consistency, keywords
10322 in labels are now fontified with the label face instead.
10323 That also applies to "case" and "default".
10324
10325 (c-beginning-of-statement-1): Fix some bugs in the label
10326 handling. Disregard `c-nonlabel-token-key' in labels that begin
10327 with `c-label-kwds'.
10328
10329 (c-find-decl-spots): Support that the callback adds more
10330 `c-decl-end' spots to find.
10331
10332 (c-forward-decl-or-cast-1): Don't treat a list of plain
10333 identifiers followed by a colon as a declaration.
10334
10335 (c-forward-label): New function to recognize labels.
10336
10337 (c-guess-basic-syntax): Replace uses of `c-label-key' with
10338 `c-forward-label'. Moved the label recognition cases (14 and 15)
10339 earlier since they aren't so context sensitive now. Handle labels
10340 on the top level gracefully. Moved access label recognition to
10341 the generic label case (CASE 15) - removed CASE 5E.
10342
10343 (c-font-lock-declarations): Add recognition of labels in the
10344 same round since we need to handle labels in parallell with other
10345 declarations to recognize both accurately. It should also improve
10346 speed.
10347
10348 (c-simple-decl-matchers, c-basic-matchers-after):
10349 Move `c-font-lock-labels' so that it only is used on decoration level 2
10350 since `c-font-lock-declarations' handles it otherwise.
10351
10352 (c-complex-decl-matchers): Remove the simplistic recognition of
10353 access labels.
10354
10355 (c-decl-prefix-re): Remove the kludges that was necessary to cope
10356 with labels earlier.
10357
10358 (c-decl-start-re): New language variable to make
10359 `c-font-lock-declarations' stop for the special protection labels
10360 in Objective-C that start with `@'.
10361
10362 (c-label-key): Remove since it's no longer used.
10363
10364 (c-recognize-colon-labels, c-label-prefix-re): New language
10365 constants to support recognition of generic colon-terminated labels.
10366
10367 (c-type-decl-end-used): `c-decl-end' is now used whenever there
10368 are colon terminated labels.
10369
10370 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
10371 first argument starts with a special brace list.
10372
10373 * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1)
10374 (c-font-lock-declarations): Break out the declaration and cast
10375 recognition from `c-font-lock-declarations' to a new function, so
10376 that it can be used in the indentation engine.
10377
10378 * progmodes/cc-engine.el (c-find-decl-spots): Fix bug in backing
10379 up to the start of the literal. Fixed bug with the point on the
10380 wrong side of the search limit that could happen when the start
10381 position is inside a literal.
10382
10383 * progmodes/cc-engine.el (c-parse-state)
10384 (c-invalidate-state-cache): Modify the use of `c-state-cache-end'
10385 so that it's kept a little bit back to increase the hit rate.
10386
10387 (c-parse-state): Change the macro handling and fixed some
10388 glitches. Macro context is checked more often than necessary now,
10389 but otoh less garbage conses are generated.
10390
10391 * progmodes/cc-engine.el (c-parse-state)
10392 (c-invalidate-state-cache): Cache the last position where
10393 `c-state-cache' applies. This can speed up refontification quite
10394 a bit in blocks where there are many non-brace parens before the point.
10395
10396 (c-state-cache-end): New variable for this.
10397
10398 (c-guess-basic-syntax, c-debug-parse-state): Adapt for the new
10399 cache variable.
10400
10401 * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
10402 get close initial continue positions when the start position is
10403 inside a literal or macro. Do not call the callback for spots
10404 before the start position (which can happen e.g. for `c-decl-end'
10405 spots inside comments). Optimize better in special cases when the
10406 region is a single line inside a literal or macro (typically when
10407 the current line is refontified).
10408
10409 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify calls
10410 to `c-add-stmt-syntax' - there's no need to explicitly whack off
10411 entries from the paren state.
10412
10413 * progmodes/cc-engine.el (c-add-stmt-syntax): Narrow down the
10414 special case for "else if" clauses.
10415
10416 * progmodes/cc-engine.el (c-looking-at-inexpr-block)
10417 (c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
10418
10419 * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks):
10420 New language variable to recognize the gcc extension with statement
10421 blocks inside expressions.
10422
10423 * progmodes/cc-engine.el (c-add-stmt-syntax): Restructure to make
10424 it somewhat more comprehensible. The argument AT-BLOCK-START is
10425 no longer used and hence removed.
10426
10427 (c-guess-continued-construct, c-guess-basic-syntax): Update calls
10428 to `c-add-stmt-syntax'.
10429
10430 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
10431 Use `c-beginning-of-statement-1' instead of duplicating parts of it.
10432 This fixes bogus label recognition.
10433
10434 * progmodes/cc-engine.el (c-add-type, c-check-type)
10435 (c-forward-name, c-forward-type): Improve storage of template
10436 types in `c-found-types' so that they can be recognized better.
10437
10438 (c-syntactic-content): Add option to skip past nested parens.
10439
10440 * progmodes/cc-engine.el (c-forward-name):
10441 Set `c-last-identifier-range' all the time. It's less work that way.
10442 Handle that there might not be an identifier to store in
10443 `c-last-identifier-range'.
10444
10445 (c-forward-type): Handle that `c-last-identifier-range' might be
10446 nil from `c-forward-name'.
10447
10448 * progmodes/cc-defs.el (c-safe-scan-lists)
10449 (c-(go-)?(up|down)-list-(forward|backward)): Add limit arguments.
10450
10451 * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
10452 to work even if the form fails.
10453
10454 * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
10455 down in a large file in one go.
10456
10457 (c-get-fallback-start-pos): New helper function for `c-parse-state'.
10458
10459 * progmodes/cc-align.el (c-lineup-assignments): New lineup
10460 function which is like `c-lineup-math' but returns nil instead of
10461 `c-basic-offset' when it doesn't match.
10462
10463 (c-lineup-math): Change to use `c-lineup-assignments'.
10464
10465 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10466
10467 * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
10468 c-beginning-of-statement. New subfunctions
10469 c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
10470
10471 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10472
10473 * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
10474 hardcoded char classes whereever possible. Changed a couple of
10475 places to use skip by syntax instead of skip by char class.
10476
10477 * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
10478 Fix a bug in the regexp that caused extreme backtracking.
10479
10480 * progmodes/cc-langs.el (c-block-comment-starter)
10481 (c-block-comment-ender): New language constants to specify in a
10482 single place how block comments look.
10483
10484 (c-comment-start-regexp, c-block-comment-start-regexp)
10485 (comment-start, comment-end, comment-start-skip)
10486 (c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws)
10487 (c-syntactic-ws, c-nonempty-syntactic-ws)
10488 (c-single-line-syntactic-ws, c-syntactic-eol): Now built from
10489 `c-line-comment-starter', `c-block-comment-starter' and
10490 `c-block-comment-ender'.
10491
10492 (c-block-comment-regexp, c-unterminated-block-comment-regexp):
10493 New language constants to break up things a bit.
10494
10495 (c-simple-ws): New language constant for simple whitespace.
10496
10497 * progmodes/cc-defs.el (c-concat-separated): New convenience function.
10498
10499 * progmodes/cc-defs.el (c-make-keywords-re): Add kludge for bug
10500 in `regexp-opt' in Emacs 20 and XEmacs when strings contain
10501 newlines. Allow and ignore nil elements in the list.
10502
10503 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10504
10505 * progmodes/cc-cmds.el: Comment out a (n almost certainly
10506 superfluous) check, (eq here (point-max)) in c-beginning-of-statement.
10507
10508 * progmodes/cc-cmds.el: Tidy up the comments in
10509 c-beginning-of-statement and subfunctions.
10510
10511 * progmodes/cc-awk.el: Replace calls to put-text-property to the
10512 more flexible c-put-char-property and c-clear-char-properties.
10513 Add the author's email address.
10514
10515 * progmodes/cc-langs.el (c-block-comment-start-regexp): New variable.
10516
10517 * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
10518 closing "*/" of a block comment.
10519
10520 * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
10521 subfunctions) so that it works at BOB and EOB.
10522
10523 * progmodes/cc-cmds.el, cc-vars.el: More updating of
10524 c-beginning-of-statement, including new variable
10525 c-block-comment-start-regexp.
10526
10527 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10528
10529 * progmodes/cc-langs.el (c-known-type-key): Optimize simple
10530 symbols from `*-font-lock-extra-types' so that there's no need to
10531 use `regexp-opt' on those lists.
10532
10533 * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
10534 `c-type-modifier-kwds' is empty.
10535
10536 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
10537 there are several strings on the same line.
10538
10539 * progmodes/cc-engine.el (c-literal-limits): Remove the
10540 compatibility function for older emacsen. `c-literal-limits-fast'
10541 has now taken the place of this function.
10542
10543 * progmodes/cc-vars.el (c-emacs-features): Remove compatibility
10544 with older emacsen: We now require `pps-extended-state'.
10545
10546 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10547
10548 * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
10549 which obviates the need to hack sentence-end. This now handles
10550 escaped newlines in strings correctly. Correct minor bugs in
10551 c-move-over-sentence and in c-beginning-of-statement.
10552
10553 * progmodes/cc-cmds.el (c-beginning-of-statement (and
10554 subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
10555 that movement over macros and code are rigorously separated from
10556 eachother. Correct a few incidental bugs.
10557
10558 * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
10559 Improve its doc-string. Improve the handling of certain specific cases.
10560
10561 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10562
10563 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
10564 (c-guess-basic-syntax): Change the way class-level labels are
10565 recognized; they can now contain essentially any symbols.
10566
10567 (c-opt-extra-label-key): New language variable to cope with the
10568 special protection label syntax in Objective-C.
10569
10570 (c-opt-access-key): Remove; this is now handled better by
10571 `c-nonlabel-token-key' and `c-opt-extra-label-key'.
10572
10573 (c-complex-decl-matchers): Update to handle that
10574 `c-opt-access-key' no longer exists.
10575
10576 * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
10577 improved label recognition in `c-beginning-of-statement-1'.
10578
10579 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
10580 Recognize bitfields better.
10581
10582 * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
10583 Remove some cruft and fixed a bug that could cause it to go to a
10584 position further down.
10585
10586 * progmodes/cc-langs.el, cc-engine.el
10587 (c-beginning-of-statement-1): Improve detection of labels in
10588 declaration contexts.
10589
10590 (c-beginning-of-decl-1): Use it.
10591
10592 (c-nonlabel-token-key): New language constant and variable needed
10593 by `c-beginning-of-statement-1'.
10594
10595 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix bug that
10596 manifested itself due to the correction in `c-forward-sexp'.
10597
10598 * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp):
10599 Make these behave as documented when used at the buffer limits.
10600
10601 * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
10602 (c-type-decl-end-used): Made this a language variable.
10603
10604 * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
10605 correctly when `combine-after-change-calls' is used together with
10606 temporary narrowings.
10607
10608 * progmodes/cc-engine.el (c-beginning-of-statement-1):
10609 Report labels correctly when the start point is immediately after the
10610 colon.
10611
10612 * progmodes/cc-defs.el (c-parse-sexp-lookup-properties):
10613 Remove since it isn't used anymore.
10614
10615 * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
10616 bracket arglists such as template parens in C++.
10617
10618 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix a bug
10619 in the last check-in. Some optimization.
10620
10621 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix bug
10622 where it could stop at the same level in a preceding sexp when
10623 PAREN-LEVEL is set.
10624
10625 * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
10626 text property lookup only when it's needed.
10627
10628 * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
10629 Change the policy for paren marked angle brackets to be more
10630 persistent; once marked they remain marked even when they're found
10631 to be unbalanced in the searched region. This should keep the
10632 paren syntax around even when individual lines are refontified in
10633 multiline template arglists.
10634
10635 (c-parse-and-markup-<>-arglists): New dynamically bound variable
10636 to control markup so that incorrect angle bracket arglists aren't
10637 marked in contexts where the correct value for
10638 `c-disallow-comma-in-<>-arglists' isn't known.
10639
10640 (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
10641 argument has become `c-parse-and-markup-<>-arglists'.
10642
10643 (c-remove-<>-arglist-properties): Remove - no longer used.
10644
10645 (c-after-change-check-<>-operators): New function used on
10646 `after-change-functions' to avoid that "<" and ">" characters that
10647 are part of longer operators have paren syntax.
10648
10649 (c-<>-multichar-token-regexp): New language variable used by
10650 `c-after-change-check-<>-operators'.
10651
10652 (c-after-change): Call `c-after-change-check-<>-operators'.
10653
10654 (c-font-lock-<>-arglists): Use the context properties set by
10655 `c-font-lock-declarations' to set `c-disallow-comma-in-<>-arglists'
10656 correctly to avoid doing invalid markup.
10657
10658 (c-font-lock-declarations): Remove code that undoes the invalid
10659 markup done by `c-font-lock-<>-arglists'.
10660
10661 (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
10662 after `c-font-lock-declarations'.
10663
10664 * progmodes/cc-engine.el (c-syntactic-skip-backward):
10665 Add paren-level feature.
10666
10667 (c-guess-basic-syntax): Improve the anchor position for
10668 `template-args-cont' in nested template arglists. There's still
10669 much to be desired in this area, though.
10670
10671 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10672
10673 * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
10674 Make the "Text Filling and Line Breaking" commands work for AWK buffers.
10675
10676 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10677
10678 * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
10679 Removed; (c-major-mode-is 'awk-mode) can be used instead now.
10680
10681 * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
10682 it doesn't work no longer are supported.
10683
10684 * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el
10685 * cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
10686 requires support for the syntax-table' text property, which rules
10687 out Emacs 19 and XEmacs < 21.4. Removed various compatibility
10688 cruft associated with those versions.
10689
10690 * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
10691 for the `syntax-table' text property, which rules out Emacs 19 and
10692 XEmacs < 21.4. Removed various compatibility cruft associated
10693 with those versions.
10694
10695 * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
10696 support for the `syntax-table' text property.
10697
10698 * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
10699 variable and use an extra quoted face name instead. All the
10700 emacsen flavors handle that correctly.
10701
10702 * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare)
10703 (c-font-lock-declarators, c-font-lock-declarations)
10704 (c-complex-decl-matchers, c-basic-matchers-after): Use a text
10705 property to mark the items in in declarator lists to handle
10706 refontification inside multiline declarations better.
10707
10708 * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
10709 construct like "a * b = c;" as a declaration.
10710
10711 2005-12-08 Kim F. Storm <storm@cua.dk>
10712
10713 * emulation/cua-base.el (cua-use-hyper-key): Replace by ...
10714 (cua-rectangle-modifier-key): ... this. New defcustom. Can now
10715 select either meta, hyper, or super modifier for rectangle commands.
10716 (cua--rectangle-modifier-key): New defvar.
10717 (cua--M/H-key): Use it. Remove special case for `space'.
10718 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
10719 on X, to meta otherwise. Always bind C-return to toggle
10720 rectangle. Pass ?\s instead of `space' to cua--M/H-key.
10721
10722 * emulation/cua-rect.el (cua-help-for-rectangle):
10723 Use cua--rectangle-modifier-key. Handle super modifier too.
10724 (cua--init-rectangles): Always bind C-return to toggle rectangle.
10725 Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
10726
10727 * ido.el: Move Acknowledgements and History after Commentary.
10728 Minor changes to Commentary.
10729
10730 * emulation/cua-base.el (cua--select-keymaps): Enable repeat
10731 keymap if cua--prefix-override-timer is `shift'.
10732 (cua--shift-control-prefix): New function; emulate "type prefix
10733 key twice" functionality to handle shifted prefix key override.
10734 (cua--shift-control-c-prefix, cua--shift-control-x-prefix):
10735 New commands.
10736 (cua--init-keymaps): Bind them to S-C-c and S-C-x.
10737
10738 2005-12-08 Carsten Dominik <dominik@science.uva.nl>
10739
10740 * textmodes/org.el (org-insert-heading): Try to do items before
10741 headings.
10742 (org-agenda-mode): Quote `org-agenda-mode-hook'.
10743 (org-insert-item): New function.
10744 (org-renumber-ordered-list): Don't skip to higher level lists.
10745
10746 2005-12-08 Juri Linkov <juri@jurta.org>
10747
10748 * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
10749
10750 * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
10751
10752 * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
10753
10754 * pcvs.el (defun-cvs-mode): Put `definition-name' property on
10755 the constructed function name fun-1.
10756
10757 * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
10758 because such links don't lead to parent documentation.
10759
10760 2005-12-08 Kenichi Handa <handa@m17n.org>
10761
10762 * descr-text.el (describe-char): Use *Help-2* buffer if the
10763 current buffer is *Help*. Call describe-text-properties while
10764 setting the original buffer.
10765
10766 2005-12-07 Bill Wohler <wohler@newt.com>
10767
10768 * files.el (auto-mode-alist): Remove mh-letter-mode. Unnecessary,
10769 and causes problems with non-MH users (such as Gnus users).
10770
10771 2005-12-08 Nick Roberts <nickrob@snap.net.nz>
10772
10773 * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
10774 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
10775 (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
10776 command "info sources". Move calls to GDB command "list".
10777 (gdb-find-file-hook): Just use gdb-source-file-list.
10778 (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
10779 (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
10780 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
10781 (gdb-data-list-register-values-handler): Use correct trigger name.
10782
10783 2005-12-07 Kim F. Storm <storm@cua.dk>
10784
10785 * ido.el (ido-completion-map): Rename from ido-mode-map.
10786 (ido-common-completion-map, ido-file-completion-map)
10787 (ido-file-dir-completion-map, ido-buffer-completion-map):
10788 Rename from ido-mode-....-map.
10789 (ido-init-completion-maps): Rename from ido-init-mode-maps.
10790 (ido-setup-completion-map): Rename from ido-define-mode-map.
10791 (ido-read-internal): Bind minibuffer-local-filename-completion-map
10792 to ido-completion-map.
10793
10794 2005-12-07 Kenichi Handa <handa@m17n.org>
10795
10796 * international/mule-cmds.el
10797 (set-display-table-and-terminal-coding-system): If the coding
10798 system specified in `unibyte-display' property is different from
10799 the arg coding-system, don't setup standard-display-table.
10800
10801 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
10802
10803 * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
10804 that comments end at \n, regardless of selective-display.
10805
10806 2005-12-07 Nick Roberts <nickrob@snap.net.nz>
10807
10808 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
10809 (gdb-version): New variables.
10810 (gdb-source-file-list, gdb-register-names)
10811 (gdb-changed-registers): New variables for use with GDB 6.4+.
10812 (gdb-ann3): Replace with...
10813 (gdb-init-1, gdb-init-2): ...two new functions.
10814 (gdba, gdb-prompt): Call gdb-init-1.
10815 (gdb-get-version): New function. Call gdb-init-2 from here.
10816 (gud-watch): Make it work with mouse events too.
10817 (gdb-post-prompt): Don't add to queue until GDB version is known.
10818 (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
10819 (gdb-locals-mode): Use gdb-version.
10820 (gdb-memory-format-map, gdb-memory-unit-map)
10821 (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
10822 (gdb-locals-font-lock-keywords-1)
10823 (gdb-locals-font-lock-keywords-2): New variables.
10824 (gdb-find-file-hook): Make it work with GDB 6.4+ too.
10825 (gdb-set-gud-minor-mode-existing-buffers-1)
10826 (gdb-var-list-children-1, gdb-var-list-children-handler-1)
10827 (gdb-var-update-1, gdb-var-update-handler-1)
10828 (gdb-data-list-register-values-handler)
10829 (gdb-data-list-register-values-custom)
10830 (gdb-get-changed-registers, gdb-get-changed-registers-handler)
10831 (gdb-stack-list-locals-handler, gdb-get-register-names):
10832 New functions for use with GDB 6.4+.
10833 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
10834 (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
10835 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
10836 (gdb-stack-list-locals-regexp)
10837 (gdb-data-list-register-names-regexp): New regexps for use with
10838 GDB 6.4+.
10839
10840 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
10841
10842 * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
10843
10844 2005-12-06 Nozomu Ando <nand@mac.com> (tiny patch)
10845
10846 * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
10847 prompts work for AUTH PLAIN. Also reported by Steve Allan
10848 <seallan@verizon.net>.
10849
10850 2005-12-06 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
10851
10852 * frame.el (set-frame-parameter): Add doc string.
10853
10854 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
10855
10856 * textmodes/org.el (org-occur-highlights): New variable.
10857 (org-highlight-new-match, org-remove-occur-highlights): New functions.
10858 (org-highlight-sparse-tree-matches): New option.
10859 (org-do-occur): New function.
10860 (org-get-heading): Make it work also at beginning of line.
10861 (org-category-table): New variable.
10862 (org-get-category-table, org-get-category)
10863 (org-camel-to-words, org-link-search): New functions.
10864 (org-select-this-todo-keyword): New variable.
10865 (org-todo-list): New command.
10866 (org-shiftright, org-shiftleft): New commands.
10867 (org-agenda-todo): Add prefix argument.
10868 (org-show-hierarchy-above): New option.
10869 (org-show-todo-tree): Numerical prefix creates tree for specific
10870 TODO keyword.
10871 (org-outline-level): New function, to assign a level to plain
10872 lists items.
10873 (org-cycle-include-plain-lists): New option.
10874 (org-mode): Use `org-outline-level' as value of `outline-level'.
10875 (org-cycle): Temporarily switch `outline-regexp' if
10876 `org-cycle-include-plain-lists' is non-nil.
10877 (org-start-icalendar-file): Fix format bug.
10878 (org-agenda-get-day-entries): Create category table.
10879 (org-agenda-get-todos, org-agenda-get-timestamps)
10880 (org-agenda-get-deadlines, org-agenda-get-scheduled)
10881 (org-agenda-get-blocks): Use `org-get-category'.
10882 (org-context-in-file-links): Rename from
10883 `org-line-numbers-in-file-links'.
10884
10885 2005-12-06 Romain Francoise <romain@orebokech.com>
10886
10887 * window.el (balance-windows): Delete extraneous third arg in call
10888 to `enlarge-window'.
10889
10890 2005-12-06 Kenichi Handa <handa@m17n.org>
10891
10892 * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
10893
10894 2005-12-06 Nick Roberts <nickrob@snap.net.nz>
10895
10896 * progmodes/gdb-ui.el (gdb-var-create-handler)
10897 (gdb-var-evaluate-expression-handler, gdb-frame-handler)
10898 (gdb-var-list-children-handler, gdb-var-update-handler):
10899 Current buffer is already gdb-partial-output-buffer, don't
10900 make it current again.
10901
10902 2005-12-05 Luc Teirlinck <teirllm@auburn.edu>
10903
10904 * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
10905 (list-buffers-noselect): Use it.
10906
10907 2005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
10908
10909 * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
10910 (mail-yank-ignored-headers): Use regexp-opt.
10911 (mail-mode-map): Move initialization into declaration.
10912 (mail-sent-via): Remove unused shadowed var `to-line'.
10913 (mail-mailer-swallows-blank-line): Use with-temp-buffer.
10914 (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
10915 (mail-do-fcc): Use dolist and push.
10916 (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
10917 (mail-yank-ignored-headers): Don't autoload.
10918
10919 2005-12-05 Kenichi Handa <handa@m17n.org>
10920
10921 * international/mule-cmds.el (set-language-info-internal): New fun.
10922 (set-language-info): Call set-language-info-internal to update
10923 language-info-alist. If LANG-ENV is the current one, call
10924 set-language-environment to make INFO effective now.
10925 (set-language-info-alist): Likewise.
10926 (locale-language-names): With locale "en", use English
10927 lang. env. but set the default codings to iso-8859-1.
10928
10929 2005-12-04 Nick Roberts <nickrob@snap.net.nz>
10930
10931 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
10932 (gdb-speedbar-auto-raise): Echo new state in minibuffer.
10933 (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
10934 for plain strings.
10935 (gdb-frames-mode): Remove redundant call to font-lock-mode.
10936 (gdb-all-registers): Rename from toggle-gdb-all-registers.
10937 Create registers buffer if necessary. Echo new state in minibuffer.
10938 (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
10939
10940 2005-12-03 Chong Yidong <cyd@stupidchicken.com>
10941
10942 * info.el (Info-fontify-node): Match external links using
10943 non-directory part of filename.
10944
10945 2005-12-04 Juri Linkov <juri@jurta.org>
10946
10947 * font-core.el (global-font-lock-mode): Use define-global-minor-mode
10948 instead of easy-mmode-define-global-mode. Add `:group font-lock'.
10949 (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
10950 because there is no customization option for it.
10951
10952 * font-lock.el (lisp-font-lock-keywords-1):
10953 Add define-global-minor-mode.
10954
10955 * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
10956
10957 * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
10958 properties on the constructed variable names.
10959
10960 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
10961 Put `definition-name' properties on the constructed function names
10962 next-sym and prev-sym.
10963
10964 * emacs-lisp/find-func.el (find-function-regexp):
10965 Add define-global-minor-mode. Replace `easy-mmode-define-global-mode'
10966 with `easy-mmode-define-[a-z-]+'. Add easy-menu-define.
10967 (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
10968 and easy-menu-define.
10969
10970 * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
10971 easy-mmode-define-global-mode and define-global-minor-mode.
10972 (lisp-imenu-generic-expression): Add define-global-minor-mode.
10973
10974 * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
10975 instead of easy-mmode-define-global-mode.
10976
10977 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
10978 Use define-minor-mode instead of easy-mmode-define-minor-mode.
10979
10980 * cus-edit.el (customize-group, customize-group-other-window):
10981 Filter out autoloaded options from the group completion list by
10982 using heuristics that autoloaded groups don't have `custom-autoload'
10983 property on their symbols (they have only `custom-loads').
10984
10985 * simple.el (completion-setup-function): Put completions-common-part
10986 face on complete completion string too (i.e. completion string
10987 without completions-first-difference face).
10988
10989 * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
10990
10991 2005-12-03 Eli Zaretskii <eliz@gnu.org>
10992
10993 * view.el (view-mode): Doc fix.
10994
10995 * disp-table.el (standard-display-european): Add to the warning
10996 message a reference to the doc string.
10997
10998 * play/yow.el (apropos-zippy): Call print-help-return-message,
10999 similar to other Help and Apropos commands.
11000
11001 * help.el (print-help-return-message): If pop-up-frames is
11002 non-nil, set up help-return-method to delete the help window and,
11003 possibly, its frame as well, and don't display message about
11004 scrolling the help window. Doc fix.
11005 (help-return-method): Doc fix.
11006
11007 2005-12-03 Martin Rudalics <rudalics@gmx.at>
11008
11009 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
11010 whereby names of length one or names starting with a
11011 symbol-constituent character would not be returned.
11012
11013 2005-12-03 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
11014
11015 * subr.el (atomic-change-group): Add edebug and indentation spec.
11016
11017 2005-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
11018
11019 * completion.el (save-completions-file-name): Fix typo in last change.
11020
11021 2005-12-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11022
11023 * info.el: Move back/forward history to the beginning of the tool bar.
11024
11025 2005-12-02 Ken Manheimer <ken.manheimer@gmail.com>
11026
11027 * allout.el (eval-when-compile): Remove unnecessary load of cl.
11028 Add fset of allout-real-isearch-abort during compile to fix
11029 byte-compilation warnings.
11030 (allout-mode-p): Move definition of this macro above all uses, or
11031 byte compilation in barren emacs (eg, during emacs build) will
11032 lack the definition.
11033 (allout-mode): Move this variable above any uses, or byte
11034 compilation will fail.
11035 (allout-resolve-xref): Remove use of personal file-reference function.
11036 (allout-toggle-current-subtree-encryption): Do the current (ie,
11037 visible containing) topic, rather than nearest around point. Doc fix.
11038 (allout-toggle-subtree-encryption): New function, workhorse that
11039 works on nearest topic containing point.
11040 (allout-encrypt-string): Signal requirement for newer version of pgg.
11041 (allout-resumptions): Doc fix.
11042
11043 2005-12-02 Eli Zaretskii <eliz@gnu.org>
11044
11045 * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
11046
11047 2005-12-02 Agustin Martin <agustin.martin@hispalinux.es>
11048
11049 * textmodes/flyspell.el (flyspell-external-point-words):
11050 Consider a misspelling as found in the string search if: (a) misspelling
11051 and found string lengths match, or (b) misspelling is found as
11052 element in a boundary-chars separated longer string, or (c)
11053 ispell-program-name is really ispell and misspelling is found as
11054 part of a TeX string. After successful match move beginning of
11055 search region to end of match. Warn about not found misspellings
11056 once the process is done.
11057 (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
11058
11059 2005-12-02 Nick Roberts <nickrob@snap.net.nz>
11060
11061 * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
11062 tool bar (removed inadvertently).
11063
11064 2005-12-02 Juri Linkov <juri@jurta.org>
11065
11066 * log-view.el (log-view-diff): Clarify doc string.
11067
11068 2005-12-01 Bill Wohler <wohler@newt.com>
11069
11070 * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
11071 triggers lm-verify errors.
11072
11073 2005-12-01 Luc Teirlinck <teirllm@auburn.edu>
11074
11075 * simple.el (transient-mark-mode, line-number-mode)
11076 (column-number-mode, size-indication-mode): Remove `:require nil'.
11077
11078 2005-12-01 Nick Roberts <nickrob@snap.net.nz>
11079
11080 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
11081 in the margin also.
11082 (gdb-breakpoints-mode-map): Use D instead of d for
11083 gdb-delete-breakpoint.
11084 (gdb-get-frame-number): Require a number to match on.
11085 (gdb-threads-mode-map): Add follow-link binding.
11086
11087 2005-11-30 Jason Rumney <jasonr@gnu.org>
11088
11089 * isearch.el (isearch-mode-map): Avoid exiting search on
11090 language-change event.
11091
11092 2005-11-30 Romain Francoise <romain@orebokech.com>
11093
11094 * speedbar.el (speedbar-default-position): New defcustom.
11095 (speedbar-frame-reposition-smartly): Use it.
11096
11097 * dframe.el (dframe-reposition-frame-emacs): Fix position
11098 computation for `left' location.
11099 Update copyright year.
11100
11101 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
11102
11103 * help.el (help-map): Move initialization into declaration.
11104
11105 * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
11106
11107 * help-fns.el (help-argument-name): Don't autoload.
11108 It's useless and triggers a bug in cus-dep.el causing ldefs-boot
11109 to be re-loaded when customizing the `help' group.
11110
11111 2005-11-30 John Paul Wallington <jpw@gnu.org>
11112
11113 * help-fns.el (describe-function-1): Fill arglist output.
11114
11115 2005-11-30 Kim F. Storm <storm@cua.dk>
11116
11117 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
11118 (cua--rectangle-post-command): Cleanup overlays and deactivate mark
11119 after revert-buffer (or anything else which kills all local variables).
11120
11121 * apropos.el (apropos-parse-pattern): Doc fix.
11122 Set apropos-regexp directly, rather than expecting callers to do so.
11123 (apropos-command, apropos, apropos-value, apropos-documentation):
11124 Simplify calls to apropos-parse-pattern.
11125
11126 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
11127
11128 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
11129 (hi-lock-face-phrase-buffer): Use hi-yellow face.
11130 (hi-lock-write-interactive-patterns): Use comment-region.
11131
11132 * longlines.el (longlines-mode): Add mail-setup-hook.
11133
11134 * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
11135
11136 * simple.el (sendmail-user-agent-compose, next-line):
11137 Conditionally use hard-newline.
11138
11139 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
11140
11141 * international/latexenc.el (latex-inputenc-coding-alist):
11142 Reword doc string.
11143
11144 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
11145
11146 * help.el (describe-key-briefly, describe-key): Recognize default
11147 bindings.
11148
11149 2005-11-29 Romain Francoise <romain@orebokech.com>
11150
11151 * view.el (view-inhibit-help-message): New defcustom.
11152 (view-mode-enter): Use it.
11153
11154 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu>
11155
11156 * ediff-wind.el (ediff-setup-control-frame, ediff-make-wide-display):
11157 Preserve user position.
11158
11159 2005-11-28 Luc Teirlinck <teirllm@auburn.edu>
11160
11161 * font-lock.el: Throw error if facemenu is not loaded to prevent
11162 accidental change of loading order in loadup.el. (Suggested by RMS.)
11163
11164 * loadup.el: Add comment explaining why facemenu must be loaded
11165 before font-lock.
11166
11167 2005-11-28 Jay Belanger <belanger@truman.edu>
11168
11169 * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
11170 (calc-dispatch-map): Add more keys for `calc-same-interface'.
11171
11172 * calc/calc-misc.el (calc-dispatch-help): Update docstring.
11173
11174 * calc/calc-embed.el (calc-do-embedded): Update help message.
11175
11176 * calc/calc-prog.el (calc-user-define-invokation): Update help message.
11177
11178 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
11179
11180 * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
11181
11182 * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
11183 called-interactively-p.
11184 (elp-profilable-p): Rename from elp-not-profilable-p.
11185 Invert result and take into account macros and autoloaded functions.
11186 (elp-instrument-function): Update call.
11187 (elp-instrument-package): Update call. Add completion.
11188 (elp-pack-number): Use match-string.
11189 (elp-results-jump-to-definition-by-mouse): Merge into
11190 elp-results-jump-to-definition and then remove.
11191 (elp-output-insert-symname): Make help echo text single-line.
11192
11193 * replace.el (query-replace-map): Move initialization into declaration.
11194 (occur-engine): Use with-current-buffer.
11195 (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
11196 (occur-mode-mouse-goto): Replace with an alias.
11197
11198 2005-11-28 Juri Linkov <juri@jurta.org>
11199
11200 * simple.el (quoted-insert): Let-bind input-method-function to nil.
11201
11202 * term/w32-win.el: Bind [S-tab] to [backtab].
11203
11204 * info.el (Info-fontify-node): Set 2nd arg `noerror' of
11205 `Info-find-file' to t.
11206
11207 * replace.el (occur-mode-mouse-goto): Pop, don't switch.
11208 (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
11209 and same-window-regexps.
11210 (occur-next-error): Don't move point for arg 0.
11211
11212 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
11213
11214 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
11215
11216 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
11217
11218 * log-edit.el (log-edit-changelog-use-first): New var.
11219 (log-edit-changelog-ours-p): Use it.
11220 (log-edit-insert-changelog): Set it with new arg `use-first'.
11221 (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
11222 (log-edit-hook): Add them to the list of suggested options.
11223
11224 * textmodes/flyspell.el (flyspell-last-buffer): New var.
11225 (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
11226 redundant work.
11227 (flyspell-mode-on): Use add-hook for after-change-functions.
11228 (flyspell-mode-off): Use remove-hook for after-change-functions.
11229 (flyspell-changes): Make it buffer-local.
11230 (flyspell-after-change-function): Make it non-interactive. Use push.
11231 (flyspell-post-command-hook): Check input-pending-p while processing
11232 the potentially long list of buffer changes.
11233
11234 2005-11-28 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
11235
11236 * buff-menu.el (list-buffers-noselect): Display the selected
11237 frame's buffer list, not the global one.
11238
11239 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
11240
11241 * xt-mouse.el (xterm-mouse-event): Set last-input-event so
11242 that (list last-input-event) works as in interactive spec.
11243
11244 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
11245
11246 * loadup.el ("facemenu"): Load facemenu before font-lock, because
11247 `facemenu-keymap' needs to be defined when font-lock is loaded.
11248 Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
11249
11250 2005-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
11251
11252 * completion.el: Remove useless leading * in defcustom docstrings.
11253 (save-completions-file-name): Use ~/.emacs.d if available.
11254 (completion-standard-syntax-table): Rename from
11255 cmpl-standard-syntax-table and fold initialization into declaration,
11256 thus removing cmpl-make-standard-completion-syntax-table.
11257 (completion-lisp-syntax-table, completion-c-syntax-table)
11258 (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
11259 (cmpl-saved-syntax, cmpl-saved-point): Remove.
11260 (symbol-under-point, symbol-before-point)
11261 (symbol-under-or-before-point, symbol-before-point-for-complete)
11262 (add-completions-from-c-buffer): Use with-syntax-table.
11263 (make-completion): Don't return a list of completion entries.
11264 Update callers.
11265 (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
11266 (completion-initialize): Rename from initialize-completions.
11267 (completion-find-file-hook): Rename from cmpl-find-file-hook.
11268 (kill-emacs-save-completions): Collect stats here.
11269 (save-completions-to-file, load-completions-from-file):
11270 Use with-current-buffer.
11271 (completion-def-wrapper): Rename from def-completion-wrapper. Make it
11272 into a function. Move all calls to toplevel.
11273 (completion-lisp-mode-hook): New fun.
11274 (completion-c-mode-hook, completion-setup-fortran-mode):
11275 Set the syntax-table here. Use local-set-key.
11276 (completion-saved-bindings): New var.
11277 (dynamic-completion-mode): Make it into a proper minor mode.
11278 (load-completions-from-file): Remove unused var `num-uses'.
11279
11280 * emacs-lisp/cl-macs.el (defstruct): Don't define the default
11281 constructor if it is explicitly overridden.
11282
11283 * complete.el (PC-completion-as-file-name-predicate):
11284 Use minibuffer-completing-file-name.
11285 (partial-completion-mode): Use find-file-not-found-functions.
11286 (PC-lisp-complete-symbol): Use with-syntax-table.
11287 (PC-look-for-include-file): Remove dead setq.
11288 (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
11289 (PC-complete): Use with-current-buffer.
11290
11291 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
11292 escape single quotes.
11293
11294 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
11295
11296 * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
11297 of `if' whose condition always returned nil. Doc fix.
11298
11299 * buff-menu.el (Buffer-menu-revert-function): Make the selected
11300 window's buffer the current buffer around the call to
11301 `list-buffers-noselect'. This is necessary to mark that buffer
11302 with a `.' in the Buffer Menu when called from Lisp, for instance
11303 by Auto Revert Mode.
11304
11305 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
11306
11307 * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
11308 attaching to it.
11309 (gdb-pre-prompt): Make sure gdb-error is reset.
11310
11311 * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
11312 with a child process, detect it.
11313 (gud-speedbar-buttons): Match regexp more carefully.
11314
11315 2005-11-27 Richard M. Stallman <rms@gnu.org>
11316
11317 * mouse.el (mouse-drag-move-window-bottom):
11318 Use adjust-window-trailing-edge.
11319
11320 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
11321
11322 * simple.el (blink-matching-open): Ignore
11323 `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
11324 (blink-matching-paren-on-screen): Update docstring.
11325
11326 * paren.el (show-paren-mode): No longer change
11327 `blink-matching-paren-on-screen'.
11328
11329 2005-11-27 John Paul Wallington <jpw@pobox.com>
11330
11331 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
11332 (gdb-threads-select, gdb-edit-register-value):
11333 Use `posn-set-point' instead of `mouse-set-point' because the
11334 latter is not fbound when configured without X.
11335
11336 2005-11-27 Kim F. Storm <storm@cua.dk>
11337
11338 * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
11339 existing face when partially highlighting a TAB in a rectangle.
11340
11341 2005-11-26 Kim F. Storm <storm@cua.dk>
11342
11343 * ido.el (ido-mode-map): Doc fix.
11344 (ido-mode-common-map, ido-mode-file-map)
11345 (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
11346 (ido-define-mode-map): Rewrite. Select one of the new maps as
11347 parent for ido-mode-map instead of building from scratch.
11348 (ido-init-mode-maps): New defun to initialize new maps.
11349 (ido-mode): Call it.
11350 (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
11351 (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
11352
11353 2005-11-26 John Paul Wallington <jpw@pobox.com>
11354
11355 * arc-mode.el (archive-extract): Use `posn-set-point' instead of
11356 `mouse-set-point' because the latter is not fbound when configured
11357 without X.
11358
11359 2005-11-26 Thien-Thi Nguyen <ttn@gnu.org>
11360
11361 * files.el (file-relative-name): Doc fix.
11362
11363 2005-11-26 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
11364
11365 * progmodes/octave-inf.el (inferior-octave-startup): Force a
11366 non-empty string for secondary prompt PS2.
11367
11368 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
11369
11370 * progmodes/compile.el (compilation-setup): Fix last change.
11371
11372 2005-11-26 Nick Roberts <nickrob@snap.net.nz>
11373
11374 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
11375 (gdb-mouse-toggle-breakpoint-margin)
11376 (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
11377 Add gdb-server-prefix to keep out of command history.
11378 (gdb-edit-register-value): New function.
11379 (gdb-registers-mode-map): Bind mouse-2 and RET to it.
11380 (gdb-info-registers-custom): Use above map.
11381
11382 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
11383
11384 * custom.el (enable-theme): Signal error if argument is not a
11385 theme. Don't recalculate a face if it's not loaded yet.
11386
11387 * cus-face.el (custom-theme-set-faces): Don't change saved-face if
11388 the `user' theme is in effect.
11389
11390 * info.el (Info-on-current-buffer): Record actual filename in
11391 Info-current-file, instead of t, or a fake filename if a non-file
11392 buffer. Make autoload.
11393 (Info-find-node, Info-revert-find-node): No need to check for
11394 Info-current-file nil.
11395 (Info-set-mode-line, Info-up, Info-copy-current-node-name):
11396 Info-current-file is now never `t'.
11397 (Info-fontify-node): Many simplifications due to Info-current-file
11398 always being valid. Use Info-find-file to find node filename.
11399
11400 2005-11-25 David Kastrup <dak@gnu.org>
11401
11402 * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
11403 new character, then delete" in order to preserve markers.
11404
11405 2005-11-25 David Ponce <david@dponce.com>
11406
11407 * recentf.el (recentf-arrange-by-rule): Handle a special
11408 `auto-mode-alist'-like "strip suffix" rule.
11409 (recentf-build-mode-rules): Handle second level auto-mode entries.
11410
11411 2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
11412
11413 * viper-keym.el (viper-ESC-key): Use different values in terminal and
11414 window modes.
11415
11416 * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
11417 jde-javadoc-checker-report-mode.
11418
11419 * ediff-wind (ediff-make-wide-display): Slight simplification.
11420
11421 * ediff.el (ediff-date): Change the date of last update.
11422
11423 2005-11-24 Chong Yidong <cyd@stupidchicken.com>
11424
11425 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
11426 Use define-minor-mode, and make it a local mode. Turn on font-lock.
11427 (hi-lock-mode): New global minor mode.
11428 (turn-on-hi-lock-if-enabled): New function.
11429 (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
11430 Change arguments to regexp and face instead of a font-lock pattern.
11431 Directly set face property, instead of refontifying.
11432 (hi-lock-font-lock-hook): Check if font-lock is being turned on.
11433 (hi-lock-find-patterns): Use line-number-at-pos.
11434
11435 (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode. Use new
11436 arguments for hi-lock-set-pattern.
11437 (hi-lock-unface-buffer, hi-lock-set-file-patterns):
11438 Call font-lock-fontify-buffer.
11439 (hi-lock-find-file-hook, hi-lock-current-line)
11440 (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
11441
11442 (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
11443 turned off.
11444
11445 * progmodes/compile.el (compilation-setup): Don't fiddle with
11446 font-lock-defaults.
11447
11448 2005-11-25 Nick Roberts <nickrob@snap.net.nz>
11449
11450 * progmodes/gdb-ui.el (gdb-var-create-handler)
11451 (gdb-var-list-children-handler): Find values for all variable
11452 objects. gud-speedbar-buttons decides whether to display them.
11453
11454 2005-11-24 Romain Francoise <romain@orebokech.com>
11455
11456 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
11457 buffer name with a space.
11458
11459 2005-11-24 Carsten Dominik <dominik@science.uva.nl>
11460
11461 * textmodes/org.el (org-export-plain-list-max-depth): Rename from
11462 `org-export-local-list-max-depth'. Change default value to 3.
11463 (org-auto-renumber-ordered-lists)
11464 (org-plain-list-ordered-item-terminator): New options.
11465 (org-at-item-p, org-beginning-of-item, org-end-of-item)
11466 (org-get-indentation, org-get-string-indentation)
11467 (org-maybe-renumber-ordered-list, org-renumber-ordered-list):
11468 New functions.
11469 (org-move-item-down, org-move-item-up): New commands.
11470 (org-export-as-html): New classes for CSS support. Bug fix in
11471 regular expression detecting fixed-width regions. Respect
11472 `org-local-list-ordered-item-terminator'.
11473 (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
11474 also a list item.
11475 (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
11476 New item moving functions.
11477
11478 2005-11-24 Juri Linkov <juri@jurta.org>
11479
11480 * isearch.el (isearch-repeat): With empty search ring set
11481 `isearch-error' to the error string instead of signaling error
11482 with the function `error'.
11483
11484 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11485
11486 * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
11487
11488 2005-11-24 Nick Roberts <nickrob@snap.net.nz>
11489
11490 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
11491 and variable.
11492 (gdb-var-create-handler, gdb-var-list-children-handler):
11493 Don't match on "char **...".
11494 (gdb-var-update-handler): Find values for all variable objects.
11495 (gdb-info-frames-custom): Identify frames by leading "#".
11496
11497 * progmodes/gud.el (gud-speedbar-menu-items): Add
11498 gdb-speedbar-auto-raise as radio button.
11499 (gud-speedbar-buttons): Raise speedbar if requested.
11500 Don't match on "char **...".
11501 (gud-speedbar-buttons): Add (pointer) value for non-leaves.
11502 Make it editable.
11503
11504 2005-11-23 Chong Yidong <cyd@stupidchicken.com>
11505
11506 * info.el (Info-fontify-node): Handle the case where
11507 Info-current-file is t.
11508
11509 2005-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
11510
11511 * simple.el (blink-matching-open): Fix off-by-one in last change.
11512
11513 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11514
11515 * term/mac-win.el: Don't change default directory.
11516
11517 2005-11-22 Luc Teirlinck <teirllm@auburn.edu>
11518
11519 * cus-edit.el (Custom-reset-standard): Make it handle Custom group
11520 buffers correctly. (It used to throw an error in such buffers.)
11521 Make it ask for confirmation in group buffers and other Custom
11522 buffers containing more than one customization item.
11523
11524 2005-11-22 John Paul Wallington <jpw@gnu.org>
11525
11526 * net/goto-addr.el (goto-address-fontify): Put `follow-link'
11527 property on mail and url overlays.
11528 (goto-address-at-point): Use `posn-set-point' instead of
11529 `mouse-set-point' because the latter is not fbound when configured
11530 without X.
11531
11532 2005-11-22 Lars Hansen <larsh@soem.dk>
11533
11534 * ls-lisp.el (ls-lisp-parse-symlink): Delete.
11535 (ls-lisp-classify, ls-lisp-format): Delete call to
11536 ls-lisp-parse-symlink.
11537 (ls-lisp-handle-switches): Handle symlinks to directories as
11538 directories when ls-lisp-dirs-first in non-nil.
11539
11540 2005-11-21 Luc Teirlinck <teirllm@auburn.edu>
11541
11542 * startup.el (command-line): Make sure that loaddefs.el is handled
11543 correctly in load-history.
11544
11545 2005-11-22 Nick Roberts <nickrob@snap.net.nz>
11546
11547 * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
11548 (gdb-struct-string, gdb-array-string): New constants.
11549 (gdb-info-locals-handler): Use them.
11550 (gdb-reset): Reset gdb-var-list to nil.
11551
11552 2005-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
11553
11554 * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
11555 in patterns.
11556
11557 2005-11-21 Juri Linkov <juri@jurta.org>
11558
11559 * custom.el (defcustom): Update link types in docstring.
11560
11561 2005-11-20 Martin Rudalics <rudalics@gmx.at>
11562
11563 * custom.el (defgroup): Add doc-string-elt info.
11564
11565 * widget.el (define-widget): Don't use declare for the doc-string-elt.
11566
11567 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
11568
11569 * newcomment.el (comment-enter-backward): Fix last fix.
11570
11571 * simple.el (blink-matching-open):
11572 * paren.el (show-paren-function): Allow new paren-class info.
11573
11574 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
11575
11576 * faces.el: Revert 2005-11-17 change. :ignore-defface is now
11577 handled automagically.
11578
11579 2005-11-20 Andreas Schwab <schwab@suse.de>
11580
11581 * descr-text.el (describe-char): When copying overlays put them
11582 over the full char description instead of just the first character
11583 of it.
11584
11585 2005-11-20 Juri Linkov <juri@jurta.org>
11586
11587 * simple.el (what-cursor-position):
11588 * descr-text.el (describe-char): Use Lisp-readable syntax
11589 for octal and hex. Reorder decimal, octal and hex values.
11590 Remove excess whitespace in the output. Use `=' in `column='
11591 like in `point=' and `Hscroll='.
11592
11593 * international/mule-cmds.el (encoded-string-description):
11594 Use Lisp-readable syntax for hex.
11595
11596 2005-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11597
11598 * newcomment.el (comment-enter-backward): Handle the case where the
11599 comment is closed by EOB.
11600
11601 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
11602
11603 * longlines.el (longlines-before-revert-hook)
11604 (longlines-after-revert-hook): New functions.
11605 (longlines-mode): Turn off longlines temporarily when reverting.
11606 Add a message-setup-hook.
11607 (longlines-decode-buffer): New function.
11608 (longlines-wrap-line): Preserve marker positions.
11609
11610 2005-11-19 Andreas Schwab <schwab@suse.de>
11611
11612 * emacs-lisp/shadow.el: Handle compressed files.
11613
11614 2005-11-19 Romain Francoise <romain@orebokech.com>
11615
11616 * net/browse-url.el (browse-url-default-browser): Signal an error
11617 if no usable browser can be found, rather than try to load w3.
11618
11619 2005-11-16 Ryan Yeske <rcyeske@gmail.com>
11620
11621 * net/rcirc.el (rcirc-mangle-text): Add bold face property without
11622 replacing existing properties.
11623 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
11624 (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
11625 tty specs.
11626 (rcirc-server-prefix, rcirc-server): New faces.
11627 (rcirc-url-regexp): Generate with rx macro.
11628 (rcirc-last-server-message-time): New variable.
11629 (rcirc-filter): Record time of last message.
11630 (rcirc-keepalive): Kill processes that did not send a message
11631 since the last ping.
11632 (rcirc-mode): Give rcirc-topic a local binding here.
11633
11634 2005-11-19 Michael Cadilhac <michael.cadilhac@lrde.org>
11635
11636 * subr.el (read-passwd): Fontify the prompt as we do with other
11637 prompts.
11638
11639 2005-11-19 Ryan Yeske <rcyeske@gmail.com>
11640
11641 * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
11642 binding buffer-read-only to nil.
11643
11644 2005-11-19 Eli Zaretskii <eliz@gnu.org>
11645
11646 * complete.el (partial-completion-mode):
11647 Mention completion-auto-help in the doc string.
11648
11649 * man.el (Man-highlight-references): Doc fix. Reformat code in a
11650 more Lisp-ish way.
11651
11652 2005-11-19 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
11653
11654 * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
11655 digits, not 8, to avoid misalignment for files larger than 100MB.
11656
11657 2005-11-19 Eli Zaretskii <eliz@gnu.org>
11658
11659 * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
11660 Mention "keyboard shortcuts" in the help text.
11661
11662 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11663
11664 * startup.el (fancy-splash-default-action): Discard only
11665 mouse-down and succeeding mouse-up events in the splash screen
11666 window so that drag-n-drop event can be processed.
11667
11668 2005-11-18 Chong Yidong <cyd@stupidchicken.com>
11669
11670 * longlines.el (longlines-mode): Add hacks for mail-mode and
11671 message-mode.
11672
11673 2005-11-18 Carsten Dominik <dominik@science.uva.nl>
11674
11675 * textmodes/org.el (org-table-sort-lines): New command.
11676 (org-tbl-menu): Add entry for `org-table-sort-lines'.
11677 (org-add-file): Command removed, use `org-agenda-file-to-front'
11678 instead.
11679 (org-export-icalendar): Use `org-icalendar-combined-name'.
11680 (org-cycle-agenda-files, org-agenda-file-to-end)
11681 (org-agenda-file-to-front): New commands.
11682 (org-table-tab-jumps-over-hlines, org-export-html-style):
11683 New options.
11684 (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
11685 (org-at-table.el-p, org-set-autofill-regexps, org-html-protect):
11686 New functions.
11687 (org-fill-paragraph): Call `org-table-align' in tables.
11688 (org-mode): Call `org-set-autofill-regexps'.
11689 (org-export-as-html): Support for local handformatted lists.
11690 Modified to produce valid HTML 4.0. Use `org-export-html-style'.
11691 (org-export-local-list-max-depth): New option.
11692 (org-html-expand): Use `org-html-protect'.
11693
11694 2005-11-18 Nick Roberts <nickrob@snap.net.nz>
11695
11696 * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
11697 to "p".
11698 (gdb): Move definition of gud-pp to...
11699
11700 * progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
11701 speedbar.
11702 (gdb-find-watch-expression): New function.
11703
11704 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
11705
11706 * faces.el (face-attribute, set-face-attribute): Mention existence
11707 of `:ignore-defface' setting in docstring.
11708
11709 2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
11710
11711 * simple.el (completion-setup-function): Fix last change.
11712
11713 2005-11-17 John Paul Wallington <jpw@pobox.com>
11714
11715 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
11716 Use `posn-set-point' instead of `mouse-set-point' because the
11717 latter is not fbound when configured without X.
11718
11719 * comint.el (comint-insert-input): Likewise.
11720
11721 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
11722
11723 * simple.el (hard-newline): New variable.
11724 (sendmail-user-agent-compose, next-line): Use it.
11725
11726 * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
11727 (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
11728 (mail-mail-reply-to, mail-mail-followup-to)
11729 (mail-position-on-field, mail-signature, mail-yank-original)
11730 (mail-attach-file): Likewise.
11731
11732 * mail/mailheader.el (mail-header-format)
11733 (mail-header-format-function): Likewise.
11734
11735 * add-log.el (add-change-log-entry, change-log-merge): Likewise.
11736
11737 2005-11-17 Juri Linkov <juri@jurta.org>
11738
11739 * font-lock.el (font-lock-faces): Rename this defgroup from
11740 `font-lock-highlighting-faces'.
11741 (font-lock-comment-face, font-lock-comment-delimiter-face)
11742 (font-lock-string-face, font-lock-doc-face)
11743 (font-lock-keyword-face, font-lock-builtin-face)
11744 (font-lock-function-name-face, font-lock-variable-name-face)
11745 (font-lock-type-face, font-lock-constant-face)
11746 (font-lock-warning-face, font-lock-negation-char-face)
11747 (font-lock-preprocessor-face)
11748 (font-lock-regexp-grouping-backslash)
11749 (font-lock-regexp-grouping-construct): Rename :group from
11750 `font-lock-highlighting-faces' to `font-lock-faces'.
11751
11752 * cus-edit.el (lisp, c, tex):
11753 * progmodes/ada-mode.el (ada):
11754 * progmodes/asm-mode.el (asm):
11755 * progmodes/cperl-mode.el (cperl-faces):
11756 * progmodes/cpp.el (cpp):
11757 * progmodes/dcl-mode.el (dcl):
11758 * progmodes/f90.el (f90):
11759 * progmodes/fortran.el (fortran):
11760 * progmodes/icon.el (icon):
11761 * progmodes/idlwave.el (idlwave-misc):
11762 * progmodes/m4-mode.el (m4):
11763 * progmodes/make-mode.el (makefile):
11764 * progmodes/meta-mode.el (meta-font):
11765 * progmodes/modula2.el (modula2):
11766 * progmodes/octave-mod.el (octave):
11767 * progmodes/pascal.el (pascal):
11768 * progmodes/perl-mode.el (perl):
11769 * progmodes/prolog.el (prolog):
11770 * progmodes/ps-mode.el (PostScript-edit):
11771 * progmodes/scheme.el (scheme):
11772 * progmodes/sh-script.el (sh-script):
11773 * progmodes/simula.el (simula):
11774 * progmodes/tcl.el (tcl):
11775 * textmodes/nroff-mode.el (nroff):
11776 * textmodes/reftex-vars.el (reftex-fontification-configurations):
11777 * textmodes/sgml-mode.el (sgml):
11778 * textmodes/texinfo.el (texinfo):
11779 Add :link (custom-group-link font-lock-faces) to defgroup.
11780
11781 * hi-lock.el (hi-lock): Rename this defgroup from
11782 `hi-lock-interactive-text-highlighting'. Change parent group from
11783 `faces' to `font-lock'. Add link to the manual.
11784 (hi-lock-mode, hi-lock-file-patterns-range)
11785 (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
11786 `hi-lock-interactive-text-highlighting' to `hi-lock'.
11787 (hi-lock-faces): Add :group `faces'.
11788
11789 * cus-edit.el (custom-variable-prompt): Clarify the code.
11790
11791 * faces.el (face-read-string): Set the default value arg of
11792 completing-read.
11793
11794 2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
11795
11796 * rfn-eshadow.el (file-name-shadow-properties)
11797 (file-name-shadow-tty-properties, file-name-shadow-mode):
11798 Remove autoloads, because the file is now preloaded.
11799
11800 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
11801
11802 * printing.el (easy-menu-intern): Don't define.
11803 (pr-get-symbol): Use easy-menu-intern only if defined.
11804
11805 * simple.el (blink-matching-open): Simplify a bit.
11806 (completion-setup-function): Fix the case of partial-completion-mode
11807 when the minibuffer's contents start with "-".
11808 Obey completion-base-size-function even when
11809 minibuffer-completing-file-name is non-nil.
11810
11811 2005-11-16 Richard M. Stallman <rms@gnu.org>
11812
11813 * net/eudcb-ph.el (eudc-ph-open-session):
11814 Use set-process-query-on-exit-flag.
11815
11816 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
11817
11818 * international/ucs-tables.el (ucs-set-table-for-input):
11819 Use make-local-variable, not make-variable-buffer-local.
11820
11821 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
11822 Improve warning message text.
11823
11824 * savehist.el (savehist-save-hook): Add :group.
11825
11826 * menu-bar.el (menu-bar-help-menu):
11827 Rename Find Extra Packages to External Packages.
11828
11829 * cus-edit.el (Custom-reset-standard): Verify that
11830 :custom-standard-value prop exists before calling it.
11831
11832 * apropos.el (apropos-calc-scores): Use apropos-pattern.
11833
11834 2005-11-16 Martin Rudalics <rudalics@gmx.at>
11835
11836 * wid-edit.el (color): Enclose %t in %{...%}.
11837
11838 * cus-edit.el (face): Enclose %t in %{...%}.
11839
11840 2005-11-16 Hrvoje Niksic <hniksic@xemacs.org>
11841
11842 * savehist.el (savehist-mode-hook): Re-add the var.
11843 (savehist-mode): Use it.
11844
11845 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
11846
11847 * textmodes/flyspell.el: Fix commenting convention.
11848 Remove unnecessary leading * in custom docstrings.
11849 (flyspell-emacs): Remove unused var.
11850 (flyspell-delete-region-overlays): Use remove-overlays.
11851 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
11852 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
11853 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
11854 (flyspell-debug-signal-word-checked): Use with-current-buffer.
11855 (make-flyspell-overlay): Don't locally reuse a global name.
11856 (flyspell-highlight-incorrect-region)
11857 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
11858 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
11859 (flyspell-notify-misspell): Remove unused args `start' and `end'.
11860 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
11861 Wrap calls to accept-process-output inside with-local-quit since it's
11862 often called from a post-command-hook.
11863 (flyspell-correct-word, flyspell-auto-correct-word):
11864 Use ispell-send-string.
11865 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
11866
11867 * calendar/diary-lib.el (diary-list-entries): Also hide the
11868 terminating newline.
11869
11870 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
11871
11872 * textmodes/reftex.el (reftex-use-fonts): Remove the check for
11873 window-system, to allow fonts on tty.
11874
11875 2005-11-17 Nick Roberts <nickrob@snap.net.nz>
11876
11877 * progmodes/gud.el (gud-speedbar-item-info): New function.
11878 (gud-install-speedbar-variables): Use it to display data type
11879 of watch expression as a tooltip in speedbar.
11880
11881 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
11882
11883 * font-core.el (global-font-lock-mode): Add :version keyword,
11884 because default was changed.
11885
11886 * jka-cmpr-hook.el (auto-compression-mode): Ditto.
11887
11888 * startup.el (command-line): Use `custom-reevaluate-setting' for
11889 `file-name-shadow-mode'.
11890
11891 * loadup.el: Preload rfn-eshadow.
11892
11893 * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
11894 Add :version keyword.
11895 (file-name-shadow-properties, file-name-shadow-tty-properties)
11896 (file-name-shadow): Add :version keyword.
11897
11898 * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
11899 instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
11900 in the custom-group property of the symbol frames and the fringe
11901 group got no link to its parent group frames.
11902 Doc fix.
11903
11904 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
11905
11906 * progmodes/gud.el (gud-stop-subjob): New function.
11907 (gud-menu-map, gud-tool-bar-map): Use it.
11908
11909 2005-11-16 Kim F. Storm <storm@cua.dk>
11910
11911 * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
11912 than kill it.
11913 (gud-tool-bar-map): Likewise. Move cont/until/finish buttons
11914 to a more useful/logical place.
11915
11916 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
11917
11918 * progmodes/gud.el (gud-menu-map): Make visibility of stop and
11919 go buttons complementary.
11920
11921 2005-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
11922
11923 * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
11924 (rfn-eshadow-sifn-equal): New function.
11925 (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
11926
11927 2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
11928
11929 * viper-utils.el (viper-non-word-characters-reformed-vi):
11930 Quote `-' in string.
11931
11932 * viper.el (viper-emacs-state-mode-list): Ensure that
11933 rcirc-mode buffers come up in Emacs state.
11934
11935 * ediff-util.el (ediff-make-temp-file): Use proper file-name-handler
11936 operation.
11937
11938 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
11939
11940 * term.el (term-termcap-format): Fix typos.
11941 (term-down): Fix the negative argument case.
11942
11943 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
11944
11945 * progmodes/gdb-ui.el: Remove face-alias left over from change on
11946 2005-08-15.
11947 (gdb-ann3): New command gud-go.
11948 (menu): Accomodate gdb-mi.el.
11949 (gdb-assembler-custom): Make buffer of selected window current
11950 so that set-window-point works.
11951
11952 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
11953 buttons and include new ones.
11954
11955 2005-11-16 Kim F. Storm <storm@cua.dk>
11956
11957 * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
11958 (gud-menu-map): Use it.
11959
11960 2005-11-14 Luc Teirlinck <teirllm@auburn.edu>
11961
11962 * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
11963 that works correctly for Custom and that does not override a user
11964 who disables it.
11965
11966 * help-mode.el (help-make-xrefs, help-xref-on-pp)
11967 (help-xref-interned, help-follow): Make hyperlinks for variables
11968 that are unbound, but have a non-nil variable-documentation property.
11969
11970 * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
11971 mode hook. (It conflicted with defcustoms for some mode hooks.)
11972 Use the `variable-documentation' property to give the mode hook a
11973 docstring and expand that docstring.
11974
11975 2005-11-14 Hrvoje Niksic <hniksic@xemacs.org>
11976
11977 * savehist.el (savehist-mode): Don't bother with
11978 `custom-set-minor-mode'.
11979 (savehist-coding-system): Check XEmacs version.
11980 (history-length): Declare also at run time.
11981 (savehist-mode): Don't emit a message. Don't run the minor mode hook.
11982 Don't set the customize state.
11983 (savehist-minibuffer-hook): Special case for when
11984 minibuffer-history-variable is equal to t.
11985
11986 2005-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
11987
11988 * files.el (write-file): Refresh VC status.
11989
11990 * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
11991 (mark-diary-entries, make-diary-entry): Check default-major-mode rather
11992 than fundamental-mode to see if the mode was set.
11993
11994 2005-11-14 Romain Francoise <romain@orebokech.com>
11995
11996 * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
11997 dummy function in `eval-when-compile' to avoid compiler warning.
11998 Require `man' at compile time.
11999
12000 2005-11-14 Jay Belanger <belanger@truman.edu>
12001
12002 * calc-alg.el (calcFunc-write-out-power): Rename it to
12003 calcFunc-powerexpand.
12004 (math-write-out-power): Rename it to math-powerexpand; have it
12005 handle negative exponents.
12006 (calc-writeoutpower): Rename it to calc-powerexpand.
12007
12008 * calc-ext.el: Change calcFunc-writeoutpower and
12009 calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
12010 autoloads.
12011 Add calcFunc-ldiv to autoloads.
12012
12013 * calc-arith.el (calcFunc-ldiv): New function.
12014
12015 * calc.el (calc-left-divide): New function.
12016
12017 2005-11-14 Juri Linkov <juri@jurta.org>
12018
12019 * cus-edit.el (custom-variable-prompt): Set the default value arg
12020 of completing-read.
12021
12022 * cus-dep.el (custom-make-dependencies): Reverse the list of
12023 found dependencies.
12024
12025 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu>
12026
12027 * menu-bar.el (menu-bar-options-menu): Delete "Syntax
12028 Highlighting" entry, it is on by default now.
12029 (menu-bar-options-save): Do not save global-font-lock-mode.
12030
12031 2005-11-13 Richard M. Stallman <rms@gnu.org>
12032
12033 * textmodes/flyspell.el (flyspell-large-region):
12034 Call flyspell-accept-buffer-local-defs.
12035
12036 2005-11-13 Agustin Martin <agustin.martin@hispalinux.es>
12037
12038 * textmodes/flyspell.el (flyspell-notify-misspell):
12039 Fix misspelling of "Misspelling".
12040 (flyspell-process-localwords): New function.
12041 (flyspell-large-region): Call flyspell-process-localwords and
12042 flyspell-delete-region-overlays.
12043 (flyspell-delete-region-overlays): New function.
12044 (flyspell-delete-all-overlays): Call that.
12045
12046 2005-11-13 Richard M. Stallman <rms@gnu.org>
12047
12048 * help.el (help-for-help-internal): Improve doc of C-h a.
12049 (describe-key): Improve prompt; doc fix.
12050
12051 2005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
12052
12053 * vc-svn.el (vc-svn-registered): Catch all errors.
12054
12055 * cus-dep.el (custom-make-dependencies): Typo.
12056
12057 2005-11-13 Michael Albinus <michael.albinus@gmx.de>
12058
12059 * net/tramp-util.el (top): Fix compilation warning.
12060
12061 2005-11-13 Kim F. Storm <storm@cua.dk>
12062
12063 * help.el (help-for-help-internal): Fix `a' entry. Add `d' entry.
12064
12065 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
12066
12067 * progmodes/gud.el (gud-menu-map): Move parentheses (again).
12068 (gud-speedbar-buttons): Match on "const char *" too.
12069
12070 * progmodes/gdb-ui.el (gdb-var-create-handler)
12071 (gdb-var-list-children-handler): Match on "const char *" too.
12072 (gdb-var-evaluate-expression-handler): Match on empty string.
12073 (gdb-var-update-handler): Only call
12074 gdb-var-evaluate-expression-handler when required.
12075
12076 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
12077
12078 * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
12079 selected window. This still doesn't work for speedbar.
12080 (gud-speedbar-buttons): Handle string expressions properly.
12081
12082 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
12083 (gdb-var-create-handler): Handle string expressions properly.
12084 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
12085 Handle string expressions properly. Move "type" field into regexp.
12086
12087 2005-11-12 Karl Fogel <kfogel@red-bean.com>
12088
12089 * bookmark.el (bookmark-maybe-message): New function to reduce
12090 code duplication: invokes `message' iff baud-rate is high enough.
12091 (bookmark-write-file): Use above instead of an inline conditional.
12092 (bookmark-load): Same.
12093
12094 2005-11-12 Karl Fogel <kfogel@red-bean.com>
12095
12096 * bookmark.el (bookmark-write-file): Don't visit the destination
12097 file, just write the data to it using write-region. This is
12098 similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
12099 change to avoid visiting the file in the first place.
12100
12101 2005-11-12 Chong Yidong <cyd@stupidchicken.com>
12102
12103 * hi-lock.el (hi-lock-mode): Set the default value of
12104 font-lock-defaults.
12105
12106 2005-11-11 Luc Teirlinck <teirllm@auburn.edu>
12107
12108 * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
12109 arg to `file-attributes'.
12110 (find-lisp-format): The UID and GID can now be strings.
12111
12112 2005-11-12 Kim F. Storm <storm@cua.dk>
12113
12114 * help.el (help-map): Bind C-h d to apropos-documentation.
12115
12116 * simple.el (what-cursor-position): Print (EOB) instead of (100%)
12117 when point is at end-of-buffer.
12118
12119 * apropos.el (apropos-match-face): Doc fix.
12120 (apropos-sort-by-scores): Add new choice `verbose'.
12121 (apropos-documentation-sort-by-scores): New defcustom.
12122 (apropos-pattern): Now contains the pattern entered by the user.
12123 (apropos-pattern-quoted): New defvar.
12124 (apropos-regexp): New defvar, containing the regexp corresponding
12125 to apropos-pattern.
12126 (apropos-all-words-regexp): Rename from apropos-all-regexp.
12127 (apropos-read-pattern): New defun. Use it to read pattern arg in
12128 interactive calls; returns list of words for a word list, and
12129 string for a regexp.
12130 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
12131 parses a list of words or regexp as returned by apropos-read-pattern.
12132 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
12133 (apropos-score-doc): Return a very high score if the string
12134 entered by the user matches literally.
12135 (apropos-variable): Doc fix. Use apropos-read-pattern.
12136 (apropos-command): Doc fix. Use apropos-read-pattern and
12137 apropos-parse-pattern. Call apropos-print with nosubst=t.
12138 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
12139 apropos-parse-pattern.
12140 (apropos-documentation): Doc fix. Use apropos-read-pattern and
12141 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
12142 apropos-documentation-sort-by-scores. Call apropos-print with
12143 nosubst=t.
12144 (apropos-documentation-internal): Pass doc string through
12145 substitute-key-definition before adding text properties.
12146 Highlight substring matching literal user input if possible.
12147 (apropos-documentation-check-doc-file): Remove locals beg and end.
12148 Fix calculation of score (as added twice). Pass doc string through
12149 substitute-key-definition before adding text properties.
12150 (apropos-documentation-check-elc-file): Pass doc string through
12151 substitute-key-definition before adding text properties.
12152 Highlight substring matching literal user input if possible.
12153 (apropos-print): Add new arg NOSUBST; if set, command and variable
12154 doc strings have already been passed through substitute-key-definition.
12155 Add code to handle apropos-accumulator items without score element
12156 for backwards compatibility (e.g. with woman package).
12157 Only show scores if apropos-sort-by-scores is `verbose'.
12158
12159 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
12160
12161 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
12162 Add jka-compr-load-suffixes to load-suffixes.
12163
12164 * jka-compr.el: Require jka-cmpr-hook.
12165 (jka-compr-info-compress-message, jka-compr-info-compress-program)
12166 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
12167 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
12168 (jka-compr-info-can-append, jka-compr-info-strip-extension)
12169 (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
12170 (jka-compr-info-regexp): Remove. Provided by jka-cmpr-hook.
12171 (jka-compr-uninstall): Remove entries from
12172 jka-compr-added-to-file-coding-system-alist after they are used.
12173 (jka-compr-error): Remove unused var `curbuf'.
12174 (jka-compr-file-local-copy): Remove unused var `notfound'.
12175
12176 2005-11-10 Romain Francoise <romain@orebokech.com>
12177
12178 * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
12179
12180 2005-11-11 Nick Roberts <nickrob@snap.net.nz>
12181
12182 * progmodes/gud.el (gud-menu-map): Move parentheses.
12183 (gdb): New command gud-pv.
12184
12185 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
12186
12187 * tar-mode.el: Remove spurious or unnecessary leading stars
12188 in docstrings.
12189 (tar-header-block-tokenize): Also obey default-file-name-coding-system.
12190 (tar-parse-octal-integer-safe): Use mapc.
12191 (tar-header-block-summarize): Remove unused var `ck'.
12192 (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
12193 cleared before. Obey default-enable-multibyte-characters.
12194 Use mapconcat. Simplify setting of tar-header-offset.
12195 (tar-mode-map): Move initialization inside delcaration.
12196 (tar-flag-deleted): Use `abs'.
12197 (tar-expunge-internal): Remove unused var `line'.
12198 (tar-expunge-internal): Don't hardcode point-min==1.
12199 (tar-expunge): Widen while doing set-buffer-multibyte.
12200 (tar-rename-entry): Use file-name-coding-system.
12201 (tar-alter-one-field): Don't hardcode point-min==1.
12202 (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
12203 (tar-pad-to-blocksize): Don't hardcode point-min==1. Clarify the code.
12204
12205 2005-11-10 Masatake YAMATO <jet@gyve.org>
12206
12207 * add-log.el (add-log-current-defun): Handle class::method
12208 notation of c++. Fix incorrect comment.
12209
12210 2005-11-10 Alan Mackenzie <acm@muc.de>
12211
12212 * help-fns.el (describe-variable): Make C-h v work when a variable
12213 has variable documentation yet is unbound.
12214
12215 2005-11-10 Masatake YAMATO <jet@gyve.org>
12216
12217 * man.el (Man-highlight-references): Set an empty
12218 string to `Man-arguments' if it is nil.
12219 Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
12220
12221 2005-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
12222
12223 * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
12224 commenting conventions.
12225
12226 * cus-dep.el (custom-make-dependencies): Simplify.
12227 Better follow the commenting conventions.
12228
12229 2005-11-09 Richard M. Stallman <rms@gnu.org>
12230
12231 * apropos.el (apropos-pattern): Rename from apropos-regexp.
12232 (apropos-orig-pattern): Rename from apropos-orig-regexp.
12233 All uses changed.
12234 (apropos-rewrite-regexp): Doc fix.
12235 (apropos-variable, apropos-command, apropos, apropos-value):
12236 Change prompt; carry through the argument renaming.
12237
12238 2005-11-09 Luc Teirlinck <teirllm@auburn.edu>
12239
12240 * find-lisp.el: Require dired.
12241 (find-lisp-find-dired-internal): Do not call
12242 `abbreviate-file-name' on DIR.
12243
12244 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
12245
12246 * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
12247
12248 2005-11-09 Nick Roberts <nickrob@snap.net.nz>
12249
12250 * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
12251 when using the speedbar.
12252 (gdb): New command gud-pp.
12253 (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
12254
12255 2005-11-09 Juri Linkov <juri@jurta.org>
12256
12257 * replace.el (occur-excluded-properties): New defcustom.
12258 (occur-1, occur-engine, occur-accumulate-lines): Use it.
12259
12260 2005-11-08 Jay Belanger <belanger@truman.edu>
12261
12262 * calc/calc-units.el (math-convert-units): Replace any composite
12263 unit by its definition.
12264
12265 2005-11-08 Lars Hansen <larsh@soem.dk>
12266
12267 * emacs-lisp/autoload.el (update-directory-autoloads):
12268 Add obsolete function alias.
12269
12270 2005-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
12271
12272 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
12273 comment-indent-function.
12274 (lisp-comment-indent): Replace by an alias for comment-indent-default.
12275
12276 * reveal.el (reveal-post-command): Rework the handling of
12277 reveal-open-spots, so as to be more reliable. There were several
12278 tricky corner cases where an open spot might be lost, or where
12279 a closed spot might end up on the list of open spots.
12280 Only reveal text that's ellipsised.
12281
12282 2005-11-07 Carsten Dominik <dominik@science.uva.nl>
12283
12284 * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
12285
12286 2005-11-07 John Paul Wallington <jpw@gnu.org>
12287
12288 * ibuffer.el (ibuffer): Search iconified frames too when
12289 getting Ibuffer buffer's window.
12290
12291 2005-11-06 Richard M. Stallman <rms@gnu.org>
12292
12293 * progmodes/compile.el (compilation-internal-error-properties):
12294 save-excursion around the computation of MARKER.
12295
12296 2005-11-06 Piet van Oostrum <piet@cs.uu.nl>
12297
12298 * textmodes/flyspell.el (flyspell-external-point-words):
12299 flyspell-get-word returns a list, not just a string.
12300
12301 2005-11-06 John Paul Wallington <jpw@pobox.com>
12302
12303 * ibuffer.el (ibuffer): Search all visible frames when getting
12304 Ibuffer buffer's window.
12305
12306 2005-11-07 Masatake YAMATO <jet@gyve.org>
12307
12308 * man.el (Man-reference-regexp): Accept spaces between
12309 `Man-name-regexp' and `Man-section-regexp'.
12310 (Man-apropos-regexp): New variable.
12311 (Man-abstract-xref-man-page): Use value for `Man-target-string'
12312 if available.
12313 (Man-highlight-references, Man-highlight-references0):
12314 Handle the case when `Man-arguments' includes "-k".
12315 (Man-highlight-references0): Rename the argument `TARGET-POS' to
12316 `TARGET'. `TARGET' can be a number, function or nil.
12317
12318 2005-11-06 Nick Roberts <nickrob@snap.net.nz>
12319
12320 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
12321 (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
12322 (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
12323 (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
12324 (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
12325 (gdb-send-item): Use buffer-local-value and simplify.
12326
12327 2005-11-05 Luc Teirlinck <teirllm@auburn.edu>
12328
12329 * startup.el (command-line): Use `custom-reevaluate-setting' for
12330 `global-font-lock-mode'.
12331
12332 * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
12333 by default, except in batch mode or when the -D option is given.
12334
12335 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
12336 specified keyword args on to `define-minor-mode'. Update docstring.
12337
12338 2005-11-05 Romain Francoise <romain@orebokech.com>
12339
12340 * replace.el (occur-engine): Add marker at end of line, too.
12341
12342 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
12343
12344 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
12345 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
12346 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
12347 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
12348 argument to all these routines, so the passphrase can be managed
12349 externally and passed in to the system.
12350 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
12351 pgg-add-passphrase-to-cache function.
12352
12353 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
12354 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
12355 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
12356 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
12357 argument to all these routines, so the passphrase can be managed
12358 externally and passed in to the system.
12359 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
12360 function.
12361
12362 2005-11-04 Dan Nicolaescu <dann@ics.uci.edu>
12363
12364 * font-lock.el: Don't deal with font-lock-face-attributes here,
12365 move the code ...
12366
12367 * startup.el (command-line): ... here. Use face-spec-set instead
12368 of custom-declare-face.
12369
12370 * faces.el (face-spec-set): Reset the face if spec is not nil.
12371
12372 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
12373
12374 * newcomment.el (comment-region-internal): Box more tightly in the
12375 common case where there's no TAB in the boxed text.
12376
12377 2005-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12378
12379 * info.el (info-tool-bar-map): Use images prev-node, next-node and
12380 up-node.
12381
12382 2005-11-04 Ulf Jasper <ulf.jasper@web.de>
12383
12384 * newsticker.el: Commentary updated. Code formatting changed.
12385 (newsticker-version): Change to "1.9".
12386 (newsticker, newsticker-feed): Doc fix.
12387 (newsticker-url-list): Doc fix. Add option "Weekly".
12388 (newsticker-retrieval-interval): Add option "Weekly".
12389 (newsticker-headline-processing): Doc fix.
12390 (newsticker-auto-mark-filter): Remove.
12391 (newsticker-auto-mark-filter-list): New.
12392 (newsticker-layout, newsticker-sort-method): Doc fix.
12393 (newsticker-hide-old-items-in-newsticker-buffer)
12394 (newsticker-heading-format, newsticker-item-format)
12395 (newsticker-desc-format): Doc fix.
12396 (newsticker-show-all-rss-elements): Remove.
12397 (newsticker-show-all-news-elements): New.
12398 (newsticker-faces, newsticker-ticker): Doc fix.
12399 (remove-from-invisibility-spec): Code formatting.
12400 (newsticker--process-ids): New.
12401 (newsticker-mode): Doc fix.
12402 (newsticker-mode): Change mode-line-format.
12403 (newsticker-start): Remove debug output.
12404 (newsticker-start-ticker): Doc fix. Add autoload cookie.
12405 (newsticker-w3m-show-inline-images): Code formatting.
12406 (newsticker-next-item): Call `force-mode-line-update'.
12407 (newsticker-previous-item): Call `force-mode-line-update'.
12408 (newsticker-next-feed): Call `force-mode-line-update'.
12409 (newsticker-previous-feed): Call `force-mode-line-update'.
12410 (newsticker-mark-all-items-at-point-as-read): Code formatting.
12411 (newsticker-show-old-items): Do not show descs.
12412 (newsticker-hide-entry): Hide too much.
12413 (newsticker-hide-entry, newsticker-show-entry)
12414 (newsticker-toggle-auto-narrow-to-feed): Code formatting.
12415 (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
12416 (newsticker-toggle-auto-narrow-to-item): Code formatting.
12417 (newsticker-set-auto-narrow-to-item): Update buffer immediately.
12418 (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
12419 (newsticker-get-news): Call `force-mode-line-update'.
12420 Collect process ids.
12421 (newsticker--sentinel): Change coding system handling.
12422 Move image retrieval to new functions newsticker--get-logo-url-*.
12423 Move feed parsing to new functions newsticker--parse-*.
12424 Update list of process ids.
12425 (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
12426 (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
12427 (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
12428 (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
12429 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
12430 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
12431 (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
12432 (newsticker--decode-coding-string): Remove.
12433 (newsticker--decode-numeric-entities): Check input. Format code.
12434 (newsticker--remove-whitespace): Check input.
12435 (newsticker--do-forget-preformatted): Doc fix.
12436 (newsticker--decode-rfc822-date): Allow for missing time.
12437 (newsticker--update-process-ids): New.
12438 (newsticker--image-sentinel): Change comment.
12439 (newsticker--image-read): Change error message.
12440 (newsticker--imenu-goto): Doc fix. Show headline title.
12441 (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
12442 (newsticker--buffer-do-insert-text): Clean whitespace in
12443 html-rendered headline title. Code formatting.
12444 Call `newsticker--buffer-print-extra-elements'.
12445 (newsticker--buffer-print-extra-element): Remove.
12446 (newsticker--buffer-print-extra-elements): New.
12447 (newsticker--buffer-do-print-extra-element): New.
12448 (newsticker--buffer-insert-enclosure): Doc fix. Use MBytes for
12449 large sizes.
12450 (newsticker--run-auto-mark-filter)
12451 (newsticker--do-run-auto-mark-filter):
12452 Use `newsticker-auto-mark-filter-list'.
12453
12454 2005-11-04 Ryan Yeske <rcyeske@gmail.com>
12455
12456 * net/rcirc.el: Use split-string OMIT-NULLS argument.
12457 (rcirc-print): Force redisplay before running hooks. Do long
12458 buffer truncation after making new text read-only. Deal with nil
12459 text when decoding strings. If TARGET is nil, use either the
12460 currently selected buffer, if it is an rcirc buffer and of the
12461 same process or the process buffer.
12462 (rcirc-mode): Remove header-line. Recompute short buffer names.
12463 Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
12464 (rcirc-short-buffer-name): Add variable.
12465 (rcirc-kill-buffer-hook): Recompute short buffer names.
12466 Remove nick from private channel.
12467 (rcirc-send-input): Send command text to current-buffer.
12468 Don't clear overlay arrow here.
12469 (rcirc-short-buffer-name): Return a short buffer name.
12470 (rcirc-update-short-buffer-names, rcirc-abbreviate)
12471 (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
12472 buffer-name abbreviations.
12473 (rcirc-kill-buffer-hook-1): Split to make debugging easier.
12474 Do not touch nick-table when killing a parted channel.
12475 (rcirc-window-configuration-change): Rename from rcirc-update-activity.
12476 Clear arrow from current buffer if it is now hidden.
12477 (rcirc-current-buffer): Add variable.
12478 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
12479 (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
12480 Remove -face from names.
12481 (rcirc-update-activity-string): Print "DND" when globally ignoring
12482 activity.
12483 (rcirc-ignore-buffer-activity-flag): Rename from
12484 rcirc-ignore-channel-activity.
12485 (rcirc-ignore-all-activity-flag): Doc fix.
12486 (rcirc-channels): Remove variable.
12487 (rcirc-kill-buffer-hook):
12488 (rcirc-get-buffer-create): Add nick to private channel.
12489 (rcirc-multiline-edit-submit): Remove tabs.
12490 (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
12491 folded.
12492 (rcirc-remove-nick-channel): Bug fix.
12493 (rcirc-toggle-ignore-buffer-activity): Rename from
12494 rcirc-toggle-ignore-channel-activity.
12495 (rcirc-record-activity): Add buffers to the front of the list.
12496 (rcirc-update-activity): Remove killed buffers from list.
12497 (rcirc-process-server-response-1): Remove last argument if it is
12498 null before calling handler.
12499 (rcirc): Add "rcirc" defcustom prefix.
12500 (rcirc-prompt): Simplify default prompt.
12501 Use custom-initialize-default.
12502 (rcirc-private-chats): Remove variable.
12503 (rcirc-prompt): Change initialization.
12504 (rcirc-version): Remove function.
12505 (rcirc-id-string): Add constant.
12506 (rcirc-last-buffer): Remove variable.
12507 (rcirc-buffer-alist): Add variable.
12508 (rcirc-connect): Update variable setup.
12509 (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
12510 (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
12511 default.
12512 (rcirc-handler-generic): Trigger activity.
12513 (rcirc-send-message): Create the buffor of the target.
12514 (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
12515 (rcirc-get-buffer): Just return nil if there is no matching buffer.
12516 (rcirc-multiline-edit-cancel): Remove function.
12517 (rcirc-set-last-buffer): Remove function.
12518 (rcirc-get-any-buffer): Add function.
12519 (rcirc-join-channels): Don't print /join text.
12520 (rcirc-toggle-ignore-channel-activity): Add and update echo area
12521 messages.
12522 (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
12523 (rcirc-handler-NOTICE): Recognize CTCP responses.
12524 (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
12525 constructing TOPIC string for buffers we are not JOINed.
12526 (rcirc-handler-CTCP-response): Add handler.
12527 (rcirc-multiline-edit-submit): Restore the window-configuration
12528 before adjusting point.
12529 (rcirc): Add customization group.
12530 (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
12531 (rcirc-user-full-name, rcirc-startup-channels-alist)
12532 (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
12533 (rcirc-ignore-all-activity-flag, rcirc-time-format)
12534 (rcirc-input-ring-size, rcirc-read-only-flag)
12535 (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
12536 (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
12537 Change defvar to defcustom.
12538 (rcirc-update-prompt): Add optional ALL arg, which will update
12539 prompts in all rcirc buffers. Regexp quote replacement text.
12540 (rcirc-fill-column): Accept frame-width as a value.
12541 (rcirc-set-changed): Add function.
12542 (rcirc-next-active-buffer): Write more meaningful messages.
12543 (rcirc-faces): Add customization group.
12544 (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
12545 (rcirc-nick-in-message-face, rcirc-prompt-face)
12546 (rcirc-mode-line-nick-face): Move into rcirc-faces group.
12547 (with-rcirc-process-buffer): Move before first usage.
12548 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
12549 (rcirc-debug-flag): Rename from `rcirc-log-p'.
12550 (rcirc-debug): Rename from `rcirc-log'.
12551 (rcirc-format-response-string): Do not print `-' chars for a
12552 NOTICE with no sender. Simplify output of server responses.
12553
12554 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
12555
12556 (rcirc-browse-url-map, rcirc-browse-url-at-point)
12557 (rcirc-browse-url-at-mouse, rcirc-mangle-text):
12558 Make urls mouse and RET clickable.
12559
12560 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
12561
12562 * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
12563
12564 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
12565
12566 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
12567 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
12568 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
12569 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
12570 argument to all these routines, so the passphrase can be managed
12571 externally and passed in to the system.
12572 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
12573 pgg-add-passphrase-to-cache function.
12574
12575 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
12576 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
12577 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
12578 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
12579 argument to all these routines, so the passphrase can be managed
12580 externally and passed in to the system.
12581 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
12582 function.
12583
12584 2005-11-04 Edward O'Connor <hober0@gmail.com> (tiny change)
12585
12586 * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
12587 from goto-address-url-regexp.
12588
12589 2005-11-04 Carsten Dominik <dominik@science.uva.nl>
12590
12591 * textmodes/org.el (org-read-date, org-goto-calendar)
12592 (org-recenter-calendar, org-agenda-goto-calendar):
12593 Temporarily clear `calendar-move-hook'.
12594
12595 2005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
12596
12597 * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
12598 merging.
12599
12600 * ediff-util.el (ediff-previous-difference): Don't skip regions that
12601 have merge clashes.
12602
12603 2005-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12604
12605 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
12606 Undo previous change.
12607
12608 * startup.el (command-line): Use `custom-reevaluate-setting' for
12609 mouse-wheel-down-event and mouse-wheel-up-event. Don't call
12610 tty-register-default-colors on Mac.
12611
12612 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
12613
12614 * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
12615 (gdb-buffer-type): Make it automatically buffer local...
12616 (gdb-get-create-buffer): ...and set it accordingly.
12617 (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
12618 actually work.
12619
12620 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
12621
12622 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
12623 not red.
12624
12625 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
12626
12627 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
12628 case GUD buffer is not visible.
12629 (gdb-goto-breakpoint): Try to force display in source buffer.
12630 (gdb-frame-gdb-buffer): Copy other similar functions.
12631 (gdb-restore-windows): Don't display source if not asked for.
12632 (gdb-assembler-buffer-name): Don't capitalise.
12633
12634 2005-11-03 Richard M. Stallman <rms@gnu.org>
12635
12636 * wid-edit.el (key-sequence): New widget type.
12637
12638 * simple.el (set-mark-command-repeat-pop): New variable.
12639 (set-mark-command): Only interpret plan C-@ after a pop as a pop
12640 if set-mark-command-repeat-pop is true.
12641
12642 * info.el (Info-fontify-node): Don't display extra "see" if there
12643 already is one here.
12644
12645 * mouse.el: Fix special handling of DEL after dragging a region:
12646 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
12647 (mouse-region-delete-keys): Change to defcustom. Add [backspace].
12648
12649 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
12650
12651 * textmodes/ispell.el (ispell-command-loop): Change `i' description
12652 not to assume it pertains to an affix.
12653
12654 * textmodes/flyspell.el (flyspell-post-command-hook):
12655 Bind deactivate-mark to prevent deactivation.
12656
12657 2005-11-03 Lars Hansen <larsh@soem.dk>
12658
12659 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
12660 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
12661 dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
12662
12663 2005-11-03 Romain Francoise <romain@orebokech.com>
12664
12665 * net/eudcb-mab.el: Now part of GNU Emacs. Update FSF's address.
12666 Update copyright years.
12667
12668 2005-11-03 Sam Steingold <sds@gnu.org>
12669
12670 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
12671 Use system-type instead of window-system because window-system is not
12672 correctly defined during loadup.
12673
12674 2005-11-02 Mark A. Hershberger <mah@everybody.org>
12675
12676 * xml.el (xml-syntax-table): Allow xml.el to compile in xemacs.
12677 (xml-parse-tag): Join strings separated by a comment properly.
12678
12679 2005-11-02 Andreas Schwab <schwab@suse.de>
12680
12681 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
12682
12683 2005-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
12684
12685 * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
12686 (byte-optimize-pure-func): Quote the eval'd value.
12687
12688 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
12689 Rename from perl-font-lock-syntactic-face-function.
12690 Change the calling convention so it can be used as a font-lock MATCHER.
12691 Do the parse-partial-sexp loop outselves.
12692 (perl-font-lock-syntactic-keywords): Use it.
12693 (perl-mode): Don't set font-lock-syntactic-face-function any more.
12694
12695 2005-11-02 Nick Roberts <nickrob@snap.net.nz>
12696
12697 * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
12698 disassembly buffer too.
12699 (gdb-exited): Remove overlay arrows when execution has finished.
12700 (gdb-info-frames-custom, gdb-info-threads-custom)
12701 (gdb-info-registers-custom): Don't add inappropriate text
12702 properties if inferior is not active.
12703
12704 2005-11-02 Glenn Morris <rgm@gnu.org>
12705
12706 * progmodes/fortran.el (fortran-blink-match):
12707 Use `blink-matching-delay'.
12708
12709 2005-11-02 John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
12710
12711 * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
12712
12713 2005-11-02 Lars Hansen <larsh@soem.dk>
12714
12715 * net/tramp.el (tramp-action-out-of-band): Handle scp message
12716 "Permission denied".
12717
12718 2005-11-01 Richard M. Stallman <rms@gnu.org>
12719
12720 * textmodes/flyspell.el (flyspell-external-point-words):
12721 Pass nil to flyspell-get-word.
12722
12723 2005-11-02 Kim F. Storm <storm@cua.dk>
12724
12725 * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
12726 item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
12727
12728 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
12729
12730 * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
12731 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
12732 (calendar-mouse-print-dates): Add optional `event' argument.
12733 Update interactive-spec.
12734 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
12735 Use `calendar-event-to-date' instead of `event'.
12736
12737 2005-11-02 Masatake YAMATO <jet@gyve.org>
12738
12739 * progmodes/ld-script.el (ld-script-builtins):
12740 Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
12741 "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
12742 (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
12743
12744 2005-11-01 Romain Francoise <romain@orebokech.com>
12745
12746 * vc-sccs.el: Update copyright year.
12747 * ezimage.el: Likewise.
12748
12749 2005-11-01 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
12750
12751 * info.el (Info-fontify-node): Use `string-width' for fontifying
12752 underlined titles.
12753
12754 2005-11-01 Juri Linkov <juri@jurta.org>
12755
12756 * info.el (Info-fontify-node): Downcase node header keywords Node,
12757 Prev, Next, Up before comparison.
12758 (Info-history): Insert absolute directory name, and put invisible
12759 property on it.
12760
12761 2005-11-01 Juri Linkov <juri@jurta.org>
12762
12763 * info.el (Info-file-supports-index-cookies): New variable.
12764 (Info-find-node-2): Check makeinfo version for index cookie support.
12765 (Info-index-nodes): Search for nodes with index cookies only when
12766 Info-file-supports-index-cookies is t. Otherwise, search nodes
12767 with "Index" in the node name.
12768 (Info-index-node): Search index cookie in the current node only when
12769 Info-file-supports-index-cookies is t. Otherwise, check the word
12770 "Index" in the node name.
12771 (Info-find-emacs-command-nodes): Remove code that searches nodes
12772 with "Index" node name in the top menu.
12773
12774 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
12775
12776 * progmodes/scheme.el (scheme-mode-variables): Use the default
12777 comment-indent-function.
12778
12779 * faces.el (face-attribute): Handle the case where a face inherits from
12780 a non-existent face.
12781
12782 * simple.el (eval-expression-print-format): Use lisp-readable syntax
12783 for octal and hexa output, and merge the char into the paren.
12784 (kill-new): Use push.
12785 (copy-to-buffer): Use with-current-buffer.
12786 (completion-setup-function): Move code in loop to remove redundancy.
12787 (minibuffer-local-must-match-map): Don't add bindings that duplicate
12788 those inherited from minibuffer-local-completion-map.
12789
12790 * savehist.el (savehist-mode) <defcustom>:
12791 Use custom-set-minor-mode if available.
12792 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
12793 and emit a message if applicable.
12794
12795 2005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
12796
12797 * savehist.el: Sync up to version 19.
12798 (savehist-mode): New minor mode.
12799 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
12800 (savehist-length): Remove (use history-length instead).
12801 (savehist-file-modes): Rename from savehist-modes.
12802 (savehist-save-hook, savehist-loaded): New vars.
12803 (savehist-load): Use savehist-mode. Try to smooth up transition from
12804 old format to new format.
12805 (savehist-install): Allow savehist-autosave-interval to be nil.
12806 (savehist-save): Run the new hook. Be more careful to only trim the
12807 history variables.
12808 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
12809 (savehist-printable): Print into a buffer rather than char-by-char.
12810
12811 2005-11-01 John Wiegley <johnw@newartisans.com>
12812
12813 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
12814 toggle-ignore keybinding (C-a). The author said it had been
12815 disabled much earlier due to a possible incompatibility, but after
12816 many months of usage I have encountered no problems (and it is a
12817 rather useful option, especially for switching to " *temp*").
12818
12819 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
12820 support for OS/X's AddressBook, by calling out to the open source
12821 program "contacts" (installable through Fink).
12822
12823 * net/eudc.el (eudc-expand-inline): If the
12824 `eudc-multiple-match-handling-method' is set to `all', delete the
12825 query string before inserting the query result.
12826
12827 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
12828 flag, to prevent Eshell from using the system ls when
12829 `eshell-ls-insert-directory' is in used.
12830 (eshell-ls-insert-directory): Disable font-lock in directory
12831 buffer so that Eshell's own fontification is seen. This broke
12832 recently due to changes in font-lock, so this goes back to version
12833 21 behavior.
12834
12835 2005-11-01 Nick Roberts <nickrob@snap.net.nz>
12836
12837 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
12838 (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
12839 (gdb-many-windows): Doc fix.
12840
12841 2005-10-31 Romain Francoise <romain@orebokech.com>
12842
12843 * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
12844
12845 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
12846
12847 * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
12848 that global-font-lock-mode can be enabled by default.
12849
12850 * font-lock.el (font-lock-keywords, font-lock-mode-internal)
12851 (font-lock-add-keywords, font-lock-remove-keywords)
12852 (font-lock-fontify-buffer): Remove autoload cookies.
12853
12854 * jit-lock.el (jit-lock-register): Likewise.
12855
12856 * emacs-lisp/syntax.el (syntax-ppss): Likewise.
12857
12858 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
12859
12860 * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
12861 intact if there is no gud-comint-buffer.
12862
12863 2005-10-31 Luc Teirlinck <teirllm@auburn.edu>
12864
12865 * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
12866 old prompt comint-prompt-read-only is t and GDB commands are
12867 issued from tool bar etc.
12868
12869 2005-10-31 Masatake YAMATO <jet@gyve.org>
12870
12871 * vc.el (vc-directory-exclusion-list): Add "{arch}".
12872
12873 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
12874
12875 * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
12876 (thumbs-thumbsdir): Make .emacs.d if it does not exist.
12877
12878 2005-10-30 Michael Albinus <michael.albinus@gmx.de>
12879
12880 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
12881 starting at beginning of line. Fontification is messed up when
12882 `open-paren-in-column-0-is-defun-start' set to t.
12883 Reported by John Paul Wallington <jpw@pobox.com>.
12884
12885 2005-10-30 Luc Teirlinck <teirllm@auburn.edu>
12886
12887 * comint.el (comint-send-input): Call `comint-update-fence' when
12888 `comint-process-echoes' and `comint-prompt-read-only' are both
12889 non-nil, to avoid leftover read-only newline.
12890
12891 2005-10-30 Richard M. Stallman <rms@gnu.org>
12892
12893 * textmodes/flyspell.el (flyspell-external-point-words):
12894 Detect when WORD can't be checked properly because
12895 flyspell-get-word finds just part of it, and move on.
12896
12897 * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
12898 boundarychar for Polish.
12899 (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
12900 (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
12901
12902 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
12903
12904 * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
12905 (gdb-registers-font-lock-keywords): Delete.
12906 (gdb-registers-mode): Don't fontify.
12907 (gdb-info-registers-custom): Use text properties instead as, in
12908 future, changed register values will use font-lock-warning-face.
12909 (gdb-local-font-lock-keywords): Rename to...
12910 (gdb-locals-font-lock-keywords): ...for consistency.
12911
12912 2005-10-30 Andre Spiegel <spiegel@gnu.org>
12913
12914 * vc.el (vc-switch-backend): Better error message if the buffer is
12915 not visiting a file under version control.
12916
12917 * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
12918
12919 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
12920
12921 * startup.el (command-line): Use ~/.emacs.d/init.el instead of
12922 ~/.emacs.d/.emacs.
12923
12924 2005-10-29 Richard M. Stallman <rms@gnu.org>
12925
12926 * replace.el (occur-mode-mouse-goto): Always go to other window.
12927 (occur-mode-goto-occurrence): Always switch in same window.
12928
12929 * simple.el (undo): Display message at end, not at start.
12930
12931 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
12932 New arg REUSE-CELL.
12933 (cancel-timer-internal): New function.
12934 (timer-event-handler): Use cancel-timer-internal,
12935 and pass the cell it returns to timer-activate...
12936
12937 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
12938 (jit-lock-deferred-fontify, jit-lock-context-fontify)
12939 (jit-lock-after-change): Test memory-full.
12940
12941 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
12942
12943 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
12944 part of the decoded armor to find the key-identifier.
12945 (pgg-gpg-lookup-key-owner): New function to return the
12946 human-readable identifier of a key owner.
12947 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
12948 key itself.
12949 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
12950 the key value) if we have a key and can match it against a secret
12951 key. Also, added a note pointing out fact that the prompt only
12952 indicates the first matching key.
12953
12954 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
12955 pgg-decrypt-region.
12956 (pgg-pending-timers): A new hash for tracking the passphrase cache
12957 timers, so that new ones supercede old ones.
12958 (pgg-add-passphrase-to-cache): Rename from
12959 `pgg-add-passphrase-cache' to reduce confusion (all callers
12960 changed). Modified to cancel old timers when new ones are added.
12961 (pgg-remove-passphrase-from-cache): Rename from
12962 `pgg-remove-passphrase-cache' to reduce confusion (all callers
12963 changed). Modified to cancel old timers when their keys are
12964 removed from the cache.
12965 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
12966 XEmacs, an indirection to delete-itimer.
12967 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
12968 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
12969 users can only check cache without risk of prompting. Correct bug in
12970 notruncate behavior.
12971 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
12972 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
12973 Add informative docstrings.
12974 (pgg-decrypt): Convey provided passphrase in subordinate call to
12975 pgg-decrypt-region.
12976
12977 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
12978 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
12979 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
12980 `passphrase' argument, so the passphrase can be managed externally
12981 and then passed in to the system.
12982
12983 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
12984 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
12985 so the passphrase cache can be used reliably with identifiers
12986 besides a pgp packet's key id.
12987
12988 * pgg-gpg.el (pgg-pgp-encrypt-region)
12989 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
12990 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
12991 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
12992 argument to all these routines, so the passphrase can be managed
12993 externally and passed in to the system.
12994
12995 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
12996 `notruncate' argument, so the passphrase cache can be used
12997 reliably with identifiers besides a pgp packet's key id.
12998
12999 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
13000
13001 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
13002 symmetric encryption.
13003 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
13004 encrypted session key.
13005 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
13006 message ask for the passphrase in a proper way.
13007
13008 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
13009 New user commands for symmetric encryption.
13010
13011 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
13012
13013 * textmodes/conf-mode.el (conf-assignment-sign)
13014 (conf-assignment-regexp): Fix docstrings.
13015 (conf-mode-initialize): New function.
13016 (conf-mode): Remove optional args. Use delay-mode-hooks to
13017 recognize recursive calls.
13018 (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
13019 (conf-space-mode, conf-colon-mode, conf-ppd-mode)
13020 (conf-xdefaults-mode): Use define-derived-mode and
13021 conf-mode-initialize.
13022
13023 2005-10-29 Romain Francoise <romain@orebokech.com>
13024
13025 * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
13026
13027 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
13028
13029 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
13030 part of the decoded armor to find the key-identifier.
13031 (pgg-gpg-lookup-key-owner): New function to return the
13032 human-readable identifier of a key owner.
13033 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
13034 key itself.
13035 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
13036 the key value) if we have a key and can match it against a secret
13037 key. Also, added a note pointing out fact that the prompt only
13038 indicates the first matching key.
13039
13040 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
13041 pgg-decrypt-region.
13042 (pgg-pending-timers): A new hash for tracking the passphrase cache
13043 timers, so that new ones supercede old ones.
13044 (pgg-add-passphrase-to-cache): Rename from
13045 `pgg-add-passphrase-cache' to reduce confusion (all callers
13046 changed). Modified to cancel old timers when new ones are added.
13047 (pgg-remove-passphrase-from-cache): Rename from
13048 `pgg-remove-passphrase-cache' to reduce confusion (all callers
13049 changed). Modified to cancel old timers when their keys are
13050 removed from the cache.
13051 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
13052 XEmacs, an indirection to delete-itimer.
13053 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
13054 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
13055 users can only check cache without risk of prompting. Correct bug in
13056 notruncate behavior.
13057 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
13058 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
13059 Add informative docstrings.
13060 (pgg-decrypt): Convey provided passphrase in subordinate call to
13061 pgg-decrypt-region.
13062
13063 2005-10-20 Ken Manheimer <ken.manheimer+emacs@gmail.com>
13064
13065 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
13066 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
13067 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
13068 `passphrase' argument, so the passphrase can be managed externally
13069 and then passed in to the system.
13070
13071 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
13072 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
13073 so the passphrase cache can be used reliably with identifiers
13074 besides a pgp packet's key id.
13075
13076 * pgg-gpg.el (pgg-pgp-encrypt-region)
13077 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
13078 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
13079 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
13080 argument to all these routines, so the passphrase can be managed
13081 externally and passed in to the system.
13082
13083 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
13084 `notruncate' argument, so the passphrase cache can be used
13085 reliably with identifiers besides a pgp packet's key id.
13086
13087 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
13088
13089 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
13090 symmetric encryption.
13091 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
13092 encrypted session key.
13093 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
13094 message ask for the passphrase in a proper way.
13095
13096 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
13097 New user commands for symmetric encryption.
13098
13099 2005-10-28 Bill Wohler <wohler@newt.com>
13100
13101 * help-mode.el (help-url): New button type. Calls browse-url.
13102 (help-xref-url-regexp): New regexp to recognize URLs in docstring.
13103 Similar to Info nodes: URL `url'.
13104 (help-make-xrefs): Create help-url buttons for
13105 help-xref-url-regexp matches.
13106
13107 2005-10-29 Nick Roberts <nickrob@snap.net.nz>
13108
13109 * tool-bar.el (tool-bar-add-item-from-menu)
13110 (tool-bar-local-item-from-menu): Fix doc strings.
13111
13112 2005-10-28 Romain Francoise <romain@orebokech.com>
13113
13114 * ldefs-boot.el: Update.
13115
13116 * subr.el (locate-library): Move from help-fns.el.
13117 * help-fns.el (locate-library): Move to subr.el.
13118
13119 2005-10-28 Richard M. Stallman <rms@gnu.org>
13120
13121 * net/tramp.el (tramp-completion-mode): defvar moved up.
13122
13123 * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
13124
13125 * tool-bar.el (tool-bar-mode): Delete autoload cookie.
13126
13127 * files.el (find-file-noselect): Use %d to format large file size.
13128
13129 * bindings.el (mode-line-format): Add %e.
13130
13131 * loadup.el ("facemenu"): Load unconditionally.
13132 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
13133 ("x-dnd"): Load, when appropriate.
13134
13135 * startup.el (command-line): Call before-init-hook earlier.
13136 Warn about some bad characters in -u user name.
13137
13138 * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
13139 (flyspell-external-point-words): Error if misspelled word is not found.
13140 Set flyspell-large-region-beg at end of word.
13141
13142 2005-10-28 Andreas Schwab <schwab@suse.de>
13143
13144 * view.el (View-revert-buffer-scroll-page-forward):
13145 Use view-page-size-default.
13146
13147 2005-10-28 Juri Linkov <juri@jurta.org>
13148
13149 * international/quail.el (quail-get-current-str): Translate last
13150 raw character for deterministic input methods.
13151
13152 2005-10-27 Jay Belanger <belanger@truman.edu>
13153
13154 * calc/calc-ext.el: Add functions to autoloads.
13155 (math-identity-matrix-p, math-ident-row-p): New functions.
13156
13157 * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
13158 multiplication by an identity matrix; don't turn multiplication by
13159 an inverse matrix into division.
13160 (math-div-symbol-fancy): Replace division by matrices with
13161 multiplication by inverse.
13162
13163 * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
13164
13165 * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
13166 (calc-writeoutpower): New functions.
13167
13168 2005-10-27 Romain Francoise <romain@orebokech.com>
13169
13170 * replace.el (occur-engine): Include colon in mouse-face highlight.
13171
13172 * dired-x.el: Change Maintainer field.
13173
13174 2005-10-26 Chong Yidong <cyd@stupidchicken.com>
13175
13176 * longlines.el (longlines-mode): Bind after-change-functions to
13177 nil during initial decoding and final encoding.
13178
13179 2005-10-26 Dan Nicolaescu <dann@ics.uci.edu>
13180
13181 * term.el (term-emulate-terminal, term-handle-colors-array)
13182 (term-handle-ansi-escape): Specify the terminfo capabilities
13183 implemented.
13184
13185 2005-10-26 Richard M. Stallman <rms@gnu.org>
13186
13187 * info.el (Info-fontify-node): Fix detection of sentence-break
13188 before *Note.
13189
13190 2005-10-26 Romain Francoise <romain@orebokech.com>
13191
13192 * smerge-mode.el: Add `tools' to file keywords.
13193
13194 2005-10-26 Nick Roberts <nickrob@snap.net.nz>
13195
13196 * progmodes/gud.el (gud-menu-map): Only display gud-until icon
13197 when the fringe is not available.
13198
13199 * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
13200 (def-gdb-auto-update-trigger): Simplify construction.
13201 (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
13202 def-gdb-auto-updated-buffer as gdb-info-locals-handler is
13203 defined explicitly.
13204 (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
13205 def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
13206 defined explicitly.
13207 (gdb-info-locals-custom): Remove as it's a no-op.
13208
13209 2005-10-25 Chong Yidong <cyd@stupidchicken.com>
13210
13211 * longlines.el (longlines-mode): Remove narrowing before
13212 performing the initial decoding or final encoding.
13213
13214 2005-10-25 Romain Francoise <romain@orebokech.com>
13215
13216 * emacs-lisp/find-func.el (find-library-name): Also strip
13217 extension if library name ends in .el, to take advantage of
13218 `find-library-suffixes'.
13219
13220 2005-10-25 Richard M. Stallman <rms@gnu.org>
13221
13222 * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
13223
13224 2005-10-25 Juri Linkov <juri@jurta.org>
13225
13226 * textmodes/texinfo.el (texinfo-mode): Change charset of one
13227 quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
13228
13229 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13230
13231 * play/blackbox.el (blackbox-mode-map): Move init into declaration.
13232 (blackbox-redefine-key): Add argument `map'.
13233
13234 * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
13235 regions when moving the jit-lock-context-unfontify-pos boundary.
13236
13237 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
13238
13239 * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
13240
13241 2005-10-25 Masatake YAMATO <jet@gyve.org>
13242
13243 * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
13244
13245 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
13246
13247 * play/blackbox.el (blackbox-redefine-key): New function.
13248 (blackbox-mode-map): Use it to remap existing bindings for cursor
13249 motion instead of binding literal keys.
13250
13251 2005-10-25 Glenn Morris <rgm@gnu.org>
13252
13253 * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
13254 diary does not end in a newline. Do not assume a blank line at
13255 the start of the diary file.
13256
13257 2005-10-25 Kenichi Handa <handa@m17n.org>
13258
13259 * international/quail.el (quail-translate-key): If the input
13260 method is deterministic and failed to handle the last key, restart
13261 the key handling loop from an appropriate key.
13262
13263 2005-10-25 Michael Albinus <michael.albinus@gmx.de>
13264
13265 * vc.el (vc-dired-mode): Extend comment for binding of
13266 `directory-listing-before-filename-regexp'.
13267
13268 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13269
13270 * textmodes/texinfo.el (texinfo-mode):
13271 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
13272 not to unnecessarily expose emacs-mule's internal char codes.
13273
13274 2005-10-25 Nick Roberts <nickrob@snap.net.nz>
13275
13276 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
13277 Display hand pointer and help-echo on disabled icon too.
13278 (gdb-mouse-until): New function.
13279 (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
13280
13281 2005-10-24 Chong Yidong <cyd@stupidchicken.com>
13282
13283 * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
13284 with 2005-10-23 change to doctor.el.
13285
13286 * finder.el (finder-mode-map): Add follow-link binding.
13287
13288 2005-10-25 Kim F. Storm <storm@cua.dk>
13289
13290 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
13291 to gdb-mouse-toggle-breakpoint-fringe.
13292 (gdb-mouse-toggle-breakpoint-margin): Rename from
13293 gdb-mouse-toggle-breakpoint. Fix doc.
13294 (gdb-mouse-toggle-breakpoint-fringe): New defun.
13295 (gdb-put-string): Add optional SPROPS arg. Add props to string.
13296 (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
13297 string properties also for fringe breakpoint bitmaps.
13298
13299 2005-10-24 Carsten Dominik <dominik@science.uva.nl>
13300
13301 * textmodes/org.el (org-start-icalendar-file): Fix format form.
13302
13303 2005-10-25 Masatake YAMATO <jet@gyve.org>
13304
13305 * simple.el (completion-common-substring):
13306 Use `completion-common-substring' prior to `completion-base-size'.
13307
13308 2005-10-24 Hrvoje Niksic <hniksic@xemacs.org>
13309
13310 * savehist.el: Require CL while compiling.
13311 (savehist-history-variables): Remove.
13312 (savehist-save-minibuffer-history, savehist-additional-variables)
13313 (savehist-minibuffer-history-variables): New vars.
13314 (savehist-save): Use them.
13315 (savehist-uninstall, savehist-minibuffer-hook): New funs.
13316 (savehist-install): New fun, extracted from savehist-load.
13317 (savehist-load): Use them.
13318
13319 2005-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
13320
13321 * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
13322 a dummy doc-string-elt property.
13323 (defalias, defvaralias, define-category): Add a docstring property.
13324
13325 * image.el (defimage):
13326 * widget.el (define-widget):
13327 * custom.el (defface, defcustom): Add `doc-string' declaration.
13328
13329 * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
13330 (defadvice): Add `doc-string' declaration.
13331
13332 * emacs-lisp/byte-run.el (macro-declaration-function):
13333 Handle `doc-string' declarations.
13334 (define-obsolete-function-alias, define-obsolete-variable-alias):
13335 Add `doc-string' declaration.
13336
13337 2005-10-24 Kenichi Handa <handa@m17n.org>
13338
13339 * international/utf-7.el (utf-7): Add autoload cookie.
13340
13341 * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
13342
13343 2005-10-24 Eli Zaretskii <eliz@gnu.org>
13344
13345 * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
13346 list of directories passed to batch-update-autoloads. Add "." to
13347 the list of the echoed directories.
13348
13349 * pgg-def.el:
13350 * pgg-gpg.el:
13351 * pgg-parse.el:
13352 * pgg-pgp.el:
13353 * pgg-pgp5.el:
13354 * pgg.el: Moved here from the gnus subdirectory.
13355
13356 2005-10-24 Nick Roberts <nickrob@snap.net.nz>
13357
13358 * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
13359 in case comint-prompt-read-only is set to t.
13360
13361 * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
13362 in case comint-prompt-read-only is set to t.
13363
13364 2005-10-24 Ulf Jasper <ulf.jasper@web.de>
13365
13366 * calendar/icalendar.el (icalendar-version): Increase to 0.13.
13367 Now a string.
13368 (icalendar-import-format): Handle CLASS, STATUS, URL.
13369 Rename `subject' to `summary'.
13370 (icalendar-import-format-summary): Rename from
13371 `icalendar-import-format-subject'.
13372 (icalendar-import-format-url, icalendar-import-format-status)
13373 (icalendar-import-format-class): New variables.
13374 (icalendar--rris): Take variable argument list.
13375 (icalendar--datestring-to-isodate): Remove unnecessary
13376 calendar-style check when converting dates with explicit month names.
13377 (icalendar-export-region): Change return type of conversion
13378 subroutines. Bury current buffer unless error occurred.
13379 (icalendar--convert-to-ical)
13380 (icalendar--parse-summary-and-rest): New functions.
13381 (icalendar--convert-ordinary-to-ical)
13382 (icalendar--convert-weekly-to-ical)
13383 (icalendar--convert-yearly-to-ical)
13384 (icalendar--convert-block-to-ical)
13385 (icalendar--convert-cyclic-to-ical)
13386 (icalendar--convert-anniversary-to-ical): Change return type.
13387 Strip trailing blanks from subject.
13388 (icalendar--convert-sexp-to-ical): Change return type.
13389 Strip trailing blanks from subject. Handle simple sexp
13390 entries as generated by icalendar.el.
13391 (icalendar--convert-float-to-ical)
13392 (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
13393 (icalendar-import-file): Doc fix.
13394 (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
13395 Correct call to icalendar--rris.
13396 (icalendar--convert-ical-to-diary): Doc fix. Rename `subject' to
13397 `summary'.
13398 (icalendar--add-diary-entry): Rename `subject' to `summary'.
13399
13400 2005-10-24 Romain Francoise <romain@orebokech.com>
13401
13402 * server.el (server-sentinel): Set query-on-exit flag to nil on
13403 new client processes (it isn't inherited from the server process).
13404
13405 * replace.el (occur-engine): Rearrange text properties.
13406
13407 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
13408
13409 * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
13410 case-fold-search is nil.
13411 (debug-help-follow): Use help-xref-interned directly.
13412
13413 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
13414
13415 * thumbs.el (thumbs-image-type): Add .pbm.
13416
13417 2005-10-23 Richard M. Stallman <rms@gnu.org>
13418
13419 * faces.el (inhibit-face-set-after-frame-default): New variable.
13420 (set-face-attribute): Bind it.
13421 (face-set-after-frame-default): Test it.
13422
13423 * help-fns.el (describe-simplify-lib-file-name): New function.
13424 (describe-function-1, describe-variable): Use it.
13425
13426 * faces.el (describe-face): Use describe-simplify-lib-file-name.
13427
13428 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
13429 Eliminate nil as possible value.
13430 (tooltip-hide-delay): Reduce internal-border-width.
13431
13432 * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
13433 (menu-bar-file-menu) <new-file>: Likewise.
13434
13435 * simple.el (line-move-finish): Ignore fields computing LINE-END.
13436
13437 * international/mule.el (load-with-code-conversion):
13438 Pass full file name to `eval-buffer' unless preloading.
13439
13440 * textmodes/flyspell.el (flyspell-large-region):
13441 Call ispell-check-version.
13442
13443 * textmodes/ispell.el (ispell-local-dictionary-overridden):
13444 Fix the make-variable-buffer-local call that was supposed
13445 to be for this variable.
13446 (ispell-aspell-supports-utf8): Doc fix.
13447 (ispell-find-aspell-dictionaries): Preserve elements of
13448 ispell-dictionary-alist for dictionaries that aspell doesn't report.
13449 (ispell-aspell-find-dictionary): Return nil on error.
13450
13451 * play/doctor.el (doctor-doc): Don't say "psychiatrist".
13452 (doctor-symptoms): Likewise.
13453
13454 * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
13455
13456 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
13457
13458 * cus-edit.el (custom-button, custom-button-pressed): New vars.
13459 (custom-raised-buttons): Add :set spec.
13460 (custom-button-unraised, custom-button-pressed-unraised):
13461 New faces, so that custom-raised-buttons actually does something.
13462 (custom-mode): Use custom-button and custom-button-pressed.
13463
13464 * wid-edit.el (widget-specify-button): Don't ignore
13465 widget-mouse-face on graphic terminals.
13466 (widget-move-and-invoke): Cleanup.
13467
13468 2005-10-23 Thien-Thi Nguyen <ttn@gnu.org>
13469
13470 * whitespace.el (whitespace-cleanup): Doc fix.
13471
13472 2005-10-23 Romain Francoise <romain@orebokech.com>
13473
13474 * emulation/viper.el (viper-set-hooks): Quote forms passed to
13475 `eval-after-load' to avoid evaluating their result.
13476
13477 2005-10-23 Michael Albinus <michael.albinus@gmx.de>
13478
13479 * files.el (directory-listing-before-filename-regexp):
13480 New defvar. Replaces `dired-move-to-filename-regexp' from dired.el.
13481
13482 * dired.el (dired-move-to-filename-regexp): Remove.
13483 All occurences replaced by `directory-listing-before-filename-regexp'.
13484
13485 * dired-x.el, locate.el, vc.el:
13486 Replace `dired-move-to-filename-regexp' by
13487 `directory-listing-before-filename-regexp'. In vc.el it is
13488 overwritten locally; maybe this can be handled in files.el too.
13489
13490 * net/ange-ftp.el (ange-ftp-date-regexp): Remove. All occurences
13491 replaced by `directory-listing-before-filename-regexp'.
13492
13493 2005-10-23 Andreas Schwab <schwab@suse.de>
13494
13495 * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
13496 and eval-next-after-load.
13497
13498 2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
13499
13500 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
13501 exist, create it.
13502
13503 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
13504
13505 * allout.el: Remove autoloads for mailcrypt and crypt++.
13506 Require pgg, pgg-gpg during compilation.
13507 (allout-version): Increment version number to 2.1, and use a literal
13508 rather than RCS Id.
13509 (allout-default-encryption-scheme): Remove.
13510 (allout-passphrase-verifier-handling)
13511 (allout-passphrase-verifier-string)
13512 (allout-file-passphrase-verifier-string)
13513 (allout-passphrase-hint-string): Rename -key- to -passphrase-.
13514 (allout-passphrase-hint-handling): Rename and simplify.
13515 (allout-init): Use `find-file-hook' if available, otherwise
13516 `find-file-hooks'.
13517 (allout-mode): Use `write-file-functions' if available, otherwise
13518 `local-write-file-hooks' and, instead of making auto-save-hook
13519 buffer local, make the write-file-hook activity contingent to
13520 allout-mode.
13521 (allout-mode): Use key-binding substitution in the docstring.
13522 (allout-kill-line): Spell-out kill ring data structure mutation
13523 instead of using byte-compiler-complaint-provoking `pop'.
13524 (allout-insert-listified): Use `insert' rather than `insert-string'
13525 (allout-toggle-current-subtree-encryption): Update docstring, adjust
13526 to new gpp-based encryption, use new `allout-encrypted-topic-p'.
13527 (allout-encrypt-string): Totally revamped vis new underlying
13528 encryption facilities.
13529 (allout-mc-activate-passwd): Remove.
13530 (allout-obtain-passphrase): New, more or less replaces
13531 allout-mc-activate-passwd.
13532 (allout-encrypted-key-info): More or less replaces
13533 allout-encrypted-text-type.
13534 (outlineify-sticky, outlinify-sticky): Add autoload cookie.
13535 (my-mark-marker): Use `(featurep 'xemacs)'.
13536
13537 2005-10-23 Lars Hansen <larsh@soem.dk>
13538
13539 * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
13540 (byte-compile-file-form-defmumble, byte-compile-defun)
13541 (byte-compile-defmacro): Use it.
13542 (byte-compile-form): Don't call byte-compile-set-symbol-position
13543 when a byte-compile handler is called.
13544
13545 2005-10-22 Romain Francoise <romain@orebokech.com>
13546
13547 * savehist.el (savehist-history-variables): Add `grep-find-history'.
13548
13549 * subr.el (eval-after-load): Convert library name to an absolute
13550 file name using locate-library, since load-history no longer has
13551 library names in it.
13552
13553 2005-10-22 Richard M. Stallman <rms@gnu.org>
13554
13555 * files.el (make-temp-file): Move from subr.el.
13556 * subr.el (make-temp-file): Move to files.el.
13557
13558 * window.el (get-buffer-window-list): Move from subr.el.
13559 * subr.el (get-buffer-window-list): Move to window.el.
13560
13561 * image.el (image-load-path): Use eval-at-startup to initialize.
13562
13563 * subr.el (eval-at-startup): New macro.
13564
13565 * subr.el: Much rearrangement of functions and division
13566 into pages. No code changes.
13567
13568 2005-10-22 Kenichi Handa <handa@m17n.org>
13569
13570 * tar-mode.el (tar-extract): Be sure to call
13571 find-operation-coding-system if set-auto-coding doesn't find a
13572 coding system.
13573
13574 2005-10-22 Kim F. Storm <storm@cua.dk>
13575
13576 * image.el (image-type-header-regexps): Rename from image-type-regexps.
13577 Change users.
13578 (image-type-file-name-regexps): New defconst.
13579 (image-type-from-data): Simplify loop.
13580 (image-type-from-buffer): New defun.
13581 (image-type-from-file-header): Use it instead of image-type-from-data.
13582 Use image-search-load-path instead of only looking in data-directory.
13583 (image-type-from-file-name): New defun.
13584 (image-search-load-path): Change `pathname' to `filename'.
13585 Make PATH arg optional, default to image-load-path.
13586
13587 2005-10-21 Richard M. Stallman <rms@gnu.org>
13588
13589 * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
13590
13591 * textmodes/paragraphs.el (sentence-end-base): New variable.
13592 (sentence-end): Use sentence-end-base.
13593
13594 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
13595
13596 * font-lock.el (font-lock-default-fontify-region): Check the multiline
13597 property independently from the font-lock-multiline variable.
13598
13599 2005-10-21 Richard M. Stallman <rms@gnu.org>
13600
13601 * emacs-lisp/find-func.el (find-library-name): Doc fix.
13602
13603 * startup.el (command-line): Convert library names
13604 in `load-history' to absolute file names.
13605
13606 * subr.el (symbol-file): Doc fix.
13607
13608 * loadhist.el (file-loadhist-lookup): Call locate-library
13609 instead of find-library-name. Don't try converting
13610 abs file names to library names, since load-history no longer
13611 has library names in it.
13612 (file-dependents, file-provides, file-requires): Doc fixes.
13613
13614 2005-10-21 Juri Linkov <juri@jurta.org>
13615
13616 * progmodes/etags.el (tags-table-mode): New function.
13617 (tags-verify-table): Replace initialize-new-tags-table with
13618 tags-table-mode.
13619
13620 * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
13621 default value.
13622 (desktop-modes-not-to-save): Add tags-table-mode to the
13623 default value.
13624
13625 * info.el (Info-index-next): Add total number of index
13626 alternatives to the message.
13627
13628 * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
13629 backward only space (instead of space and period) before looking
13630 at sentence end.
13631
13632 * simple.el (set-variable): Use user-variable-p instead of symbolp.
13633 Add the old variable value as 4th default-value arg of read-string.
13634
13635 2005-10-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13636
13637 * cus-face.el (custom-declare-face): Make face from X resources
13638 also on Mac.
13639
13640 * disp-table.el (standard-display-g1, standard-display-graphic):
13641 Refuse to use string glyphs also on Mac.
13642 (standard-display-european): Don't set terminal coding system also
13643 on Mac.
13644
13645 * frame.el (display-screens): Use x-display-screens also on Mac.
13646
13647 2005-10-21 Romain Francoise <romain@orebokech.com>
13648
13649 * net/rcirc.el: Now part of GNU Emacs. Update FSF's address.
13650
13651 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
13652
13653 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
13654 and $? into sexps.
13655
13656 * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
13657 warning face on open-paren-in-column-0.
13658
13659 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
13660 boundary case. Fix typo.
13661 Suggested by Martin Rudalics <rudalics@gmx.at>.
13662
13663 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
13664
13665 * textmodes/org.el (org-combined-agenda-icalendar-file)
13666 (org-icalendar-include-todo, org-icalendar-combined-name): New options.
13667 (org-export-icalendar-this-file)
13668 (org-export-icalendar-all-agenda-files)
13669 (org-export-icalendar-combine-agenda-files): New commands.
13670 (org-export-icalendar, org-print-icalendar-entries)
13671 (org-start-icalendar-file, org-finish-icalendar-file)
13672 (org-ical-ts-to-string): New functions.
13673 (org-read-date, org-goto-calendar)
13674 (org-agenda-goto-calendar): Inhibit displaying diary entries by
13675 call to `calendar'.
13676 (orgtbl-setup): Remove the :keys arguments from the menu description.
13677 (org-after-save-iCalendar-file-hook): New variable.
13678
13679 2005-10-21 Kenichi Handa <handa@m17n.org>
13680
13681 * language/vietnamese.el (tcvn-5712): Make it an alias of
13682 vietnamese-tcvn coding-system.
13683
13684 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
13685
13686 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
13687 group id is given.
13688
13689 2005-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
13690
13691 * progmodes/sh-script.el (sh-escaped-line-re): New var.
13692 (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
13693 (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
13694 whose line is either continued or ends with a comment.
13695
13696 2005-10-20 Romain Francoise <romain@orebokech.com>
13697
13698 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
13699
13700 * replace.el (occur-engine): Add follow-link property.
13701
13702 * font-core.el (font-lock-mode): Doc fix.
13703
13704 2005-10-20 Richard M. Stallman <rms@gnu.org>
13705
13706 * net/rcirc.el: New file.
13707
13708 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
13709
13710 * term.el (term-term-name): Initialize to "eterm-color".
13711
13712 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
13713
13714 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
13715 for encryption functionality.
13716 Move allout customization subgroup from `editing' to `outlines' group.
13717 Fix commentary keywords to legitimate ones.
13718 Update author info (using my current email address, obscurified).
13719 (allout-encrypt-string, allout-encryption-produce-work-buffer)
13720 (allout-encrypted-topic-p, allout-encrypted-text-type)
13721 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
13722 (allout-situate-encryption-key-verifier)
13723 (allout-get-encryption-key-verifier, allout-verify-key)
13724 (allout-next-topic-pending-encryption)
13725 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
13726 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
13727 (outline-key-verifier-handling, outline-key-hint-handling)
13728 (outline-encrypt-unencrypted-on-saves): New defcustoms.
13729 (allout-file-key-verifier-string, allout-encryption-scheme)
13730 (allout-key-verifier-string, allout-key-hint-string)
13731 (allout-after-save-decrypt): New variables.
13732 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
13733 (allout-after-saves-handler): New hook functions.
13734 (allout-post-command-business): Do allout-after-save-decrypt.
13735 (allout-enable-file-variable-adjustment): Custom var to enable
13736 mechanism for adding and adjusting settings of Emacs file variables.
13737 (allout-adjust-file-variable, allout-file-vars-section-data):
13738 New functions, implement the mechanism.
13739 (outlineify-sticky): Use the file vars mechanism.
13740 (allout-inhibit-protection, allout-during-write-cue)
13741 (allout-override-protect, allout-before-change-protect): Remove.
13742 (allout-flag-region, allout-open-topic): Adjust read-only text.
13743 (allout-open-line-not-read-only): Add to facilitate read-only
13744 text based protection.
13745 (allout-kill-line): Revise to adjust read-only text, clue the
13746 user about the inhibition.
13747 (allout-unprotected): Use unwind-protect.
13748 (allout-shift-in, allout-shift-out): Disallow manually shifting a
13749 topic deeper than the offspring depth of the previous topic -
13750 avoiding confusing "containment discontinuities".
13751 (allout-reindent-bodies): Fix retention of body relative hanging
13752 indent during promotion of collapsed bodies.
13753 (allout-open-topic): Make it easy to open new topic with same
13754 bullet as current topic - topic creation functions provided with
13755 any universal argument provokes now prompt for bullet, defaulting
13756 to the bullet of the previous topic.
13757 (allout-plain-bullets-string, allout-distinctive-bullets-string):
13758 Plain bullet alternates `.' period and `,' comma only. All other
13759 bullets are relegated to special status (but customizable).
13760 (allout-end-of-entry): Rename from allout-end-of-current-entry
13761 since it actually operates w.r.t. most immediately containing
13762 entry, visible or not.
13763 (allout-hide-current-entry, allout-show-current-entry): Use the
13764 revised version.
13765 (allout-old-expose-topic): Solidify deprecation.
13766 (allout-end-of-subtree): Add so we can span concealed as well
13767 as visible topics.
13768 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
13769 (allout-end-of-current-heading): Tweak to just respect the first line.
13770 (allout-get-body-text): Add.
13771 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
13772 when invoked interactively.
13773 (allout-up-current-level): Use `interactive-p'.
13774 (allout-mode, allout-init): Miscellaneous docstring and
13775 operational refinements, as well as hookups of new encryption stuff.
13776 (allout-beginning-of-current-entry): Now works as advertised.
13777 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
13778 (allout-isearch-rectification): Refine condition for isearching.
13779 (allout-isearch-abort, allout-enwrap-isearch)
13780 (allout-flag-region, my-region-active-p): Relocate some macros.
13781 (allout-title): Fallback title is (buffer-name), not
13782 non-existing (current-buffer-name).
13783 (subst-char-in-string): Define if absent (for some XEmacs versions).
13784
13785 2005-10-20 Jari Aalto <jari.aalto@cante.net>
13786
13787 * mail/sendmail.el (mail-setup-hook, mail-aliases)
13788 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
13789 (mail-citation-prefix-regexp, mail-signature-file)
13790 (mail-default-headers, mail-bury-selects-summary)
13791 (mail-send-nonascii): Add autoload cookies.
13792
13793 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
13794
13795 * frame.el (blink-cursor-mode): Add `mac' to the list of
13796 window-system's that support blinking cursor.
13797
13798 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
13799
13800 * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
13801
13802 2005-10-20 Eli Zaretskii <eliz@gnu.org>
13803
13804 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
13805 Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
13806 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
13807
13808 2005-10-20 Kim F. Storm <storm@cua.dk>
13809
13810 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
13811 (ido-set-current-directory): Don't add / after final @.
13812 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
13813 Explicitly handle ange-ftp completion oddities.
13814 (ido-make-file-list): Don't rotate list at tramp root to avoid
13815 triggering tramp file handler for expand-file-name via get-file-buffer.
13816
13817 2005-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
13818
13819 * savehist.el (savehist-coding-system): Revert to checking XEmacs.
13820
13821 2005-10-19 Jay Belanger <belanger@truman.edu>
13822
13823 * calc/calc-units.el (math-standard-units): Add units, adjust
13824 symbols and update values.
13825 (math-unit-prefixes): Add more prefixes.
13826
13827 2005-10-19 Romain Francoise <romain@orebokech.com>
13828
13829 * bookmark.el (bookmark-menu-heading): New face.
13830 (bookmark-bmenu-list): Use it.
13831 Don't fiddle with `baud-rate' at top-level.
13832
13833 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
13834
13835 * image.el (create-image, find-image): Mention max-image-size in
13836 docstring.
13837
13838 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13839
13840 * savehist.el (savehist-load): Revert to checking XEmacs.
13841
13842 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
13843 Various docstring and line-width fixups.
13844 (conf-mode): Use cond.
13845 Set font-lock-defaults. Don't set comment-use-syntax.
13846
13847 2005-10-18 David Ponce <david@dponce.com>
13848
13849 * tree-widget.el (tree-widget-button-click): New function.
13850 (tree-widget-button-keymap): Use it.
13851
13852 2005-10-18 Romain Francoise <romain@orebokech.com>
13853
13854 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
13855 (bookmark-bmenu-hide-filenames): Add follow-link property.
13856 Improve help-echo text.
13857
13858 * ffap.el (find-file-at-point): Doc fix.
13859
13860 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13861
13862 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
13863
13864 2005-10-18 Masatake YAMATO <jet@gyve.org>
13865
13866 Install to the CVS repository what I forgot to install in my
13867 2005-10-16 changes.
13868
13869 * progmodes/python.el (python-complete-symbol): Pass the common
13870 prefix substring of completion to `display-completion-list'.
13871
13872 * textmodes/org.el (org-complete): Ditto.
13873
13874 2005-10-18 Masatake YAMATO <jet@gyve.org>
13875
13876 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
13877
13878 * woman.el (WoMan-xref-man-page): New button type derived
13879 from `Man-abstract-xref-man-page'.
13880 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
13881
13882 * man.el (Man-abstract-xref-man-page): New button type.
13883 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
13884 (Man-highlight-references): Add new optional argument `xref-man-type'.
13885
13886 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
13887
13888 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
13889
13890 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
13891
13892 * cus-edit.el (Custom-move-and-invoke): Delete.
13893 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
13894
13895 * wid-edit.el (widget-move-and-invoke): New function, from
13896 Custom-move-and-invoke.
13897
13898 2005-10-17 Bill Wohler <wohler@newt.com>
13899
13900 Move all remaining images from lisp/toolbar to etc/images, move
13901 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
13902 the low resolution images in their own directory (low-color).
13903
13904 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*
13905 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*
13906 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*
13907 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*
13908 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*
13909 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*
13910 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
13911
13912 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
13913 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
13914 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
13915 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
13916 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
13917 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
13918 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
13919 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
13920 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
13921 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
13922 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
13923 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
13924 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
13925 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
13926 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
13927
13928 To conform with convention, replace the underscore (_) in the
13929 following image names with dash (-) or (/) as appropriate.
13930
13931 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
13932 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
13933 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
13934 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
13935 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
13936 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
13937 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
13938 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
13939 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
13940 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
13941 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
13942 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
13943 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
13944 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
13945 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
13946
13947 * info.el (info-tool-bar-map): Replace underscores in image names
13948 with dashes.
13949
13950 * makefile.w32-in (WINS): Remove toolbar.
13951
13952 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
13953
13954 * tool-bar.el: Move to lisp from toolbar. Now that
13955 toolbar is empty, it should be deleted when folks run "cvs up -P".
13956
13957 2005-10-18 Jay Belanger <belanger@truman.edu>
13958
13959 * calc/calc-store.el (calc-store-into): Get the proper variable name
13960 to display in message.
13961
13962 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
13963
13964 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
13965 expressions display in speedbar for all buffers when debugging.
13966 (gdb-speedbar-expand-node): Ensure node contraction is always updated.
13967
13968 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
13969 (speedbar-insert-button, speedbar-make-button):
13970 Use add-text-properties.
13971 (speedbar-update-localized-contents)
13972 (speedbar-update-directory-contents)
13973 (speedbar-update-special-contents): Use dolist.
13974 (speedbar-buffer-easymenu-definition): Add a menu separator.
13975
13976 2005-10-17 Jason Rumney <jasonr@gnu.org>
13977
13978 * makefile.w32-in: Use $(lisp) consistently.
13979 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
13980 for shell specific generation of mh-autoloads.
13981
13982 2005-10-17 Richard M. Stallman <rms@gnu.org>
13983
13984 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
13985
13986 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13987
13988 * jit-lock.el (jit-lock-fontify-now):
13989 Move jit-lock-context-unfontify-pos to avoid wasted work.
13990
13991 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
13992
13993 * net/tramp.el (tramp-completion-mode): New defvar. Used in
13994 `tramp-completion-mode' for checking if we are in completion mode.
13995 (tramp-completion-handle-file-name-all-completions): Reorder code
13996 in order to complete for file names only in case there are no
13997 method/user/host completions. This is necessary for cooperation
13998 with ido. Reported by Kim F. Storm <storm@cua.dk>.
13999
14000 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
14001
14002 * longlines.el (longlines-search-forward)
14003 (longlines-search-backward): Match any number of spaces.
14004
14005 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
14006
14007 * diff-mode.el (diff-mode): Doc fix.
14008
14009 2005-10-16 David Reitter <david.reitter@gmail.com>
14010
14011 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
14012 as default on darwin and windows systems.
14013
14014 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
14015
14016 * arc-mode.el (archive-zip-extract): Doc fix.
14017
14018 2005-10-16 Romain Francoise <romain@orebokech.com>
14019
14020 * mouse.el (mouse-1-click-follows-link): Doc fix.
14021
14022 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
14023
14024 * savehist.el: Don't require CL at runtime.
14025 (savehist-xemacs): Remove.
14026 (savehist-coding-system): Use utf-8 if present, regardless of religion.
14027 (savehist-no-conversion): Use (featurep 'xemacs).
14028 (savehist-load): Check existence of start-itimer rather than XEmacs.
14029 Use an idle timer.
14030 (savehist-process-for-saving): Replace use of CL funs `subseq' and
14031 `delete-if-not'.
14032
14033 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
14034
14035 * savehist.el: Newer version.
14036 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
14037 (savehist-last-checksum, savehist-no-conversion): New vars.
14038 (savehist-autosave, savehist-process-for-saving, savehist-printable):
14039 New functions.
14040 (savehist-load, savehist-save): Use them.
14041 (savehist-delimit): Remove.
14042
14043 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
14044
14045 * progmodes/compile.el (compilation-goto-locus): Display the
14046 compilation buffer first and the source buffer second, in case they're
14047 in overlapping frames. Don't raise the compilation frame if it was the
14048 selected window upon entry. Pass the `other-window' arg to
14049 pop-to-buffer.
14050
14051 * info.el (Info-fontify-node): Use dolist.
14052 Change add-text-properties to put-text-property.
14053
14054 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14055
14056 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
14057 bound of search.
14058
14059 2005-10-16 Masatake YAMATO <jet@gyve.org>
14060
14061 * dabbrev.el (dabbrev-completion): Pass the common
14062 prefix substring of completion to `display-completion-list'.
14063
14064 * filecache.el (file-cache-minibuffer-complete)
14065 (file-cache-complete): Ditto.
14066
14067 * tempo.el (tempo-display-completions): Ditto.
14068
14069 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
14070
14071 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
14072
14073 * eshell/em-hist.el (eshell-list-history): Ditto.
14074
14075 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
14076
14077 * mail/mailalias.el (mail-complete): Ditto.
14078
14079 * progmodes/etags.el (complete-tag): Ditto.
14080
14081 * progmodes/make-mode.el (makefile-complete): Ditto.
14082
14083 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
14084
14085 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
14086
14087 * progmodes/pascal.el (pascal-complete-word)
14088 (pascal-show-completions): Ditto.
14089
14090 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
14091
14092 * simple.el (completion-common-substring): New variable.
14093 (completion-setup-function): Use `completion-common-substring'
14094 to put faces.
14095
14096 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14097
14098 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
14099 (x-get-selection, mac-select-convert-to-string): Convert from/to
14100 UTF-16 clipboard data as in native byte order, no BOM.
14101
14102 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
14103
14104 * progmodes/gud.el (gud-tool-bar-map): Rename the images
14105 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
14106 (gud-sentinel): Use speedbar-frame to check for speedbar.
14107
14108 2005-10-15 Richard M. Stallman <rms@gnu.org>
14109
14110 * savehist.el: New file.
14111
14112 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
14113
14114 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
14115 Fix bug in \bf fontification.
14116
14117 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
14118
14119 * pcvs.el (cvs-edit-log-files): New var.
14120 (cvs-mode-edit-log): New arg `file'.
14121 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
14122 Instead force the use of the original file and nothing else.
14123 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
14124 the cvs-minor-wrap-function is set.
14125 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
14126
14127 2005-10-14 Bill Wohler <wohler@newt.com>
14128
14129 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
14130 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
14131 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
14132 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
14133 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
14134 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
14135 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
14136 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
14137 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
14138 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
14139 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
14140 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
14141 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
14142 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
14143 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
14144
14145 * progmodes/gud.el (gud-tool-bar-map): Rename the images
14146 appropriately (for example, gud-break to gud/break).
14147
14148 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
14149
14150 * longlines.el (longlinges-search-function)
14151 (longlines-search-forward, longlines-search-backward): New functions.
14152 (longlines-mode): Set isearch-search-fun-function to
14153 longlinges-search-function.
14154
14155 * mouse.el (mouse-drag-region-1): Handle the case where a
14156 double-click event is bound to an arbitrary function.
14157
14158 2005-10-14 David Ponce <david@dponce.com>
14159
14160 * recentf.el (recentf-track-opened-file)
14161 (recentf-track-closed-file, recentf-update-menu)
14162 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
14163 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
14164 mouse-1-click-follows-link.
14165
14166 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14167
14168 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
14169 Gnome file-manager.png. Suggested by
14170 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
14171
14172 * toolbar/README: Add diropen.xpm.
14173
14174 2005-10-13 Bill Wohler <wohler@newt.com>
14175
14176 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
14177 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
14178
14179 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
14180
14181 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
14182 Don't waste the byte-compiler's time on constant data.
14183
14184 2005-10-13 Kenichi Handa <handa@m17n.org>
14185
14186 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
14187 byte with `escape-glyph' face.
14188
14189 * international/fontset.el (ccl-encode-unicode-font):
14190 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
14191 Handle the case that ucs-mule-to-mule-unicode translates a character to
14192 ASCII (usually for IPA characters).
14193
14194 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14195
14196 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
14197 Don't hide the underline of titles if font-lock-mode is disabled.
14198
14199 2005-10-12 Bill Wohler <wohler@newt.com>
14200
14201 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
14202 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
14203 files in MH-E-SRC have been updated.
14204 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
14205
14206 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14207
14208 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
14209 (mixal-mode-syntax-table): Add \n as end-comment.
14210 (mixal-operation-codes-alist): Immediately initialize to full value.
14211 (mixal-add-operation-code): Remove.
14212 (mixal-describe-operation-code): Make the arg non-optional.
14213 Use the interactive spec instead.
14214 Use mixal-operation-codes-alist rather than mixal-operation-codes.
14215 (mixal-font-lock-keywords): Don't highlight comments here any more.
14216 (mixal-font-lock-syntactic-keywords): New var.
14217 (mixal-mode): Use it. Fix comment-start-skip.
14218
14219 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14220
14221 * startup.el (command-line-x-option-alist): -nb => -nbi
14222
14223 2005-10-12 Kim F. Storm <storm@cua.dk>
14224
14225 * startup.el (fancy-splash-default-action): Discard mouse click in
14226 the splash screen window, as it has no sensible meaning in the
14227 next window to be selected. Fixes error reported by Jan D.
14228
14229 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
14230
14231 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
14232
14233 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14234
14235 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
14236 Try to fix up minor layout issues like indentation, line break, etc...
14237 (mixal-mode-syntax-table): Don't try to specify comment syntax,
14238 because it doesn't work.
14239 (mixal-operation-codes): Add some more codes.
14240 (mixal-font-lock-keywords): Process comments here.
14241 (mixal-mode): mixasm no longer needs -g option.
14242
14243 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
14244
14245 * progmodes/sh-script.el (sh-tmp-file):
14246 Use mktemp -t. Finish support for es and rc shells.
14247
14248 2005-10-11 Jay Belanger <belanger@truman.edu>
14249
14250 * calc/calcalg2.el (calc-integral): With an argument, compute the
14251 definite integral.
14252
14253 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
14254
14255 * mouse.el (mouse-drag-region-1): Don't try to catch a
14256 double-click when doing follow-link (it's overridden anyway).
14257
14258 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
14259
14260 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
14261 (autoload-print-form-outbuf): Add docstring.
14262
14263 2005-10-11 Juri Linkov <juri@jurta.org>
14264
14265 * info.el (Info-mode-menu): Delete menu item "Edit".
14266 (Info-mode): Delete description of Info-edit from docstring,
14267 and rearrange descriptions of Info commands in the order
14268 they are documented in the Info manual.
14269
14270 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14271
14272 * calendar/appt.el (appt-check): Use diary-selective-display var.
14273
14274 2005-10-10 Richard M. Stallman <rms@gnu.org>
14275
14276 * net/newsticker.el (newsticker-start, newsticker-show-news):
14277 Add autoload cookies.
14278
14279 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
14280
14281 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
14282
14283 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
14284
14285 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
14286
14287 2005-10-10 Jay Belanger <belanger@truman.edu>
14288
14289 * calc/calc-arith.el (math-check-known-scalarp)
14290 (math-check-known-matrixp): Check the values of arguments that are
14291 variables.
14292 (math-check-known-square-matrixp): New function.
14293 (math-known-square-matrixp): Use math-check-known-square-matrixp.
14294 (math-super-types): Add sqmatrix type.
14295
14296 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
14297 mode name `square' to `sqmatrix'.
14298
14299 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
14300 mode name `square' to `sqmatrix'.
14301
14302 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
14303
14304 * progmodes/etags.el (select-tags-table-mode): Don't use
14305 selective-display.
14306 (tags-select-tags-table): Pass `button' to the action function.
14307 (select-tags-table): Place the side-info on button properties rather
14308 than in hidden text. Abbreviate file names.
14309 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
14310 (select-tags-table-select): Add `button' argument.
14311 Get side-info from the button property rather than from hidden text.
14312
14313 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
14314
14315 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
14316 (gud-speedbar-buttons): Preserve point if possible.
14317 (gud-sentinel): Restore previous speedbar display type.
14318
14319 * progmodes/gdb-ui.el (gdba): Improve diagram.
14320 (def-gdb-auto-update-handler, gdb-info-locals-handler)
14321 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
14322 Call get-buffer-window once.
14323
14324 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
14325
14326 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
14327 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
14328 (pascal-indent-command): Remove unused var `ind'.
14329 (pascal-indent-case): Remove unused var `oldpos'.
14330 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
14331 since it's now used as a proper minor mode map.
14332 (pascal-outline): Rename to pascal-outline-mode.
14333 (pascal-outline-mode): Use define-minor-mode.
14334 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
14335 selective-display.
14336
14337 2005-10-10 Andreas Schwab <schwab@suse.de>
14338
14339 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
14340 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
14341
14342 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
14343 outside source directory.
14344
14345 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
14346
14347 * textmodes/org.el (org-mode-map): Explicit definition of `C-c
14348 C-x' as a prefix.
14349 (orgtbl-mode-map): Full keymap instead of sparse, because all
14350 `self-insert-command' keys are redefined in this map.
14351 (org-export-as-html): Specify charset for HTML file, by taking it
14352 from the coding system.
14353
14354 2005-10-10 Kenichi Handa <handa@m17n.org>
14355
14356 * textmodes/flyspell.el (flyspell-check-word-p):
14357 If unread-command-events is non-empty, don't call sit-for.
14358
14359 2005-10-09 Richard M. Stallman <rms@gnu.org>
14360
14361 * font-lock.el (font-lock-syntactic-keywords)
14362 (font-lock-keywords): Doc fixes.
14363
14364 * textmodes/flyspell.el (flyspell-external-point-words):
14365 Simplify logic, and don't try to check for consecutive appearances
14366 of one incorrect word.
14367
14368 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
14369
14370 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
14371 separator.
14372
14373 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
14374 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
14375 (gud-expansion-speedbar-buttons): New function.
14376 (gud-speedbar-buttons): Check for gud-comint-buffer.
14377
14378 2005-10-09 Bill Wohler <wohler@newt.com>
14379
14380 * Makefile.in (updates): Add mh-loaddefs dependency.
14381
14382 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
14383
14384 * speedbar.el (speedbar-file-key-map): Fix typo.
14385
14386 2005-10-09 Daniel Brockman <daniel@brockman.se>
14387
14388 * cus-start.el (line-spacing): Add custom spec.
14389
14390 2005-10-09 Romain Francoise <romain@orebokech.com>
14391
14392 * textmodes/ispell.el (ispell-check-version): Fix last change.
14393
14394 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14395
14396 * term/x-win.el: Remove -i, --icon-type from comment.
14397
14398 * startup.el (command-line-x-option-alist): Remove options -i,
14399 -itype, --icon-type, added -nb, --no-bitmap-icon
14400
14401 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
14402
14403 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
14404 instead of :active.
14405
14406 2005-10-08 Eric Hanchrow <offby1@blarg.net> (tiny change)
14407
14408 * textmodes/ispell.el (ispell-check-version):
14409 Ignore hyphen, and all that follows, in aspell's version text.
14410
14411 2005-10-08 Jay Belanger <belanger@truman.edu>
14412
14413 * calc/calc-arith.el (math-known-square-matrixp): New function.
14414 (math-pow-fancy): Check for matrices before distributing exponent
14415 across products.
14416
14417 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
14418 fullscreen keypad. Suggested by Luc Teirlinck.
14419 (calc-keypad-show-input): Add space for formatting.
14420
14421 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
14422 Add square matrix option.
14423
14424 * calc/calc-poly.el (math-expand-term): Check for matrices instead
14425 of checking calc-matrix-mode when deciding how to expand.
14426
14427 * calc/calc.el (calc-set-mode-line): Add square matrix option.
14428
14429 2005-10-08 Lars Hansen <larsh@soem.dk>
14430
14431 * net/tramp.el (tramp-perl-directory-files-and-attributes):
14432 Add error handling.
14433 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
14434
14435 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
14436
14437 Sync with Tramp 2.0.51.
14438
14439 * net/tramp.el (tramp-handle-set-visited-file-modtime)
14440 (tramp-handle-insert-file-contents, tramp-handle-write-region):
14441 Insert special handling for `last-coding-system-used', again
14442 it still seems to be necessary (unlike stated before).
14443 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
14444 (tramp-password-prompt-regexp): There might be other words before
14445 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
14446 (tramp-chunksize): Improve docstring.
14447 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
14448 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
14449 Christian Joergensen <bugs@razor.dk>.
14450
14451 2005-10-07 Glenn Morris <rgm@gnu.org>
14452
14453 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
14454 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
14455 precision'.
14456
14457 2005-10-07 Romain Francoise <romain@orebokech.com>
14458
14459 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
14460 (ibuffer-do-shell-command-pipe-replace)
14461 (ibuffer-do-shell-command-file, ibuffer-do-eval)
14462 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
14463 (ibuffer-do-revert, ibuffer-do-replace-regexp)
14464 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
14465 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
14466 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
14467 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
14468 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
14469 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
14470 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
14471 Autoload file sans suffix.
14472
14473 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
14474
14475 2005-10-07 David Ponce <david@dponce.com>
14476
14477 * recentf.el (recentf-menu-open-all-flag): New option.
14478 (recentf-digit-shortcut-command-name): New function.
14479 (recentf--shortcuts-keymap): New variable.
14480 (recentf-menu-shortcuts): New variable.
14481 (recentf-make-menu-items): Initialize it. Replace the "More..."
14482 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
14483 (recentf-menu-value-shortcut): New function.
14484 (recentf-make-menu-item): Use it. No more in-lined.
14485 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
14486 (recentf-open-most-recent-file): Rename from
14487 `recentf-open-file-with-key'. Don't depend on key binding.
14488 (recentf-mode-map): New variable.
14489 (recentf-mode): Use it.
14490
14491 2005-10-06 Bill Wohler <wohler@newt.com>
14492
14493 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
14494
14495 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
14496 (MH-E-SRC): New. Used by mh-autoloads.
14497 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
14498 files in MH-E-SRC have been updated.
14499 (compile, recompile, bootstrap): Depend on mh-autoloads.
14500
14501 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
14502
14503 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
14504 gud-break and gud-remove icons when the fringe is not available.
14505
14506 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
14507 Typo.
14508
14509 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
14510
14511 * play/zone.el (zone): Wrap body with save-window-excursion.
14512
14513 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
14514
14515 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
14516 Use the new `list-only' arg to diary-list-entries.
14517
14518 * calendar/diary-lib.el: Use overlays rather than selective-display.
14519 (diary-selective-display): New var.
14520 (diary-header-line-format): Use it.
14521 (diary-list-entries): Add argument `list-only'.
14522 Put the buffer in diary-mode. Don't add \^M at beg and end.
14523 Replace \^M by invisible overlays.
14524 (diary-unhide-everything): Replace \^M by invisible overlays.
14525 (print-diary-entries): Look for overlays rather than \^M.
14526 Add a space to the temp buffer name.
14527 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
14528 Put the buffer in diary-mode.
14529 (list-sexp-diary-entries): Replace \^M by invisible overlays.
14530 (diary-anniversary): Make the year arg optional.
14531 (diary-time-regexp): New const.
14532 (diary-font-lock-keywords): Use it to accept a few more time formats.
14533
14534 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
14535
14536 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
14537
14538 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
14539 Fix bug introduced 2005-07-03: Use (car (last ...))
14540 to faithfully reproduce replaced artist-last.
14541 (artist-set-arrow-points-for-poly): Likewise.
14542 Suggested by Johan Bockg\e,Ae\e(Brd.
14543
14544 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
14545
14546 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
14547 * wid-edit.el (widget):
14548 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
14549 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
14550
14551 2005-10-06 Kenichi Handa <handa@m17n.org>
14552
14553 * international/mule-cmds.el (set-language-environment):
14554 Fix setting up of case-table for unibyte mode.
14555
14556 * simple.el (what-cursor-position): If the character is displayed
14557 by some `display' text property, show that. Don't use
14558 single-key-description for eight-bit characters in multibyte mode.
14559
14560 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
14561
14562 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
14563 (gdb-ann3): Set it.
14564 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
14565 (gdb-info-frames-custom): Use inverse-video for first five
14566 characters of selected frame only.
14567 (gdb-get-frame-number): Select frame even when point is on frame
14568 number.
14569
14570 2005-10-06 Masatake YAMATO <jet@gyve.org>
14571
14572 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
14573 Put `font-lock-function-name-face'.
14574 (gdb-info-frames-custom): Put `font-lock-function-name-face'
14575 and `font-lock-variable-name-face'
14576 (gdb-registers-font-lock-keywords): New font lock keywords definition.
14577 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
14578 (gdb-memory-font-lock-keywords): New font lock keywords definition.
14579 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
14580 (gdb-local-font-lock-keywords): New font lock keywords definition.
14581 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
14582 (gdb-threads-font-lock-keywords): New font lock keywords definition.
14583 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
14584
14585 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
14586
14587 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
14588 (ediff-merge-region-is-non-clash-to-skip): Previously called
14589 ediff-merge-region-is-non-clash.
14590
14591 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
14592 Use insert-buffer-substring.
14593
14594 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
14595 selecting files to patch. Also bug fixes.
14596
14597 * ediff-util.el (ediff-setup): Bug fix.
14598 (ediff-next-difference): Never skip clashes that differ in white
14599 space only.
14600
14601 * ediff-wind.el (ediff-setup-control-frame)
14602 (ediff-destroy-control-frame): Check the menubar feature.
14603
14604 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
14605 (viper-refresh-mode-line): Use make-local-variable to localize
14606 some vars instead of make-variable-buffer-local. Suggested by
14607 Stefan Monnier.
14608
14609 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
14610 (viper-restore-cursor-type, viper-set-insert-cursor-type):
14611 Use make-local-variable instead of make-variable-buffer-local.
14612 Suggested by Stefan Monnier.
14613
14614 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
14615 (viper-comint-mode-hook): Use make-local-variable on
14616 require-final-newline.
14617 (viper-non-hook-settings): Don't use make-variable-buffer-local.
14618
14619 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
14620
14621 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
14622 also the second char of a comment-start sequence.
14623 (scheme-sexp-comment-syntax-table): New var.
14624 (lambda, define): Set their scheme-doc-string-elt property.
14625 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
14626 Use lisp-font-lock-syntactic-face-function now that it properly
14627 handles |...| symbols.
14628 (scheme-mode-variables): Set lisp-doc-string-elt-property,
14629 parse-sexp-lookup-properties and font-lock-extra-managed-props.
14630
14631 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
14632 bit from # to |.
14633 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
14634
14635 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
14636 (lisp-doc-string-elt-property): New var.
14637 (lisp-font-lock-syntactic-face-function): Use it.
14638 Rewrite to recognize docstrings even for forms not at toplevel.
14639
14640 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
14641 annotation on the | part of #| rather than on the # part.
14642 (scheme-font-lock-syntactic-face-function): New function, to
14643 distinguish strings from |...| symbols.
14644 (scheme-mode-variables): Use it. Also fix up the font-lock-time
14645 syntax-table so that #|...|# is properly highlighted.
14646
14647 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
14648 Don't mark as docstring the 3rd elem of an unknown toplevel form.
14649
14650 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
14651
14652 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
14653 and C-e.
14654
14655 * emacs-lisp/eldoc.el: Move comments into docstrings.
14656 (eldoc-message-commands): Initialize in its declaration.
14657 Add move-beginning-of-line and move-end-of-line.
14658 (eldoc-add-command, eldoc-add-command-completions)
14659 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
14660
14661 * outline.el (outline-mark-subtree): Activate the mark.
14662
14663 * calendar/appt.el (appt-time-regexp): New var.
14664 (appt-add, appt-make-list): Use it.
14665 (appt-convert-time): Clean up.
14666
14667 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
14668 Don't set any syntax-table property here.
14669 (tex-font-lock-verb): New function. Do it here.
14670 (tex-font-lock-syntactic-keywords): Use it.
14671
14672 2005-10-04 Richard M. Stallman <rms@gnu.org>
14673
14674 * wid-edit.el (widget-file-complete): Get the widget start point
14675 the right way. Default directory to `/' if file has none.
14676
14677 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
14678
14679 * textmodes/flyspell.el (flyspell-mode-on):
14680 Call ispell-maybe-find-aspell-dictionaries.
14681
14682 * textmodes/ispell.el (ispell-word, ispell-region):
14683 Call ispell-maybe-find-aspell-dictionaries.
14684 (ispell-accept-buffer-local-defs):
14685 Don't call ispell-maybe-find-aspell-dictionaries
14686
14687 2005-10-04 Richard M. Stallman <rms@gnu.org>
14688
14689 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
14690
14691 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
14692
14693 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
14694 instead of `fboundp' in order to allow for anonymous functions.
14695
14696 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
14697
14698 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
14699 case the user clicks on the link while another window is selected.
14700 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
14701
14702 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
14703 functionality.
14704 (dframe-help-echo): Save point in case mouse tracking is off.
14705
14706 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
14707
14708 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
14709
14710 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14711
14712 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
14713 not change the global value of those vars.
14714
14715 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
14716 make-local-variable which we do not need any more.
14717
14718 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
14719
14720 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
14721 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
14722 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
14723 (speedbar-path-line): Define obsolete aliases.
14724 (speedbar-line-directory): Doc fix.
14725
14726 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
14727 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
14728 instead of speedbar-line-path.
14729
14730 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14731
14732 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
14733 to nil if dropping on a window. Handle dropping on a minibuffer window
14734 like dropping on a non-window part of Emacs.
14735
14736 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14737
14738 * net/ange-ftp.el: Use with-current-buffer.
14739 (ange-ftp-insert-directory): Do not follow symlinks any more.
14740
14741 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
14742 Remove interactive spec.
14743
14744 2005-10-03 Kim F. Storm <storm@cua.dk>
14745
14746 * ido.el (ido-mode): Use custom-initialize-set.
14747
14748 2005-10-02 Richard M. Stallman <rms@gnu.org>
14749
14750 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
14751 Use insert-buffer-substring.
14752
14753 * net/tramp.el: Pacify byte compiler warnings in pacification code.
14754 (tramp-handle-file-local-copy): Use insert-buffer-substring.
14755
14756 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14757
14758 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
14759 in last change.
14760 (ange-ftp-insert-directory): Fix up the search for the case where
14761 `file' is absolute.
14762
14763 2005-10-02 Romain Francoise <romain@orebokech.com>
14764
14765 * progmodes/compile.el (compile-goto-error): Delete extra paren.
14766
14767 2005-10-02 Andreas Schwab <schwab@suse.de>
14768
14769 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
14770 directory component in the session info.
14771
14772 2005-10-01 Richard M. Stallman <rms@gnu.org>
14773
14774 * comint.el (comint-redirect-subvert-readonly): Doc fix.
14775
14776 * simple.el (next-error-internal): New function.
14777
14778 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
14779 (compilation-start): Pass new arg to compilation-buffer-name.
14780 (compile-goto-error): Use next-error-internal.
14781
14782 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
14783
14784 * speedbar.el: Remove RCS tag.
14785 (speedbar-check-read-only): Handle non-existent files.
14786
14787 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
14788
14789 * info.el (Info-speedbar-hierarchy-buttons)
14790 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
14791
14792 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14793
14794 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
14795 Do not match newline.
14796 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
14797 (bibtex-summary): Remove unnecessary save-excursion.
14798 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
14799
14800 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14801
14802 * term/mac-win.el: Add charset info for "iso10646-1".
14803 Modify default fontset to use ATSUI-compatible fonts for some charsets
14804 if available.
14805
14806 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
14807
14808 * speedbar.el: Re-apply arch tag.
14809 (speedbar-version): Rename to version 1.0. Suggested by Eric
14810 M. Ludlam.
14811 Reapply two changes from Emacs CVS' version of speedbar lost
14812 during the merge:
14813 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
14814 (speedbar-frame-parameters): Improve customize type.
14815
14816 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
14817
14818 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
14819 (ange-ftp-file-directory-p): Fix the symlink case.
14820 (ange-ftp-insert-directory): When listing a single file, get a list of
14821 the parent buffer and extract the relevant line. Inspired from a patch
14822 by Katsumi Yamaoka <yamaoka@jpl.org>.
14823 (ange-ftp-file-name-sans-versions): Simplify.
14824
14825 2005-09-30 Bill Wohler <wohler@newt.com>
14826
14827 Move MH-E image files from toolbar and mail directories into
14828 etc/images.
14829
14830 * mail/reply2.*: Move to etc/images/mail/reply*.
14831
14832 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
14833 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
14834 etc/images.
14835
14836 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
14837 * toolbar/reply*: Move to etc/images/mail.
14838
14839 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
14840
14841 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
14842
14843 * speedbar.el: New version 1.0pre3.
14844
14845 Frame management code (including timer, and mouse click specifics)
14846 moved to dframe.el:
14847 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
14848 (speedbar-timer): Removed. Use dframe-timer.
14849 (speedbar-close-frame): Removed. Use dframe-close-frame.
14850 (speedbar-activity-change-focus-flag): Removed. Use
14851 dframe-activity-change-focus-flag.
14852 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
14853 dframe-update-speed.
14854
14855 (speedbar-current-frame): New macro. Use this instead of the
14856 variable speedbar-frame.
14857
14858 (speedbar-use-images, speedbar-expand-image-button-alist)
14859 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
14860
14861 (speedbar-find-image-on-load-path): Removed. Replaced by
14862 defezimage in ezimage.el.
14863 (speedbar-expand-image-button-alist): Removed. Replaced by
14864 ezimage-expand-image-button-alist in ezimage.el.
14865
14866 (speedbar-ignored-directory-regexp)
14867 (speedbar-add-ignored-directory-regexp)
14868 (speedbar-ignored-directory-expressions)
14869 (speedbar-line-directory, speedbar-buffers-line-directory)
14870 (speedbar-directory-line, speedbar-buffers-line-directory):
14871 Renamed, replacing `path' with `directory'.
14872
14873 (speedbar-create-directory, speedbar-expand-line-descendants)
14874 (speedbar-toggle-line-expansion)
14875 (speedbar-contract-line-descendants): New commands.
14876
14877 (speedbar-query-confirmation-method, speedbar-select-frame-method)
14878 (speedbar-use-tool-tips-flag): New options.
14879
14880 (speedbar-check-read-only, speedbar-require-version)
14881 (speedbar-insert-separator, speedbar-buffers-tail-notes)
14882 (speedbar-handle-delete-frame, speedbar-try-completion)
14883 (speedbar-update-localized-contents): New functions.
14884
14885 (speedbar-incompatible-version, speedbar-ro-to-do-point)
14886 (speedbar-object-read-only-indicator): New variables.
14887
14888 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
14889 New hooks.
14890
14891 (speedbar-separator-face): New face.
14892
14893 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
14894 (speedbar-ignored-modes): Add fundamental-mode.
14895 (speedbar-directory-unshown-regexp): Add . directories.
14896
14897 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
14898 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
14899 `]' for full expand/close.
14900 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
14901
14902 (speedbar-check-vc): Support hidden files.
14903 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
14904 (speedbar-this-file-in-vc): Use vc-state if available. If VC
14905 state is nil, it is not checked out.
14906
14907 (speedbar-line-text, speedbar-line-token): Support expand buttons
14908 with no text.
14909 (speedbar-refresh): Universal argument acts as power-click.
14910 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
14911 that buffer to get variable values.
14912
14913 And many other bugfixes.
14914
14915 * dframe.el, ezimage.el, sb-image.el: New files.
14916
14917 * sb-*.xpm: Remove files. New image files installed into
14918 etc/images/ezimage.
14919
14920 2005-09-30 Kenichi Handa <handa@m17n.org>
14921
14922 * ps-mule.el (ps-mule-show-warning): If a character is in
14923 ps-print-translation-table, don't treat it as non-printable.
14924
14925 2005-09-30 David Ponce <david@dponce.com>
14926
14927 * tree-widget.el (tree-widget-themes-load-path): New variable.
14928 (tree-widget-themes-directory): Doc fix.
14929 (tree-widget-image-formats) [Emacs]: Doc fix.
14930 (tree-widget--locate-sub-directory): New function.
14931 (tree-widget-themes-directory): Use it.
14932
14933 * recentf.el (recentf-filename-handlers): Rename from
14934 `recentf-filename-handler'. Allow a list of functions.
14935 (recentf-menu-items-for-commands): Fix :help strings.
14936 (recentf-apply-filename-handlers): New function.
14937 (recentf-expand-file-name): Use it.
14938 (recentf-cleanup): Remove duplicates too.
14939
14940 2005-09-29 Juri Linkov <juri@jurta.org>
14941
14942 * faces.el: Rearrange face definitions to be in the same order as
14943 their face descriptions in "(emacs)Standard Faces".
14944
14945 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
14946
14947 * tooltip.el (tooltip): Add group `basic-faces'.
14948
14949 * buff-menu.el (Buffer-menu-buffer): Remove group
14950 `font-lock-highlighting-faces'.
14951
14952 * progmodes/compile.el (compilation-error, compilation-warning)
14953 (compilation-info, compilation-line-number, compilation-column-number):
14954 Change group from `font-lock-highlighting-faces' to `compilation'.
14955
14956 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
14957 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
14958 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
14959 (vhdl-font-lock-reserved-words-face)
14960 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
14961 `font-lock-highlighting-faces'.
14962
14963 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
14964
14965 2005-09-28 Kim F. Storm <storm@cua.dk>
14966
14967 * emulation/cua-base.el: Set CUA move property on additional commands:
14968 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
14969 forward-sexp, backward-sexp, forward-list, backward-list.
14970
14971 2005-09-28 Romain Francoise <romain@orebokech.com>
14972
14973 * comint.el (comint-show-output): Really set point at the
14974 beginning of the output when not using `comint-use-prompt-regexp'.
14975
14976 2005-09-27 Jay Belanger <belanger@truman.edu>
14977
14978 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
14979 in TeX mode.
14980
14981 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
14982
14983 * textmodes/org.el (org-table-sum): Fix format string.
14984
14985 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
14986 Quote face names.
14987
14988 2005-09-26 Romain Francoise <romain@orebokech.com>
14989
14990 * isearch.el (isearch-forward-regexp): Close doc string.
14991
14992 2005-09-25 Richard M. Stallman <rms@gnu.org>
14993
14994 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
14995
14996 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
14997
14998 * progmodes/compile.el (compilation-error-properties):
14999 When getting the file from the previous error message,
15000 correctly decode the new data format.
15001
15002 * progmodes/cc-cmds.el (c-electric-paren):
15003 Call old-blink-paren only for close-paren.
15004
15005 2005-09-24 Andreas Schwab <schwab@suse.de>
15006
15007 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
15008 condition.
15009
15010 2005-09-25 Romain Francoise <romain@orebokech.com>
15011
15012 * dired-aux.el (dired-copy-file-recursive):
15013 * dired.el (dired-delete-file):
15014 * ediff-mult.el (ediff-dir-diff-copy-file):
15015 * ediff-util.el (ediff-test-save-region):
15016 * forms.el (forms-mode):
15017 * ido.el (ido-file-internal, ido-delete-file-at-head):
15018 * log-edit.el (log-edit-done):
15019 * ses.el (ses-yank-resize):
15020 * play/gomoku.el (gomoku-human-plays, gomoku)
15021 (gomoku-human-resigns, gomoku-prompt-for-other-game)
15022 (gomoku-offer-a-draw):
15023 * play/landmark.el (lm-human-resigns, lm):
15024 * net/eudcb-ldap.el (eudc-ldap-check-base):
15025 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
15026 * progmodes/ebrowse.el (ebrowse-find-pattern):
15027 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
15028 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
15029 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
15030
15031 * vc.el (vc-delete-file):
15032 * play/gomoku.el (gomoku-terminate-game, gomoku)
15033 (gomoku-prompt-for-move, gomoku-human-takes-back):
15034 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
15035 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
15036
15037 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
15038
15039 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
15040 color rxvt terminals by using the code xterm.el used to use before
15041 2005-04-09 in order to match the colors used by rxvt.
15042
15043 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
15044
15045 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
15046 colors rxvt-unicode terminals by using the same code as xterm.el.
15047
15048 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
15049
15050 * textmodes/tex-mode.el (tex-font-lock-append-prop)
15051 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
15052 new symbol used for the tex-verbatim face.
15053
15054 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
15055
15056 * woman.el (woman-file-name):
15057 * wid-edit.el (widget-file-prompt-value)
15058 (widget-coding-system-prompt-value):
15059 * w32-fns.el (set-w32-system-coding-system):
15060 * vc.el (vc-version-diff, vc-annotate):
15061 * textmodes/reftex-auc.el (reftex-arg-cite)
15062 (reftex-arg-index-tag):
15063 * textmodes/refer.el (refer-get-bib-files):
15064 * textmodes/artist.el (artist-figlet-choose-font):
15065 * terminal.el (terminal-emulator):
15066 * replace.el (occur-read-primary-args):
15067 * rect.el (string-rectangle, string-insert-rectangle):
15068 * ps-print.el (ps-print-preprint):
15069 * progmodes/pascal.el (pascal-goto-defun):
15070 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
15071 * progmodes/compile.el (compilation-find-file):
15072 * printing.el (pr-interactive-n-up):
15073 * play/animate.el (animate-birthday-present):
15074 * net/rcompile.el (remote-compile):
15075 * man.el (man, Man-goto-section, Man-follow-manual-reference):
15076 * mail/rmailsum.el (rmail-summary-search-backward)
15077 (rmail-summary-search):
15078 * mail/rmailout.el (rmail-output-read-rmail-file-name)
15079 (rmail-output-read-file-name):
15080 * mail/rmail.el (rmail-search, rmail-search-backwards):
15081 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
15082 * locate.el (locate):
15083 * international/quail.el (quail-show-keyboard-layout):
15084 * international/mule.el (set-buffer-file-coding-system)
15085 (revert-buffer-with-coding-system, set-file-name-coding-system)
15086 (set-terminal-coding-system, set-keyboard-coding-system)
15087 (set-next-selection-coding-system):
15088 * international/mule-diag.el (describe-coding-system)
15089 (describe-font, describe-fontset):
15090 * international/mule-cmds.el (universal-coding-system-argument)
15091 (search-unencodable-char, describe-input-method)
15092 (set-language-environment, describe-language-environment):
15093 * international/codepage.el (codepage-setup):
15094 * international/code-pages.el (codepage-setup):
15095 * info.el (Info-search, Info-follow-reference)
15096 (Info-search-backward):
15097 * emacs-lisp/advice.el (ad-read-advised-function)
15098 (ad-read-advice-class, ad-clear-cache, ad-activate)
15099 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
15100 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
15101 (ad-read-regexp):
15102 * ediff-util.el (ediff-toggle-regexp-match):
15103 * ediff-ptch.el (ediff-prompt-for-patch-file):
15104 * dired-aux.el (dired-diff):
15105 * diff.el (diff):
15106 * cus-edit.el (custom-variable-prompt):
15107 * calendar/timeclock.el (timeclock-ask-for-project):
15108 * calc/calcalg3.el (calc-get-fit-variables):
15109 * calc/calc-store.el (calc-edit-variable)
15110 (calc-permanent-variable):
15111 * vc-mcvs.el (vc-mcvs-register):
15112 * shadowfile.el (shadow-define-literal-group):
15113 * woman.el (woman-file-name):
15114 * vc.el (vc-version-diff, vc-merge):
15115 * textmodes/reftex-index.el (reftex-index-complete-tag):
15116 * format.el (format-decode-buffer, format-decode-region):
15117 * emulation/viper-cmd.el (viper-read-string-with-history):
15118 * emacs-lisp/debug.el (cancel-debug-on-entry):
15119 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
15120 * ediff.el (ediff-merge-revisions)
15121 (ediff-merge-revisions-with-ancestor, ediff-revision):
15122 * completion.el (interactive-completion-string-reader):
15123 * calc/calc-prog.el (calc-user-define-formula):
15124 Follow convention for reading with the minibuffer.
15125
15126 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
15127
15128 * progmodes/python.el (python-describe-symbol): Add globals() and
15129 locals() to the arguments of emacs.ehelp.
15130
15131 2005-09-24 Magnus Henoch <mange@freemail.hu>
15132
15133 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
15134 New function, code extracted from ispell-valid-dictionary-list.
15135 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
15136 Call it.
15137
15138 2005-09-24 Eli Zaretskii <eliz@gnu.org>
15139
15140 * subr.el (version-regexp-alist): Extend valid syntax for version
15141 strings: allow any of the characters -,_,+ to separate the
15142 alpha/beta/rc part from the version part. Doc fix.
15143 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
15144
15145 2005-09-23 David Reitter <david.reitter@gmail.com>
15146
15147 * mail/mailclient.el: New file.
15148
15149 2005-09-23 Richard M. Stallman <rms@gnu.org>
15150
15151 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
15152 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
15153 Doc fixes.
15154
15155 * progmodes/cc-mode.el (c-font-lock-init):
15156 Specify font-lock-lines-before.
15157
15158 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
15159
15160 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
15161 whole conflict.
15162
15163 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
15164
15165 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
15166 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
15167 of `remap' feature when available. Additional key bindings for
15168 better tty support.
15169 (org-mode-restart, org-force-self-insert): New commands.
15170 (org-time-stamp-inactive): New command.
15171 (org-remap): New function.
15172 (org-table-auto-blank-field, org-level-color-stars-only): New options.
15173 (org-enable-fixed-width-editor): Move to `org-structure'
15174 customization group.
15175 (org-self-insert-command, orgtbl-self-insert-command): Modify to
15176 blank field after field motion commands.
15177
15178 2005-09-23 Kenichi Handa <handa@m17n.org>
15179
15180 * international/mule-cmds.el (set-language-environment):
15181 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
15182 have to call utf-translate-cjk-load-tables.
15183
15184 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
15185
15186 * mouse.el (mouse-move-drag-overlay): Fix last change.
15187
15188 2005-09-22 David Ponce <david@dponce.com>
15189
15190 * tree-widget.el (tree-widget-value-create): Fix previous change.
15191
15192 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
15193
15194 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
15195
15196 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
15197
15198 * mouse.el (mouse-move-drag-overlay): New function.
15199 (mouse-drag-region-1): Use it.
15200 Try to simplify a bit the state handling. Handle clicks on links
15201 inside intangible areas.
15202 (mouse-save-then-kill): Minor simplification.
15203 (mouse-secondary-overlay): Make it always non-nil instead of
15204 recreating it each time.
15205 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
15206 (mouse-kill-secondary, mouse-secondary-save-then-kill):
15207 Simplify accordingly.
15208
15209 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
15210
15211 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
15212
15213 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
15214
15215 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
15216 (ediff-file-name-sans-prefix): Treat nil as an empty string.
15217 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
15218 to patch.
15219
15220 * ediff-util.el: Use insert-buffer-substring.
15221
15222 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
15223
15224 * emulation/viper-cmd.el (viper-change-state): Don't move over the
15225 field boundaries in the minibuffer.
15226 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
15227 (viper-minibuffer-post-command-hook): New hook.
15228 (viper-line): Don't move cursor at bolp.
15229
15230 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
15231
15232 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
15233 avoid compiler warnings.
15234
15235 * emulation/viper-macs.el (ex-map): Better messages.
15236
15237 * emulation/viper-utils.el (viper-beginning-of-field): New function.
15238
15239 * emulation/viper.el: Replace make-variable-buffer-local with
15240 viper-make-variable-buffer-local everywhere, to avoid warnings.
15241
15242 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
15243
15244 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
15245 Delete unused var `old-selected-window'.
15246 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
15247 (mouse-drag-secondary): Delete unused var `start-frame'.
15248
15249 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
15250
15251 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
15252
15253 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
15254
15255 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
15256 Re-indent within 80 columns. Use inhibit-read-only.
15257
15258 2005-09-19 Romain Francoise <romain@orebokech.com>
15259
15260 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
15261
15262 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
15263
15264 * font-lock.el (font-lock-default-fontify-region): Don't add a line
15265 unconditionally, since the after-change-function already did it.
15266
15267 2005-09-19 Miles Bader <miles@gnu.org>
15268
15269 * net/newsticker.el: Get rid of CVS keyword.
15270
15271 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan+sf@dd.chalmers.se>
15272
15273 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
15274 The prompt is formatted later.
15275
15276 2005-09-19 David Ponce <david@dponce.com>
15277
15278 * tree-widget.el (tree-widget-value-create): Save the converted
15279 tree :node widget.
15280
15281 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
15282
15283 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
15284 variable `message'.
15285
15286 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
15287
15288 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
15289 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
15290 <slawomir.nowaczyk.847@student.lu.se>.
15291
15292 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
15293
15294 * image.el (image-load-path): Use symbol `data-directory' instead
15295 of its value, for backward compatibility with packages that bind
15296 it during `find-image'. Suggested by Katsumi Yamaoka.
15297 (image-search-load-path): Handle symbols whose values are strings.
15298
15299 2005-09-18 Romain Francoise <romain@orebokech.com>
15300
15301 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
15302 with-current-buffer form in save-excursion.
15303
15304 2005-09-18 Deepak Goel <deego@gnufans.org>
15305
15306 * apropos.el (apropos-command): Fix `message' call: first arg
15307 should be a format spec. In this and all other cases that appear
15308 below and elsewhere in the source code, I made a change only when
15309 two conditions were satisfied: [1] I can think of a possibility
15310 that the arguments would cause an error, for example, the code in
15311 question relies on external variables such as filenames. [2] I
15312 was sure that the arg to `message' could not have been nil in the code.
15313
15314 * textmodes/tildify.el (tildify-region): Ditto.
15315
15316 * textmodes/reftex-index.el (reftex-index-change-entry)
15317 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
15318 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
15319 * textmodes/org.el (org-complete, org-deadline, org-schedule)
15320 (org-priority, org-table-sum):
15321 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
15322 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
15323 (flyspell-word, flyspell-display-next-corrections):
15324 * textmodes/bibtex.el (bibtex-print-help-message):
15325 * textmodes/artist.el (artist-key-set-point-poly):
15326 * term/mac-win.el (mac-services-insert-text):
15327 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
15328 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
15329 (vhdl-port-paste-testbench, vhdl-compose-new-component)
15330 (vhdl-compose-configuration):
15331 * progmodes/sh-script.el (sh-blink, sh-show-indent)
15332 (sh-set-indent, sh-learn-line-indent):
15333 * progmodes/ps-mode.el (ps-mode-target-column):
15334 * progmodes/idlwave.el (idlwave-make-tags)
15335 (idlwave-scan-library-catalogs):
15336 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
15337 * progmodes/gud.el (gud-jdb-analyze-source):
15338 * progmodes/flymake.el (flymake-log):
15339 * progmodes/ebnf2ps.el (ebnf-generate-region):
15340 * progmodes/cmacexp.el (c-macro-expansion):
15341 * progmodes/ada-xref.el (ada-treat-cmd-string):
15342 * progmodes/ada-mode.el (ada-create-case-exception-substring)
15343 (ada-justified-indent-current, ada-batch-reformat):
15344 * play/zone.el (zone):
15345 * play/landmark.el (lm-move):
15346 * play/decipher.el (decipher-show-alphabet):
15347 * net/newsticker.el (newsticker--display-jump)
15348 (newsticker--display-scroll):
15349 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
15350 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
15351 * mail/feedmail.el (feedmail-dump-message-to-queue):
15352 * eshell/esh-proc.el (eshell-remove-process-entry):
15353 * emulation/ws-mode.el (ws-last-error):
15354 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
15355 (viper-record-kbd-macro):
15356 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
15357 * emacs-lisp/lisp-mnt.el (lm-report-bug):
15358 * emacs-lisp/find-func.el (find-function-noselect):
15359 * calendar/timeclock.el (timeclock-status-string)
15360 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
15361 (timeclock-when-to-leave-string):
15362 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
15363 * calc/calc-units.el (calc-enter-units-table):
15364 * calc/calc-mode.el (calc-mode-record-mode):
15365 * woman.el (woman-mini-help):
15366 * wdired.el (wdired-change-to-wdired-mode):
15367 * vc.el (vc-retrieve-snapshot):
15368 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
15369 * startup.el (display-startup-echo-area-message):
15370 * simple.el (set-goal-column):
15371 * ses.el (ses-command-hook, ses-recalculate-cell):
15372 * server.el (server-process-filter):
15373 * printing.el (pr-interface-txt-print, pr-interface-printify)
15374 (pr-interface-ps):
15375 * pcvs.el (cvs-help):
15376 * log-edit.el (log-edit, log-edit-mode-help):
15377 * iswitchb.el (iswitchb-possible-new-buffer):
15378 * isearch.el (isearch-edit-string):
15379 * image-mode.el (image-mode, image-minor-mode):
15380 * ibuf-macs.el (define-ibuffer-filter):
15381 * hi-lock.el (hi-lock-find-patterns):
15382 * files.el (toggle-read-only):
15383 * ediff-util.el (ediff-copy-diff)
15384 (ediff-write-merge-buffer-and-maybe-kill):
15385 * echistory.el (Electric-history-undefined):
15386 * dnd.el (dnd-insert-text):
15387 * dired-aux.el (dired-query):
15388 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
15389 * bookmark.el (bookmark-bmenu-locate):
15390 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
15391 Fix `message' calls to ensure first arg is a format string.
15392 The change was made only when these two conditions were satisfied:
15393 [1] when there is a possibility that the arguments would cause an error
15394 for example, if the code in question relies on external variables
15395 such as filenames, and
15396 [2] if the arg to `message' could not have been nil in the code.
15397
15398 * pcomplete.el (pcomplete--help): Fix `message' format spec.
15399 Not having a %s would be weird, though not technically wrong.
15400
15401 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15402
15403 * term/mac-win.el (mac-add-charset-info): Doc fix.
15404
15405 2005-09-17 Romain Francoise <romain@orebokech.com>
15406
15407 * shell.el (shell-resync-dirs): Handle echoing processes more
15408 reliably. Don't insert resync command if `comint-process-echoes'
15409 is non-nil.
15410
15411 2005-09-17 Magnus Henoch <mange@freemail.hu>
15412
15413 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
15414 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
15415 aspell versions >= 0.60.
15416 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
15417 only if ispell-aspell-supports-utf8 is non-nil.
15418
15419 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
15420
15421 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
15422 buffer-local value to lisp-indent-function.
15423
15424 2005-09-17 Milan Zamazal <pdm@zamazal.org>
15425
15426 * progmodes/glasses.el (glasses-make-readable): If
15427 glasses-separator differs from underscore, put appropriate
15428 overlays over underscore characters.
15429 (glasses-convert-to-unreadable): If glasses-separator differs from
15430 underscore, try to convert glasses-separator characters to
15431 underscores.
15432
15433 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
15434
15435 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
15436 Use with-syntax-table and dolist.
15437
15438 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
15439
15440 * textmodes/reftex-auc.el:
15441 * textmodes/reftex-cite.el:
15442 * textmodes/reftex-dcr.el:
15443 * textmodes/reftex-global.el:
15444 * textmodes/reftex-parse.el:
15445 * textmodes/reftex-ref.el:
15446 * textmodes/reftex-sel.el:
15447 * textmodes/reftex-toc.el:
15448 * textmodes/reftex-vars.el:
15449 * textmodes/reftex.el: Small changes to remove compiler warnings.
15450
15451 * textmodes/reftex-index.el: Likewise.
15452 (reftex-query-index-phrase): More efficient use of markers.
15453
15454 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
15455
15456 * image.el (image-load-path): New variable.
15457 (image-search-load-path): New function.
15458 (find-image): Search for images in `image-load-path'.
15459
15460 2005-09-15 Richard M. Stallman <rms@gnu.org>
15461
15462 * follow.el: Change Maintainer field.
15463
15464 2005-09-15 David Ponce <david@dponce.com>
15465
15466 * recentf.el (recentf-save-file-modes): New option.
15467 (recentf-save-list): Use it.
15468
15469 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
15470
15471 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
15472 (mode-line-mule-info, mode-line-modified): Move bindings from
15473 mouse-3 to mouse-1.
15474
15475 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
15476
15477 * simple.el (sendmail-user-agent-compose): Revert last change.
15478
15479 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
15480
15481 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
15482 Use with-current-buffer.
15483 (ange-ftp-gwp-start): Remove unused var `gw-user'.
15484 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
15485 (ange-ftp-insert-directory): Remove unused var `short'.
15486 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
15487
15488 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
15489 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
15490
15491 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
15492 (check-calendar-holidays, diary-list-entries): Autoload.
15493 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
15494 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
15495
15496 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
15497 which mistakenly removed a call to display-buffer.
15498
15499 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
15500
15501 * obsolete/iso-insert.el: Move to obsolete/ from international/.
15502
15503 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
15504
15505 * progmodes/hideshow.el
15506 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
15507 (hs-allow-nesting): New user var.
15508 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
15509 (hs-hide-block-at-point): When nesting allowed,
15510 if there is already an overlay in place, delete it.
15511 (hs-safety-is-job-n): Delete func; remove call sites.
15512 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
15513 (hs-overlay-at): New func.
15514 (hs-already-hidden-p, hs-show-block): Use it.
15515 (hs-hide-all): Don't pre-clean if nesting allowed.
15516 (hs-show-all): Temporarily disallow
15517 nesting around call to `hs-discard-overlays'.
15518
15519 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
15520
15521 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
15522 Delete unused local var.
15523
15524 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
15525
15526 * help-fns.el (describe-categories): "?\ " -> "?\s".
15527 (help-do-arg-highlight): Recognize also ARG-n, as in
15528 `move-to-left-margin' (ARG+n is already recognized). Simplify.
15529
15530 * international/codepage.el (dos-unsupported-char-glyph):
15531 * net/newsticker.el (tool-bar-map, w3-mode-map)
15532 (w3m-minor-mode-map):
15533 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
15534 (ent-alist):
15535 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
15536
15537 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
15538
15539 * custom.el (custom-push-theme): Handle the case where a symbol is
15540 bound but face properties have not yet been assigned.
15541
15542 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
15543 Fix behavior if noerase is `t' and there is no mail buffer.
15544
15545 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
15546 if `continue' is nil, rather than signal an error.
15547
15548 2005-09-12 Richard M. Stallman <rms@gnu.org>
15549
15550 * font-lock.el (font-lock-keywords): Add autoload.
15551
15552 * help-fns.el (describe-variable): Rearrange to put source link
15553 in a predictable place.
15554
15555 * net/newsticker.el: New file.
15556
15557 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15558
15559 * calendar/calendar.el (calendar-for-loop): Add edebug info.
15560 (calendar-basic-setup): Use the new nil arg.
15561 (number-of-diary-entries): Move to diary-lib.el.
15562
15563 * calendar/diary-lib.el: Use with-current-buffer, match-string.
15564 (diary-list-entries): Use with-syntax-table and dolist.
15565 Rename from list-diary-entries.
15566 Use number-of-diary-entries if `number' is nil.
15567 (diary, diary-view-entries): Use this new name and new nil arg value.
15568 (number-of-diary-entries): Move from calendar.el.
15569 (diary-unhide-everything): New function.
15570 (include-other-diary-files, fancy-diary-display)
15571 (diary-show-all-entries, make-diary-entry): Use it.
15572 (diary-mail-entries): Use buffer-string.
15573 (mark-diary-entries): Fix long standing paren typo.
15574 (diary-sexp-entry): Use count-lines.
15575 (make-diary-entry): Avoid `previous-line'.
15576 (diary-mode-map): New var.
15577 (diary-mode): Redraw cal after saving. Setup header-line.
15578 (fancy-diary-display-mode): Use local-set-key.
15579
15580 * startup.el (command-line): Try calling various terminal-init-foo-bar
15581 functions by stripping hyphenated suffixes from $TERM.
15582
15583 * files.el (normal-mode): Check boundness of font-lock-keywords.
15584
15585 2005-09-12 Richard M. Stallman <rms@gnu.org>
15586
15587 * progmodes/compile.el: Don't decide a file's directory
15588 until the user actually tries to go there.
15589 (compilation-next-error-function):
15590 Pass compilation-find-file the directory from the file-struct.
15591 (compilation-internal-error-properties): Separate local FILE-STRUCT
15592 from FILE. Doc the args better. Rename arg FMT to FMTS.
15593 (compilation-find-file): Arg DIR renamed to DIRECTORY.
15594 Expand it, and if nil, use default-directory.
15595 (compilation-get-file-structure): Don't mix specified directory
15596 with default directory. Put specified directory into
15597 file-struct. Don't make the file name absolute.
15598
15599 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
15600 (compile-command): Add autoload.
15601 (compilation-disable-input): Add autoload.
15602
15603 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
15604
15605 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
15606 strings of the variables it can override.
15607 (time-stamp): New (as yet undocumented) time-stamp-format escapes
15608 %Q and %q, for fully-qualified domain name and unqualified host name.
15609
15610 2005-09-11 Kim F. Storm <storm@cua.dk>
15611
15612 * emacs-lisp/authors.el (authors-aliases): Update list.
15613 (authors-fixed-entries): Update mldrag.el entry.
15614
15615 2005-09-10 Alan Mackenzie <acm@muc.de>
15616
15617 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
15618 from the region narrowed to.
15619
15620 2005-09-10 Magnus Henoch <mange@freemail.hu>
15621
15622 * textmodes/ispell.el (ispell-check-version): Signal an error if
15623 aspell version is less than 0.60.
15624
15625 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
15626
15627 * progmodes/octave-inf.el (inferior-octave-startup):
15628 Resync current dir at the end.
15629
15630 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
15631
15632 * woman.el (woman-topic-at-point-default):
15633 Rename to woman-use-topic-at-point-default.
15634 (woman-topic-at-point): Rename to woman-use-topic-at-point.
15635 (woman-file-name): Reflect renames above. Automatically use the
15636 word at point as topic if woman-use-topic-at-point is non-nil.
15637 Otherwise offer it as default but don't insert it in the
15638 minibuffer. Also use `test-completion' instead of `assoc' as
15639 suggested by Stefan Monnier.
15640
15641 2005-09-10 Andre Spiegel <spiegel@gnu.org>
15642
15643 * vc.el (vc-directory, vc-update-change-log): Throw an error on
15644 the attempt to do it over Tramp. This is not yet supported.
15645
15646 2005-09-10 Eli Zaretskii <eliz@gnu.org>
15647
15648 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
15649 (menu-bar-non-minibuffer-window-p): New functions.
15650 ("Split Window", "Save As..."): Use them.
15651 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
15652 ("Print Buffer", "Truncate Long Lines in this Buffer"):
15653 Use menu-bar-menu-frame-live-and-visible-p.
15654 ("Save Buffer", "Insert File", "Open Directory...")
15655 ("Open File...", "Visit New File..."):
15656 Use menu-bar-non-minibuffer-window-p.
15657 (kill-this-buffer-enabled-p, dired <menu-enable>):
15658 Use menu-bar-non-minibuffer-window-p.
15659
15660 2005-09-09 Eli Zaretskii <eliz@gnu.org>
15661
15662 * cus-start.el (all): Don't complain about fringe-related
15663 built-ins if fringes are not supported. Ditto about
15664 selection-related built-ins. Fix the test for GTK-related built-ins.
15665
15666 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
15667 ("Postscript Print Buffer", "Print Region", "Save As...")
15668 ("Save", "Insert File...", "Open Directory...")
15669 ("Open File...", "Visit New File..."")
15670 ("Truncate Long Lines in this Buffer"): Don't look at
15671 menu-updating-frame if this display does not support multiple frames.
15672
15673 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
15674
15675 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
15676
15677 2005-09-09 Emilio Lopes <eclig@gmx.net>
15678
15679 * woman.el: Format- and whitespace-related changes.
15680
15681 2005-09-09 Eli Zaretskii <eliz@gnu.org>
15682
15683 * woman.el: Fix my email address.
15684
15685 2005-09-08 Richard M. Stallman <rms@gnu.org>
15686
15687 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
15688 (sh-mode): Locally set skeleton-pair-default-alist.
15689
15690 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
15691
15692 * progmodes/flymake.el: Require `compile' unconditionally.
15693
15694 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
15695
15696 * woman.el (woman-file-name): Provide a default, not initial input.
15697
15698 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
15699
15700 * font-lock.el (font-lock-support-mode): Doc fix.
15701
15702 * descr-text.el (describe-property-list): Handle non-symbol prop names.
15703
15704 2005-09-08 Richard M. Stallman <rms@gnu.org>
15705
15706 * simple.el (blink-matching-open): Get rid of text props from
15707 the string shown in echo area. Don't permanently set point.
15708 Some rearrangements.
15709
15710 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
15711
15712 * recentf.el (recentf-filename-handler): Add custom choice
15713 `abbreviate-file-name'.
15714
15715 * msb.el (msb--very-many-menus): Fix typo.
15716
15717 * disp-table.el (standard-display-european): Don't set
15718 enable-multibyte-characters to nil.
15719
15720 2005-09-08 David Ponce <david@dponce.com>
15721
15722 * recentf.el (recentf-show-file-shortcuts-flag): New option.
15723 (recentf-expand-file-name): Doc fix.
15724 (recentf-dialog-mode-map): Define digit shortcuts.
15725 (recentf--files-with-key): New variable.
15726 (recentf-show-digit-shortcut-filter): New function.
15727 (recentf-open-files-items): New function.
15728 (recentf-open-files): Use it.
15729 (recentf-open-file-with-key): New command.
15730
15731 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
15732
15733 * buff-menu.el (Buffer-menu-sort-by-column): New function.
15734 Suggested by Kim F. Storm.
15735 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
15736 (Buffer-menu-make-sort-button): Use global keymap.
15737
15738 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
15739
15740 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
15741 (Man-getpage-in-background-advice): Remove defadvice; it isn't
15742 necessary any longer with the remapped command.
15743 (Man-bgproc-sentinel-advice): Remove defadvice which counts
15744 formatting time only.
15745
15746 * net/tramp.el (tramp-action-password)
15747 (tramp-multi-action-password): Compile the password prompt from
15748 `method', `user' and `host'. Sometimes it isn't obvious which
15749 password to enter, for example with remote files offered by
15750 recentf.el, or with multiple steps. Suggested by Robert Marshall
15751 <robert@chezmarshall.freeserve.co.uk>.
15752
15753 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
15754
15755 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
15756 Fix regexp for when "s///" is at the beginning of line.
15757
15758 2005-09-07 Jay Belanger <belanger@truman.edu>
15759
15760 * calc/calc-poly.el (math-expand-term): Multiply out any powers
15761 when in matrix mode.
15762
15763 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
15764
15765 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
15766 non-anonymous functions.
15767
15768 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
15769
15770 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
15771 when using a header line. Otherwise, use mouse-1-click-follows-link.
15772
15773 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
15774 can't be moved; don't signal an error.
15775
15776 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
15777
15778 * cus-theme.el (custom-theme-write-faces): Save the current face
15779 spec, not the defface spec.
15780
15781 * custom.el (custom-known-themes): Clarify meaning of "standard".
15782 (custom-push-theme): Save old values in the standard theme.
15783 (disable-theme): Correct typo.
15784 (custom-face-theme-value) Deleted unused function.
15785 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
15786
15787 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
15788
15789 * progmodes/compile.el (compilation-goto-locus): Take into account
15790 iconified frames when determining whether the buffer is
15791 already visible.
15792 Don't reset window height if the window already existed.
15793
15794 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
15795
15796 * custom.el (load-theme): Rename from require-theme.
15797 Add interactive spec.
15798 (enable-theme): Rename from custom-enable-theme.
15799 Add interactive spec.
15800 (disable-theme): Rename from custom-disable-theme.
15801 Add interactive spec.
15802 (custom-make-theme-feature): Doc fix.
15803 (custom-theme-directory): Doc fix.
15804 (provide-theme): Call enable-theme.
15805
15806 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
15807
15808 * obsolete/lazy-lock.el (lazy-lock-mode):
15809 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
15810 font-lock-mode if it's off. Print a warning instead.
15811
15812 * progmodes/compile.el (compilation-start): Ignore errors if the
15813 process died before we get to send-eof.
15814
15815 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
15816 Undo last change. Enclosing the result in quotes broke things on Unix
15817 since tex-send-command passes it through shell-quote-argument.
15818 (tex-send-command): Pass `file' through convert-standard-filename
15819 when possible.
15820 (tex-uptodate-p): Handle the case where TeX hasn't put additional
15821 info in a transcript.
15822
15823 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
15824
15825 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
15826 fix compilation warning. Reorder the key definitions to group
15827 together keys emitted by the current version of xterm.
15828
15829 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
15830 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
15831 Reorder predicates to correct min-color usage.
15832
15833 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
15834
15835 * longlines.el (longlines-mode): Inhibit read-only when encoding.
15836 Kill local variables when longlines-mode is turned off.
15837
15838 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
15839
15840 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
15841
15842 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
15843
15844 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
15845
15846 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
15847 (font-lock-lines-before): Change default to being inactive.
15848 (font-lock-default-fontify-region): Obey font-lock-lines-before.
15849 (font-lock-after-change-function): Don't handle f-l-lines-before here.
15850
15851 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
15852
15853 * net/tramp.el (tramp-handle-make-auto-save-file-name):
15854 Deactivate temporarily advice if active (not needed for Emacs 22,
15855 but for backwards compatibility).
15856 (tramp-exists-file-name-handler): Rewrite. First implementation
15857 was too simple.
15858 (tramp-advice-make-auto-save-file-name):
15859 Call `tramp-handle-make-auto-save-file-name' (again, just for
15860 backwards compatibility).
15861
15862 2005-08-31 Reto Zimmermann <reto@gnu.org>
15863
15864 * progmodes/vhdl-mode.el
15865 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
15866 (vhdl-end-p): Fix indentation bug "else" after "-- when".
15867 (vhdl-set-default-project): New function (easier setting of default).
15868 (vhdl-port-copy): Handle extended identifiers for generics.
15869 (vhdl-compiler-alist): Better description for error message regexp.
15870 (vhdl-make): Query for target, use previous as default.
15871 (vhdl-port-copy): Fix port copy for port names starting with "signal".
15872 (vhdl-font-lock-keywords-2): Fix fontification for record
15873 el. assign.
15874 (vhdl-speedbar-make-subpack-line): Add package body link.
15875 (vhdl-generate-makefile-1): Not include itself as dependency.
15876 (vhdl-font-lock-init): Highlight c-preprocessor directives.
15877 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
15878 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
15879 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
15880 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
15881 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
15882 (vhdl-import-project): Add string argument for `error'.
15883 (vhdl-compose-configuration)
15884 (vhdl-compose-configuration-architecture): Add configuration
15885 declaration generation.
15886 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
15887 (vhdl-trailer-re): Add "record" keyword (better indentation).
15888 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
15889 "[^ \t-\"]+".
15890 (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
15891 (vhdl-testbench-entity-file-name)
15892 (vhdl-testbench-architecture-file-name): Allow separate
15893 customization of testbench file names.
15894 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
15895 (vhdl-get-visible-signals): Allow newline within alias declaration.
15896 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
15897 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
15898 (member-ignore-case): Alias for missing function in XEmacs.
15899 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
15900 (vhdl-update-sensitivity-list): Ignore case on read signals.
15901 (vhdl-replace-string): Adjust case only for file names.
15902 (vhdl-update-sensitivity-list): Fix search for read signals.
15903 (vhdl-update-sensitivity-list): Exclude formal parameters.
15904 (vhdl-get-visible-signals): Include aliases of signals.
15905 (vhdl-get-visible-signals): Fix signal name searching.
15906 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
15907 (vhdl-fixup-whitespace-region): Fix for character
15908 literals (e.g. `:').
15909
15910 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
15911
15912 * ansi-color.el (comint-last-output-start):
15913 * bs.el (font-lock-verbose):
15914 * diff-mode.el (add-log-buffer-file-name-function):
15915 * dired-x.el (vm-folder-directory):
15916 * faces.el (help-xref-stack-item):
15917 * files.el (font-lock-keywords):
15918 * find-lisp.el (dired-buffers, dired-subdir-alist):
15919 * ido.el (cua-inhibit-cua-keys):
15920 * log-view.el (cvs-minor-wrap-function):
15921 * outline.el (font-lock-warning-face):
15922 * simple.el (compilation-current-error):
15923 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
15924 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
15925 * tooltip.el (comint-prompt-regexp):
15926 * w32-fns.el (explicit-shell-file-name):
15927 * term/mac-win.el (mac-charset-info-alist)
15928 (mac-services-selection, mac-system-script-code):
15929 * term/tty-colors.el (msdos-color-values):
15930 * term/w32-win.el (xlfd-regexp-registry-subnum):
15931 * term/x-win.el (x-keysym-table, x-selection-timeout)
15932 (x-session-id, x-session-previous-id):
15933 * textmodes/ispell.el (mail-yank-prefix):
15934 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
15935 * textmodes/org.el (calc-embedded-close-formula)
15936 (calc-embedded-open-formula)
15937 (font-lock-unfontify-region-function):
15938 * textmodes/reftex-global.el (isearch-next-buffer-function)
15939 (TeX-master):
15940 * textmodes/reftex.el (font-lock-keywords):
15941 * textmodes/tex-mode.el (font-lock-comment-face)
15942 (font-lock-doc-face):
15943 * textmodes/texinfo.el (outline-heading-alist):
15944 Add defvars.
15945
15946 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
15947 (artist-spray-chars, artist-mode-init, artist-replace-string)
15948 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
15949 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
15950 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
15951
15952 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
15953 (conf-align-assignments): "?\ " -> "?\s".
15954
15955 * textmodes/reftex-index.el (TeX-master): Add defvar.
15956 (reftex-index-phrases-marker): Move up defvar.
15957
15958 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
15959 (reftex-toc-include-labels-indicator)
15960 (reftex-toc-include-index-indicator)
15961 (reftex-toc-max-level-indicator): Move up declarations.
15962
15963 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
15964 of args to `tramp-run-real-handler', even if it's empty in this case.
15965
15966 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15967
15968 * dired.el (dired-move-to-filename-regexp): Add date format for
15969 Mac OS X 10.3 in East Asian locales.
15970
15971 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
15972
15973 * files.el (make-auto-save-file-name): Add file name handler call
15974 if applicable.
15975
15976 * net/tramp.el (tramp-file-name-handler-alist)
15977 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
15978 (tramp-handle-make-auto-save-file-name): Rename from
15979 `tramp-make-auto-save-file-name'.
15980 (tramp-exists-file-name-handler): New defun.
15981 (tramp-advice-make-auto-save-file-name): Make defadvice only when
15982 `make-auto-save-file-name' is not a magic file name operation.
15983
15984 2005-08-30 Richard M. Stallman <rms@gnu.org>
15985
15986 * files.el (risky-local-variable-p):
15987 Match `-predicates' and `-commands.
15988
15989 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
15990 (custom-save-all): Visit the file if necessary;
15991 kill the buffer if we created it.
15992 (custom-save-delete): Don't visit file or kill buffer here.
15993
15994 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
15995
15996 * textmodes/org.el (org-special-keyword): New face.
15997 (org-table-copy-down, org-table-eval-formula)
15998 (org-table-recalculate, org-init-section-numbers):
15999 Use `string-to-number' instead of `string-to-int'.
16000 (org-get-location): Use `insert-buffer-substring' instead of
16001 `insert-buffer'.
16002 (org-modify-diary-entry-string): New function.
16003 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
16004 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
16005 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
16006 active region.
16007 (org-export-as-html): Handle QUOTE keyword.
16008 (org-quote-string): New option.
16009 (org-bookmark-jump-unhide): New function, used for
16010 `bookmark-after-jump-hook'.
16011 (org-diary-default-entry): Apply only when not called through
16012 `org-agenda'.
16013
16014 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
16015
16016 * net/eudc.el (mode-popup-menu):
16017 * play/handwrite.el (ps-printer-name, ps-lpr-command):
16018 * progmodes/ada-mode.el (compile-auto-highlight)
16019 (skeleton-further-elements):
16020 * progmodes/autoconf.el (font-lock-syntactic-keywords):
16021 * progmodes/cmacexp.el (msdos-shells):
16022 * progmodes/compile.el (font-lock-extra-managed-props)
16023 (font-lock-keywords, font-lock-maximum-size)
16024 (font-lock-support-mode):
16025 * progmodes/grep.el (font-lock-lines-before):
16026 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
16027 * progmodes/mixal-mode.el (compile-command):
16028 * progmodes/perl-mode.el (font-lock-comment-face)
16029 (font-lock-doc-face, font-lock-string-face):
16030 * progmodes/prolog.el (comint-prompt-regexp):
16031 * progmodes/sh-script.el (font-lock-comment-face)
16032 (font-lock-set-defaults, font-lock-string-face):
16033 * progmodes/sql.el (font-lock-keyword-face)
16034 (font-lock-set-defaults, font-lock-string-face):
16035 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
16036 (itimer-version, lazy-lock-defer-contextually)
16037 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
16038 Add defvars.
16039
16040 * progmodes/cperl-mode.el (cperl-electric-lbrace)
16041 (cperl-electric-keyword, cperl-electric-pod)
16042 (cperl-electric-backspace, cperl-forward-re)
16043 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
16044 (vc-rcs-header, vc-sccs-header): Add defvars.
16045
16046 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
16047 (font-lock-syntactic-keywords, gud-find-expr-function):
16048 Add defvars.
16049
16050 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
16051 (gdb-frame-parameters): Declare before use.
16052
16053 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
16054 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
16055 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
16056 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
16057
16058 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
16059 (idlwave-help-with-source): Use `insert-buffer-substring', not
16060 `insert-buffer'.
16061
16062 2005-08-29 Juri Linkov <juri@jurta.org>
16063
16064 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
16065 Put outline-back-to-heading function call inside save-excursion.
16066
16067 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
16068
16069 * man.el (Man-init-defvars, Man-translate-references)
16070 (Man-support-local-filenames, Man-highlight-references):
16071 * progmodes/sql.el (sql-interactive-mode):
16072 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
16073
16074 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
16075 (compilation-mode-font-lock-keywords): Add defvars.
16076 (checkdoc-interactive-loop): "?\ " -> "?\s".
16077
16078 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
16079 (font-lock-doc-face, font-lock-string-face)
16080 (font-lock-keywords-case-fold-search): Add defvars.
16081 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
16082
16083 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
16084 Don't pass X and Y (they are ignored anyway).
16085 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
16086 (mouse-delete-window): Make arguments optional.
16087
16088 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
16089 (caesar-translate-table, minor-modes, news-buffer-save)
16090 (news-group-name, news-minor-modes): Add defvars.
16091
16092 * emacs-lisp/lselect.el (mouse-highlight-priority)
16093 (x-lost-selection-functions, zmacs-regions):
16094 * emacs-lisp/pp.el (font-lock-verbose):
16095 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
16096 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
16097 (ses-mode-map):
16098 * emacs-lisp/tcover-unsafep.el (safe-functions):
16099 * international/mule-cmds.el (mac-system-coding-system)
16100 (mac-system-locale):
16101 * language/ethio-util.el (rmail-current-message)
16102 (rmail-message-vector):
16103 * language/thai-util.el (thai-auto-composition-mode):
16104 * mail/metamail.el (rmail-current-message, rmail-message-vector):
16105 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
16106 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
16107 (vm-primary-inbox, vm-spool-files):
16108 * mail/rmail.el (deleted-head, font-lock-fontified)
16109 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
16110 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
16111 (total-messages):
16112 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
16113 (rmail-summary-mode-map):
16114 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
16115 (rmail-last-label, rmail-last-multi-labels)
16116 (rmail-summary-vector, rmail-total-messages):
16117 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
16118 * mail/rmailsum.el (msgnum):
16119 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
16120 (rmail-current-message):
16121 * obsolete/fast-lock.el (font-lock-face-list):
16122 * obsolete/rnewspost.el (mail-reply-buffer):
16123 * obsolete/scribe.el (compile-command):
16124 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
16125
16126 2005-08-28 John Paul Wallington <jpw@gnu.org>
16127
16128 * ibuf-ext.el (ibuffer-auto-update-changed):
16129 Use `frame-or-buffer-changed-p' to check whether we need to update.
16130 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
16131 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
16132 as a `frame-or-buffer-changed-p' state vector instead.
16133
16134 2005-08-27 Romain Francoise <romain@orebokech.com>
16135
16136 * textmodes/makeinfo.el (makeinfo-compile):
16137 Use `compilation-start'. Set `next-error-function' according to
16138 `disable-errors'.
16139 (makeinfo-next-error): New function.
16140 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
16141 (makeinfo-buffer): Likewise.
16142
16143 * progmodes/compile.el (compilation-start): Add autoload cookie.
16144
16145 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
16146 * textmodes/sgml-mode.el: Likewise.
16147 * progmodes/python.el: Likewise.
16148
16149 2005-08-27 Eli Zaretskii <eliz@gnu.org>
16150
16151 * simple.el (blink-matching-paren-distance): Document the meaning
16152 of nil value, and allow to customize to nil.
16153
16154 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
16155 command.com, not command.exe.
16156
16157 2005-08-26 John Wiegley <johnw@newartisans.com>
16158
16159 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
16160 code around a bit so that an extraneous nil argument is not added
16161 to a command when no args are given.
16162
16163 * eshell/esh-arg.el (eshell-parse-double-quote): If a
16164 double-quoted argument resolves to nil, return it as an empty
16165 string rather than as nil. This made it impossible to pass "" to
16166 a shell script as a null string argument.
16167
16168 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
16169
16170 * outline.el (outline-invent-heading): New fun.
16171 (outline-promote, outline-demote): Use it.
16172 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
16173 (outline-end-of-subtree): Remove unused var `opoint'.
16174
16175 2005-08-26 David Reitter <david.reitter@gmail.com>
16176
16177 * menu-bar.el (truncate-lines, write-file, print-buffer)
16178 (ps-print-buffer-faces, ps-print-buffer, split-window):
16179 Disable menu items when the frame they refer to is invisible, or when
16180 they refer to a buffer and the minibuffer is selected.
16181
16182 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
16183
16184 * progmodes/flymake.el (flymake-highlight-err-lines):
16185 Use save-excursion around flymake-highlight-line to preserve point.
16186
16187 2005-08-26 Eli Zaretskii <eliz@gnu.org>
16188
16189 * progmodes/octave-mod.el: Change Author and Maintainer address.
16190 (octave-maintainer-address): Change Kurt's email address.
16191 * progmodes/octave-inf.el: Change Author and Maintainer address.
16192 * progmodes/octave-hlp.el: Change Author and Maintainer address.
16193
16194 2005-08-26 Kim F. Storm <storm@cua.dk>
16195
16196 * subr.el (version-list-<, version-list-<=, version-list-=):
16197 Rename from integer-list-*.
16198 (version-list-not-zero): Likewise. Fix while loop.
16199 (version=): Use version-list-= instead of string-equal.
16200
16201 2005-08-26 Richard M. Stallman <rms@gnu.org>
16202
16203 * outline.el (outline-promote): Try shortening the heading.
16204 As last resort, read the heading to use.
16205 (outline-demote): As last resort, read the heading to use.
16206
16207 2005-08-26 Romain Francoise <romain@orebokech.com>
16208
16209 * progmodes/compile.el (compilation-start): Doc fix.
16210
16211 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
16212 (antlr-font-lock-additional-keywords): Fix reference to
16213 `antlr-font-lock-literal-regexp' erroneously changed during the
16214 mass face rename.
16215 (antlr-run-tool): Use `compilation-start'.
16216
16217 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
16218 instead of the obsolete `compile-internal'.
16219
16220 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
16221
16222 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
16223 (number, original-date):
16224 * calendar/cal-china.el (date):
16225 * calendar/cal-coptic.el (date):
16226 * calendar/cal-french.el (date):
16227 * calendar/cal-hebrew.el (date, entry, number, original-date):
16228 * calendar/cal-islam.el (date, number, original-date):
16229 * calendar/cal-iso.el (date):
16230 * calendar/cal-julian.el (date):
16231 * calendar/cal-mayan.el (date):
16232 * calendar/cal-menu.el (date, event):
16233 * calendar/cal-persia.el (date):
16234 * calendar/lunar.el (date):
16235 * calendar/solar.el (date): Add defvars.
16236
16237 * emerge.el:
16238 * ibuffer.el:
16239 * info-xref.el:
16240 * obsolete/bg-mouse.el:
16241 * obsolete/sun-curs.el:
16242 * obsolete/swedish.el: Move the `defvar's to the top level.
16243
16244 * smerge-mode.el (smerge-refined-change): Add :group.
16245
16246 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
16247
16248 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
16249 (smerge-keep-n): Remove props.
16250 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
16251 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
16252 now that it's done in smerge-keep-n.
16253 (smerge-refined-change): New face.
16254 (smerge-refine-chopup-region, smerge-refine-highlight-change)
16255 (smerge-refine): New funs.
16256 (smerge-basic-map): Bind smerge-refine.
16257
16258 2005-08-25 Juri Linkov <juri@jurta.org>
16259
16260 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
16261 compilation-process-setup-function and compilation-disable-input
16262 in grep-mode instead of let-bindings in grep.
16263
16264 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
16265 Delete "Automatic File De/compression" (auto-compression-mode).
16266
16267 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
16268
16269 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
16270 Silence warning about non-existent variable.
16271
16272 2005-08-25 Richard M. Stallman <rms@gnu.org>
16273
16274 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
16275 Rename "Describe Key" to "Describe Key or Mouse Operation".
16276
16277 * mail/mailalias.el (build-mail-aliases): Delete comments
16278 from the contents before processing them.
16279
16280 * isearch.el (isearch-edit-string): Erase the Search prompt
16281 if user enters an empty string and there is no default.
16282
16283 * comint.el (comint-file-name-prefix): Add autoload.
16284
16285 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
16286
16287 * subr.el (play-sound): Rearrange to avoid warning.
16288
16289 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
16290
16291 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
16292 New hook.
16293 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
16294
16295 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
16296
16297 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
16298
16299 * custom.el (custom-theme-set-variables): Sort minor modes last.
16300
16301 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16302
16303 * subr.el (version-separator, version-regexp-alist): New vars used by
16304 version comparison funs.
16305 (integer-list-<, integer-list-=, integer-list-<=)
16306 (integer-list-not-zero): New funs for integer list comparison.
16307 (version-to-list, version=, version<, version<=): New funs for version
16308 comparison.
16309
16310 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
16311
16312 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
16313 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
16314 time to silence the byte-compiler.
16315
16316 * ibuffer.el (ibuffer-compile-make-eliding-form)
16317 (ibuffer-check-formats): Use `with-no-warnings' to hide references
16318 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
16319 so it's silly to get warnings for it).
16320 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
16321 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
16322 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
16323 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
16324 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
16325 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
16326 Defvar at compile time.
16327 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
16328 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
16329 Declare them before use.
16330
16331 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
16332 (info-xref-good, info-xref-bad): Defvar at compile time.
16333
16334 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
16335 Use `let*' instead of `let'.
16336
16337 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
16338 (*mouse-y*, menu, char): Defvar at compile time.
16339 (sc::menu): Declare it before use.
16340 (sc::pack-one-line): Use `let', not `let*'.
16341
16342 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
16343 (mail-send-hook): Defvar at compile time.
16344
16345 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
16346 Defvar at compile time.
16347
16348 * term/sun-mouse.el (current-global-mousemap)
16349 (current-local-mousemap): Declare them before use.
16350
16351 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
16352
16353 * bookmark.el (bookmark-after-jump-hook): New hook.
16354 (bookmark-jump): Run `bookmark-after-jump-hook'.
16355
16356 2005-08-23 Juri Linkov <juri@jurta.org>
16357
16358 * faces.el (minibuffer-prompt): Doc fix.
16359
16360 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
16361
16362 * progmodes/xscheme.el: Trivial changes to silence warnings.
16363 (xscheme-previous-mode, xscheme-previous-process-state):
16364 Add defvars.
16365 (xscheme-last-input-end, xscheme-process-command-line)
16366 (xscheme-process-name, xscheme-buffer-name)
16367 (xscheme-expressions-ring-max, xscheme-expressions-ring)
16368 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
16369 (xscheme-control-g-synchronization-p)
16370 (xscheme-control-g-disabled-p, xscheme-string-receiver)
16371 (default-xscheme-runlight, xscheme-runlight)
16372 (xscheme-runlight-string, xscheme-process-filter-state)
16373 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
16374 Move to beginning of file.
16375 (scheme-interaction-mode-commands-alist)
16376 (scheme-interaction-mode-map, scheme-debugger-mode-map):
16377 Declare them before use. Note: the initialization code for the
16378 variables has not been moved because it uses functions that reference
16379 the variables.
16380 (xscheme-control-g-message-string, xscheme-process-filter-alist)
16381 (xscheme-prompt-for-expression-map): Declare them before use.
16382 (scheme-debugger-mode-commands): "?\ " -> "?\s".
16383
16384 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
16385
16386 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
16387
16388 2005-08-22 Juri Linkov <juri@jurta.org>
16389
16390 * faces.el (set-face-underline): Delete this duplicate function
16391 and make an obsolete alias to set-face-underline-p.
16392 (set-face-underline-p): Use docstring of set-face-underline.
16393 (describe-face): Create hyperlink to parent face.
16394
16395 * info.el (Info-insert-dir): Use save-excursion around
16396 insert-buffer-substring.
16397 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
16398 (Info-escape-percent): Delete function.
16399 (Info-fontify-node): Replace Info-escape-percent by
16400 replace-regexp-in-string with REP arg set to lambda that
16401 duplicates `%' and preserves text properties.
16402
16403 * progmodes/compile.el (compilation-disable-input): Doc fix.
16404 (define-compilation-mode): Doc fix and refill.
16405 (kill-compilation): Use `mode-name' in the error message.
16406 (compilation-find-file): Use `compilation-error' in the
16407 read-file-name's prompt.
16408
16409 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
16410
16411 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
16412 (smerge-auto-leave): Make undo re-enable the mode.
16413 (debug-ignored-errors): Add the user-error of impossible resolution.
16414 (smerge-resolve): Move things around a bit, in preparation for later.
16415 (smerge-diff): Don't fail if the buffer has no associated file.
16416 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
16417 (smerge-conflict-overlay): New function.
16418 (smerge-match-conflict): Don't add text properties here.
16419 (smerge-find-conflict): Instead, add an overlay here.
16420 Also check for the case where we're inside a conflict already, so as to
16421 obviate the need for font-lock-multiline, which is unbearably slow with
16422 large conflicts and ciomplex font-lock patterns.
16423 (smerge-remove-props): Remove overlay rather than text-properties.
16424 (smerge-mode): Don't set font-lock-multiline.
16425 Remove overlays when turned off.
16426
16427 2005-08-21 Kim F. Storm <storm@cua.dk>
16428
16429 * ido.el (ido-ignore-item-p): Use save-match-data.
16430 Bind case-fold-search to ido-case-fold locally.
16431
16432 2005-08-20 Richard M. Stallman <rms@gnu.org>
16433
16434 * files.el (normal-mode): If font lock is on, turn it off and on.
16435
16436 * subr.el (replace-regexp-in-string): Doc fix.
16437
16438 * startup.el (command-line-1): Don't suppress startup screen
16439 due to existing processes.
16440
16441 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
16442
16443 * progmodes/compile.el (compilation-disable-input): Default to nil.
16444
16445 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
16446
16447 * progmodes/compile.el (compilation-disable-input): New defcustom.
16448 (compilation-start): If compilation-disable-input is non-nil, send
16449 EOF to the compilation process.
16450
16451 2005-08-20 Eli Zaretskii <eliz@gnu.org>
16452
16453 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
16454 Run the argument of tex-shell-cd-command through
16455 convert-standard-filename, to get the correct style of slashes on
16456 Windows, and enclose the result in quotes, in case the file name
16457 includes whitespace or other special characters.
16458
16459 2005-08-19 Andreas Schwab <schwab@suse.de>
16460
16461 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
16462 process.
16463
16464 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
16465
16466 * cus-start.el (minibuffer-prompt-properties): Correct typo.
16467
16468 2005-08-18 Kim F. Storm <storm@cua.dk>
16469
16470 * scroll-lock.el: Fix errors due to incorrect line wrapping.
16471
16472 2005-08-18 Richard M. Stallman <rms@gnu.org>
16473
16474 * scroll-lock.el: New file.
16475
16476 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
16477
16478 * dired.el (dired-move-to-end-of-filename):
16479 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
16480
16481 2005-08-18 Kim F. Storm <storm@cua.dk>
16482
16483 * ido.el (ido-everywhere): Fix defcustom :set function to disable
16484 rather than toggle mode when custom value is nil.
16485 (ido-everywhere): Fix defun doc string.
16486
16487 2005-08-17 Richard M. Stallman <rms@gnu.org>
16488
16489 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
16490 as tag instead of "Inviolable".
16491
16492 2005-08-17 Kim F. Storm <storm@cua.dk>
16493
16494 * windmove.el (windmove-coordinates-of-position): Remove.
16495 (windmove-coordinates-of-window-position): Remove.
16496 (windmove-reference-loc): Use posn-at-point instead.
16497
16498 * subr.el (insert-for-yank-1): Doc fix.
16499
16500 * ido.el (ido-enter-matching-directory): Rename from
16501 ido-enter-single-matching-directory. Change `slash' choice to
16502 `only'. Add `first' choice.
16503 (ido-exhibit): Adapt to above changes.
16504
16505 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
16506
16507 * Makefile.in: Expand comment about building loaddefs.el.
16508
16509 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
16510
16511 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
16512 Comment use of defadvice.
16513
16514 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
16515
16516 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
16517
16518 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
16519 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
16520 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
16521 * progmodes/idlw-shell.el, progmodes/ld-script.el,
16522 * progmodes/which-func.el, ruler-mode.el, strokes.el,
16523 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
16524 for backward compatibility for faces that did not appear in the
16525 previous Emacs release.
16526
16527 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
16528
16529 2005-08-15 Kim F. Storm <storm@cua.dk>
16530
16531 * emulation/cua-base.el (cua-delete-region): Return t if
16532 deleted region was non-empty.
16533 (cua-replace-region): Inhibit overwrite-mode for
16534 self-insert-command if replaced region was non-empty.
16535 (cua--explicit-region-start, cua--status-string): Make them
16536 buffer-local at top-level...
16537 (cua-mode): ...rather than when mode is enabled.
16538
16539 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
16540
16541 * progmodes/vhdl-mode.el (vhdl-emacs-21):
16542 Set t for Emacs 21, 22, and so on.
16543
16544 2005-08-15 David Ponce <david@dponce.com>
16545
16546 * tree-widget.el: Update Commentary header.
16547 (tree-widget-theme): Doc fix.
16548 (tree-widget-space-width): New option.
16549 (tree-widget-image-properties): Look up in the default theme too.
16550 (tree-widget--cursors): Only for images with arrow pointer shape.
16551 (tree-widget-lookup-image): Pointer shape is hand by default.
16552 (tree-widget-icon): Rename generic icon widget from
16553 `tree-widget-control'.
16554 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
16555 derive from `tree-widget-icon'.
16556 (tree-widget-handle): Improve default look and feel of the text
16557 representation.
16558 (tree-widget): Rename :*-control properties to :*-icon properties.
16559 Add :action and :help-echo properties.
16560 (tree-widget-after-toggle-functions): Move.
16561 (tree-widget-close-node, tree-widget-open-node): Remove.
16562 (tree-widget-before-create-icon-functions): New hook.
16563 (tree-widget-value-create): Update to allow customization of icons
16564 and nodes at run-time via that new hook.
16565 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
16566 (tree-widget-icon-action, tree-widget-icon-help-echo)
16567 (tree-widget-action, tree-widget-help-echo): New functions.
16568
16569 2005-08-15 Kim F. Storm <storm@cua.dk>
16570
16571 * ido.el (ido-buffer-internal): Use with-no-warnings.
16572 (ido-make-merged-file-list): Use while-no-input.
16573
16574 2005-08-15 Richard M. Stallman <rms@gnu.org>
16575
16576 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
16577 (flyspell-large-region): Fix doc and custom type.
16578
16579 2005-08-14 Richard M. Stallman <rms@gnu.org>
16580
16581 * files.el (interpreter-mode-alist): Doc fix.
16582
16583 * mail/rmail.el (rmail-nonignored-headers): New variable.
16584 (rmail-clear-headers): Use it.
16585 (rmail-reply): Better handling of mail-followup-to header.
16586
16587 * progmodes/sh-script.el (sh-font-lock-keywords-var):
16588 Rename variable from sh-font-lock-keywords. In the `shell' entry,
16589 don't try to refer to executable-font-lock-keywords.
16590 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
16591 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
16592 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
16593 (sh-mode): Set comment-start-skip, local-abbrev-table,
16594 imenu-case-fold-search.
16595 (sh-set-shell): Don't set them here.
16596 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
16597 Don't cache the results in the original alist; don't ever modify
16598 that alist.
16599
16600 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
16601
16602 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
16603 empty.
16604
16605 2005-08-15 Andreas Schwab <schwab@suse.de>
16606
16607 * desktop.el: Put autoload cookie at risky-local-variable declarations.
16608
16609 * dired.el, info.el, mail/rmail.el: Revert last change.
16610
16611 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
16612
16613 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
16614 modification in `eval-after-load' form.
16615 * info.el: Likewise.
16616 * mail/rmail.el: Likewise.
16617
16618 2005-08-14 Juri Linkov <juri@jurta.org>
16619
16620 * progmodes/compile.el (compilation-mode-font-lock-keywords):
16621 Remove highlighting of "Compilation started". Highlight only
16622 the word "finished" in "Compilation finished". Add highlighting
16623 of "interrupt", "killed", "terminated" and the exit code.
16624 (compilation-start): Add newline after header. Use exactly the
16625 same time stamp format as the finishing message.
16626 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
16627
16628 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
16629 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
16630 Add highlighting of "interrupt", "killed", "terminated".
16631
16632 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
16633 enabled and the current command is self-insert-command, call it
16634 explicitly with overwrite-mode bound to nil, to not allow it
16635 to delete the character after the selected region.
16636
16637 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
16638
16639 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
16640 move-end-of-line, end-of-line, and beginning-of-line to the list
16641 of commands after which the echo area is updated.
16642
16643 2005-08-12 Eli Zaretskii <eliz@gnu.org>
16644
16645 * cus-edit.el (custom-save-all, custom-save-delete):
16646 Bind recentf-exclude to exclude custom-file.
16647
16648 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
16649
16650 * mail/rmailsum.el (rmail-summary-end-of-message): New command
16651 to go to the bottom of the mail message. Added to
16652 `rmail-summary-mode-map' with key "/".
16653 (rmail-summary-show-message): New (internal) function for use by
16654 both `rmail-summary-beginning/end-of-message'.
16655 (rmail-summary-beginning-of-message): Change to use
16656 rmail-summary-show-message.
16657
16658 * mail/rmail.el (rmail-end-of-message): New command to go to the
16659 end of the current message. Added to `rmail-mode-map' with key "/".
16660 (rmail-beginning-of-message): Fix to work as documented.
16661 (rmail-mode): Change documentation.
16662
16663 * progmodes/compile.el (compilation-start): Add the line
16664 "Compilation started" with compilation start time.
16665 (compilation-mode-font-lock-keywords): Add `started' to keywords.
16666
16667 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
16668
16669 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
16670 of menu items.
16671
16672 2005-08-11 Richard M. Stallman <rms@gnu.org>
16673
16674 * simple.el (pop-global-mark): Reverse test of widen-automatically.
16675
16676 * battery.el (battery-status-function): Don't use ignore-errors.
16677
16678 2005-08-11 Lute Kamstra <lute@gnu.org>
16679
16680 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
16681 define-obsolete-variable-alias.
16682
16683 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
16684
16685 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
16686 (ange-ftp-send-cmd): Revert last change, and expand
16687 the comment explaining the problem.
16688
16689 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
16690
16691 * ldefs-boot.el: Update.
16692
16693 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
16694 item to "Time, Load and Mail". Change help echo text.
16695
16696 * time.el (display-time-use-mail-icon, display-time-format)
16697 (display-time-string-forms): Shorten first line of docstrings.
16698
16699 2005-08-10 Lars Hansen <larsh@soem.dk>
16700
16701 * desktop.el (desktop-buffer-mode-handlers):
16702 Make non-customizable. Add autoload cookie. Change initial value to
16703 nil; add elements in respective modules instead. Fix doc string.
16704 (desktop-load-file): New function.
16705 (desktop-minor-mode-handlers): New autoloaded variable.
16706 (desktop-create-buffer): Call minor mode handlers.
16707 Use desktop-load-file to load major and minor mode modules prior to
16708 checking for a handler.
16709 (desktop-save): Don't add nil to desktop-minor-modes for minor
16710 modes with nil function in desktop-minor-mode-table. Don't delete
16711 desktop file before rewriting it.
16712 (desktop-locals-to-save): Add autoload cookie. Don't make
16713 automatically buffer-local. Add variables column-number-mode,
16714 size-indication-mode, indent-tabs-mode,
16715 indicate-buffer-boundaries, indicate-empty-lines and
16716 show-trailing-whitespace.
16717 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
16718 regexps. Don't use desktop-clear-preserve-buffers-regexp.
16719 (desktop-clear-preserve-buffers-regexp): Delete.
16720 (desktop-clear-preserve-buffers): Update initial value and docstring.
16721 (desktop-save-buffer): Fix doc string.
16722
16723 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
16724 (hilit-chg-desktop-restore): New function.
16725 (highlight-changes-mode): Add highlight-changes-mode to
16726 desktop-locals-to-save.
16727
16728 * dired.el: Add handler to desktop-buffer-mode-handlers.
16729 (dired-restore-desktop-buffer): Remove autoload cookie.
16730 (dired-mode): Add autoload cookie.
16731
16732 * info.el: Add handler to desktop-buffer-mode-handlers.
16733 (Info-restore-desktop-buffer): Remove autoload cookie.
16734 (Info-mode): Add autoload cookie.
16735
16736 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
16737 (mh-restore-desktop-buffer): Remove autoload cookie.
16738 (mh-folder-mode): Add autoload cookie.
16739
16740 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
16741 (rmail-restore-desktop-buffer): Remove autoload cookie.
16742
16743 2005-08-11 Masatake YAMATO <jet@gyve.org>
16744
16745 * hexl.el (hexl-address-region):
16746 (hexl-ascii-region, hexl-font-lock-keywords):
16747 (hexl-highlight-line-range): Use the term "region"
16748 instead of "area" for consistency with the other symbols
16749 defined in hexl.el.
16750
16751 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
16752
16753 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
16754 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
16755 out by Juri Linkov). Add `display-battery-mode'.
16756
16757 2005-08-09 Juri Linkov <juri@jurta.org>
16758
16759 * progmodes/compile.el (compilation-mode-font-lock-keywords):
16760 Remove `-text' from face variable names.
16761 (compilation-error-file-name, compilation-warning-file-name)
16762 (compilation-info-file-name): Delete faces.
16763 (compilation-line-number, compilation-column-number):
16764 Remove face underlining.
16765 (compilation-message-face): Set to `underline' value by default.
16766 (compilation-error-face, compilation-warning-face)
16767 (compilation-info-face): Remove `-file-name' from face names.
16768 (compilation-error-text-face, compilation-warning-text-face)
16769 (compilation-info-text-face): Delete face variables.
16770 (compilation-text-face): Delete function.
16771
16772 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
16773 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
16774 (grep-error-face): Set to `compilation-error' instead of
16775 `compilation-error-face' (which is redefined to `grep-hit-face' in
16776 grep buffers).
16777 (grep-mode-font-lock-keywords): Remove `-text' from face variable
16778 names. Use `grep-error-face' instead of `compilation-error-text-face'.
16779
16780 * dired-aux.el (dired-do-query-replace-regexp):
16781 Use `query-replace-read-args'.
16782
16783 * replace.el (query-replace-read-from, query-replace-read-to)
16784 (query-replace-read-args): Rename arg `string' to `prompt'.
16785
16786 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
16787
16788 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
16789
16790 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
16791 uploading files.
16792 (ange-ftp-canonize-filename): Handle file names beginning with ~
16793 correctly.
16794
16795 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
16796
16797 * textmodes/fill.el (canonically-space-region)
16798 (fill-context-prefix, fill-french-nobreak-p)
16799 (fill-delete-newlines, fill-comment-paragraph)
16800 (justify-current-line): "?\ " -> "?\s".
16801
16802 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
16803
16804 * textmodes/fill.el (fill-nonuniform-paragraphs):
16805 Improve argument/docstring consistency.
16806
16807 2005-08-09 Richard M. Stallman <rms@gnu.org>
16808
16809 * textmodes/ispell.el (ispell-word): More fboundp checks.
16810
16811 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
16812 (find-file-noselect-1): Call it here, only if RAWFILE.
16813 (normal-mode): Always set some major mode.
16814 (save-some-buffers-action-alist): Change some explanation strings.
16815 (file-name-non-special): In the `quote' method, use unwind-protect.
16816
16817 2005-08-09 Magnus Henoch <mange@freemail.hu>
16818
16819 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
16820 (ispell-have-aspell-dictionaries): New variable.
16821 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
16822 (ispell-get-aspell-config-value): New function.
16823 (ispell-aspell-find-dictionary): New function.
16824 (ispell-aspell-add-aliases): New function.
16825 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
16826 appropriate. Don't look for ispell dictionaries if we use aspell.
16827 (ispell-menu-map): Don't build a submenu of dictionaries.
16828
16829 2005-08-09 Richard M. Stallman <rms@gnu.org>
16830
16831 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
16832 (sql-read-passwd): Use read-passwd.
16833
16834 * progmodes/idlw-toolbar.el (idlwave-toolbar)
16835 (idlwave-toolbar-is-possible): Add defvars.
16836
16837 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
16838 Avoid warnings.
16839
16840 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
16841 (idlwave-system-class-info, idlwave-executive-commands-alist):
16842 Use defvar.
16843
16844 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
16845
16846 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
16847 Avoid warnings.
16848
16849 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
16850 and content-type: headers.
16851
16852 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
16853
16854 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
16855 and rename some of them to be more self-explanatory.
16856
16857 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
16858
16859 * startup.el (command-line-1): Implement -scriptload.
16860
16861 * replace.el (occur-engine): Initial *Occur* output not undoable.
16862
16863 * menu-bar.el (menu-bar-file-menu): Rename some menu items
16864 and improve help strings.
16865
16866 * isearch.el (isearch-repeat): When changing direction,
16867 mark search successful.
16868
16869 * ediff-init.el: Use (featurep 'xemacs).
16870
16871 * comint.el (send-invisible): Identify buffer, if not selected.
16872
16873 * align.el: Delete autoload for c-guess-basic-syntax.
16874
16875 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
16876
16877 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
16878 Improve argument/docstring consistency. Doc fixes.
16879 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
16880 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
16881 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
16882 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
16883 (r2bv-organization, r2bv-pages, r2bv-primary-author)
16884 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
16885 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
16886 Defvar at compile time.
16887
16888 2005-08-09 Juri Linkov <juri@jurta.org>
16889
16890 * info.el: Replace `info' with upper-case `Info' where appropriate.
16891 (info-title-1, info-title-2, info-title-3, info-title-4)
16892 (info-menu-header): Move up face definitions.
16893 (info-menu-star): Rename from `info-menu-5'.
16894 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
16895 (Info-fontify-visited-nodes): Fix docstring.
16896 (Info-hide-note-references): Fix docstring.
16897 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
16898 menu items in the same way as on cross-references.
16899 (info-apropos): Fix sorting order and formatting to be like in the
16900 stand-alone Info browser. Display error messages for 1 sec.
16901 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
16902 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
16903 from the menu bar.
16904 (Info-insert-dir): Restore point after calling
16905 `insert-buffer-substring'.
16906
16907 2005-08-08 Richard M. Stallman <rms@gnu.org>
16908
16909 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
16910 (recompute-lucid-menubar): Add defvars.
16911
16912 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
16913
16914 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
16915
16916 * net/net-utils.el (run-dig): Rename from `dig'.
16917
16918 * play/gametree.el (gametree-mode): Use make-local-variable,
16919 not make-variable-buffer-local.
16920
16921 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
16922
16923 * ansi-color.el (ansi-color-make-extent)
16924 (ansi-color-set-extent-face): Use fboundp, not functionp.
16925
16926 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
16927 not make-variable-buffer-local.
16928
16929 * bookmark.el (Info-current-file): Add defvar.
16930 (bookmark-jump-noselect): Use with-no-warnings.
16931
16932 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
16933
16934 * ebuff-menu.el (Helper-return-blurb): Add defvar.
16935
16936 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
16937
16938 * find-file.el (ada-procedure-start-regexp)
16939 (ada-package-start-regexp): Add defvars.
16940
16941 * info.el (Info-insert-dir): Use insert-buffer-substring.
16942
16943 * xml.el (xml-att-def-re): Add defvar.
16944
16945 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
16946 calling convention.
16947
16948 * subr.el (while-no-input): Return t if there is input.
16949
16950 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
16951
16952 * cus-start.el (all): Add `overflow-newline-into-fringe'.
16953
16954 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
16955
16956 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
16957 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
16958
16959 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
16960
16961 * cmuscheme.el (scheme-start-file): Replace reference to
16962 `user-emacs-directory' by "~/.emacs.d/".
16963
16964 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
16965
16966 * info.el (Info-dir-remove-duplicates): Avoid case folding
16967 in loop; instead, keep downcased strings for comparison.
16968 Suggested by Helmut Eller.
16969
16970 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
16971
16972 Sync with Tramp 2.0.50.
16973
16974 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
16975 XEmacs case; not necessary anymore.
16976 (tramp-user-regexp): Allow "@" as part of user name.
16977 (tramp-handle-set-visited-file-modtime)
16978 (tramp-handle-insert-file-contents)
16979 (tramp-handle-write-region): No special handling for
16980 `last-coding-system-used, because this is done in
16981 `tramp-accept-process-output' now.
16982 (tramp-accept-process-output): New defun.
16983 (tramp-process-one-action, tramp-process-one-multi-action)
16984 (tramp-wait-for-regexp, tramp-wait-for-output)
16985 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
16986 Howells <dhowells@redhat.com>.
16987 (clear-visited-file-modtime): Defadvice removed. The check for
16988 unset buffer's modtime does not need to be based on
16989 `tramp-buffer-file-attributes'. Suggested by RMS.
16990 (tramp-message): Insert "\n" if not being at beginning of line.
16991 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
16992 sequence with same logic.
16993 (tramp-completion-handle-expand-file-name): Discard call of
16994 `tramp-drop-volume-letter'. It is not necessary, and there have
16995 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
16996 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
16997 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
16998 should always be visible.
16999 (tramp-handle-insert-directory, tramp-setup-complete)
17000 (tramp-set-process-query-on-exit-flag)
17001 (tramp-append-tramp-buffers): Pacify byte-compiler.
17002 (tramp-bug): Delete non-existing variables from list.
17003 Apply `tramp-load-report-modules' as pre-hook.
17004 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
17005 `shell-prompt-pattern' because of non-7bit characters.
17006 Reported by Sebastian Luque <sluque@mun.ca>.
17007 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
17008 (tramp-match-string-list): Remove function.
17009 (tramp-wait-for-regexp): Remove call of that function.
17010 Suggested by Kim F. Storm <storm@cua.dk>.
17011 (tramp-set-auto-save-file-modes): Use octal integer code #o600
17012 instead of octal character code ?\600. The latter resulted in a
17013 syntax error with XEmacs.
17014
17015 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
17016 XEmacs case; not necessary anymore.
17017 (tramp-smb-handle-write-region): No special handling for
17018 `last-coding-system-used, because this is done in
17019 `tramp-accept-process-output' now.
17020 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
17021
17022 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
17023
17024 * wid-edit.el (widget-choice-value-create):
17025 Unconditionally respect user choice. Set :explicit-choice back to nil
17026 when no longer needed.
17027 (widget-choice-action): Unconditionally respect user choice.
17028 Eliminate :explicit-choice-value.
17029
17030 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
17031
17032 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
17033 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
17034 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
17035 running new function `toggle-indicate-empty-lines'.
17036 Rename "Customize" item to "Customize fringe".
17037 Rename "Indicators" item to "Buffer boundaries" and change help echo.
17038 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
17039 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
17040 Delete "Empty lines only" item.
17041 (menu-bar-showhide-fringe-ind-customize): New function.
17042 (menu-bar-showhide-fringe-ind-mixed)
17043 (menu-bar-showhide-fringe-ind-box)
17044 (menu-bar-showhide-fringe-ind-right)
17045 (menu-bar-showhide-fringe-ind-left)
17046 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
17047 instead of `fringe-indicators'.
17048
17049 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
17050
17051 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
17052 Change the date of last update.
17053
17054 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
17055
17056 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
17057 (viper-exec-yank, viper-put-back): Don't display modification msg
17058 if in the minibuffer.
17059
17060 * viper-init.el (viper-replace-overlay-cursor-color)
17061 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
17062 Make variables frame local.
17063
17064 * viper-util.el (viper-append-filter-alist): Use append instead of
17065 nconc.
17066
17067 * viper.el (viper-vi-state-mode-list)
17068 (viper-emacs-state-mode-list): Move help-mode and
17069 completion-list-mode from the first list to the second.
17070 (viper-mode): Docstring.
17071 (viper-go-away, viper-non-hook-settings): Don't localize
17072 minor-mode-alist in newer Emacsen. Add advice to
17073 set-cursor-color. Don't bind "\C-c\\".
17074
17075 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
17076
17077 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
17078 (scheme-macro-expand-command): New user options.
17079 (scheme-trace-procedure, scheme-expand-current-form): New commands.
17080 (scheme-form-at-point, scheme-start-file)
17081 (scheme-interactively-start-process): New functions.
17082 (scheme-get-process): New function, extracted from `scheme-proc'.
17083 (run-scheme): Call `scheme-start-file' to get start file, and pass
17084 it to `make-comint'.
17085 (switch-to-scheme, scheme-proc):
17086 Call `scheme-interactively-start-process' if no Scheme buffer/process
17087 is available.
17088
17089 2005-08-06 Juri Linkov <juri@jurta.org>
17090
17091 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17092 Use `compilation-text-face', `compilation-info-text-face' and
17093 `compilation-error-text-face' instead of `font-lock-keyword-face'.
17094 (compilation-error): New face.
17095 (compilation-error-file-name): Inherit from
17096 `compilation-error' instead of `font-lock-warning-face'.
17097 (compilation-warning-file-name): Inherit from
17098 `compilation-warning' instead of `font-lock-warning-face'.
17099 (compilation-info, compilation-error-file-name)
17100 (compilation-warning-file-name, compilation-info-file-name)
17101 (compilation-line-number, compilation-column-number): Doc fix.
17102 (compilation-error-text-face, compilation-warning-text-face)
17103 (compilation-info-text-face): New face variables.
17104 (compilation-line-face, compilation-column-face)
17105 (compilation-enter-directory-face)
17106 (compilation-leave-directory-face): Doc fix.
17107 (compilation-text-face): New function.
17108
17109 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
17110 instead of 1 to display binary file names as info file links.
17111 (grep-error-face): Use `compilation-error-face' instead of
17112 `font-lock-keyword-face'.
17113 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
17114 and `compilation-warning-text-face' instead of
17115 `font-lock-keyword-face'. Use `compilation-error-text-face'
17116 instead of `grep-error-face'.
17117
17118 2005-08-05 Kenichi Handa <handa@m17n.org>
17119
17120 * international/code-pages.el: Add autoload cookies for all coding
17121 systems.
17122
17123 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
17124
17125 * cus-start.el (all): Put undo.c where it alphabetically belongs.
17126
17127 2005-08-04 Juri Linkov <juri@jurta.org>
17128
17129 * progmodes/compile.el (compilation-mode-map):
17130 * progmodes/grep.el (grep-mode-map):
17131 Bind TAB to `compilation-next-error' and [backtab] to
17132 `compilation-previous-error'.
17133
17134 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
17135 matching line numbers, column numbers and their ranges with regexp
17136 matching only line numbers.
17137 (grep-context-face): New face variable.
17138 (grep-mode-font-lock-keywords): Use it.
17139
17140 * faces.el (read-face-name): Delete duplicate faces.
17141
17142 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
17143
17144 * thumbs.el (thumbs-find-image): Don't make variables
17145 automatically buffer local.
17146 (thumbs-current-tmp-filename, thumbs-current-image-filename)
17147 (thumbs-image-num): Make automatically buffer local.
17148 (thumbs-show-thumbs-list): Use `make-local-variable', not
17149 `make-variable-buffer-local'.
17150 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
17151
17152 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
17153 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
17154 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
17155 (bother, bye, canyou, chatlst, continue, deathlst, describe)
17156 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
17157 (feelings-about, foullst, found, hello, history, howareyoulst)
17158 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
17159 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
17160 (neglst, obj, object, owner, please, problems, qlist)
17161 (random-adjective, relation, remlst, repetitive-shortness)
17162 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
17163 (shortlst, something, sportslst, stallmanlst, states, subj)
17164 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
17165 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
17166 Defvar at compile time.
17167
17168 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
17169 not `make-variable-buffer-local'.
17170
17171 2005-08-02 Kim F. Storm <storm@cua.dk>
17172
17173 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
17174 rectangle overlay in selected window.
17175
17176 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
17177
17178 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
17179 instead of display group. Make `indicate-buffer-boundaries'
17180 customizable through Custom.
17181
17182 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
17183
17184 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
17185 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
17186 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
17187 (gdb-put-string): Fix typos in docstrings.
17188
17189 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
17190
17191 Update copyright notices of files in progmodes directory for
17192 release of Emacs 22.1.
17193
17194 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
17195
17196 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
17197 Don't barf if the GUD buffer has been killed.
17198
17199 2005-08-01 Kim F. Storm <storm@cua.dk>
17200
17201 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
17202
17203 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
17204
17205 * simple.el (next-error-follow-minor-mode):
17206 make-variable-buffer-local -> make-local-variable.
17207
17208 * emacs-lisp/cl-extra.el: Require CL also when compiling.
17209
17210 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
17211 (byte-compile-form-make-variable-buffer-local): New functions to warn
17212 about misuses of make-variable-buffer-local where make-local-variable
17213 was meant.
17214
17215 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
17216
17217 * bs.el (bs-attributes-list): Doc fix.
17218 (bs): Update url-link.
17219
17220 * desktop.el (desktop-save-buffer): Fix typos in docstring.
17221 (desktop-load-default): Simplify.
17222
17223 * ibuffer.el (ibuffer-columnize-and-insert-list)
17224 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
17225 (ibuffer-unmark-all, ibuffer-toggle-marks)
17226 (ibuffer-unmark-forward, ibuffer-unmark-backward)
17227 (ibuffer-compile-make-format-form, ibuffer-format-column)
17228 (ibuffer-current-buffers-with-marks)
17229 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
17230 (ibuffer): Doc fix.
17231 (ibuffer-mode): Fix typo in docstring.
17232 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
17233 with `define-obsolete-variable-alias'.
17234 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
17235
17236 2005-07-29 Kenichi Handa <handa@m17n.org>
17237
17238 * international/mule-cmds.el (select-message-coding-system):
17239 Be sure to use LF for end-of-line. If no coding system is decided,
17240 return iso-8859-1-unix.
17241
17242 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
17243
17244 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
17245 (ange-ftp-pending-error-line): New vars.
17246 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
17247 to handle the non-fatal no-route-to-host messages.
17248 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
17249
17250 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
17251
17252 * isearch.el (isearch-mode-map, isearch-other-meta-char)
17253 (isearch-quote-char, isearch-printing-char)
17254 (isearch-text-char-description): "?\ " -> "?\s".
17255 (isearch-lazy-highlight-cleanup)
17256 (isearch-lazy-highlight-initial-delay)
17257 (isearch-lazy-highlight-interval)
17258 (isearch-lazy-highlight-max-at-a-time)
17259 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
17260 Declare with define-obsolete-*-alias macros.
17261 (isearch-forward): Fix typo in docstring.
17262 (search-invisible, search-ring-yank-pointer)
17263 (regexp-search-ring-yank-pointer): Doc fixes.
17264
17265 * recentf.el (recentf-menu-append-commands-p): Declare with
17266 `define-obsolete-variable-alias'.
17267 (recentf-max-saved-items, recentf-menu-filter)
17268 (recentf-arrange-by-rule-subfilter): Doc fixes.
17269 (recentf-menu-append-commands-flag)
17270 (recentf-initialize-file-name-history, recentf-expand-file-name)
17271 (recentf-clear-data): Fix typos in docstrings.
17272
17273 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
17274
17275 * progmodes/gdb-ui.el: Smarten comments.
17276 (gdb-info-breakpoints-custom): Use nowarn when finding file.
17277
17278 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
17279
17280 * term/apollo.el (terminal-init-apollo): New function containing
17281 all former top level forms in the file.
17282 * term/bobcat.el (terminal-init-bobcat):
17283 * term/cygwin.el (terminal-init-cygwin):
17284 * term/iris-ansi.el (terminal-init-iris-ansi):
17285 * term/linux.el (terminal-init-linux):
17286 * term/news.el (terminal-init-news):
17287 * term/rxvt.el (terminal-init-rxvt):
17288 * term/sun.el (terminal-init-sun):
17289 * term/tvi970.el (terminal-init-tvi970):
17290 * term/vt100.el (terminal-init-vt100):
17291 * term/vt102.el (terminal-init-vt102):
17292 * term/vt125.el (terminal-init-vt125):
17293 * term/vt200.el (terminal-init-vt200):
17294 * term/vt201.el (terminal-init-vt201):
17295 * term/vt220.el (terminal-init-vt220):
17296 * term/vt240.el (terminal-init-vt240):
17297 * term/vt300.el (terminal-init-vt300):
17298 * term/vt320.el (terminal-init-vt320):
17299 * term/vt400.el (terminal-init-vt400):
17300 * term/vt420.el (terminal-init-vt420):
17301 * term/wyse50.el (terminal-init-wyse50):
17302 * term/xterm.el (terminal-init-xterm): Likewise.
17303
17304 * term/README: Describe the terminal-init-* functionality.
17305
17306 * startup.el (command-line): After loading the terminal initialization
17307 file call the corresponding terminal initialization function.
17308
17309 2005-07-27 Kenichi Handa <handa@m17n.org>
17310
17311 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
17312 negative.
17313
17314 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
17315 (ps-mule-composition-prologue): Fix for the case that
17316 RelativeCompose is false.
17317
17318 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
17319
17320 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
17321
17322 * descr-text.el (describe-char): Handle the case where the list of
17323 chars is displayed in a separate frame.
17324 Be a bit more discriminating when looking for the char.
17325
17326 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
17327
17328 * bookmark.el (bookmark-automatically-show-annotations)
17329 (bookmark-read-annotation-text-func): Doc fixes.
17330 (bookmark-save): Improve argument/docstring consistency.
17331 (bookmark-get-bookmark, bookmark-get-bookmark-record)
17332 (bookmark-alist-from-buffer)
17333 (bookmark-upgrade-file-format-from-0)
17334 (bookmark-grok-file-format-version)
17335 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
17336 (bookmark-read-annotation-mode)
17337 (bookmark-insert-current-bookmark, bookmark-jump)
17338 (bookmark-exit-hook): Fix typos in docstrings.
17339 (bookmark-exit-hooks): Define as obsolete alias.
17340 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
17341 not `bookmark-exit-hooks'. Fix docstring.
17342 (bookmark-bmenu-select): "?\ " -> "?\s".
17343
17344 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
17345
17346 * startup.el (command-line): Fix typo.
17347
17348 2005-07-24 Richard M. Stallman <rms@gnu.org>
17349
17350 * tooltip.el (tooltip-mode): Test emacs-basic-display,
17351 not emacs-quick-startup.
17352
17353 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
17354
17355 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
17356 (reb-next-match, reb-show-subexp): Use `with-selected-window'
17357 instead of `reb-with-current-window'.
17358 (reb-prev-match): Likewise. Also, don't move left if the search
17359 was unsuccessful.
17360 (reb-initialize-buffer): New function.
17361 (re-builder, reb-change-syntax): Use it.
17362
17363 * man.el (Man-goto-page): Make second argument NOERROR optional.
17364
17365 2005-07-23 Richard M. Stallman <rms@gnu.org>
17366
17367 * man.el (Man-bgproc-sentinel): Check here for failure to find
17368 any man page in the output, and report the error here.
17369 (Man-arguments): Make it permanent local.
17370 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
17371 (Man-mode): Pass t for NOERROR.
17372
17373 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
17374 (grep-mode-font-lock-keywords):
17375 Don't use compilation-...-face for messages that are not file names.
17376
17377 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17378 Don't use compilation-...-face for messages that are not file names.
17379
17380 2005-07-22 Juri Linkov <juri@jurta.org>
17381
17382 * startup.el (normal-splash-screen): Update menu name.
17383
17384 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
17385
17386 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
17387
17388 * term/xterm.el: Load term/rxvt if the terminal is actually an
17389 rxvt terminal.
17390 (xterm-rxvt-set-background-mode): Remove, not used anymore.
17391
17392 * term/rxvt.el (function-key-map): Use substitute-key-definition
17393 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
17394
17395 * term/cygwin.el: New file.
17396
17397 2005-07-22 Kim F. Storm <storm@cua.dk>
17398
17399 * image-file.el (insert-image-file, image-file-yank-handler):
17400 Fix last change to maintain a (unique) yank-handler on yanked images.
17401
17402 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
17403
17404 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
17405 of the file size (as in "177B" for 177 bytes). This happens with
17406 "ls -lh" on FreeBSD.
17407
17408 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
17409
17410 * hilit-chg.el (highlight-changes-global-initial-state)
17411 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
17412 (hilit-chg-fixup, highlight-changes-mode):
17413 Fix typos in docstrings.
17414 (highlight-changes-global-modes, highlight-changes-rotate-faces):
17415 Doc fixes.
17416
17417 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
17418
17419 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
17420 mode function using `eval-after-load'.
17421
17422 2005-07-21 Kim F. Storm <storm@cua.dk>
17423
17424 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
17425 included when reporting an emacs crash, and tell about the DEBUG file.
17426
17427 * image-file.el (insert-image-file): Add yank-handler.
17428 (image-file-yank-handler): Yank handler to make unique copies of
17429 images when they are yanked into a buffer next to each other.
17430
17431 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
17432
17433 * comint.el (comint-use-prompt-regexp, comint-send-input)
17434 (comint-source-default, comint-extract-string)
17435 (comint-get-source, comint-word, comint-completion)
17436 (comint-source, comint-prompt-read-only, comint-update-fence):
17437 Fix typos in docstrings.
17438 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
17439 Declare with define-obsolete-*-alias macros.
17440 (comint-previous-matching-input-from-input)
17441 (comint-next-matching-input-from-input)
17442 (comint-previous-matching-input, comint-next-matching-input)
17443 (comint-forward-matching-input):
17444 Improve argument/docstring consistency.
17445
17446 * desktop.el (desktop-clear-preserve-buffers-regexp):
17447 Also preserve the *server* buffer.
17448
17449 * simple.el (clone-indirect-buffer): Doc fix.
17450 (fixup-whitespace, just-one-space)
17451 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
17452 (next-error, next-error-highlight)
17453 (next-error-highlight-no-select, next-error-last-buffer)
17454 (next-error-buffer-p, next-error-find-buffer, next-error)
17455 (previous-error, next-error-no-select, previous-error-no-select)
17456 (open-line, split-line, minibuffer-prompt-width, kill-new)
17457 (binary-overwrite-mode): Fix typos in docstrings.
17458 (set-fill-column): Fix typo in message.
17459
17460 * skeleton.el (skeleton-proxy-new): Doc fix.
17461
17462 * strokes.el (strokes-load-hook): Doc fix.
17463 (strokes-grid-resolution, strokes-get-grid-position)
17464 (strokes-renormalize-to-grid, strokes-read-stroke)
17465 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
17466 (strokes-global-map): Fix typos in docstrings.
17467 (strokes-help): Doc fix. Fix help message and pass it through
17468 `substitute-command-keys'.
17469
17470 * tempo.el (tempo-insert-prompt, tempo-interactive)
17471 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
17472 (tempo-insert-string-functions, tempo-local-tags)
17473 (tempo-define-template, tempo-insert-template)
17474 (tempo-insert-prompt-compat, tempo-is-user-element)
17475 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
17476 Fix typos in docstrings.
17477
17478 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
17479 (vcursor-key-bindings, vcursor-use-vcursor-map)
17480 (vcursor-find-window, vcursor-scroll-down)
17481 (vcursor-disable, vcursor-beginning-of-buffer)
17482 (vcursor-end-of-buffer): Fix typos in docstrings.
17483 (vcursor-relative-move, vcursor-get-char-count):
17484 Improve argument/docstring consistency.
17485
17486 * version.el: "?\ " -> "?\s".
17487
17488 * wid-edit.el (widget-default-create, widget-after-change)
17489 (widget-default-format-handler, widget-checklist-add-item)
17490 (widget-radio-add-item, widget-choose, widget-specify-secret)
17491 (widget-field-value-create, widget-field-value-get)
17492 (widget-editable-list-format-handler)
17493 (widget-editable-list-entry-create, widget-group-value-create)
17494 (widget-documentation-link-add)
17495 (widget-documentation-string-value-create): "?\ " -> "?\s".
17496 (widget-convert-text): Doc fix.
17497 (widget-narrow-to-field, widget-field-find)
17498 (widget-url-link-action, widget-emacs-library-link-action)
17499 (widget-color-notify): Fix typos in docstrings.
17500
17501 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
17502 (x-select-text, set-w32-system-coding-system)
17503 (w32-add-charset-info): Fix typos in docstrings.
17504
17505 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
17506 (cua-enable-cua-keys, cua-use-hyper-key)
17507 (cua-virtual-rectangle-edges): Fix typos in docstrings.
17508 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
17509
17510 * net/tramp.el (tramp-handle-load): Fix typo in error message.
17511
17512 * emacs-lisp/re-builder.el (regexp-builder): Declare with
17513 `defalias' instead of faking it.
17514
17515 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
17516 (eshell-ls-missing, eshell-ls-dired-initial-args)
17517 (eshell-ls-use-in-dired): Fix typos in docstrings.
17518
17519 2005-07-20 Kim F. Storm <storm@cua.dk>
17520
17521 * emulation/cua-base.el (cua-mode): Improve doc string.
17522
17523 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
17524
17525 * abbrev.el (expand-region-abbrevs): Doc fix.
17526 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
17527 Improve argument/docstring consistency.
17528
17529 * arc-mode.el (archive-get-descr, archive-alternate-display):
17530 Doc fixes.
17531 (archive-l-e): Improve argument/docstring consistency.
17532 (archive-tmpdir, archive-unixdate, archive-unixtime)
17533 (archive-chmod-entry): Fix typos in docstrings.
17534 (archive-unflag, archive-unflag-backwards)
17535 (archive-unmark-all-files): "?\ " -> "?\s".
17536
17537 * buff-menu.el (Buffer-menu-unmark): Doc fix.
17538 (Buffer-menu-not-modified, Buffer-menu-execute)
17539 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
17540 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
17541
17542 * composite.el (compose-string, encode-composition-rule)
17543 (compose-last-chars): Fix typos in docstrings.
17544
17545 * desktop.el (desktop-enable, desktop-basefilename):
17546 Declare with `define-obsolete-variable-alias'.
17547 (desktop-internal-v2s): Don't quote keywords.
17548 (desktop-clear): "?\ " -> "?\s".
17549
17550 * dired.el (dired-align-file, dired-flag-backup-files)
17551 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
17552 (dired-listing-switches, dired-ls-F-marks-symlinks)
17553 (dired-dwim-target, dired-load-hook, dired-mode-hook)
17554 (dired-directory, dired-faces, dired, dired-revert)
17555 (dired-mode, dired-summary, dired-view-file)
17556 (dired-copy-filename-as-kill, dired-delete-file)
17557 (dired-no-confirm, dired-unmark-all-marks)
17558 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
17559 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
17560 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
17561 Fix typos in message strings.
17562
17563 * dired-x.el (virtual-dired): Declare with `defalias'.
17564 (dired-mark-unmarked-files, dired-local-variables-file)
17565 (dired-omit-here-always): Doc fix.
17566 (dired-omit-mode, dired-find-subdir)
17567 (dired-enable-local-variables, dired-clean-up-buffers-too)
17568 (dired-extra-startup, dired-mark-extension, dired-jump)
17569 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
17570 (dired-smart-shell-command, dired-guess-shell-alist-user)
17571 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
17572 (dired-x-bind-find-file, dired-x-submit-report):
17573 Fix typos in docstrings.
17574 (dired-mark-unmarked-files): "?\ " -> "?\s".
17575
17576 * dirtrack.el (dirtrack-list): Fix typos in docstring.
17577
17578 * faces.el (describe-face): "?\ " -> "?\s".
17579 (read-all-face-attributes, read-face-font, modify-face)
17580 (face-attr-construct, italic): Fix typos in docstrings.
17581 (frame-update-face-colors): Declare with
17582 `define-obsolete-function-alias'.
17583
17584 * files.el (find-file-noselect, recode-file-name): Doc fixes.
17585 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
17586 (magic-mode-alist, buffer-file-numbers-unique)
17587 (write-file-functions, get-free-disk-space):
17588 Fix typos in docstrings.
17589 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
17590 (write-contents-hooks, write-file-hooks):
17591 Declare with `define-obsolete-variable-alias'.
17592
17593 * forms-d2.el (arch-rj): Fix typo in docstrings.
17594 (arch-tocol): Likewise. "?\ " -> "?\s".
17595
17596 * frame.el (set-frame-font, cursor-in-non-selected-windows):
17597 Fix typo in docstring.
17598 (set-screen-width, set-screen-height): Delete redundant info in
17599 doctrings.
17600 (new-frame, screen-height, screen-width): Declare with
17601 `define-obsolete-function-alias'.
17602 (delete-frame-hook, blink-cursor): Declare with
17603 `define-obsolete-variable-alias'.
17604
17605 * paths.el (prune-directory-list): Fix typos in docstring.
17606
17607 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
17608 (cvs-prefix-get): Fix typos in docstrings.
17609
17610 * ps-print.el (ps-extend-face-list, ps-extend-face)
17611 (ps-print-background-image): Fix typos in docstrings.
17612 (ps-default-fg, ps-default-bg): Doc fixes.
17613
17614 * s-region.el (s-region-bind): Doc fix.
17615 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
17616
17617 * textmodes/org.el (org-table-formula-substitute-names)
17618 (org-table-get-vertical-vector): Doc fixes.
17619 (org-table-recalculate): Remove unused argument to `message'.
17620
17621 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
17622
17623 * textmodes/org.el (org-table-column-names)
17624 (org-table-column-name-regexp)
17625 (org-table-named-field-locations): New variables.
17626 (org-archive-subtree): Protect `this-command' when calling
17627 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
17628 the kill buffer.
17629 (org-complete): Remove fixed-formula completion.
17630 (org-edit-formulas-map): New variable.
17631 (org-table-edit-formulas): New command.
17632 (org-finish-edit-formulas, org-abort-edit-formulas)
17633 (org-show-variable, org-table-get-vertical-vector): New functions.
17634 (org-table-maybe-eval-formula): Handle `:=' fields.
17635 (org-table-get-stored-formulas, org-table-store-formulas)
17636 (org-table-get-formula, org-table-modify-formulas)
17637 (org-table-replace-in-formulas): Handle named field formulas.
17638 (org-table-get-specials): Store locations of named fields.
17639
17640 2005-07-19 Juri Linkov <juri@jurta.org>
17641
17642 * progmodes/grep.el (grep-regexp-alist)
17643 (grep-mode-font-lock-keywords, grep-process-setup):
17644 Use default GNU grep match color "01;31m" instead of "01;41m".
17645 (grep-regexp-alist, grep-mode-font-lock-keywords):
17646 Use `\\[[0-9]*m' instead of `\\[00m'.
17647 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
17648 sgr_start where its handling is more important. Use the real
17649 length of sgr_start instead of constant 8.
17650 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
17651 specially. Delete all remaining escape sequences.
17652 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
17653 (grep-regexp-alist): Make hyperlink only for binary file name
17654 instead of the whole line.
17655 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
17656 (grep-mode): Add autoload.
17657
17658 * emacs-lisp/find-func.el (find-function-regexp):
17659 Add `define-compilation-mode'.
17660
17661 2005-07-19 Juri Linkov <juri@jurta.org>
17662
17663 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
17664 (compare-windows-sync-string-size, compare-windows-recenter)
17665 (compare-windows-highlight, compare-windows): Add version 22.1.
17666 (compare-windows) <defface>: Inherit from lazy-highlight instead
17667 of duplicating its default value.
17668
17669 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
17670 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
17671
17672 * descr-text.el (describe-char): Create link buttons for `charset'
17673 and `code point'. Add the current input method name with a link
17674 button to `to input' field. Print face names of display table
17675 characters in `The display table entry is displayed by' section
17676 instead of printing face-id in the `display' field.
17677 Guess hardcoded faces and create a link button for them.
17678 Skip empty fields when calculating max-width.
17679 Treat `widget-create' specially while inserting strings from the
17680 collected field list.
17681 (describe-char-after): Made obsolete in version 22.1, not 21.5.
17682
17683 * diff-mode.el (diff-file-header): Change foreground color from
17684 yellow to green on light backgrounds.
17685 (diff-context): Inherit from `shadow' only for color/grayscale
17686 with more than 88 colors.
17687 (diff-indicator-removed, diff-indicator-added)
17688 (diff-indicator-changed): New faces.
17689 (diff-font-lock-keywords): Use new faces. Regroup rules.
17690 Add "^---$" for `normal' diff format. Fontify `#' lines with
17691 font-lock-comment-delimiter-face and font-lock-comment-face.
17692 Add `#' to ^[^...] in the rule for `diff-context-face'.
17693
17694 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
17695 a button-like box. Inherit from `highlight' on low colors.
17696 (shadow): Use shades of gray only for color/grayscale with
17697 more than 88 colors. Use green for light backgrounds with
17698 8 colors, and yellow for dark backgrounds with 8 colors.
17699
17700 * font-lock.el (font-lock-regexp-grouping-backslash):
17701 Don't inherit from escape-glyph (use bold for all cases).
17702
17703 * info.el (info-xref-visited): Use light foreground color `violet'
17704 for dark backgrounds instead of dark color `magenta3'.
17705 (info-title-1): Use `yellow' color for dark backgrounds.
17706
17707 * isearch.el (isearch): Use not-too-dark magenta3 instead of
17708 too-light magenta2.
17709
17710 * replace.el (match): Use slightly more light RoyalBlue3 instead
17711 of dark RoyalBlue4.
17712
17713 * wid-edit.el (widget-inactive): Inherit from `shadow'.
17714
17715 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
17716
17717 * novice.el (disabled-command-hook): Declare it with
17718 `define-obsolete-variable-alias'.
17719
17720 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
17721 (desktop-buffer-misc-functions, desktop-buffer-handlers)
17722 (desktop-load-default): Add release to obsolescence info.
17723 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
17724 (desktop-append-buffer-args, desktop-read):
17725 Fix typos in docstrings.
17726 (desktop-kill): Fix typo in message.
17727 (desktop-save): Doc fix.
17728
17729 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
17730
17731 * viper-cmd.el (viper-escape-to-state): Bug fix.
17732 (viper-envelop-ESC-key): Change the definition of fast
17733 keysequence so it'll work with keyboard macros.
17734
17735 * ediff.el (ediff-patch-buffer): Change the docstring.
17736
17737 2005-07-19 Kenichi Handa <handa@m17n.org>
17738
17739 * international/mule-cmds.el (select-safe-coding-system): Try to
17740 use an auto-coding (if any) before anything else. If the found
17741 auto-coding is invalid, show a warning message.
17742
17743 * international/mule.el (find-auto-coding): New function created
17744 by modifying the body of set-auto-coding.
17745 (set-auto-coding): Use find-auto-coding to find a coding.
17746
17747 2005-07-18 Richard M. Stallman <rms@gnu.org>
17748
17749 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
17750 not isearch-mode-end-hook-error.
17751 (allout-before-change-protect): Fix error message.
17752
17753 2005-07-18 Juri Linkov <juri@jurta.org>
17754
17755 * allout.el (allout-mode):
17756 * calculator.el (calculator-copy):
17757 * custom.el (custom-known-themes):
17758 * dired.el (dired-desktop-buffer-misc-data)
17759 (dired-restore-desktop-buffer):
17760 * dired-x.el (dired-omit-marker-char):
17761 * files.el (basic-save-buffer):
17762 * font-core.el (font-lock-mode):
17763 * calendar/calendar.el (calendar-goto-hebrew-date)
17764 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
17765 (calendar-goto-persian-date):
17766 * language/ethio-util.el (ethio-sera-to-fidel-region):
17767 * textmodes/picture.el (picture-mode):
17768 Delete duplicate duplicate words.
17769
17770 2005-07-18 Juri Linkov <juri@jurta.org>
17771
17772 * isearch.el (isearch-mode-map): Remove key bindings for regexp
17773 chars * ? } |.
17774 (isearch-fallback): Don't call `isearch-process-search-char'.
17775 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
17776 (isearch-process-search-char): Call `isearch-fallback' for regexp
17777 chars * ? } |.
17778 (isearch-return-char): Make obsolete with `make-obsolete' instead
17779 of simply documenting it as obsolete in the docstring.
17780 (isearch-fallback): Refill docstring.
17781
17782 * international/isearch-x.el
17783 (isearch-process-search-multibyte-characters): Remove unneeded
17784 `concat'. Add intermediate values to `junk-hist' instead of
17785 `minibuffer-history'. Test the length of `str'.
17786
17787 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
17788
17789 * allout.el (allout-resolve-xref): Fix typos in error strings.
17790 (allout-before-change-protect): Remove unneeded `concat'.
17791
17792 * array.el (array-mode, array-reconfigure-rows)
17793 (untabify-backward): Fix typos in docstrings.
17794 (array-reconfigure-rows): Use `insert-buffer-substring', not
17795 `insert-buffer'.
17796
17797 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
17798 * progmodes/ada-mode.el (ada-make-body):
17799 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
17800
17801 * dired.el (dired-log):
17802 * tar-mode.el (tar-subfile-save-buffer):
17803 * play/zone.el (zone-pgm-stress-destress):
17804 Use `insert-buffer-substring', not `insert-buffer'.
17805
17806 2005-07-17 Simon Josefsson <jas@extundo.com>
17807
17808 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
17809
17810 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
17811
17812 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
17813 Add plain auth method.
17814 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
17815
17816 2005-07-17 Kim F. Storm <storm@cua.dk>
17817
17818 * ido.el (dired-other-window): Add ido property.
17819
17820 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
17821
17822 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
17823 Fix typo in docstring.
17824 (byte-compile-interactive-only-functions): Add `insert-buffer' and
17825 `insert-file-literally'.
17826
17827 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
17828 info and delete redundant message. Doc fix.
17829 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
17830 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
17831
17832 2005-07-16 Richard M. Stallman <rms@gnu.org>
17833
17834 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
17835 (byte-compile-and): Use byte-compile-and-recursion.
17836 (byte-compile-or-recursion): New function.
17837 (byte-compile-or): Use that.
17838 (byte-compile-if): Guard the else-clause too.
17839 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
17840
17841 * isearch.el (isearch-mode-end-hook-quit): New variable.
17842 (isearch-done): Bind it.
17843 (isearch-mode-end-hook): Doc fix.
17844
17845 * allout.el (allout-isearch-did-quit): Variable deleted.
17846 (allout-real-isearch-abort): Function name no longer used.
17847 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
17848 (allout-isearch-rectification): isearch-mode always exists.
17849 Don't set allout-isearch-did-quit.
17850 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
17851 allout-isearch-did-quit.
17852 (allout-enwrap-isearch): Just add the hook.
17853 (allout-isearch-abort): Function deleted.
17854 (allout-pre-command-business): Avoid warning.
17855
17856 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
17857 Correctly avoid warnings.
17858 (pascal-outline): Likewise.
17859
17860 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
17861
17862 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
17863
17864 * play/tetris.el (tetris-mode): Avoid warning.
17865
17866 * play/snake.el (snake-mode): Avoid warning.
17867
17868 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
17869 (gamegrid-set-display-table): Avoid warning.
17870 (gamegrid-set-timer): Likewise.
17871 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
17872 (gamegrid-add-score-with-update-game-score-1): Take FILE
17873 as argument.
17874 (gamegrid-add-score-with-update-game-score): Pass that argument.
17875 Rename have-shared-game-dir to gamegrid-shared-game-dir.
17876
17877 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
17878
17879 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
17880 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
17881
17882 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
17883 and insert-file.
17884
17885 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
17886 (sc-ask): Avoid warnings.
17887
17888 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
17889 (eshell-hist-initialize): Use that var the natural way.
17890
17891 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
17892
17893 * emacs-lisp/re-builder.el (reb-cook-regexp):
17894 Avoid warning calling lre-compile-string.
17895 (reb-color-display-p): Avoid warning.
17896
17897 * calculator.el (calculator-last-input): Guard uses
17898 of event-key and key-press-event-p.
17899 (event-key, key-press-event-p): Delete definitions.
17900
17901 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
17902 (find-gc-source-directory, find-gc-subrs-callers)
17903 (find-gc-noreturn-list, find-gc-source-files)
17904 (find-gc-subrs-called): Vars renamed and defvar'd.
17905
17906 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
17907 (checkdoc-overlay-put, checkdoc-delete-overlay)
17908 (checkdoc-overlay-start, checkdoc-overlay-end)
17909 (checkdoc-mode-line-update, checkdoc-char=):
17910 Define such that compiler knows they are defined.
17911 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
17912 (checkdoc-read-event): Delete. Use read-event directly.
17913
17914 * whitespace.el (whitespace-make-overlay)
17915 (whitespace-overlay-put, whitespace-delete-overlay)
17916 (whitespace-overlay-start, whitespace-overlay-end):
17917 Define such that compiler knows they are defined.
17918 (whitespace): Move conditional inside.
17919
17920 * tempo.el (tempo-insert-template): Suppress warning.
17921
17922 * ediff-diff.el (longlines-mode): Add defvar.
17923
17924 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
17925
17926 * server.el: Bind "C-x #" in a way that works even if C-x is
17927 redefined to a command key, not a prefix key.
17928
17929 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
17930
17931 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
17932 cl-make-type-test till execution time.
17933
17934 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
17935
17936 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
17937 arg ARG and use it.
17938
17939 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
17940
17941 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
17942
17943 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
17944
17945 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
17946 a defcustom with two :set or :type keywords.
17947
17948 2005-07-15 Richard M. Stallman <rms@gnu.org>
17949
17950 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17951 Don't give ^M comment-end syntax.
17952
17953 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
17954
17955 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
17956 Don't consider gdbmi (gdb-mi.el has its own update functions).
17957 (gdb-var-delete): Make it work for gdbmi as well.
17958 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
17959
17960 * progmodes/gud.el (etags, sdb): Only require etags when needed.
17961 (gud-speedbar-menu-items): Correct logic for enabling items.
17962
17963 2005-07-15 Kim F. Storm <storm@cua.dk>
17964
17965 * ido.el: Fix commentary.
17966 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
17967 Use with-no-warnings around ffap-guesser.
17968 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
17969 Let bind minibuffer-completing-file-name to t.
17970
17971 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
17972
17973 * startup.el (site-run-file, keyboard-type): Doc fixes.
17974 (command-line): Check for "--basic-display" argument; also for
17975 "--quick", not "--bare-bones" (which was renamed).
17976 (fancy-splash-text): Add missing item "Getting New Versions".
17977 (normal-splash-screen): Fix typos and improve consistency with
17978 `fancy-splash-text'. Update copyright year.
17979
17980 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
17981 valid binding for `help-char'.
17982
17983 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
17984
17985 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
17986
17987 * term.el (term-mode): Disable cua-mode for term buffers.
17988
17989 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
17990
17991 * add-log.el (add-log-mailing-address, change-log-merge):
17992 Doc fixes.
17993 (change-log-get-method-definition): Fix typo in docstring.
17994
17995 2005-07-14 Kim F. Storm <storm@cua.dk>
17996
17997 * emulation/cua-base.el:
17998 (cua--pre-command-handler-1, cua--pre-command-handler)
17999 (cua--post-command-handler-1, cua--post-command-handler):
18000 Split in two. Check (buffer local) value of cua-mode.
18001 (cua-selection-mode): New command.
18002
18003 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
18004
18005 * custom.el (custom-initialize-safe-set)
18006 (custom-initialize-safe-default): Doc fixes.
18007
18008 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
18009 and simplify :init-value again.
18010
18011 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
18012 and simplify :init-value again. Delete autoload.
18013
18014 * startup.el (command-line): Use `custom-reevaluate-setting' again
18015 for tooltip-mode.
18016
18017 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
18018 a defcustom with two :initialize keywords.
18019
18020 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
18021
18022 * allout.el (my-mark-marker, allout-isearch-prior-pos)
18023 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
18024 (allout-post-command-business, allout-flag-region)
18025 (isearch-reenable-font-lock, allout-yank)
18026 (allout-insert-latex-header, allout-insert-latex-trailer)
18027 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
18028 (allout-latex-verb-quote): Fix typos in docstrings.
18029 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
18030 (allout-unprotected, allout-prefix-data):
18031 Improve argument/docstring consistency.
18032 (allout-chart-subtree): Fix argument spec.
18033 (allout-open-topic): Rename `use_sib_bullet' argument to
18034 `use-sib-bullet'. Doc fix.
18035
18036 * whitespace.el (whitespace-check-buffer-leading)
18037 (whitespace-check-buffer-trailing)
18038 (whitespace-check-buffer-indent)
18039 (whitespace-check-buffer-spacetab)
18040 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
18041 (whitespace-check-leading-whitespace)
18042 (whitespace-check-trailing-whitespace)
18043 (whitespace-check-spacetab-whitespace)
18044 (whitespace-check-indent-whitespace)
18045 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
18046 (whitespace-modes): Fix typos in docstrings.
18047 (defgroup, defcustom): Doc fixes.
18048
18049 * winner.el (winner-mode, winner-boring-buffers)
18050 (winner-pending-undo-ring): Doc fixes.
18051 (winner-ring): Remove unneeded `progn'.
18052 (winner-equal): `defsubst' it.
18053 (winner-redo): Fix message.
18054
18055 2005-07-13 Kim F. Storm <storm@cua.dk>
18056
18057 * simple.el (line-move-1): Always use vertical-motion to
18058 do the last (or only) line move to ensure some movement.
18059 Undo 2005-06-23 change--don't check for overlays.
18060
18061 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18062
18063 * term/mac-win.el (ccl-encode-mac-roman-font)
18064 (ccl-encode-mac-centraleurroman-font)
18065 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
18066 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
18067 Change charset-id boundary of dimension to ?\xef.
18068 (mac-char-fontspec-list): New constant.
18069 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
18070 argument. Nil uses itself as family in font-spec. Previous
18071 behavior for nil is now provided by non-nil non-string argument.
18072 All callers changed. Add font-specs for Mac fonts to
18073 "fontset-default" unless iso8859-1 fonts are installed.
18074
18075 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
18076
18077 * progmodes/sh-script.el (sh-get-indent-info): Only indent
18078 a continuation line if the \ is preceded by SPC or TAB.
18079 (sh-get-indent-info): Simplify.
18080 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
18081 Use with-current-buffer.
18082
18083 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
18084 when the matched text is empty.
18085
18086 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
18087
18088 * startup.el (command-line): Revert to previous handling of
18089 tooltip-mode. Explain in comment why the complexity is needed.
18090
18091 * tooltip.el (tooltip-mode): Revert to previous implementation of
18092 its defcustom.
18093
18094 * frame.el (blink-cursor-mode): Revert to previous implementation
18095 of its defcustom. Update comment.
18096
18097 2005-07-12 Lars Hansen <larsh@soem.dk>
18098
18099 * desktop.el: Update e-mail address.
18100
18101 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18102
18103 * term/mac-win.el (mac-services-mail-selection)
18104 (mac-services-mail-to): New functions.
18105 (mac-application-menu-map): Bind them.
18106
18107 2005-07-12 wulei <milton@wulei.net> (tiny change)
18108
18109 * progmodes/gdb-ui.el: Add note about buffering with Windows.
18110
18111 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
18112
18113 * custom.el (custom-reevaluate-setting): Doc fix.
18114
18115 2005-07-11 Jay Belanger <belanger@truman.edu>
18116
18117 * calc/calc.el (calc-embedded-announce-formula-alist)
18118 (calc-embedded-open-close-plain-alist)
18119 (calc-embedded-open-close-mode-alist): Add checks for additional
18120 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
18121
18122 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
18123
18124 * custom.el (custom-enable-theme): Don't add theme to
18125 `custom-enabled-themes' with `push' because there is no
18126 setf-method for `delq'.
18127
18128 2005-07-11 Richard M. Stallman <rms@gnu.org>
18129
18130 * custom.el (custom-declare-variable): Doc fix.
18131
18132 * dired-aux.el (dired-compare-directories): Remove "." and ".."
18133 from the alists.
18134
18135 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
18136 Do nothing if edebug-active.
18137
18138 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
18139 (edebug-display): Do it here instead.
18140
18141 2005-07-10 Richard M. Stallman <rms@gnu.org>
18142
18143 * cus-face.el (custom-theme-set-faces): Make it work.
18144 (custom-reset-faces): Doc fix.
18145 (custom-theme-reset-internal-face, custom-theme-face-value):
18146 Functions deleted.
18147
18148 * custom.el (custom-push-theme): Maintain list of the settings
18149 of a given theme in its theme-settings property.
18150 Maintain position of old settings in the theme-value
18151 or theme-face property.
18152 (custom-enabled-themes): New variable.
18153 (custom-theme-enabled-p): New function.
18154 (provide-theme): Update custom-enabled-themes.
18155 Disable and reenable the `user' theme.
18156 (require-theme): Doc fix.
18157 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
18158 (custom-theme-value, custom-theme-variable-value): Likewise.
18159 (custom-theme-reset-internal): Likewise.
18160 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
18161 (custom-enable-theme, custom-disable-theme): New functions.
18162 (custom-variable-theme-value, custom-face-theme-value): Likewise.
18163 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
18164 (custom-theme-reset-variables): Simplify.
18165 (deftheme, custom-declare-theme, custom-make-theme-feature):
18166 Definitions moved.
18167
18168 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
18169
18170 * longlines.el (longlines-show-region)
18171 (longlines-unshow-hard-newlines): Recognize hard newlines by
18172 non-nil hard property, instead of t.
18173
18174 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
18175
18176 * viper-cmd.el (viper--key-maps): New variable.
18177 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
18178 emulation-mode-map-alists.
18179 (viper-envelop-ESC-key): Use viper-subseq.
18180 (viper-search-forward/backward/next): Disable debug-on-error.
18181
18182 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
18183 (viper-ESC-key): New defcustoms.
18184
18185 * viper-macs.el (ex-map-read-args): Use viper-subseq.
18186
18187 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
18188 (viper-subseq): Copy of subseq from cl.el.
18189
18190 * viper.el (viper-go-away, viper-set-hooks): Use
18191 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
18192
18193 * viper-mous.el (viper-current-frame-saved): Use defvar.
18194
18195 * viper-init.el: Get rid of -face in face names.
18196
18197 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
18198 Make it work with longlines mode
18199
18200 * ediff-mult.el (ediff-meta-mode-hook): New variable.
18201
18202 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
18203
18204 * ediff-init.el: Get rid of -face in face names.
18205
18206 2005-07-10 Richard M. Stallman <rms@gnu.org>
18207
18208 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
18209 and with-timeout-unsuspend.
18210
18211 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
18212 and with-timeout-unsuspend.
18213
18214 * emacs-lisp/timer.el (with-timeout-timers): New variable.
18215 (with-timeout): Bind that variable to record timers.
18216 (with-timeout-suspend, with-timeout-unsuspend): New functions.
18217
18218 * emacs-lisp/debug.el (debug-help-follow): New function.
18219 (debugger-mode-map): Use that instead of help-follow.
18220 (debugger-setup-buffer): Use eval-buffer-list
18221 to handle eval-buffer frames.
18222
18223 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
18224
18225 * timezone.el (timezone-parse-date): Change first regexp
18226 so it will not mistakenly match dates with no time zone.
18227
18228 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
18229
18230 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
18231
18232 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
18233
18234 * custom.el (custom-initialize-safe-set)
18235 (custom-initialize-safe-default): New functions.
18236
18237 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
18238 and simplify :init-value.
18239
18240 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
18241 and simplify :init-value. Delete obsolete comment.
18242
18243 * startup.el (command-line): Use `custom-reevaluate-setting' to
18244 handle `tooltip-mode'. Delete obsolete comment.
18245
18246 * files.el (set-visited-file-name): Avoid calling
18247 `file-name-nondirectory' with a nil argument.
18248
18249 2005-07-09 Richard M. Stallman <rms@gnu.org>
18250
18251 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
18252 was called with nil for the buffer, handle the read position right.
18253 Handle read position for eval-region, too.
18254
18255 2005-07-09 Juri Linkov <juri@jurta.org>
18256
18257 * fringe.el (fringe-mode): Add period in docstring.
18258 (fringe-query-style): Build prompt depending on `all-frames' arg.
18259
18260 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
18261 to not create links to unrelated functions in the Help buffer.
18262
18263 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
18264 Doc fix.
18265
18266 * simple.el (next-error-hook): New variable.
18267 (next-error): Use it. Doc fix.
18268
18269 * textmodes/ispell.el (ispell-command-loop): Add current
18270 dictionary name and program name to mode-line-format.
18271 (ispell-region, ispell-process-line): Add current dictionary name
18272 and program name to messages.
18273
18274 2005-07-08 Jay Belanger <belanger@truman.edu>
18275
18276 * calc/calc.el (calc-embedded-announce-formula-alist)
18277 (calc-embedded-open-close-formula-alist)
18278 (calc-embedded-open-close-word-alist)
18279 (calc-embedded-open-close-plain-alist)
18280 (calc-embedded-open-close-new-formula-alist)
18281 (calc-embedded-open-close-mode-alist)
18282 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
18283 (calc-embedded-mode-hook): New variables.
18284
18285 * calc/calc-embed.el (calc-embedded-firsttime)
18286 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
18287 New variables.
18288 (calc-do-embedded): Use calc-embedded-firsttime,
18289 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
18290 determine whether or not to run hooks.
18291 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
18292 calc-embedded-firsttime-formula appropriately.
18293 Set calc-embedded delimiter variables according to mode.
18294
18295 2005-07-08 Richard M. Stallman <rms@gnu.org>
18296
18297 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
18298 Check for "emacs", etc., as entire symbol, not just as word.
18299 (checkdoc-file-comments-engine): Use regexp-quote on FN.
18300
18301 * files.el (set-visited-file-name): Report the error
18302 for "empty filename" earlier.
18303 (kill-some-buffers): Ignore buffers already dead.
18304
18305 * fringe.el (fringe-mode): Doc fix.
18306
18307 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
18308 Check for (featurep 'xemacs) and turn off warnings in what it guards.
18309 Use unwind-protect to ensure byte-compile-unresolved-functions
18310 is updated.
18311
18312 * whitespace.el (whitespace-buffer-leading-cleanup):
18313 Simplify w/ skip-chars-forward.
18314 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
18315
18316 * mail/rmail.el (rmail-only-expunge): Fix paren error.
18317 Unconditionally try to leave point at the same old place.
18318
18319 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
18320
18321 * comint.el (comint-postoutput-scroll-to-bottom)
18322 (comint-show-maximum-output): Take scroll-margin into consideration.
18323
18324 2005-07-08 Kim F. Storm <storm@cua.dk>
18325
18326 * ido.el (ido-use-filename-at-point): New choice `guess'.
18327 (ido-file-internal): Try ffap-guesser if selected.
18328
18329 * ido.el (ido-before-fallback-functions): New hook.
18330 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
18331 (ido-read-file-name): Run it.
18332
18333 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
18334
18335 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
18336 strings rather than a list of symbols to the completion function.
18337
18338 2005-07-07 Jay Belanger <belanger@truman.edu>
18339
18340 * calc/calc-units.el (math-apply-units): Change the places in
18341 which units are simplified.
18342
18343 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
18344
18345 * cus-edit.el (customize-option, customize-option-other-window):
18346 Make them handle aliases.
18347
18348 * custom.el (custom-variable-p): Make it recursively follow
18349 aliases. Mention that in the docstring.
18350
18351 2005-07-07 Richard M. Stallman <rms@gnu.org>
18352
18353 * cus-start.el (exec-path): Use `directory' instead of `file'.
18354 Fix tag for nil.
18355
18356 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
18357
18358 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
18359 when called non-interactively. Doc fix.
18360
18361 2005-07-07 Lute Kamstra <lute@gnu.org>
18362
18363 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
18364 new address as well.
18365
18366 2005-07-07 Kenichi Handa <handa@m17n.org>
18367
18368 * international/mule.el (make-coding-system):
18369 Describe `ascii-incompatible' property in the docstring.
18370 (set-file-name-coding-system): Signal an error if coding-system is
18371 ascii-incompatible.
18372 (set-keyboard-coding-system): Likewise.
18373
18374 * international/mule-cmds.el (set-default-coding-systems):
18375 Don't set default-file-name-coding-system and
18376 default-keyboard-coding-system if coding-system is ASCII-incompatible.
18377
18378 * international/utf-16.el: Declare that all UTF-16-based coding
18379 systems are ASCII-incompatible.
18380
18381 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
18382
18383 * progmodes/gud.el: Require font-lock for displaying errors.
18384 Used by gdb-ui.el.
18385
18386 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
18387
18388 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
18389 values for the pattern lists which are `read'able but not
18390 `append'able (like symbols).
18391
18392 2005-07-06 Richard M. Stallman <rms@gnu.org>
18393
18394 * progmodes/flymake.el (flymake-float-time): Instead of
18395 with-no-warnings, test for xemacs.
18396 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
18397 to avoid warning.
18398
18399 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
18400
18401 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
18402
18403 2005-07-05 Lute Kamstra <lute@gnu.org>
18404
18405 * battery.el: Add support for Darwin (with much debugging help
18406 from Samuel Lauber <sam124@operamail.com>).
18407 (battery-status-function, battery-echo-area-format)
18408 (battery-mode-line-format): Add support for pmset on Darwin.
18409 (battery-load-low, battery-load-critical): New user options.
18410 (battery-pmset): New function.
18411
18412 2005-07-05 Lute Kamstra <lute@gnu.org>
18413
18414 Update FSF's address in GPL notices.
18415
18416 * textmodes/page-ext.el: Update FSF's address.
18417
18418 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
18419
18420 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
18421 filling from using prefix when filling a single-line docstring.
18422
18423 * progmodes/flymake.el: Remove useless eval-when-compile.
18424
18425 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
18426
18427 2005-07-04 Richard M. Stallman <rms@gnu.org>
18428
18429 * textmodes/org.el (org-file-apps-defaults-gnu):
18430 Rename from org-file-apps-defaults-linux.
18431 (org-default-apps): Don't test system-type for `linux'.
18432 (org-file-apps): Doc fix.
18433
18434 2005-07-04 David Ponce <david@dponce.com>
18435
18436 * tree-widget.el: Improve header Commentary section.
18437 (tree-widget) [defgroup]
18438 (tree-widget-image-enable, tree-widget-themes-directory)
18439 (tree-widget-theme, tree-widget-image-properties-emacs)
18440 (tree-widget-image-properties-xemacs, tree-widget-create-image)
18441 (tree-widget-image-formats, tree-widget-control)
18442 (tree-widget-empty-control, tree-widget-leaf-control
18443 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
18444 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
18445 (tree-widget-keep, tree-widget-after-toggle-functions)
18446 (tree-widget-open-node, tree-widget-close-node): Doc fix.
18447 (tree-widget-open-control, tree-widget-close-control): Fix doc and
18448 :help-echo message.
18449 (tree-widget-set-theme): Doc fix. Use `string-equal'.
18450 (tree-widget-image-properties): Doc fix. Clearer implementation.
18451 (tree-widget--cursors): New constant.
18452 (tree-widget-lookup-image): New function split from
18453 `tree-widget-find-image'. Clearer implementation.
18454 (tree-widget-find-image): Use it.
18455 (tree-widget-button-keymap): Use `set-keymap-parent'.
18456 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
18457 Define the sub-widgets here.
18458 (tree-widget-node): Check that :node is not a tree-widget.
18459 (tree-widget-get-super, tree-widget-open-control)
18460 (tree-widget-close-control, tree-widget-empty-control)
18461 (tree-widget-leaf-control, tree-widget-guide)
18462 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
18463 (tree-widget-no-handle, tree-widget-value-delete)
18464 (tree-widget-map): Remove.
18465 (tree-widget-children-value-save): Doc fix. Simplified.
18466 (tree-widget-value-create): Update according to previous changes.
18467
18468 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
18469
18470 * textmodes/org.el: Leading space replaced by TABS.
18471 (org-recalc-marks, org-table-rotate-recalc-marks)
18472 (org-table-get-specials): Treat "^" and "_" marks.
18473 (org-table-justify-field-maybe): Optional argument NEW.
18474 (org-table-eval-formula): Parsing of the format simplified.
18475 New modes C,I. Honor the %= parameter in the current table.
18476 Avoid unnecessary re-align by using the NEW argument to
18477 `org-table-justify-field-maybe'.
18478 (org-calc-default-modes): Default for date-format mimicks org-mode.
18479 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
18480
18481 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
18482
18483 * cus-face.el (custom-theme-set-faces): Make it handle face
18484 aliases whose alias declarations are pre- or autoloaded.
18485
18486 2005-07-04 Juri Linkov <juri@jurta.org>
18487
18488 * faces.el (read-face-name): Put the code for getting a face name
18489 from the buffer before adding the faces from the `face' property.
18490 Use `completing-read-multiple' instead of `completing-read'.
18491 Require `crm'. Add default value and post-process the returned
18492 list of faces.
18493
18494 * emacs-lisp/crm.el (crm-find-current-element)
18495 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
18496
18497 * emacs-lisp/lisp-mode.el (eval-defun-1):
18498 * emacs-lisp/edebug.el (edebug-eval-defun):
18499 Remove unnecessary quotes.
18500
18501 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
18502
18503 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
18504 (prolog-indent-level): Fix typo in docstring.
18505
18506 * info.el (Info-history, Info-history-forward)
18507 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
18508
18509 * add-log.el (add-change-log-entry):
18510 * comint.el (comint-dynamic-list-input-ring)
18511 (comint-dynamic-list-completions):
18512 * dabbrev.el (dabbrev-expand):
18513 * delim-col.el (delimit-columns-rectangle-line):
18514 * diff-mode.el (diff-context->unified, diff-reverse-direction)
18515 (diff-unified->context):
18516 * ediff-init.el (ediff-abbrev-jobname):
18517 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
18518 (ediff-replace-session-activity-marker-in-meta-buffer):
18519 * info.el (Info-summary):
18520 * lpr.el (printify-region):
18521 * printing.el (pr-create-interface):
18522 * ps-print.el (ps-print-quote):
18523 * ses.el (ses-column-widths, ses-print-cell)
18524 (ses-adjust-print-width, ses-center):
18525 * shell.el (shell-file-name-quote-list):
18526 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
18527 (strokes-fill-current-buffer-with-whitespace)
18528 (strokes-xpm-for-stroke, strokes-list-strokes)
18529 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
18530 * term.el (term-dynamic-list-input-ring)
18531 (term-dynamic-list-completions):
18532 * calc/calc.el (math-format-stack-value):
18533 * emacs-lisp/edebug.el (edebug-display-freq-count):
18534 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
18535 (delphi-new-comment-line):
18536 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
18537 * progmodes/executable.el (executable-set-magic):
18538 * progmodes/python.el (inferior-python-mode):
18539 * progmodes/scheme.el (scheme-mode-syntax-table):
18540 * progmodes/sh-script.el (sh-maybe-here-document):
18541 * progmodes/sql.el (sql-copy-column):
18542 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
18543 * textmodes/bibtex.el (bibtex-mode):
18544 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
18545 (sgml-auto-attributes):
18546 * textmodes/table.el (table-insert, table-shorten-cell)
18547 (table--generate-source-scan-lines, table-delete-row)
18548 (*table--cell-delete-char, table--spacify-frame)
18549 (table--horizontally-shift-above-and-below)
18550 (table--cell-insert-char, table--cell-blank-str)
18551 (table--fill-region-strictly):
18552 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
18553 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
18554
18555 * add-log.el (change-log):
18556 * apropos.el (apropos):
18557 * comint.el (comint-completion, comint-source):
18558 * dabbrev.el (dabbrev):
18559 * delim-col.el (columns):
18560 * diff-mode.el (diff-mode):
18561 * ediff.el (ediff):
18562 * ediff-diff.el (ediff-diff):
18563 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
18564 * ediff-mult.el (ediff-mult):
18565 * ediff-ptch.el (ediff-ptch):
18566 * ediff-wind.el (ediff-window):
18567 * facemenu.el (facemenu):
18568 * indent.el (indent):
18569 * info.el (info):
18570 * jka-cmpr-hook.el (compression, jka-compr):
18571 * lpr.el (lpr):
18572 * outline.el (outlines):
18573 * pcmpl-cvs.el (pcmpl-cvs):
18574 * pcmpl-rpm.el (pcmpl-rpm):
18575 * printing.el (printing):
18576 * ps-print.el (postscript, ps-print, ps-print-horizontal)
18577 (ps-print-vertical, ps-print-headers, ps-print-font)
18578 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
18579 (ps-print-background, ps-print-printer, ps-print-page)
18580 (ps-print-miscellany):
18581 * ses.el (ses):
18582 * shell.el (shell, shell-directories, shell-faces):
18583 * startup.el (initialization):
18584 * strokes.el (strokes):
18585 * term.el (term):
18586 * uniquify.el (uniquify):
18587 * w32-vars.el (w32):
18588 * calc/calc.el (calc):
18589 * emacs-lisp/bytecomp.el (bytecomp):
18590 * emacs-lisp/cl-indent.el (lisp-indent):
18591 * emacs-lisp/edebug.el (edebug):
18592 * emacs-lisp/elp.el (elp):
18593 * emacs-lisp/testcover.el (testcover):
18594 * emacs-lisp/trace.el (trace):
18595 * emulation/viper-ex.el (viper-ex):
18596 * emulation/viper-mous.el (viper-mouse):
18597 * mail/mailalias.el (mailalias):
18598 * mail/supercite.el (supercite, supercite-frames)
18599 (supercite-attr, supercite-cite, supercite-hooks):
18600 * net/rcompile.el (remote-compile):
18601 * net/rlogin.el (rlogin):
18602 * obsolete/ooutline.el (outlines):
18603 * progmodes/delphi.el (delphi):
18604 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
18605 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
18606 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
18607 (ebnf-optimization):
18608 * progmodes/etags.el (etags):
18609 * progmodes/executable.el (executable):
18610 * progmodes/idlwave.el (idlwave):
18611 * progmodes/pascal.el (pascal):
18612 * progmodes/prolog.el (prolog):
18613 * progmodes/python.el (python):
18614 * progmodes/scheme.el (scheme):
18615 * progmodes/sh-script.el (sh, sh-script):
18616 * progmodes/sql.el (SQL):
18617 * progmodes/tcl.el (tcl):
18618 * textmodes/bibtex.el (bibtex, bibtex-autokey):
18619 * textmodes/enriched.el (enriched):
18620 * textmodes/makeinfo.el (makeinfo):
18621 * textmodes/sgml-mode.el (sgml):
18622 * textmodes/table.el (table-hooks):
18623 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
18624 * textmodes/texinfo.el (texinfo):
18625 * textmodes/two-column.el (two-column):
18626 Finish `defgroup' description with period.
18627
18628 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
18629 * eshell/esh-var.el (eshell-var):
18630 * progmodes/vhdl-mode.el (vhdl-testbench):
18631 * textmodes/org.el (org): Fix typos in docstrings.
18632
18633 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
18634 consistency.
18635
18636 * progmodes/flymake.el (flymake-find-file): Remove.
18637 (flymake-float-time): Use `with-no-warnings'.
18638 (flymake-check-start-time, flymake-check-was-interrupted)
18639 (flymake-err-info, flymake-is-running, flymake-last-change-time)
18640 (flymake-new-err-info): `defvar' at compile time.
18641
18642 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
18643
18644 * replace.el (occur-hook): Doc fix.
18645 (occur-1): Don't call `occur-hook' if there are no matches.
18646
18647 2005-07-03 Richard M. Stallman <rms@gnu.org>
18648
18649 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
18650 global-map, save the same map.
18651 (global-map): Don't alter it at top level.
18652 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
18653 Then alter it here instead.
18654 (tpu-edt-off): Set global-map to the saved one.
18655
18656 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
18657 All references simplified.
18658 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
18659 (zmacs-regions): Add defvar.
18660 (repeat-complex-command-map): Everything about that deleted.
18661
18662 * textmodes/artist.el (artist-key-is-drawing)
18663 (artist-key-endpoint1, artist-key-poly-point-list)
18664 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
18665 (artist-key-compl-table, artist-rb-save-data)
18666 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
18667 Don't put them in eval-when-compile.
18668 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
18669
18670 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
18671 Use with-no-warnings.
18672
18673 * net/browse-url.el (dos-windows-version): Add defvar.
18674
18675 * mail/supercite.el (filladapt-prefix-table): Add defvar.
18676
18677 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
18678 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
18679 (rmail-new-summary-line-count): Rename from new-summary-line-count.
18680 Add defvar.
18681 (rmail-summary-beginning-of-message): Use with-no-warnings.
18682 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
18683
18684 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
18685 Use with-no-warnings.
18686
18687 * emulation/vi.el (vi-mark-region): Use c-mark-function.
18688 (c-mark-function): Add point-moving-unit property.
18689 (vi-goto-line): Use with-no-warnings.
18690
18691 * emulation/edt.el (edt-last-copied-word): Add defvar.
18692 (zmacs-region-stays): Likewise.
18693 (edt-mark-section-wisely): Use c-mark-function for C.
18694 Use makr-defun for Fortran.
18695 (time-string): defvar deleted.
18696 (edt-display-the-time): Don't set time-string.
18697
18698 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
18699
18700 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
18701 Don't warn when name is not constant
18702 or for defining the group `emacs'.
18703
18704 * tooltip.el (gud-tooltip-mode): Add defvar.
18705
18706 * startup.el (default-frame-background-mode): Add defvar.
18707
18708 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
18709
18710 * info.el (tool-bar-map): Add defvar.
18711
18712 * dired.el (dnd-protocol-alist): Add defvar.
18713
18714 * dired-aux.el (dired-query): Display question with answer, when
18715 the user answers.
18716
18717 * custom.el (custom-add-option): Doc fix.
18718
18719 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
18720
18721 2005-07-03 Eli Zaretskii <eliz@gnu.org>
18722
18723 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
18724 bogus name from the last change.
18725
18726 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
18727
18728 * custom.el (custom-declare-variable): Fix typos in comment.
18729 (custom-known-themes): Doc fix.
18730 (custom-theme-directory): New defcustom.
18731 (require-theme): Make it check `custom-theme-directory'.
18732
18733 * cus-theme.el (custom-new-theme-mode): New function.
18734 (custom-theme-name, custom-theme-variables, custom-theme-faces)
18735 (custom-theme-description): Add compiler defvars.
18736 (customize-create-theme): Add doc to the "*New Custom Theme*"
18737 buffer. Use `custom-new-theme-mode'.
18738 (custom-theme-write): Put the created buffer in emacs-lisp-mode
18739 and save it to the `custom-theme-directory'. Make this the
18740 default directory of the buffer.
18741
18742 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
18743
18744 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
18745 Fix unbalanced parentheses.
18746
18747 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
18748
18749 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
18750 into flymake-mode and delegate to flymake-mode.
18751
18752 * find-file.el (ff-which-function-are-we-in): Clean up.
18753
18754 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
18755
18756 * replace.el (occur-rename-buffer): Fix docstring.
18757
18758 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
18759 (edt-last-copied-word, edt-learn-macro-count)
18760 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
18761 (edt-rect-start-point, edt-user-global-map, rect-start-point)
18762 (time-string, zmacs-region-stays):
18763 * emulation/edt-mapper.el (edt-save-function-key-map)
18764 (EDT-key-name): `defvar' to silence the byte-compiler.
18765
18766 2005-07-02 Martin Rudalics <rudalics@gmx.at>
18767
18768 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
18769 font-lock-regexp-backslash. Doc fix.
18770 (font-lock-regexp-backslash-grouping-construct): Rename from
18771 font-lock-regexp-backslash-construct. Doc fix.
18772 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
18773 grouping constructs.
18774
18775 2005-07-02 Eli Zaretskii <eliz@gnu.org>
18776
18777 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
18778 updating all the prerequisites.
18779
18780 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
18781
18782 * textmodes/org.el (org-agenda-start-on-weekday)
18783 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
18784 (org-agenda-use-time-grid, org-archive-location)
18785 (org-allow-space-in-links, org-usenet-links-prefer-google)
18786 (org-enable-table-editor, org-export-default-language)
18787 (org-export-html-show-new-buffer, org-fill-paragraph)
18788 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
18789 (org-goto-quit, org-occur, org-eval-in-calendar)
18790 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
18791 (org-agenda-diary-entry, org-remember-help)
18792 (org-table-convert-region, org-at-table-p)
18793 (org-table-move-row-down, org-table-move-row-up)
18794 (org-table-copy-region, org-table-toggle-vline-visibility)
18795 (org-table-get-stored-formulas, org-table-get-specials)
18796 (org-recalc-commands, org-table-eval-formula)
18797 (org-table-formula-substitute-names, orgtbl-make-binding)
18798 (org-format-org-table-html, org-format-table-table-html)
18799 (org-format-table-table-html-using-table-generate-source)
18800 (org-customize): Fix typos in docstrings.
18801 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
18802 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
18803 (org-back-to-heading): Doc fixes.
18804 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
18805 (org-agenda-change-all-lines, org-get-header):
18806 Improve argument/docstring consistency.
18807 (orgtbl-error): Fix error message.
18808
18809 * progmodes/flymake.el (flymake-find-possible-master-files)
18810 (flymake-master-file-compare, flymake-get-line-err-count)
18811 (flymake-highlight-line, flymake-gui-warnings-enabled):
18812 Fix typos in docstrings.
18813 (flymake-parse-line, flymake-get-project-include-dirs-function)
18814 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
18815 Doc fixes.
18816 (flymake-get-project-include-dirs-function)
18817 (flymake-make-err-menu-data):
18818 Improve argument/docstring consistency.
18819
18820 2005-07-01 Lute Kamstra <lute@gnu.org>
18821
18822 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
18823 Catch errors with ignore-errors. Use temporary buffer.
18824 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
18825
18826 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
18827 background color faces.
18828 (facemenu-set-foreground, facemenu-set-background):
18829 Use facemenu-set-face-from-menu.
18830 (facemenu-set-face-from-menu): Treat face names that start with
18831 "fg:" or "bg:" as special.
18832 (facemenu-add-new-color): Don't create faces. Simplify.
18833
18834 2005-06-30 Richard M. Stallman <rms@gnu.org>
18835
18836 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
18837 (crm-find-current-element): Likewise.
18838
18839 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
18840
18841 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
18842
18843 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
18844
18845 * arc-mode.el (archive-extract): Make it work as a mouse binding.
18846 (archive-mouse-extract): Make it an obsolete alias.
18847 (archive-mode-map): Don't use archive-mouse-extract any more.
18848 (archive-mode, archive-extract): write-contents-hooks ->
18849 write-contents-functions.
18850 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
18851 first arg.
18852 (archive-rename-entry): Update the call.
18853 (archive-zip-summarize): Remove unused var `method'.
18854 (archive-lzh-summarize): Remove unused var `creator'.
18855
18856 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
18857 dedicated frame upon exit.
18858
18859 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
18860 (archive-zip-extract, archive-zip-expunge)
18861 (archive-zip-update, archive-zip-update-case): Use executable-find.
18862 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
18863 Use restore-buffer-modified-p.
18864 (archive-extract, archive-add-new-member, archive-write-file-member):
18865 Use with-current-buffer.
18866 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
18867
18868 2005-06-30 Andreas Schwab <schwab@suse.de>
18869
18870 * progmodes/gud.el (gud-filter): Remove unneeded progn.
18871
18872 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
18873
18874 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
18875
18876 2005-06-30 Juri Linkov <juri@jurta.org>
18877
18878 * faces.el (vertical-border): Inherit from mode-line-inactive
18879 only on tty.
18880
18881 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
18882
18883 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
18884 example, -NLINES in the `occur' docstring).
18885
18886 * replace.el (occur-1): When no matches are found, do not set the
18887 `buffer-read-only' and modified flags for the occur buffer,
18888 because it is deleted.
18889
18890 * emulation/cua-base.el (cua-check-pending-input)
18891 (cua-repeat-replace-region, cua-mode, cua-debug)
18892 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
18893 Fix typos in docstrings.
18894
18895 * emulation/cua-gmrk.el (cua-toggle-global-mark)
18896 (cua-cut-region-to-global-mark)
18897 (cua--cut-rectangle-to-global-mark):
18898 Remove period from end of messages.
18899
18900 * emulation/cua-rect.el (cua-do-rectangle-padding):
18901 Remove period from end of messages.
18902 (cua--rectangle-seq-format): Fix typo in docstring.
18903 (cua-sequence-rectangle, cua-fill-char-rectangle):
18904 Improve argument/docstring consistency.
18905
18906 2005-06-29 Juri Linkov <juri@jurta.org>
18907
18908 * faces.el (default-frame-background-mode): New internal variable.
18909 (frame-set-background-mode): Use it.
18910
18911 * startup.el (normal-top-level): Set default-frame-background-mode
18912 instead of frame-background-mode. Before setting it, test for its
18913 nil value. Remove tests for frame-background-mode and frame
18914 parameter `reverse'. Add test for "unspecified-fg".
18915
18916 * term/xterm.el (xterm-rxvt-set-background-mode):
18917 * term/rxvt.el (rxvt-set-background-mode):
18918 Set default-frame-background-mode instead of frame-background-mode.
18919
18920 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
18921
18922 * simple.el (set-variable): Warn about obsolete user variables.
18923
18924 * imenu.el (imenu--completion-buffer):
18925 * mouse.el (mouse-buffer-menu-alist):
18926 * msb.el (msb-invisible-buffer-p):
18927 * calendar/diary-lib.el (diary-header-line-format):
18928 * emacs-lisp/pp.el (pp-buffer):
18929 * progmodes/cperl-mode.el (cperl-do-auto-fill):
18930 * textmodes/picture.el (picture-replace-match):
18931 Change space constants followed by a sexp to "?\s ".
18932
18933 * play/decipher.el (decipher-loop-with-breaks):
18934 * textmodes/texinfo.el (texinfo-insert-@item): Change space
18935 constants "protected" from end of line by a comment to "?\s".
18936
18937 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
18938
18939 * font-lock.el (save-buffer-state): Use `declare'.
18940
18941 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
18942 reset the syntax-table to cperl-mode-syntax-table.
18943 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
18944 "foo_print_bar" is not matched as a reserved keyword.
18945
18946 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
18947
18948 * textmodes/org.el (orgtbl-setup): New function, for delayed
18949 setup for the orgtbl commands.
18950 (org-calc-default-modes): New option.
18951 (orgtbl-make-binding): Use `defun' to get better help display.
18952 (org-diary): Call `org-compile-prefix-format'.
18953 (org-table-formula-substitute-names): New function.
18954 (org-agenda-day-view, org-agenda-week-view): New commands.
18955 (org-agenda-toggle-week-view): Command removed.
18956 (org-tbl-menu): Split off from org-org-menu.
18957 (org-mode): Move removal of outline-mode menus to here.
18958 (org-table-formula-debug): New option.
18959 (org-table-insert-row): Keep first field if just "#" or "*".
18960 (org-mode): Paragraph regexps fixed.
18961 (org-table-recalculate-regexp): New constant.
18962 (org-table-justify-field-maybe): Avoid replace if not necessary.
18963 (org-copy-special, org-cut-special): Use `call-interactively'.
18964 (org-table-copy-region): Take region from `interactive' call.
18965 (org-trim): Return string even if no match.
18966 (org-formula): New face.
18967 (org-set-font-lock-defaults): No longer highlight "FIXME".
18968 But highlight formula-related fields in table.
18969 (org-table-p): Use regexp, not fontification.
18970 (org-table-align): Handle white space at end of line.
18971 (org-table-formula-evaluate-inline): New option.
18972 (org-mode): Auto-wrapping in comment lines turned off.
18973 (org-table-copy-down): Evaluate only in copied field, not in
18974 destination.
18975 (org-table-current-formula): Variable removed.
18976 (org-table-store-formulas, org-table-get-stored-formulas)
18977 (org-table-modify-formulas, org-table-replace-in-formulas)
18978 (org-table-maybe-eval-formula): New functions.
18979 (org-table-get-formula): Modify to use stored formulas.
18980 (org-table-insert-column, org-table-delete-column)
18981 (org-table-move-column): Call `org-table-modify-formulas'.
18982 (org-complete): Add completion for keyword formulas.
18983 (orgtbl-mode): Pull orgtbl-mode-map to start of
18984 minor-mode-map-alist.
18985
18986 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
18987
18988 * progmodes/python.el (python-check): Require `compile' before
18989 modifying its variables.
18990
18991 * newcomment.el (comment-indent-default): Don't get fooled by an early
18992 end of buffer.
18993
18994 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
18995
18996 * ps-print.el (ps-print-version): Fix version number.
18997
18998 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
18999
19000 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
19001
19002 2005-06-28 Richard M. Stallman <rms@gnu.org>
19003
19004 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
19005 (flyspell-local-mouse-map): Declaration deleted.
19006 (flyspell-mouse-map): Bind only mouse-2.
19007 (flyspell-mode-map): Don't test flyspell-use-local-map.
19008 (flyspell-overlay-keymap-property-name): Var deleted.
19009 (flyspell-mode-on): Don't make local bindings for
19010 flyspell-mouse-map and flyspell-mode-map.
19011 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
19012
19013 * textmodes/ispell.el (ispell-word): Do not ignore short words.
19014
19015 * progmodes/compile.el (compilation-next-error-function):
19016 Don't switch buffers; operate on the current buffer.
19017
19018 * progmodes/compile.el (compilation-error-file-name)
19019 (compilation-warning-file-name, compilation-info-file-name)
19020 (compilation-line-number, compilation-column-number): New faces.
19021 (compilation-error-face, compilation-warning-face)
19022 (compilation-info-face, compilation-line-face)
19023 (compilation-column-face): Use them.
19024
19025 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
19026
19027 * comint.el (comint-password-prompt-regexp): Accept ", try again".
19028
19029 * bindings.el (global-map): Bind insertchar and its variants.
19030
19031 2005-06-27 Richard M. Stallman <rms@gnu.org>
19032
19033 * textmodes/artist.el (artist-text-overwrite)
19034 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
19035
19036 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19037
19038 * ps-print.el: It was not working the page selection for printing.
19039 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
19040 (ps-print-version): New version 6.6.7.
19041 (ps-end-sheet): New fun.
19042 (ps-header-sheet, ps-end-job): Call it.
19043
19044 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
19045
19046 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
19047
19048 2005-06-27 Lute Kamstra <lute@gnu.org>
19049
19050 * facemenu.el (facemenu-unlisted-faces): Add foreground and
19051 background color faces.
19052 (facemenu-get-face): Delete function.
19053 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
19054 (facemenu-add-new-color): Make second argument mandatory.
19055 Create the appropriate face and return it. Simplify.
19056 (facemenu-set-foreground, facemenu-set-background): Don't check if
19057 color is defined. Use return value of facemenu-add-new-color.
19058
19059 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
19060
19061 * progmodes/gud.el (gud-filter): Add missing argument to
19062 with-selected-window.
19063
19064 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
19065
19066 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
19067 a :require to the defcustom.
19068
19069 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
19070 defcustoms corresponding to minor modes.
19071
19072 2005-06-26 David Ponce <david@dponce.com>
19073
19074 * recentf.el: Require tree-widget instead of wid-edit.
19075 (recentf-filename-handler): Fix widget :type.
19076 (recentf-cancel-dialog, recentf-open-more-files)
19077 (recentf-open-files-action): Doc fix.
19078 (recentf-dialog-goto-first): New function.
19079 (recentf-dialog-mode-map): Set parent keymap first.
19080 (recentf-dialog-mode): Define with define-derived-mode.
19081 Don't display continuation lines in dialogs.
19082 (recentf-edit-list): Rename from recentf-edit-selected-items.
19083 (recentf-edit-list-select): Rename from recentf-edit-list-action.
19084 Simplify.
19085 (recentf-edit-list-validate): New function.
19086 (recentf-edit-list): Update accordingly.
19087 (recentf-open-files-item-shift): Remove.
19088 (recentf-open-files-item): Convert menu elements into tree and
19089 link widgets. Don't create the widgets.
19090 (recentf-open-files): Update accordingly.
19091 (recentf-save-list): Untabify.
19092
19093 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
19094
19095 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
19096 (keep-lines): Add INTERACTIVE arg. Never delete lines only
19097 partially contained in the active region. Do not take active
19098 region into account when called from Lisp, unless INTERACTIVE arg
19099 is non-nil. Use `forward-line' instead of `beginning-of-line' to
19100 avoid trouble with fields. Make marker point nowhere when no
19101 longer used. Always return nil. Doc fix.
19102 (flush-lines): Add INTERACTIVE arg. Do not take active region
19103 into account when called from Lisp, unless INTERACTIVE arg is
19104 non-nil. Use `forward-line' instead of `beginning-of-line' to
19105 avoid trouble with fields. Make marker point nowhere when no
19106 longer used. Always return nil. Doc fix.
19107 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
19108 interchangeable. Do not take active region into account when
19109 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
19110 message in echo area when called from Lisp, unless INTERACTIVE arg
19111 is non-nil. Avoid saying "1 occurrences". Do not use markers.
19112 Return the number of matches. Doc fix.
19113 (occur): Doc fix.
19114 (perform-replace): Make comment follow double space convention for
19115 the sake of `outline-minor-mode'.
19116
19117 * faces.el (facep): Doc fix.
19118
19119 2005-06-25 Richard M. Stallman <rms@gnu.org>
19120
19121 * facemenu.el (facemenu-enable-faces-p): New function.
19122 (facemenu-background-menu, facemenu-foreground-menu)
19123 (facemenu-face-menu): Add menu-enable property.
19124
19125 * jka-compr.el (jka-compr-insert-file-contents):
19126 Special handling if cannot find the uncompression program.
19127
19128 * cus-face.el (custom-face-attributes): Add autoload.
19129
19130 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
19131 Bind comment-indent-function locally.
19132
19133 * window.el (save-selected-window): Use save-current-buffer.
19134
19135 * subr.el (with-selected-window): Use save-current-buffer.
19136
19137 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
19138 and with-current-buffer.
19139
19140 2005-06-24 Richard M. Stallman <rms@gnu.org>
19141
19142 * simple.el (line-move-1): Fix previous change.
19143
19144 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
19145
19146 * replace.el (occur-1): Set `buffer-read-only' and the
19147 buffer-modified flag before running `occur-hook' to protect
19148 against unintentional buffer switches that can lead to data loss.
19149
19150 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
19151
19152 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
19153 (gud-gdb-marker-filter): Use font-lock-warning-face for any
19154 initial error.
19155
19156 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
19157 after fresh input.
19158 (gdb-var-create-handler): Put name of expression in quotes.
19159
19160 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
19161
19162 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
19163 elements of RING in order, and without bogus nil elements.
19164
19165 2005-06-23 Richard M. Stallman <rms@gnu.org>
19166
19167 * simple.el (set-variable): Args renamed; doc fix.
19168 (line-move-1): When there are overlays around, use vertical-motion.
19169
19170 * faces.el (escape-glyph): Use brown against light background.
19171 (nobreak-space): Rename from no-break-space.
19172 Fix previous change.
19173
19174 * dired-aux.el (dired-do-copy): Fix arg prompt.
19175
19176 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
19177
19178 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
19179
19180 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
19181 rather than "Distributor".
19182
19183 2005-06-23 Lute Kamstra <lute@gnu.org>
19184
19185 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
19186 (debug-on-entry): Use it. New interactive declaration that uses
19187 function-called-at-point.
19188
19189 2005-06-23 Kim F. Storm <storm@cua.dk>
19190
19191 * subr.el (save-match-data): Add comment about using evaporate arg
19192 to set-match-data.
19193
19194 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
19195
19196 * cus-edit.el (customize-face)
19197 (customize-face-other-window): Handle face aliases.
19198
19199 * faces.el (face-documentation, set-face-attribute)
19200 (face-spec-set): Handle face aliases.
19201
19202 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
19203
19204 * help-mode.el (help-make-xrefs): If a symbol representing a face
19205 name is not followed by the word "face", it could still be a
19206 function or variable name, so don't bypass other checks.
19207
19208 2005-06-22 Juri Linkov <juri@jurta.org>
19209
19210 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
19211 Replace aliased functions with calls where second arg `inherit' is t.
19212
19213 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
19214
19215 * progmodes/gdb-ui.el (gdb-error): New variable.
19216 (gdb-error): New function.
19217 (gdb-annotation-rules): Act on error-begin and error annotations.
19218 (gdb-concat-output): Use font-lock-warning-face for errors.
19219
19220 2005-06-22 Miles Bader <miles@gnu.org>
19221
19222 * bindings.el (propertized-buffer-identification): Use renamed
19223 `Buffer-menu-buffer' face.
19224
19225 * faces.el (vertical-border): Rename from `vertical-divider'.
19226 (escape-glyph): Change dark-background color back to `cyan'.
19227
19228 2005-06-21 Juri Linkov <juri@jurta.org>
19229
19230 * faces.el (face-user-default-spec): Try getting `customized-face'
19231 prior to `saved-face'.
19232 (frame-background-mode): Refill docstring.
19233
19234 * emacs-lisp/lisp-mode.el (eval-defun-1):
19235 * emacs-lisp/edebug.el (edebug-eval-defun):
19236 Set `saved-face' temporarily to nil before calling form.
19237 Set `customized-face' to the new spec after that.
19238
19239 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
19240
19241 * subr.el (1value, lambda, key-substitution-in-progress):
19242 Doc fixes.
19243
19244 * autoinsert.el (auto-insert-alist):
19245 * ses.el (ses-call-printer):
19246 * subr.el (noreturn):
19247 * emacs-lisp/lisp.el (check-parens):
19248 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
19249 * net/browse-url.el (browse-url-mosaic):
19250 * progmodes/cc-defs.el (c-safe-scan-lists):
19251 * progmodes/ebnf-abn.el (ebnf-abn-lex):
19252 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
19253 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
19254 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
19255 * progmodes/ebnf-iso.el (ebnf-iso-lex):
19256 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
19257
19258 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
19259
19260 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
19261
19262 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
19263
19264 * calendar/appt.el (appt-make-list): Activate the package, if
19265 not already active (for backwards compatibility).
19266
19267 2005-06-20 Kim F. Storm <storm@cua.dk>
19268
19269 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
19270
19271 2005-06-20 Miles Bader <miles@gnu.org>
19272
19273 * faces.el (vertical-divider): New face.
19274
19275 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
19276
19277 * simple.el (kill-whole-line): Doc fix.
19278 (next-error-buffer-p, next-error-find-buffer)
19279 (clone-indirect-buffer): Fix typos in docstrings.
19280 (comment-line-break-function): Doc fix: don't say variable
19281 is automatically buffer-local (it isn't).
19282
19283 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
19284
19285 * net/tramp-ftp.el (top):
19286 * net/tramp-smb.el (top):
19287 * net/tramp-util.el (top):
19288 * net/tramp-uu.el (top):
19289 * net/tramp-vc.el (top):
19290 * net/tramp.el (top): Revert copyright years back to original
19291 ones. Tramp has a life outside GNU Emacs.
19292
19293 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
19294
19295 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
19296
19297 2005-06-18 Juri Linkov <juri@jurta.org>
19298
19299 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
19300 end of first regexp to limit the match to the position between
19301 line number and source line with same separator character as used
19302 between file name and line number. In the second regexp limit
19303 mouse-face area to file name and line number by adding new group
19304 for them and referring it in HYPERLINK arg.
19305 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
19306 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
19307 previous line where grep markers may be already removed.
19308
19309 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
19310
19311 * progmodes/ps-mode.el: Update version and maintainer's email address.
19312
19313 2005-06-18 Steve Youngs <steve@xemacs.org>
19314
19315 * net/browse-url.el (browse-url-browser-function)
19316 (browse-url-default-browser): Add firefox.
19317 (browse-url-firefox-program, browse-url-firefox-arguments)
19318 (browse-url-firefox-startup-arguments)
19319 (browse-url-firefox-new-window-is-tab): New defcustoms.
19320 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
19321
19322 2005-06-17 Richard M. Stallman <rms@gnu.org>
19323
19324 * startup.el (command-line): Warn if specified user name has
19325 no home directory.
19326
19327 * term.el (term-get-old-input, term-input-filter, term-input-sender)
19328 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
19329
19330 * longlines.el (longlines-mode, longlines-show-hard-newlines):
19331 Doc fixes.
19332
19333 * faces.el (underline): Try bold if terminal doesn't support underline.
19334
19335 * mail/sendmail.el (mail-setup-with-from): New variable.
19336 (mail-insert-from-field): New function.
19337 (sendmail-send-it): Call it.
19338 (mail-setup): Optionally call it here.
19339
19340 * term/linux.el: Call tty-no-underline.
19341
19342 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
19343
19344 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
19345
19346 2005-06-17 Miles Bader <miles@gnu.org>
19347
19348 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
19349 (ediff-current-diff-C, ediff-current-diff-Ancestor)
19350 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
19351 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
19352 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
19353 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
19354 Remove "-face" suffix from face names.
19355 (ediff-current-diff-face-A, ediff-current-diff-face-B)
19356 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
19357 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
19358 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
19359 (ediff-even-diff-face-A, ediff-even-diff-face-B)
19360 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
19361 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
19362 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
19363 New backward-compatibility aliases for renamed faces.
19364 (ediff-current-diff-face-A, ediff-current-diff-face-B)
19365 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
19366 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
19367 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
19368 (ediff-even-diff-face-A, ediff-even-diff-face-B)
19369 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
19370 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
19371 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
19372 Use renamed ediff faces.
19373
19374 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
19375 Remove "-face" suffix from face names.
19376 (eshell-test-ok-face, eshell-test-failed-face):
19377 New backward-compatibility aliases for renamed faces.
19378 (eshell-run-test): Use renamed eshell-test faces.
19379
19380 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
19381 face name.
19382 (eshell-prompt-face): New backward-compatibility alias for renamed
19383 face.
19384 (eshell-emit-prompt): Use renamed eshell-prompt face.
19385
19386 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
19387 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
19388 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
19389 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
19390 Remove "-face" suffix from face names.
19391 (eshell-ls-directory-face, eshell-ls-symlink-face)
19392 (eshell-ls-executable-face, eshell-ls-readonly-face)
19393 (eshell-ls-unreadable-face, eshell-ls-special-face)
19394 (eshell-ls-missing-face, eshell-ls-archive-face)
19395 (eshell-ls-backup-face, eshell-ls-product-face)
19396 (eshell-ls-clutter-face):
19397 New backward-compatibility aliases for renamed faces.
19398 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
19399
19400 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
19401 Remove "-face" suffix from face name.
19402 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
19403 instead of literal face.
19404
19405 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
19406
19407 * emacs-lisp/warnings.el (display-warning, lwarn)
19408 (warning-minimum-log-level): Doc fixes.
19409 (warning-minimum-level, warning-minimum-log-level):
19410 Add :debug to :type choices.
19411
19412 * progmodes/ada-mode.el (ada-format-paramlist)
19413 (ada-get-indent-case, ada-check-matching-start)
19414 (ada-check-defun-name, ada-goto-matching-decl-start)
19415 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
19416 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
19417 (ada-make-subprogram-body): Follow error conventions.
19418 (ada-case-exception-file, ada-indent-comment-as-code)
19419 (ada-indent-handle-comment-special, ada-indent-renames)
19420 (ada-indent-return, ada-search-directories-internal)
19421 (ada-tab-policy, ada-case-exception-substring)
19422 (ada-other-file-alist, ada-matching-start-re)
19423 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
19424 (ada-imenu-generic-expression, ada-compile-goto-error)
19425 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
19426 (ada-popup-menu, ada-add-extensions, ada-mode)
19427 (ada-region-selected, ada-create-case-exception)
19428 (ada-create-case-exception-substring, ada-after-keyword-p)
19429 (ada-activate-keys-for-case, ada-adjust-case-region)
19430 (ada-adjust-case-buffer, ada-format-paramlist)
19431 (ada-scan-paramlist, ada-insert-paramlist)
19432 (ada-indent-newline-indent)
19433 (ada-indent-newline-indent-conditional)
19434 (ada-justified-indent-current, ada-goto-previous-word)
19435 (ada-indent-current, ada-get-indent-open-paren)
19436 (ada-get-indent-paramlist, ada-get-indent-end)
19437 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
19438 (ada-get-indent-block-start, ada-get-indent-subprog)
19439 (ada-get-indent-noindent, ada-get-indent-label)
19440 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
19441 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
19442 (ada-goto-stmt-end, ada-goto-next-word)
19443 (ada-check-matching-start, ada-check-defun-name)
19444 (ada-goto-matching-decl-start, ada-goto-matching-start)
19445 (ada-goto-matching-end, ada-search-ignore-string-comment)
19446 (ada-in-decl-p, ada-looking-at-semi-or)
19447 (ada-looking-at-semi-private, ada-in-paramlist-p)
19448 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
19449 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
19450 (ada-next-procedure, ada-previous-procedure, ada-next-package)
19451 (ada-previous-package, ada-create-menu)
19452 (ada-fill-comment-paragraph-justify)
19453 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
19454 (ada-other-file-name, ada-last-which-function-line)
19455 (ada-last-which-function-subprog, ada-which-function)
19456 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
19457 (ada-gen-treat-proc, ada-check-emacs-version)
19458 (ada-continuation-indent, ada-align-region-separate):
19459 Fix typos in docstrings.
19460 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
19461
19462 2005-06-16 Lute Kamstra <lute@gnu.org>
19463
19464 * simple.el (fundamental-mode): Run after-change-major-mode-hook
19465 conditionally.
19466
19467 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
19468
19469 * comint.el (comint-replace-by-expanded-filename)
19470 (comint-prompt-regexp, comint-delimiter-argument-list)
19471 (comint-preinput-scroll-to-bottom):
19472 * info.el (Info-hide-cookies-node):
19473 * ls-lisp.el (ls-lisp-classify):
19474 * find-file.el (ff-search-directories, ff-special-constructs)
19475 (ff-find-other-file):
19476 * font-lock.el (font-lock-keywords):
19477 * shell.el (shell-prompt-pattern)
19478 (shell-dynamic-complete-functions, shell-mode)
19479 (shell-delimiter-argument-list):
19480 * term.el (term-replace-by-expanded-filename)
19481 (term-prompt-regexp, term-delimiter-argument-list):
19482 * woman.el (woman-ignore, woman0-if):
19483 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
19484 * emacs-lisp/elint.el (elint-init-env):
19485 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
19486 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
19487 * language/ethio-util.el (ethio-tilde-escape)
19488 (ethio-use-three-dot-question):
19489 * net/zone-mode.el (zone-mode-load-time-setup):
19490 * progmodes/cc-align.el (c-lineup-argcont):
19491 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
19492 * progmodes/cperl-mode.el (cperl-set-style-back):
19493 * progmodes/inf-lisp.el (inferior-lisp-prompt):
19494 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
19495 Fix spellings in docstrings.
19496
19497 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
19498 * progmodes/modula2.el (m2-for): Fix spellings.
19499
19500 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
19501
19502 * simple.el (undo-more): Don't use `format' on `error' arguments.
19503 Improve argument/docstring consistency.
19504 (pending-undo-list): Doc fix.
19505
19506 * smerge-mode.el (smerge-ensure-match):
19507 * emulation/vip.el (vip-ex):
19508 * net/zone-mode.el (zone-mode-update-serial):
19509 * progmodes/idlwave.el (idlwave-complete):
19510 * progmodes/vhdl-mode.el (vhdl-visit-file)
19511 (vhdl-compose-wire-components):
19512 Don't use `format' on `error' arguments.
19513
19514 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
19515 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
19516 (tooltip-help-tips): Fix typos in docstrings.
19517
19518 2005-06-16 David Ponce <david@dponce.com>
19519
19520 * tree-widget.el (tree-widget-value-create): Simplify last change.
19521
19522 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
19523
19524 * ido.el (ido-incomplete-regexp): New variable.
19525 (ido-set-matches-1): Handle invalid-regexp error and set
19526 ido-incomplete-regexp.
19527 (ido-incomplete-regexp): New face.
19528 (ido-completions): Use it.
19529 (ido-complete, ido-exit-minibuffer, ido-completions):
19530 Handle incomplete regexps.
19531 (ido-completions): Add check for complete match when entering a regexp.
19532
19533 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
19534
19535 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
19536
19537 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
19538
19539 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
19540 by field delimiters.
19541
19542 2005-06-15 David Ponce <david@dponce.com>
19543
19544 * tree-widget.el: eval-and-compile inlined functions so they will
19545 be available at run-time too.
19546 (tree-widget-super-format-handler)
19547 (tree-widget-format-handler): Remove.
19548 (tree-widget-value-create): Handle the :indent property.
19549
19550 2005-06-15 Miles Bader <miles@gnu.org>
19551
19552 * progmodes/which-func.el (which-func): Only inherit
19553 `font-lock-function-name-face' when that makes sense against the
19554 default mode-line face, otherwise set the face color explicitly.
19555
19556 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
19557 faces instead of (non-existent) variables.
19558
19559 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
19560
19561 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
19562 (iswitchb-get-matched-buffers): Likewise. Simplify.
19563
19564 2005-06-14 Miles Bader <miles@gnu.org>
19565
19566 * progmodes/ld-script.el (ld-script-location-counter):
19567 Remove "-face" suffix from face name.
19568 (ld-script-location-counter-face):
19569 New backward-compatibility alias for renamed face.
19570 (ld-script-location-counter-face): Use renamed face.
19571
19572 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
19573 (cperl-hash): Remove "-face" suffix from face names.
19574 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
19575 New backward-compatibility aliases for renamed faces.
19576 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
19577 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
19578
19579 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
19580 name.
19581 (which-func-face): New backward-compatibility alias for renamed face.
19582 (which-func-format): Use renamed which-func face.
19583
19584 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
19585 (vhdl-function, vhdl-directive, vhdl-reserved-word)
19586 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
19587 names.
19588 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
19589 (vhdl-speedbar-configuration, vhdl-speedbar-package)
19590 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
19591 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
19592 (vhdl-speedbar-architecture-selected)
19593 (vhdl-speedbar-configuration-selected)
19594 (vhdl-speedbar-package-selected)
19595 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
19596 names.
19597 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
19598 Use renamed faces.
19599 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
19600 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
19601 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
19602 Use renamed faces.
19603 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
19604 names.
19605 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
19606 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
19607 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
19608 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
19609 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
19610 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
19611
19612 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
19613 face name.
19614 (sh-heredoc-face): New backward-compatibility alias for renamed face.
19615 (sh-heredoc-face): Use renamed sh-heredoc face.
19616
19617 * progmodes/idlw-help.el (idlwave-help-link):
19618 Remove "-face" suffix from face name.
19619 (idlwave-help-link-face):
19620 New backward-compatibility alias for renamed face.
19621 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
19622
19623 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
19624 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
19625 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
19626 New backward-compatibility aliases for renamed faces.
19627 (idlwave-shell-disabled-breakpoint-face)
19628 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
19629
19630 * progmodes/flymake.el (flymake-errline, flymake-warnline):
19631 Remove "-face" suffix from face names.
19632 (flymake-errline-face, flymake-warnline-face):
19633 New backward-compatibility aliases for renamed faces.
19634 (flymake-highlight-line): Use renamed flymake faces.
19635
19636 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
19637 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
19638 (ebrowse-member-class, ebrowse-progress):
19639 Remove "-face" suffix from face names.
19640 (ebrowse-tree-mark-face, ebrowse-root-class-face)
19641 (ebrowse-file-name-face, ebrowse-default-face)
19642 (ebrowse-member-attribute-face, ebrowse-member-class-face)
19643 (ebrowse-progress-face):
19644 New backward-compatibility aliases for renamed faces.
19645 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
19646 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
19647 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
19648 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
19649
19650 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
19651 antlr-syntax)
19652 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
19653 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
19654 names.
19655 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
19656 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
19657 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
19658 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
19659 backward-compatibility aliases for renamed faces.
19660 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
19661 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
19662 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
19663 remove "font-lock-". Use renamed antlr-mode faces.
19664 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
19665 literal face-names with face variable references.
19666
19667 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
19668 face name.
19669 (Buffer-menu-buffer-face): New backward-compatibility alias for
19670 renamed face.
19671 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
19672
19673 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
19674
19675 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
19676 Eliminate "-face" suffix.
19677 (makefile-targets): Inherit from font-lock-function-name-face and
19678 eliminate "-face" suffix.
19679 (makefile-shell): Remove attributes and eliminate "-face" suffix.
19680 (makefile-*-font-lock-keywords): Append makefile-targets in rule
19681 actions, instead of prepending, to make it less visible.
19682 (makefile-previous-dependency, makefile-match-dependency):
19683 Don't match a target on a continuation line.
19684
19685 * files.el (auto-mode-alist): Put Makefile in gmake mode.
19686
19687 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
19688
19689 * progmodes/gdb-ui.el (menu): Re-order menu items.
19690 (gdb-tooltip-print): Respect tooltip-use-echo-area.
19691
19692 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
19693 Define in tooltip.el.
19694 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
19695 (gud-tooltip-tips): Respect tooltip-use-echo-area and
19696 gud-tooltip-echo-area.
19697
19698 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
19699 backward compatibility and make obsolete.
19700 (tooltip-help-tips): Use tooltip-use-echo-area.
19701 (tooltip-show-help-function): Rename to...
19702 (tooltip-show-help): ...this, because it is a function.
19703 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
19704
19705 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
19706
19707 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
19708 (edebug-print-length, edebug-print-level, edebug-print-circle)
19709 (edebug-modify-breakpoint, edebug-eval-last-sexp)
19710 (edebug-eval-print-last-sexp): Doc fixes.
19711
19712 2005-06-14 Kim F. Storm <storm@cua.dk>
19713
19714 * ido.el (ido-mode): Make a new keymap every time we enable ido,
19715 as the coverage buffer/file/both may change.
19716
19717 2005-06-14 Lute Kamstra <lute@gnu.org>
19718
19719 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
19720 and run-mode-hooks. Simplify.
19721
19722 * mail/rmailedit.el (rmail-edit-mode):
19723 * progmodes/octave-inf.el (inferior-octave-mode):
19724 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
19725
19726 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
19727 and run-mode-hooks.
19728 (recentf-edit-list, recentf-open-files): Don't call
19729 kill-all-local-variables directly.
19730
19731 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
19732
19733 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
19734
19735 * emacs-lisp/byte-run.el (make-obsolete)
19736 (define-obsolete-function-alias): Rename arguments FUNCTION and
19737 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
19738 (make-obsolete-variable, define-obsolete-variable-alias):
19739 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
19740 respectively.
19741
19742 * isearchb.el (isearchb-activate):
19743 * pcvs.el (cvs-mode):
19744 * ses.el (ses-load):
19745 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
19746 * net/tramp.el (tramp-find-file-exists-command)
19747 (tramp-find-shell):
19748 * progmodes/ada-mode.el (ada-create-case-exception)
19749 (ada-create-case-exception-substring, ada-make-subprogram-body):
19750 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
19751 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
19752 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
19753 * textmodes/org.el (org-promote, org-evaluate-time-range)
19754 (org-agenda-next-date-line, org-agenda-previous-date-line)
19755 (org-agenda-error, org-open-at-point, org-table-move-row)
19756 (org-format-table-table-html-using-table-generate-source)
19757 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
19758 * textmodes/reftex.el (reftex-access-scan-info):
19759 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
19760 (reftex-toc-promote-prepare): Follow error conventions.
19761
19762 * diff-mode.el (diff-mode): Fix typo in docstring.
19763
19764 * forms.el (forms--intuit-from-file): Fix reference to
19765 `forms-number-of-fields' in error message.
19766 (forms-print): Fix quoting in error message.
19767
19768 * forms.el (forms-mode):
19769 * emulation/vi.el (vi-goto-insert-state):
19770 * progmodes/flymake.el (flymake-new-err-info)
19771 (flymake-start-syntax-check-for-current-buffer)
19772 (flymake-simple-cleanup):
19773 * eshell/esh-var.el (eshell/export):
19774 * progmodes/gud.el (xdb):
19775 * textmodes/flyspell.el (flyspell-incorrect-hook)
19776 (flyspell-maybe-correct-transposition)
19777 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
19778
19779 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
19780
19781 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
19782 minibuffer prompt.
19783
19784 2005-06-13 Kim F. Storm <storm@cua.dk>
19785
19786 * subr.el (add-to-ordered-list): New defun.
19787
19788 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
19789 add cua--keymap-alist to emulation-mode-map-alists.
19790
19791 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
19792
19793 * subr.el (complete-in-turn): New macro.
19794 (dynamic-completion-table, lazy-completion-table): Add debug info.
19795
19796 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
19797 in preference to face aliases.
19798
19799 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
19800 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
19801 Remove unused vars `start' and `firstline'.
19802 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
19803 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
19804
19805 2005-06-13 Eli Zaretskii <eliz@gnu.org>
19806
19807 * cus-start.el (all): Don't complain about missing GTK-related
19808 variables, unless either `gtk' is boundp or this isn't a
19809 `windows-nt' build.
19810
19811 2005-06-13 Lute Kamstra <lute@gnu.org>
19812
19813 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
19814 run-mode-hooks.
19815
19816 * ediff-mult.el (ediff-meta-mode):
19817 * ediff-util.el (ediff-mode): Use run-mode-hooks.
19818
19819 * ledit.el (ledit-mode): Use delay-mode-hooks.
19820
19821 * woman.el (woman-mode-line-format): Delete constant.
19822 (woman-mode-map): Initialize it properly.
19823 (woman-mode): Set mode-class property to special.
19824 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
19825 Set major-mode and mode-name. Don't set mode-line-format directly.
19826 (Man-getpage-in-background): Don't reference woman-mode-line-format.
19827
19828 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
19829 string argument obsolete.
19830
19831 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
19832
19833 * textmodes/org.el (org-CUA-compatible): New option.
19834 (org-disputed-keys): New variable.
19835 (org-key): New function.
19836 (orgtbl-make-binding): Add docstring to the created function.
19837 (org-mode): Set paragraph start/separate regexps.
19838 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
19839 (org-archive-location, org-archive-mark-done)
19840 (org-archive-stamp-time): New options.
19841 (org-archive-subtree): New command.
19842 (org-fill-paragraph): New function.
19843 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
19844 (org-fake-empty-table-line): Function removed.
19845 (org-format-org-table-html): Do not create empty table lines at
19846 separator lines. Improved table header treatment.
19847 (org-link-format): New option.
19848 (org-make-link): New function.
19849 (org-insert-link, org-store-link): Use org-make-link.
19850 (org-open-file): Quote file name for shell command, to allow
19851 spaces in file names.
19852 (org-link-regexp): Fix bug with mailto link.
19853 (org-link-maybe-angles-regexp, org-protected-link-regexp):
19854 New constants.
19855 (org-export-as-html): Deal with the optional angles around a link.
19856 Better treatment of file: links.
19857 (org-open-at-point): Replace @{ and @} with < and >.
19858 (org-run-mode-hooks): Function removed.
19859 (org-agenda-mode): No longer use `org-run-mode-hooks'.
19860
19861 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
19862
19863 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
19864 MI command -data-list-register-values.
19865 (gdb-post-prompt): Indent properly.
19866
19867 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
19868
19869 * hilit-chg.el (highlight-changes-colors): Rename from
19870 `highlight-changes-colours'.
19871 (highlight-changes-colours): Keep as obsolete alias.
19872 (highlight-changes-face-list): Doc fix.
19873 (hilit-chg-make-list): Use `highlight-changes-colors'.
19874
19875 2005-06-12 Mark A. Hershberger <mah@everybody.org>
19876
19877 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
19878 defun-prompt-regexp.
19879
19880 2005-06-12 Eli Zaretskii <eliz@gnu.org>
19881
19882 * loadup.el: Don't say we are dumping under 2 names on windows-nt
19883 and cygwin.
19884
19885 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
19886 Don't use an old loaddefs.el, as in Makefile.in.
19887
19888 2005-06-12 Lute Kamstra <lute@gnu.org>
19889
19890 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
19891
19892 * man.el (Man-mode-map): Initialize it properly.
19893 (Man-mode): Set mode-class property to special.
19894
19895 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
19896
19897 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
19898
19899 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
19900 A newline is needed in the docstring there.
19901
19902 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
19903 Doc fixes.
19904
19905 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19906
19907 * printing.el: Doc fix. The menubar is no more changed when printing
19908 is loaded, it only changes when pr-menu-bind or pr-update-menus is
19909 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
19910 (pr-version): New version number (6.8.4).
19911 (pr-menu-bind): New command.
19912 (pr-update-menus): Docstring and code fix.
19913 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
19914 Docstring fix.
19915 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
19916 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
19917
19918 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
19919
19920 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
19921 "Returns" to "return", document useful return values, etc.
19922
19923 2005-06-11 Alan Mackenzie <acm@muc.de>
19924
19925 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
19926 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
19927 (adaptive-file-function): Minor amendment to doc-string.
19928
19929 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
19930
19931 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
19932 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
19933 Fix :type--it is `integer', not `string'.
19934
19935 * faces.el (modeline-highlight): Rename from (the erroneous)
19936 `modeline-higilight'.
19937
19938 2005-06-11 Lute Kamstra <lute@gnu.org>
19939
19940 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
19941 lisp-interaction-mode-map but make it the parent.
19942 (edebug-eval-mode): Use define-derived-mode.
19943
19944 2005-06-11 Andreas Schwab <schwab@suse.de>
19945
19946 * bindings.el: Add binding of `ESC functionkey' for every
19947 `M-functionkey'.
19948 * hexl.el (hexl-mode-map): Likewise.
19949
19950 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
19951
19952 * progmodes/compile.el (compilation-error-regexp-alist-alist)
19953 [msft]: update regexp for newer msft compilers.
19954
19955 2005-06-10 Mark A. Hershberger <mah@everybody.org>
19956
19957 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
19958 ATTLIST portions of included DTDs.
19959 (xml-parse-dtd): Eliminate use of inefficient match-data.
19960
19961 2005-06-10 Miles Bader <miles@gnu.org>
19962
19963 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
19964 (mpuz-text): Remove "-face" suffix from face names.
19965 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
19966 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
19967 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
19968
19969 * play/gomoku.el (gomoku-O, gomoku-X):
19970 Remove "-face" suffix from face names.
19971 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
19972 New backward-compatibility aliases for renamed faces.
19973 (gomoku-font-lock-keywords): Use renamed gomoku faces.
19974
19975 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
19976
19977 * thumbs.el: Fixes for changes of 2005-06-09.
19978 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
19979 as a directory.
19980 (thumbs-thumbname): Remove directory separator from format string;
19981 `thumbs-thumbsdir' now returns a valid directory name.
19982 (thumbs-temp-dir): New defsubst.
19983 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
19984 Use it.
19985
19986 * cus-edit.el (minibuffer):
19987 * files.el (make-backup-file-name-function):
19988 * filesets.el (filesets-external-viewers):
19989 * hilit-chg.el (highlight-changes-colours)
19990 (highlight-changes-face-list, highlight-changes-rotate-faces):
19991 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
19992 * kmacro.el (kmacro-call-macro):
19993 * log-edit.el (log-edit-changelog-full-paragraphs):
19994 * mouse.el (mouse-1-click-follows-link):
19995 * skeleton.el (skeleton-autowrap):
19996 * subr.el (insert-for-yank-1):
19997 * tempo.el (tempo-insert-region):
19998 * terminal.el (terminal-emulator):
19999 * time.el (display-time-mail-face):
20000 * vc.el (vc-annotate):
20001 * vcursor.el (vcursor-copy-line):
20002 * woman.el (woman-bold-headings, woman-ignore)
20003 (woman-default-faces, woman-monochrome-faces):
20004 * calendar/todo-mode.el (todo-insert-threshold):
20005 * emulation/pc-select.el (pc-select-selection-keys-only)
20006 (pc-selection-mode):
20007 * emulation/vip.el (vip-find-char-forward):
20008 * emulation/viper-cmd.el (viper-find-char-forward):
20009 * international/mule-cmds.el
20010 (select-safe-coding-system-accept-default-p)
20011 (input-method-exit-on-invalid-key):
20012 * international/mule-diag.el (describe-coding-system):
20013 * international/ucs-tables.el (unify-8859-on-encoding-mode):
20014 * net/browse-url.el (browse-url-xterm-program):
20015 * obsolete/lazy-lock.el (lazy-lock-mode):
20016 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
20017 (cperl-mode):
20018 * progmodes/cpp.el (cpp-face-light-name-list)
20019 (cpp-face-dark-name-list):
20020 * progmodes/delphi.el (delphi-newline-always-indents):
20021 Fix spellings in docstrings.
20022
20023 * ido.el (ido-mode, ido-file-extensions-order)
20024 (ido-default-file-method, ido-default-buffer-method)
20025 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
20026 (ido-decorations, ido-read-file-name-as-directory-commands)
20027 (ido-read-file-name-non-ido, ido-work-directory-list)
20028 (ido-ignore-item-temp-list, ido-current-directory)
20029 (ido-magic-forward-char, ido-enter-find-file)
20030 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
20031 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
20032
20033 2005-06-10 Lute Kamstra <lute@gnu.org>
20034
20035 * play/dunnet.el (dun-mode): Use define-derived-mode.
20036 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
20037 obsolete alias.
20038
20039 * play/doctor.el (doctor-mode-map): Remove defvar.
20040 (doctor-mode): Use define-derived-mode.
20041
20042 * mail/mspools.el (mspools-mode):
20043 * net/eudc-hotlist.el (eudc-hotlist-mode):
20044 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
20045
20046 2005-06-10 Miles Bader <miles@gnu.org>
20047
20048 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
20049 Remove "-face" suffix from face names.
20050 (flyspell-incorrect-face, flyspell-duplicate-face):
20051 New backward-compatibility aliases for renamed faces.
20052 (flyspell-mode-on, make-flyspell-overlay)
20053 (flyspell-highlight-incorrect-region)
20054 (flyspell-highlight-duplicate-region)
20055 (flyspell-display-next-corrections)
20056 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
20057
20058 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
20059 from face name.
20060 (texinfo-heading-face): New backward-compatibility alias for
20061 renamed face.
20062 (texinfo-heading-face): Use renamed texinfo-heading face.
20063
20064 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
20065 suffix from face names.
20066 (tex-math-face, tex-verbatim-face):
20067 New backward-compatibility aliases for renamed faces.
20068 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
20069 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
20070 literal face name.
20071
20072 * textmodes/table.el (table-cell): Remove "-face" suffix from face
20073 name.
20074 (table-cell-face): New backward-compatibility alias for renamed face.
20075 (table--put-cell-face-property, table--update-cell-face):
20076 Use renamed table-cell face.
20077
20078 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
20079 from face name.
20080 (sgml-namespace-face): New backward-compatibility alias for
20081 renamed face.
20082 (sgml-namespace-face): Use renamed sgml-namespace face.
20083
20084 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
20085 (org-level-4, org-level-5, org-level-6, org-level-7)
20086 (org-level-8, org-warning, org-headline-done)
20087 (org-deadline-announce, org-scheduled-today)
20088 (org-scheduled-previously, org-link, org-done, org-table)
20089 (org-time-grid): Remove "-face" suffix from face names.
20090 (org-level-1-face, org-level-2-face, org-level-3-face)
20091 (org-level-4-face, org-level-5-face, org-level-6-face)
20092 (org-level-7-face, org-level-8-face, org-warning-face)
20093 (org-headline-done-face, org-deadline-announce-face)
20094 (org-scheduled-today-face, org-scheduled-previously-face)
20095 (org-link-face, org-done-face, org-table-face)
20096 (org-time-grid-face):
20097 New backward-compatibility aliases for renamed faces.
20098 (org-level-faces, org-set-font-lock-defaults, org-timeline)
20099 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
20100 (org-agenda-get-timestamps, org-agenda-get-scheduled)
20101 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
20102
20103 * emulation/viper-init.el (viper-search, viper-replace-overlay)
20104 (viper-minibuffer-emacs, viper-minibuffer-insert)
20105 (viper-minibuffer-vi): Remove "-face" suffix from face names.
20106 (viper-search-face, viper-replace-overlay-face)
20107 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
20108 (viper-minibuffer-vi-face):
20109 New backward-compatibility aliases for renamed faces.
20110 (viper-search-face, viper-replace-overlay-face)
20111 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
20112 (viper-minibuffer-vi-face): Use renamed viper faces.
20113
20114 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
20115 Remove "-face" suffix from face names.
20116 (testcover-nohits-face, testcover-1value-face):
20117 New backward-compatibility aliases for renamed faces.
20118 (testcover-mark): Use renamed testcover faces.
20119
20120 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
20121 face name.
20122 (diary-button-face): New backward-compatibility alias for renamed face.
20123 (diary-entry): Use renamed diary-button face.
20124
20125 * calendar/calendar.el (diary, calendar-today, holiday)
20126 (mark-visible-calendar-date): Remove "-face" suffix from face names.
20127 (diary-face, calendar-today-face, holiday-face):
20128 New backward-compatibility aliases for renamed faces.
20129 (eval-after-load "facemenu", diary-entry-marker)
20130 (calendar-today-marker, calendar-holiday-marker, diary-face):
20131 Use renamed calendar faces.
20132
20133 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
20134 (compare-windows-face): New backward-compatibility alias for
20135 renamed face.
20136 (compare-windows-highlight): Use renamed compare-windows face.
20137
20138 * strokes.el (strokes-char): Remove "-face" suffix from face name.
20139 (strokes-char-face): New backward-compatibility alias for renamed face.
20140 (strokes-encode-buffer): Use renamed strokes-char face.
20141
20142 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
20143 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
20144 Remove "-face" suffix from face names.
20145 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
20146 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
20147 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
20148 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
20149 Use renamed pcvs faces.
20150 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
20151 * pcvs-defs.el (cvs-mode-map): Likewise.
20152 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
20153
20154 * info.el (info-title-1, info-title-2, info-title-3)
20155 (info-title-4): Remove "-face" suffix from and downcase face names.
20156 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
20157 (Info-title-4-face):
20158 New backward-compatibility aliases for renamed faces.
20159 (Info-fontify-node): Use renamed info faces.
20160
20161 * hilit-chg.el (highlight-changes, highlight-changes-delete):
20162 Remove "-face" suffix from face names.
20163 (highlight-changes-face, highlight-changes-delete-face):
20164 New backward-compatibility aliases for renamed faces.
20165 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
20166 (hilit-chg-make-list): Use renamed highlight-changes faces.
20167
20168 * generic-x.el (show-tabs-tab, show-tabs-space):
20169 Remove "-face" suffix from face names.
20170 (show-tabs-tab-face, show-tabs-space-face):
20171 New backward-compatibility aliases for renamed faces.
20172 (show-tabs-generic-mode-font-lock-defaults-1)
20173 (show-tabs-generic-mode-font-lock-defaults-2):
20174 Use renamed show-tabs faces.
20175
20176 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
20177 (smerge-markers): Remove "-face" suffix from face names.
20178 (smerge-mine-face, smerge-other-face, smerge-base-face)
20179 (smerge-markers-face):
20180 New backward-compatibility aliases for renamed faces.
20181 (smerge-mine-face, smerge-other-face, smerge-base-face)
20182 (smerge-markers-face): Use renamed smerge faces.
20183
20184 * log-view.el (log-view-file, log-view-message): Remove "-face"
20185 suffix from face names.
20186 (log-view-file-face, log-view-message-face):
20187 New backward-compatibility aliases for renamed faces.
20188 (log-view-file-face, log-view-message-face): Use renamed log-view
20189 faces.
20190
20191 * paren.el (show-paren-match, show-paren-mismatch):
20192 Remove "-face" suffix from face names.
20193 (show-paren-match-face, show-paren-mismatch-face):
20194 New backward-compatibility aliases for renamed faces.
20195 (show-paren-function): Use renamed show-paren faces.
20196
20197 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
20198 (ruler-mode-margins, ruler-mode-fringes)
20199 (ruler-mode-column-number, ruler-mode-fill-column)
20200 (ruler-mode-comment-column, ruler-mode-goal-column)
20201 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
20202 suffix from face names.
20203 (ruler-mode-default-face, ruler-mode-pad-face)
20204 (ruler-mode-margins-face, ruler-mode-fringes-face)
20205 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
20206 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
20207 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
20208 New backward-compatibility aliases for renamed faces.
20209 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
20210 (ruler-mode-column-number, ruler-mode-fill-column)
20211 (ruler-mode-comment-column, ruler-mode-goal-column)
20212 (ruler-mode-tab-stop, ruler-mode-current-column)
20213 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
20214 faces.
20215
20216 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
20217 face name.
20218 (whitespace-highlight-the-space): Use renamed face.
20219 (whitespace-highlight-face): New backward-compatibility alias for
20220 renamed face.
20221
20222 * woman.el (woman-italic, woman-bold, woman-unknown)
20223 (woman-addition, woman-symbol-face):
20224 Remove "-face" suffix from face names.
20225 (woman-italic-face, woman-bold-face, woman-unknown-face)
20226 (woman-addition-face):
20227 New backward-compatibility aliases for renamed faces.
20228 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
20229 (woman-decode-region, woman-replace-match)
20230 (woman-display-extended-fonts, woman-special-characters)
20231 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
20232 Use renamed woman faces.
20233
20234 * longlines.el (longlines-visible-face): Face removed.
20235
20236 * diff-mode.el (diff-header, diff-file-header, diff-index)
20237 (diff-hunk-header, diff-removed, diff-added, diff-changed)
20238 (diff-function, diff-context, diff-nonexistent): Remove "-face"
20239 suffix from face names.
20240 (diff-header-face, diff-file-header-face, diff-index-face)
20241 (diff-hunk-header-face, diff-removed-face, diff-added-face)
20242 (diff-changed-face, diff-function-face, diff-context-face)
20243 (diff-nonexistent-face): New backward-compatibility aliases for
20244 renamed faces.
20245 (diff-header-face, diff-file-header-face)
20246 (diff-index, diff-index-face, diff-hunk-header)
20247 (diff-hunk-header-face, diff-removed, diff-removed-face)
20248 (diff-added, diff-added-face, diff-changed-face, diff-function)
20249 (diff-function-face, diff-context-face, diff-nonexistent)
20250 (diff-nonexistent-face): Use renamed diff-mode faces.
20251
20252 * progmodes/compile.el (compilation-warning-face)
20253 (compilation-info-face): Remove "-face" suffix from face names.
20254 (compilation-warning-face, compilation-info-face):
20255 New backward-compatibility aliases for renamed faces.
20256 (compilation-warning-face, compilation-info-face):
20257 Use renamed compilation faces.
20258
20259 * add-log.el (change-log-date, change-log-name)
20260 (change-log-email, change-log-file, change-log-list)
20261 (change-log-conditionals, change-log-function)
20262 (change-log-acknowledgement): Remove "-face" suffix from face names.
20263 (change-log-date-face, change-log-name-face)
20264 (change-log-email-face, change-log-file-face)
20265 (change-log-list-face, change-log-conditionals-face)
20266 (change-log-function-face, change-log-acknowledgement-face):
20267 New backward-compatibility aliases for renamed faces.
20268 (change-log-font-lock-keywords): Use renamed change-log faces.
20269
20270 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
20271 (custom-set, custom-changed, custom-saved, custom-button)
20272 (custom-button-pressed, custom-documentation, custom-state)
20273 (custom-comment, custom-comment-tag, custom-variable-tag)
20274 (custom-variable-button, custom-face-tag, custom-group-tag-1)
20275 (custom-group-tag): Remove "-face" suffix from face names.
20276 (custom-magic-alist, custom-magic-value-create)
20277 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
20278 (custom-invalid-face, custom-rogue-face, custom-modified-face)
20279 (custom-set-face, custom-changed-face, custom-saved-face)
20280 (custom-button-face, custom-button-pressed-face)
20281 (custom-documentation-face, custom-state-face)
20282 (custom-comment-face, custom-comment-tag-face)
20283 (custom-variable-tag-face, custom-variable-button-face)
20284 (custom-face-tag-face, custom-group-tag-face-1)
20285 (custom-group-tag-face):
20286 New backward-compatibility aliases for renamed faces.
20287
20288 * wid-edit.el (widget-documentation, widget-button)
20289 (widget-field, widget-single-line-field, widget-inactive)
20290 (widget-button-pressed): "-face" suffix removed from face names.
20291 (widget-documentation-face, widget-button-face)
20292 (widget-field-face, widget-single-line-field-face)
20293 (widget-inactive-face, widget-button-pressed-face):
20294 New backward-compatibility aliases for renamed faces.
20295 (widget-documentation-face, widget-button-face)
20296 (widget-button-pressed-face, widget-specify-field)
20297 (widget-specify-inactive): Use renamed widget faces.
20298
20299 2005-06-10 Kenichi Handa <handa@m17n.org>
20300
20301 * term/x-win.el (x-clipboard-yank): Remove condition-case
20302 wrapping.
20303
20304 2005-06-11 Kenichi Handa <handa@m17n.org>
20305
20306 * add-log.el (change-log-font-lock-keywords): Make the regexp for
20307 date lines stricter.
20308
20309 2005-06-10 Zhang Wei <id.brep@gmail.com>
20310
20311 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
20312 of x-get-selection.
20313
20314 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
20315
20316 * comint.el (comint-mode, comint-snapshot-last-prompt):
20317 * frame.el (frame-current-scroll-bars):
20318 * term.el (term-mode, term-check-proc, term-input-sender)
20319 (term-simple-send, term-extract-string, term-word)
20320 (term-match-partial-filename):
20321 * window.el (window-current-scroll-bars):
20322 * emulation/cua-base.el (cua-normal-cursor-color)
20323 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
20324 (cua-global-mark-cursor-color):
20325 * mail/undigest.el (rmail-forward-separator-regex):
20326 Fix typos in docstrings.
20327
20328 * comint.el (comint-check-proc, make-comint-in-buffer)
20329 (comint-source-default): Doc fixes.
20330
20331 * term.el (term-send-string): Improve argument/docstring consistency.
20332
20333 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
20334
20335 * comint.el (comint-send-input): Bind `inhibit-read-only' around
20336 call to `delete-region'.
20337 (comint-mode-hook): Do not enable Font Lock by default.
20338
20339 2005-06-09 Lute Kamstra <lute@gnu.org>
20340
20341 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
20342 could be void.
20343
20344 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
20345
20346 * emacs-lisp/debug.el (debugger-will-be-back): New var.
20347 (debug): Use it.
20348 (debugger-step-through, debugger-continue, debugger-jump)
20349 (debugger-return-value): Set it when needed.
20350 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
20351 Use inhibit-read-only.
20352
20353 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
20354
20355 * window.el (shrink-window-if-larger-than-buffer)
20356 (window-size-fixed): Fix typo in docstring.
20357
20358 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
20359 thumbnails directory on loading.
20360 (thumbs-conversion-program): Use `eq' to check the system type,
20361 not `equal'.
20362 (thumbs-temp-dir): Initialize to `temporary-file-directory',
20363 not "/tmp". Fix docstring.
20364 (thumbs-thumbsdir): New function to return the thumbnails
20365 directory, creating it if needed.
20366 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
20367 (thumbs-temp-file): Delete variable and make it into a function.
20368 (thumbs-resize-image, thumbs-modify-image): Use it.
20369 (thumbs-kill-buffer): Simplify.
20370 (thumbs-gensym): Defalias or duplicate CL `gensym'.
20371 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
20372 docstrings.
20373
20374 2005-06-09 Kim F. Storm <storm@cua.dk>
20375
20376 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
20377 set-match-data to free markers in match-data.
20378
20379 * replace.el (replace-match-data): Pass RESEAT arg `t' to
20380 match-data to unchain markers in match-data.
20381
20382 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
20383
20384 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
20385 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
20386 unnecessary now.
20387
20388 2005-06-08 Richard M. Stallman <rms@gnu.org>
20389
20390 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
20391 give the variable a doc string that doesn't say don't set it directly.
20392
20393 * textmodes/ispell.el (ispell-check-version):
20394 Use match-string-no-properties.
20395 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
20396 (ispell-buffer-local-words): Likewise.
20397
20398 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
20399 except on terminals with enough colors to really display it.
20400 (makefile-dependency-regex): Delete spurious `bb'.
20401
20402 * faces.el (escape-glyph): Use blue once again in last case.
20403 (no-break-space): Redefine so that it isn't invisible on a tty.
20404
20405 2005-06-08 Kim F. Storm <storm@cua.dk>
20406
20407 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
20408 also when reading directory name.
20409
20410 2005-06-08 Lute Kamstra <lute@gnu.org>
20411
20412 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
20413 (flyspell-mode-line-string): Remove autoload cookie.
20414 (flyspell-mode): Remove defvar.
20415
20416 2005-06-07 Lute Kamstra <lute@gnu.org>
20417
20418 * textmodes/org.el (org-run-mode-hooks): New function.
20419 (org-agenda-mode): Use it.
20420
20421 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
20422
20423 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
20424
20425 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
20426
20427 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
20428
20429 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
20430
20431 * font-lock.el (font-lock-add-keywords): Doc fix.
20432
20433 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
20434
20435 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
20436 (tex-compile-default): In the absence of any history, use the order in
20437 tex-compile-alist to choose the preferred command.
20438 (tex-compile-commands): Reorder a bit.
20439
20440 * textmodes/flyspell.el (flyspell-auto-correct-binding)
20441 (flyspell-incorrect-face, flyspell-duplicate-face):
20442 Use (X)Emacs-agnostic code.
20443 (flyspell-mode-map): Don't overwrite at each load. Remove code
20444 redundant with the subsequent add-minor-mode. Merge Emacs and
20445 XEmacs code.
20446 (flyspell-word): Minor simplification.
20447 (flyspell-math-tex-command-p): Quieten the byte-compiler.
20448 (flyspell-external-point-words): Remove unused vars `size' and `start'.
20449 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
20450 Merge the corresponding Emacs code.
20451 (flyspell-correct-word, flyspell-xemacs-popup):
20452 Use flyspell-do-correct.
20453
20454 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
20455 a dedicated window.
20456
20457 * international/latexenc.el (latexenc-find-file-coding-system):
20458 Undo part of last patch, to turn off a compiler warning.
20459
20460 2005-06-06 Juri Linkov <juri@jurta.org>
20461
20462 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
20463 Rename `tmm-inactive-face' to `tmm-inactive'.
20464
20465 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
20466
20467 * iswitchb.el: Rename faces.
20468
20469 2005-06-06 Kim F. Storm <storm@cua.dk>
20470
20471 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
20472 (cua-global-mark): Remove -face suffix from face names.
20473
20474 * emulation/cua-gmrk.el (cua--init-global-mark):
20475 Remove cua-global-mark face setup.
20476
20477 2005-06-06 Richard M. Stallman <rms@gnu.org>
20478
20479 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
20480 just like other allowed characters.
20481 (makefile-match-dependency): Exclude leading and training whitespace
20482 from the range of regexp subexp 1.
20483 (makefile-macroassign-regex): Don't try to match the body,
20484 just the name of the macro being defined.
20485
20486 * info.el (Info-read-node-name-2): New function.
20487 (Info-read-node-name-1): Use that.
20488 Add a completion-base-size-function property.
20489
20490 * simple.el (completion-setup-function): Look for
20491 completion-base-size-function property of minibuffer-completion-table.
20492
20493 * files.el (locate-file-completion): Doc fix.
20494
20495 * printing.el: Don't call pr-update-menus; user must do that.
20496
20497 * emacs-lisp/debug.el (debugger-window): New variable.
20498 (debug): Use debugger-window if it is set and still alive.
20499 Record debugger-window for next entry.
20500
20501 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
20502
20503 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
20504
20505 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
20506 (hack-one-local-variable, hack-local-variables)
20507 (hack-local-variables-prop-line): Pass that arg.
20508
20509 2005-06-06 Kim F. Storm <storm@cua.dk>
20510
20511 * ido.el (ido-first-match, ido-only-match, ido-subdir)
20512 (ido-indicator): Remove -face suffix from face names.
20513
20514 2005-06-06 Juri Linkov <juri@jurta.org>
20515
20516 * font-lock.el (font-lock-regexp-backslash)
20517 (font-lock-regexp-backslash-construct): New faces.
20518 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
20519 after `('. Add `while-no-input' to control structures.
20520
20521 * faces.el (no-break-space, shadow): New faces.
20522 (escape-glyph): Use less loud colors pink2 and red4.
20523
20524 * diff-mode.el (diff-context-face)
20525 * dired.el (dired-ignored)
20526 * rfn-eshadow.el (file-name-shadow)
20527 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
20528
20529 * info.el (Info-title-1-face): Use green instead of yellow because
20530 bold yellow is not readable on light backgrounds.
20531
20532 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
20533 before selecting the desired mode to not spend time fontifying
20534 old contents.
20535
20536 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
20537
20538 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
20539 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
20540
20541 * ps-print.el (ps-default-fg, ps-default-bg):
20542 Fix typos in docstrings.
20543
20544 * isearchb.el (isearchb): Don't pass a spurious second argument to
20545 `iswitchb-completions'.
20546
20547 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
20548
20549 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
20550 to preserve point.
20551 (gdb-find-file-hook): Add doc string.
20552
20553 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
20554 C dereferenced pointer expression.
20555 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
20556
20557 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
20558
20559 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
20560 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
20561 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
20562 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
20563 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
20564 Make background transparent.
20565
20566 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
20567
20568 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
20569 (font-lock-remove-keywords): Doc fix.
20570 (font-lock-mode-major-mode): Compiler defvar.
20571 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
20572
20573 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
20574 (font-lock-mode): Update `font-lock-mode-major-mode'.
20575 (font-lock-set-defaults): Compiler defvar.
20576 (font-lock-default-function): Take `font-lock-mode-major-mode'
20577 into account.
20578
20579 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
20580 keep track of which major mode it enabled the minor mode for.
20581 Use find-file-hook again. Update docstring.
20582
20583 * simple.el (eval-expression-print-level)
20584 (eval-expression-print-length, eval-expression-debug-on-error):
20585 Doc fixes.
20586
20587 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
20588
20589 * iswitchb.el (iswitchb-single-match-face)
20590 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
20591 (iswitchb-invalid-regexp-face): New faces.
20592 (iswitchb-completions): Use them.
20593 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
20594 now marked as an obsolete alias.
20595 (iswitchb-read-buffer): Remove check for bound font variables.
20596 (iswitchb-invalid-regexp): New free variable.
20597 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
20598 set iswitchb-invalid-regexp.
20599 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
20600 invalid regexps.
20601 (iswitchb-completions): Add check for complete match when entering
20602 a regexp.
20603 (iswitchb-completions): Remove require-match argument.
20604 (iswitchb-exhibit): Fix caller.
20605 (iswitchb-common-match-inserted): New variable.
20606 (iswitchb-complete, iswitchb-completion-help): Use it.
20607
20608 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
20609
20610 * url-http.el (url-http-chunked-encoding-after-change-function):
20611 Use `url-http-debug' instead of `message'.
20612
20613 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
20614
20615 * url-http.el (url-http-parse-headers): Pass redirected URL as a
20616 callback argument.
20617
20618 2005-06-04 Kim F. Storm <storm@cua.dk>
20619
20620 * simple.el (line-move): Only call sit-for when moving backwards.
20621
20622 * ido.el (ido-make-merged-file-list-1): New defun split from
20623 ido-make-merged-file-list.
20624 (ido-make-merged-file-list): Bind throw-on-input around call to
20625 ido-make-merged-file-list-1. Return input-pending-p if
20626 interrupted by more input available.
20627 (ido-read-internal): Handle input-pending-p return value from
20628 ido-make-merged-file-list.
20629
20630 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
20631
20632 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
20633 compatibility code.
20634
20635 * international/latexenc.el (latexenc-find-file-coding-system):
20636 Don't inherit the EOL part of the coding-system from the
20637 tex-main buffer. Fit within 80 columns.
20638
20639 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
20640
20641 * tmm.el (tmm-inactive-face): New face.
20642 (tmm-remove-inactive-mouse-face): New function.
20643 (tmm-prompt, tmm-add-one-shortcut)
20644 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
20645 but not selectable.
20646
20647 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
20648
20649 * faces.el (face-equal): Improve argument/docstring consistency.
20650
20651 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
20652
20653 * progmodes/make-mode.el (makefile-targets-face)
20654 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
20655 (makefile-bsdmake-dependency-regex)
20656 (makefile-makepp-rule-action-regex)
20657 (makefile-bsdmake-rule-action-regex): New constants.
20658 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
20659
20660 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20661 Allow (...) within `...' for makepp messages.
20662
20663 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
20664
20665 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
20666
20667 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
20668 "." files are deleted from all file lists before comparison.
20669
20670 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
20671 (viper-ESC-key): Made them customizable.
20672
20673 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
20674
20675 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
20676
20677 * autorevert.el (auto-revert-buffers): Use save-match-data.
20678
20679 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
20680
20681 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
20682 menu items with a nil command binding.
20683
20684 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
20685
20686 * emacs-lisp/cl-macs.el (defsetf):
20687 Improve argument/docstring consistency.
20688
20689 * faces.el (list-faces-display): Improve the formatting by
20690 computing the maximum length required for any face-name (reworked
20691 patch of 1999-01-11, accidentally deleted on 1999-07-21).
20692 (internal-find-face): Remove redundant info in docstring.
20693
20694 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
20695
20696 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
20697 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
20698 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
20699 (gdb-assembler-custom): Improve regexps.
20700 (def-gdb-auto-update-handler): Use window point to preserve point.
20701
20702 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
20703
20704 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
20705
20706 2005-05-31 Jay Belanger <belanger@truman.edu>
20707
20708 * calc/calc-embed.el (calc-embedded-word): Change argument passed
20709 to calc-embedded.
20710 (calc-embedded-make-info): Have plain prefix argument select
20711 entire line.
20712
20713 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
20714
20715 * faces.el (list-faces-display): Signal error if passed a regexp
20716 that matches no face name.
20717
20718 * simple.el (filter-buffer-substring): Fix typo in docstring.
20719
20720 2005-05-31 Richard M. Stallman <rms@gnu.org>
20721
20722 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
20723 (vhdl-emacs-21): Doc fix.
20724 (vhdl-mode): Unconditionally set comment-padding.
20725 (vhdl-fixup-whitespace-region): Insert spaces only where
20726 there are none.
20727 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
20728
20729 2005-05-30 John Wiegley <johnw@newartisans.com>
20730
20731 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
20732 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
20733 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
20734 `directory-sep-char' to ?/, and all uses of `string-to-int' to
20735 `string-to-number'.
20736
20737 2005-05-30 Jay Belanger <belanger@truman.edu>
20738
20739 * calc/calc.el (calc-bug-address): Fix docstring.
20740 (calc-window-hook, calc-trail-window-hook): New variables.
20741 (calc-trail-display): Restore use of calc-trail-window-hook.
20742 (calc): Restore use of calc-window-hook.
20743
20744 2005-05-31 Masatake YAMATO <jet@gyve.org>
20745
20746 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
20747
20748 * help-fns.el (help-C-file-name): Add autoload mark for
20749 `find-function-noselect'.
20750
20751 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
20752
20753 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
20754 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
20755
20756 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
20757
20758 * calendar/diary-lib.el (mark-included-diary-files): Only kill
20759 included diary buffer if it was not already being visited.
20760 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
20761
20762 * calendar/icalendar.el (top-level): Do not require appt.
20763
20764 * mail/supercite.el (sc-select-attribution): Only use a list
20765 element from sc-attrib-selection-list if it returns a string.
20766 Reported by Davide G. M. Salvetti <salve@debian.org>.
20767
20768 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
20769
20770 * thumbs.el (thumbs-thumbname): The resulting thumbname now
20771 includes a hash value to improve its uniqueness, and has a ".jpg"
20772 extension. Also, it is now a valid filename on all systems.
20773 (thumbs-make-thumb): Use `let', not `let*'.
20774 (thumbs-show-thumbs-list): Check for JPEG availability.
20775
20776 2005-05-30 Richard M. Stallman <rms@gnu.org>
20777
20778 * filesets.el (filesets-menu-ensure-use-cached):
20779 Prevent warning when emacs-version>= is undefined.
20780
20781 * printing.el (pr-interactive-n-up): Use string-to-number.
20782
20783 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
20784
20785 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
20786 Warn only when name to be defined is quoted.
20787
20788 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
20789
20790 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
20791 Make regexp more robust.
20792 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
20793 Force regeneration of disassembly.
20794
20795 2005-05-29 Jay Belanger <belanger@truman.edu>
20796
20797 * calc/calc.el (calc-user-invocation): Check if
20798 calc-invocation-macro is non-nil.
20799
20800 2005-05-29 Juri Linkov <juri@jurta.org>
20801
20802 * add-log.el (change-log-font-lock-keywords):
20803 Add `+' to e-mail regexp to accept mail address with keywords.
20804
20805 * man.el (Man-name-regexp): Add `:' to accept qualified names.
20806
20807 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
20808
20809 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
20810
20811 * ielm.el (inferior-emacs-lisp-mode): Ditto.
20812
20813 2005-05-29 Richard M. Stallman <rms@gnu.org>
20814
20815 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
20816 Undo the change that moves to end of the current word.
20817
20818 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
20819
20820 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
20821 Throw error when count <= 0 to ensure input is a number.
20822 (gdb-read-memory-custom): Pick up address from buffer.
20823 (gdb-memory-mode): Allow user to increment and decrement
20824 memory address from header line.
20825
20826 2005-05-29 Richard M. Stallman <rms@gnu.org>
20827
20828 * flyspell.el (flyspell-version): Function deleted.
20829 (flyspell-auto-correct-previous-hook): Doc fix.
20830
20831 * jit-lock.el (jit-lock-function, jit-lock-after-change):
20832 Do nothing if memory is full.
20833
20834 * font-lock.el (font-lock-fontify-syntactically-region):
20835 Pass t for GREEDY to looking-back.
20836
20837 * saveplace.el (save-place-alist-to-file): Write the file
20838 using write-region.
20839
20840 * subr.el (looking-back): New argument GREEDY.
20841
20842 * progmodes/compile.el (compilation-start): Set the mode
20843 before inserting the initial text.
20844
20845 * progmodes/which-func.el (which-func-update-1): Turn the mode
20846 off in case of error by setting which-func-mode.
20847
20848 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
20849
20850 * flyspell.el (flyspell-auto-correct-previous-word):
20851 Narrow down to what's on the screen, and recenter overlays
20852 at the end of the next word.
20853
20854 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
20855
20856 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
20857 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
20858 (flyspell-abbrev-p): Default to nil.
20859 (flyspell-use-global-abbrev-table-p): Doc fix.
20860 (flyspell-large-region): Allow nil as value.
20861 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
20862
20863 (mail-mode-flyspell-verify): More robust handling
20864 of `mail-header-separator'. More efficient signature detection.
20865 Allow for regexp metacharacters in message-header-separator.
20866 Adding `To' not to be checked in mail-mode-flyspell-verify.
20867
20868 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
20869 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
20870 Bind flyspell-auto-correct-binding.
20871 Bind C-. and C-, .
20872 (flyspell-mode-map): Likewise.
20873 (flyspell-mode): Doc fix.
20874 (flyspell-accept-buffer-local-defs): Preserve current buffer.
20875 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
20876 (flyspell-word-cache-result): New var, always local.
20877 (flyspell-check-pre-word-p): Doc fix.
20878 (flyspell-check-changed-word-p): Handle spc like newline.
20879 (flyspell-post-command-hook): Set flyspell-word-cache-result.
20880 (flyspell-word-search-backward, flyspell-word-search-forward):
20881 New functions.
20882 (flyspell-word): Return t if nothing to check.
20883 When parsing TeX code, check for after } or \.
20884 Use flyspell-word-search-backward to find previous word.
20885 Return nil if duplicated word.
20886 For word already checked, return same value as last time.
20887 Set flyspell-word-cache-result after checking.
20888 Don't clobber the return value.
20889 (flyspell-get-word): Major rewrite.
20890 (flyspell-external-point-words): New locals pword, pcount.
20891 Fix size used in progress message.
20892 Find the proper corresponding word in flyspell-large-region-buffer.
20893 (flyspell-region): Check for flyspell-large-region = nil.
20894 (flyspell-highlight-incorrect-region): Clean up overlays in region.
20895 (flyspell-auto-correct-word): Check that WORD is a cons.
20896 (flyspell-correct-word): Likewise.
20897
20898 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
20899
20900 * progmodes/make-mode.el (makefile-rule-action-regex)
20901 (makefile-macroassign-regex, makefile-makepp-mode)
20902 (makefile-bsdmake-mode): Continuation lines may be empty.
20903 Reported by Joshua Varner.
20904 (makefile-makepp-font-lock-keywords): Add $(stem).
20905
20906 2005-05-28 Karl Berry <karl@gnu.org>
20907
20908 * textmodes/tex-mode.el: Now that tex-send-command calls
20909 shell-quote-argument (2005-03-31 change), remove all calls to
20910 shell-quote-argument; they all end up invoking tex-send-command.
20911 The double quoting loses on filenames with non-safe characters,
20912 such as "@". Reported by Frederik Fouvry.
20913
20914 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
20915
20916 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
20917 about preserving point.
20918
20919 2005-05-27 Jay Belanger <belanger@truman.edu>
20920
20921 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
20922 Info-goto-node.
20923
20924 * calc/calc-embed.el (calc-embed-arg): New variable.
20925 (calc-do-embedded-activate, calc-embedded-activate-formula)
20926 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
20927 variable by new variable.
20928 (calc-embedded-make-info): Replace undeclared variable by new
20929 variable. When selecting region with positive prefix
20930 argument, use end of previous line instead of beginning of line.
20931
20932 * calc/calc-aent.el (calc-arg-values): Declare it.
20933
20934 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
20935 Declare them.
20936
20937 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
20938
20939 * calc/calc.el (calc-alg-map): Declare it.
20940
20941 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
20942
20943 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
20944
20945 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
20946 (gdb-registers-buffer, toggle-gdb-all-registers):
20947 Toggle display of floating point registers.
20948 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
20949
20950 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
20951 (toggle-gud-tooltip-dereference):
20952 Rename from gud-toggle-tooltip-dereference.
20953
20954 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20955
20956 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
20957
20958 2005-05-27 Jay Belanger <belanger@truman.edu>
20959
20960 * calc/calc-prog.el (calc-kbd-report): Remove.
20961 (calc-kbd-query): Rewrite.
20962
20963 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
20964
20965 * image.el (image-library-alist): Move to image.c.
20966 (image-type-available-p): Doc fix.
20967
20968 2005-05-27 Lute Kamstra <lute@gnu.org>
20969
20970 * calc/calc.el (calc):
20971 * outline.el (outline-1, outline-2, outline-3, outline-4)
20972 (outline-5, outline-6, outline-7, outline-8):
20973 * textmodes/dns-mode.el (dns-mode):
20974 * textmodes/sgml-mode.el (sgml-namespace-face):
20975 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
20976 (tex-verbatim-face, tex-use-reftex):
20977 * textmodes/texinfo.el (texinfo-heading-face):
20978 Specify customization group.
20979
20980 * longlines.el: Don't require easy-mmode.
20981 (longlines-visible-face): Specify customization group.
20982
20983 2005-05-27 Kenichi Handa <handa@m17n.org>
20984
20985 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
20986 encoding table of windows-1251.
20987
20988 * international/ucs-tables.el (ucs-set-table-for-input):
20989 If translation-table-for-input of a coding system is a symbol, get
20990 its translation-table property.
20991
20992 * international/code-pages.el: Don't register a coding system into
20993 non-iso-charset-alist more than once.
20994 (cp-make-coding-system): Likewise.
20995
20996 2005-05-26 John Wiegley <johnw@newartisans.com>
20997
20998 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
20999 `eshell-resume-eval' is wrapped in a list, it indicates that the
21000 command was run asynchronously. In that case, unwrap the value
21001 before checking the delimiter value.
21002
21003 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
21004 character before a space at the end of a line is \, assume the space
21005 is part of the last argument rather than a final argument separator.
21006
21007 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
21008 is in use, and the target is `t' or `nil' (which are the most common
21009 values), don't assume that the symbol target is a buffer.
21010
21011 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
21012
21013 * calendar/calendar.el (calendar-mode-line-format):
21014 Use mode-line-highlight as mouse-face.
21015
21016 * time.el (display-time-string-forms, display-time-update):
21017 Use mode-line-highlight as mouse-face.
21018
21019 2005-05-26 Jay Belanger <belanger@truman.edu>
21020
21021 * calc/calc.el (calc-language-alist): Remove extra defvar.
21022
21023 2005-05-26 Lute Kamstra <lute@gnu.org>
21024
21025 * arc-mode.el (archive-mode):
21026 * bookmark.el (bookmark-read-annotation-mode)
21027 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
21028 * bs.el (bs-mode):
21029 * calc/calc-yank.el (calc-edit-mode):
21030 * calc/calc.el (calc-mode, calc-trail-mode):
21031 * calculator.el (calculator-mode):
21032 * chistory.el (command-history-mode):
21033 * comint.el:
21034 * cus-edit.el (custom-mode):
21035 * descr-text.el (describe-text-mode):
21036 * ebuff-menu.el (Electric-buffer-menu-mode):
21037 * ediff-util.el (ediff-mode):
21038 * emacs-lisp/re-builder.el (reb-mode):
21039 * emulation/vi.el (vi-mode-setup):
21040 * emulation/ws-mode.el (wordstar-mode):
21041 * eshell/esh-mode.el (eshell-mode):
21042 * forms.el (forms-mode):
21043 * help-mode.el (help-mode):
21044 * hexl.el (hexl-mode):
21045 * ibuffer.el (ibuffer-mode):
21046 * ielm.el (inferior-emacs-lisp-mode):
21047 * info.el (Info-mode, Info-edit-mode):
21048 * international/swedish.el:
21049 * ledit.el (ledit-from-lisp-mode):
21050 * locate.el (locate-mode):
21051 * mail/rmail.el (rmail-mode):
21052 * mail/rmailedit.el (rmail-edit-mode):
21053 * mail/rmailsum.el (rmail-summary-mode):
21054 * mail/supercite.el (sc-electric-mode):
21055 * net/eudc.el (eudc-mode):
21056 * net/quickurl.el (quickurl-list-mode):
21057 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
21058 * obsolete/ooutline.el (outline-mode):
21059 * obsolete/options.el (Edit-options-mode):
21060 * obsolete/rnews.el (news-mode):
21061 * obsolete/rnewspost.el (news-reply-mode):
21062 * play/5x5.el (5x5-mode):
21063 * play/decipher.el (decipher-mode, decipher-stats-mode):
21064 * play/gomoku.el (gomoku-mode):
21065 * play/snake.el (snake-mode):
21066 * play/solitaire.el (solitaire-mode):
21067 * play/tetris.el (tetris-mode):
21068 * progmodes/ada-mode.el (ada-mode):
21069 * progmodes/antlr-mode.el (antlr-mode):
21070 * progmodes/autoconf.el (autoconf-mode):
21071 * progmodes/dcl-mode.el (dcl-mode):
21072 * progmodes/delphi.el (delphi-mode):
21073 * progmodes/ebrowse.el (ebrowse-tree-mode)
21074 (ebrowse-electric-list-mode, ebrowse-member-mode)
21075 (ebrowse-electric-position-mode):
21076 * progmodes/f90.el (f90-mode):
21077 * progmodes/fortran.el (fortran-mode):
21078 * progmodes/icon.el (icon-mode):
21079 * progmodes/idlw-help.el (idlwave-help-mode):
21080 * progmodes/idlw-shell.el (idlwave-shell-mode):
21081 * progmodes/idlwave.el (idlwave-mode):
21082 * progmodes/inf-lisp.el (inferior-lisp-mode):
21083 * progmodes/m4-mode.el (m4-mode):
21084 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
21085 * progmodes/modula2.el (modula-2-mode):
21086 * progmodes/octave-inf.el (inferior-octave-mode):
21087 * progmodes/octave-mod.el (octave-mode):
21088 * progmodes/pascal.el (pascal-mode):
21089 * progmodes/sh-script.el (sh-mode):
21090 * progmodes/sql.el (sql-mode, sql-interactive-mode):
21091 * progmodes/vhdl-mode.el (vhdl-mode):
21092 * progmodes/xscheme.el (scheme-interaction-mode):
21093 * replace.el (occur-mode):
21094 * ses.el (ses-mode):
21095 * simple.el (completion-list-mode):
21096 * skeleton.el:
21097 * speedbar.el (speedbar-mode):
21098 * term.el (term-mode):
21099 * terminal.el (terminal-edit-mode):
21100 * textmodes/reftex-index.el (reftex-index-mode)
21101 (reftex-index-phrases-mode):
21102 * textmodes/reftex-sel.el (reftex-select-label-mode)
21103 (reftex-select-bib-mode):
21104 * textmodes/reftex-toc.el (reftex-toc-mode):
21105 * wdired.el (wdired-change-to-wdired-mode):
21106 * wid-browse.el (widget-browse-mode):
21107 Use run-mode-hooks.
21108
21109 * array.el (array-mode):
21110 * calendar/todo-mode.el (todo-mode):
21111 * man.el (Man-mode):
21112 * play/landmark.el (lm-mode):
21113 * play/mpuz.el (mpuz-mode):
21114 Use kill-all-local-variables and run-mode-hooks.
21115
21116 * subr.el (delay-mode-hooks): Specify indentation.
21117
21118 2005-05-26 Mark A. Hershberger <mah@everybody.org>
21119
21120 * xml.el (xml-substitute-special): Don't die for undefined xml
21121 entities.
21122
21123 2005-05-26 Jay Belanger <belanger@truman.edu>
21124
21125 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
21126 of nil.
21127
21128 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
21129
21130 * progmodes/gdb-ui.el (gdb-frame-address):
21131 Rename from gdb-current-address.
21132 (gdb-previous-frame-address): Rename from gdb-previous-address.
21133 (gdb-selected-frame): Rename from gdb-current-frame.
21134 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
21135 (gdb-frame-number): Rename from gdb-current-stack-level.
21136 (gdb-ann3): Match new mode-name for disassembly buffer.
21137 Extend initialization of variables.
21138 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
21139 (gdb-memory-mode): Use mouse-face in header line.
21140 (gdb-assembler-buffer-name): Call it disassembly and give frame
21141 in mode line.
21142 (gdb-source-spec-regexp, gdb-assembler-custom)
21143 (gdb-invalidate-assembler, gdb-frame-handler):
21144 Make robust to leading zeroes in address format.
21145
21146 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
21147
21148 * textmodes/org.el (org-mode): Use `define-derived-mode' to
21149 define `org-mode'.
21150 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
21151
21152 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
21153
21154 * log-edit.el (log-edit-changelog-entries): Distinguish between
21155 filenames like xfns.c and fns.c.
21156
21157 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
21158
21159 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
21160 point after reverting.
21161 (Buffer-menu-make-sort-button): Handle the case where
21162 `Buffer-menu-use-header-line' is nil.
21163
21164 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
21165
21166 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
21167 New funcs. In minibuffer-local-completion-map bind `]', `/'
21168 and `:' to them.
21169
21170 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
21171
21172 * startup.el (normal-top-level): Allow modification of load-path while
21173 we're iterating over it.
21174
21175 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
21176
21177 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
21178 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
21179 (thumbs-resize-interactive, thumbs-insert-image)
21180 (thumbs-insert-thumb, thumbs-dired-show-marked)
21181 (thumbs-find-image-at-point, thumbs-delete-images)
21182 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
21183 (thumbs-increment-image-size, thumbs-decrement-image-size):
21184 Fix typos in docstrings.
21185
21186 2005-05-24 Andre Spiegel <spiegel@gnu.org>
21187
21188 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
21189 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
21190 (cperl-mode): Use them.
21191
21192 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
21193
21194 * window.el (quit-window, shrink-window-if-larger-than-buffer):
21195 Doc fixes.
21196
21197 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
21198
21199 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
21200 Bind C-d to gdb-inferior-io-eof.
21201
21202 * dired.el (dired-dnd-popup-notice): Use message-box.
21203
21204 2005-05-23 Masatake YAMATO <jet@gyve.org>
21205
21206 * bindings.el (mode-line-major-mode-keymap):
21207 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
21208
21209 * faces.el (mode-line-highlight): New face.
21210
21211 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
21212 as mouse-face.
21213
21214 * bindings.el (top-level, help-echo, mode-line-modified)
21215 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
21216 as mouse-face.
21217
21218 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
21219
21220 * progmodes/cc-engine.el (c-guess-basic-syntax):
21221 Remove spurious call to `zerop'.
21222
21223 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
21224
21225 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
21226
21227 CC Mode update to 5.30.10:
21228
21229 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
21230 could go past the limit in decoration level 2, thereby causing
21231 errors during interactive fontification.
21232
21233 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
21234 the file is evaluated interactively.
21235
21236 * cc-engine.el (c-guess-basic-syntax): Handle operator
21237 declarations somewhat better in C++.
21238
21239 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
21240 make use of `run-mode-hooks' which has been added in Emacs 21.1.
21241 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
21242 (awk-mode): Use it.
21243 (make-local-hook): Suppress warning about obsoleteness.
21244
21245 * cc-engine.el, cc-align.el, cc-cmds.el
21246 (c-append-backslashes-forward, c-delete-backslashes-forward)
21247 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
21248 Compensate for return value from `forward-line' when it has moved
21249 but not to a different line due to eob.
21250
21251 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
21252 `objc-method-intro' and `objc-method-args-cont'.
21253
21254 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
21255
21256 CC Mode update to 5.30.10:
21257
21258 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
21259 in the copyright statement. Incidentally, change "along with GNU
21260 Emacs" to "along with this program" where it occurs.
21261
21262 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
21263 so that it is interactive, hence can be found by M-x awk-mode
21264 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
21265 <gmorris+emacs@ast.cam.ac.uk>.
21266
21267 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
21268 Mode's regexps.
21269
21270 2005-05-23 Kevin Ryde <user42@zip.com.au>
21271
21272 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
21273 c-parse-state, to avoid a lisp error (on bad code).
21274
21275 2005-05-23 Lute Kamstra <lute@gnu.org>
21276
21277 * subr.el (font-lock-defaults): Remove defvar as it's already
21278 defined in font-core.el.
21279
21280 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
21281
21282 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
21283
21284 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
21285 more general and work when GDB variable "print pretty" is on,
21286 as with Emacs, for example.
21287
21288 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
21289
21290 * font-core.el: Update comment.
21291
21292 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
21293 Use `after-change-major-mode-hook' instead of `find-file-hook'.
21294
21295 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
21296
21297 2005-05-22 Eli Zaretskii <eliz@gnu.org>
21298
21299 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
21300 and `yank-handler' in the doc strings.
21301
21302 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
21303
21304 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
21305
21306 2005-05-22 Richard M. Stallman <rms@gnu.org>
21307
21308 * help.el (describe-key): Move print-help-return-message call
21309 out of conditional.
21310
21311 * progmodes/etags.el (list-tags): Use with-no-warnings.
21312
21313 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
21314 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
21315 (starttls-extra-args, starttls-extra-arguments): Add defvars.
21316
21317 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
21318
21319 * language/viet-util.el (viet-viscii-nonascii-translation-table):
21320 Add defvar.
21321
21322 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
21323 Use defvar, not defconst.
21324
21325 * hexl.el (hexl-follow-line): Use with-no-warnings.
21326
21327 * emulation/tpu-extras.el: Use write-file-functions instead of
21328 write-file-hooks.
21329
21330 * dired.el (dired-font-lock-keywords): Fontify files with junk
21331 extensions even if marked by -F.
21332
21333 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
21334
21335 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
21336 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
21337 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
21338 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
21339 (concatenate, list-length, get*, getf, cl-remprop):
21340 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
21341 (etypecase, progv, lexical-let, lexical-let*)
21342 (multiple-value-bind, multiple-value-setq, shiftf):
21343 Improve argument/docstring consistency.
21344
21345 * subr.el (focus-frame, unfocus-frame): Revert deletion on 2005-05-01.
21346
21347 2005-05-22 Andre Spiegel <spiegel@gnu.org>
21348
21349 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
21350 doesn't exist.
21351
21352 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
21353 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
21354
21355 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
21356
21357 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
21358 already deleted variables: auto-fill-hook, blink-paren-hook,
21359 lisp-indent-hook, inhibit-local-variables, unread-command-event,
21360 suspend-hooks, comment-indent-hook, meta-flag,
21361 before-change-function, after-change-function,
21362 font-lock-doc-string-face.
21363
21364 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
21365
21366 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
21367
21368 2005-05-21 Eli Zaretskii <eliz@gnu.org>
21369
21370 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
21371 rmail-dont-reply-to.
21372
21373 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
21374
21375 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
21376 literal blank when splitting new-header-values.
21377
21378 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
21379
21380 * calendar/cal-menu.el (cal-menu-update): Add separator as a
21381 string so that tmm doesn't create a completion entry for it.
21382
21383 * textmodes/table.el (table-disable-menu): Ditto.
21384
21385 2005-05-21 Richard M. Stallman <rms@gnu.org>
21386
21387 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
21388
21389 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
21390
21391 * net/rcompile.el (remote-compile): Use compilation-start.
21392
21393 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
21394
21395 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
21396
21397 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
21398 Default to makefile-bsdmake-mode on BSD systems.
21399
21400 * imenu.el (imenu-generic-expression, imenu--generic-function'):
21401 REGEXP may also be a search function now. The part of doc-string
21402 for describing the structure was 95% identical to that of
21403 `imenu--generic-function'. Unify it there.
21404
21405 * progmodes/make-mode.el (makefile-imenu-generic-expression):
21406 Use function to find dependencies, because regexp alone is so complex,
21407 it easily goes into an endless loop.
21408 (makefile-makepp-mode): Also add submenu for Perl functions
21409 defined in the makefile.
21410 (makefile-bsdmake-mode): Special imenu-generic-expression no
21411 longer needed, due to function call.
21412 (makefile-match-dependency): Take BOUND into account when checking
21413 if we're through.
21414
21415 2005-05-20 Jay Belanger <belanger@truman.edu>
21416
21417 * calc/calc-units.el (calc-invalidate-units-table):
21418 Use inhibit-read-only.
21419 (math-build-units-table-buffer): Use view-mode.
21420
21421 2005-05-20 David Kastrup <dak@gnu.org>
21422
21423 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
21424 easy-menu-add is not a nop on Emacs; and clarify when to call it.
21425
21426 2005-05-20 Lute Kamstra <lute@gnu.org>
21427
21428 * diff-mode.el (diff-header-face, diff-file-header-face)
21429 (diff-index-face, diff-hunk-header-face, diff-removed-face)
21430 (diff-added-face, diff-changed-face, diff-function-face)
21431 (diff-context-face, diff-nonexistent-face): Put them in the
21432 diff-mode customization group.
21433
21434 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
21435
21436 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
21437
21438 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
21439
21440 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
21441 Minor regexp-optimization.
21442
21443 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
21444
21445 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
21446 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
21447 (org-agenda-add-time-grid-maybe): New function.
21448 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
21449 (org-table-create): `dotimes' instead of `mapcar'.
21450 (org-xor): Simplify implementation.
21451 (org-agenda): `inhibit-redisplay' turned on.
21452 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
21453 a consistent line after a state change.
21454 (org-agenda-remove-times-when-in-prefix): New option.
21455 (org-prefix-has-time): New variable.
21456 (org-parse-time-string): Optional argument NODEFAULT.
21457 (org-format-agenda-item): Parse items for time-of-day
21458 specifications and move these into the prefix if possible.
21459 (org-agenda-priority): Get current heading, not previous heading
21460 during agenda remote editing.
21461
21462 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
21463
21464 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
21465 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
21466 (remove-duplicates, delete-duplicates, substitute)
21467 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
21468 (nsubstitute-if-not, find, find-if, find-if-not, position)
21469 (position-if, position-if-not, count, count-if, count-if-not)
21470 (mismatch, search, sort*, stable-sort, merge, member*)
21471 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
21472 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
21473 (intersection, nintersection, set-difference, nset-difference)
21474 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
21475 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
21476 (nsublis, tree-equal): Improve argument/docstring consistency.
21477
21478 * subr.el (send-string, send-region): Remove obsolescence declaration.
21479 (window-dot, set-window-dot, read-input, show-buffer)
21480 (eval-current-buffer, string-to-int):
21481 Add release number to obsolescence declarations.
21482
21483 2005-05-19 Kim F. Storm <storm@cua.dk>
21484
21485 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
21486 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
21487
21488 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
21489
21490 * faces.el (list-faces-display): Make back button respect optional
21491 regexp arg.
21492
21493 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
21494
21495 * calculator.el (calculator-radix-grouping-mode)
21496 (calculator-radix-grouping-digits, calculator-displayer)
21497 (calculator-radix-grouping-separator, calculator-copy-displayer):
21498 * dabbrev.el (dabbrev-search-these-buffers-only):
21499 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
21500 (diff-advance-after-apply-hunk, diff-mode-hook)
21501 (diff-minor-mode-prefix):
21502 * imenu.el (imenu-use-popup-menu):
21503 * jit-lock.el (jit-lock-context-time):
21504 * newcomment.el (comment-fill-column, comment-column)
21505 (comment-style, comment-padding, comment-multi-line)
21506 (comment-empty-lines, comment-auto-fill-only-comments):
21507 * reveal.el (reveal-around-mark):
21508 * uniquify.el (uniquify-buffer-name-style)
21509 (uniquify-after-kill-buffer-p)
21510 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
21511 (uniquify-min-dir-content, uniquify-separator)
21512 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
21513 * w32-vars.el (w32-fixed-font-alist):
21514 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
21515 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
21516 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
21517 * progmodes/perl-mode.el (perl-indent-level)
21518 (perl-continued-statement-offset, perl-continued-brace-offset)
21519 (perl-brace-offset, perl-brace-imaginary-offset)
21520 (perl-label-offset, perl-indent-continued-arguments)
21521 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
21522 * progmodes/tcl.el (tcl-indent-level)
21523 (tcl-continued-indent-level, tcl-auto-newline)
21524 (tcl-tab-always-indent, tcl-electric-hash-style)
21525 (tcl-help-directory-list, tcl-use-smart-word-finder)
21526 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
21527 (inferior-tcl-source-command):
21528 * textmodes/fill.el (enable-kinsoku):
21529 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
21530 * textmodes/table.el (table-yank-handler):
21531 Specify missing group (and type, if simple) in defcustom.
21532
21533 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
21534
21535 * progmodes/compile.el (compilation-finish-function): Fix defvar.
21536
21537 2005-05-19 Richard M. Stallman <rms@gnu.org>
21538
21539 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
21540
21541 * subr.el (event-basic-type): Don't get an error.
21542 (left-fringe-p): Function deleted.
21543
21544 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
21545 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
21546
21547 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
21548 in recursive copy.
21549
21550 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
21551
21552 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
21553
21554 * emacs-lisp/bytecomp.el
21555 (byte-compile-file-form-custom-declare-variable):
21556 Call byte-compile-nogroup-warn if appropriate.
21557
21558 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
21559 (compilation-set-window): Don't call left-fringe-p; do it directly.
21560
21561 2005-05-19 Jay Belanger <belanger@truman.edu>
21562
21563 * calc/calc-graph.el (calc-graph-format-data): Make sure
21564 var-PlotRejects is bound before trying to check its value.
21565
21566 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
21567
21568 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
21569 definition of this variable from reftex-global.el to reftex.el,
21570 because it is needed in the menu.
21571
21572 2005-05-19 Lute Kamstra <lute@gnu.org>
21573
21574 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
21575 years are fixed. Don't insert a space after a dash.
21576
21577 2005-05-19 Kim F. Storm <storm@cua.dk>
21578
21579 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
21580
21581 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
21582
21583 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
21584 strings, because (eq ... ?\\) is fairly frequent.
21585
21586 * progmodes/make-mode.el (makefile-add-this-line-targets):
21587 Simplify and integrate into `makefile-pickup-targets'.
21588 (makefile-add-this-line-macro): Simplify and integrate into
21589 `makefile-pickup-macros.
21590 (makefile-pickup-filenames-as-targets): Simplify.
21591 (makefile-previous-dependency, makefile-match-dependency):
21592 Don't stumble over `::'.
21593
21594 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
21595
21596 * subr.el (post-command-idle-hook, post-command-idle-delay):
21597 Remove obsoletion of post-command-idle-hook and
21598 post-command-idle-delay.
21599
21600 * faces.el (list-faces-display): Provide button when describe-face
21601 is called to take user back to the list of faces.
21602
21603 * help-fns.el (describe-variable): Remove hyperlinks in a
21604 variable's value as these are quite frequently inappropriate.
21605
21606 * follow.el (follow-submit-feedback, follow-mode):
21607 Remove references to post-command-idle-hook.
21608
21609 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
21610
21611 * progmodes/make-mode.el (makefile-previous-dependency)
21612 (makefile-match-dependency): Check for := (and in bsd mode also
21613 !=) to give a better result, even when font-lock is not on.
21614
21615 2005-05-18 Jay Belanger <belanger@truman.edu>
21616
21617 * calc/calc-help.el (calc-s-prefix-help):
21618 Add `calc-copy-special-constant' to help string.
21619
21620 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
21621
21622 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
21623
21624 2005-05-18 Jay Belanger <belanger@truman.edu>
21625
21626 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
21627 in linear factors are in proper order.
21628
21629 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
21630
21631 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
21632 Support for jurabib.
21633
21634 * textmodes/reftex.el (featurep): Define aliases for overlay
21635 commands, for XEmacs compatibility, and use these aliases in
21636 overlay initializations.
21637 (reftex-highlight): Use `reftex-move-overlay'.
21638 (reftex-unhighlight): Use `reftex-delete-overlay'.
21639 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
21640 (reftex-access-search-path): Use `reftex-uniquify' instead of
21641 `reftex-uniq'
21642
21643 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
21644 `before-string' property modification enables for Emacs as well.
21645 (reftex-select-item): Use `reftex-delete-overlay'.
21646 (reftex-select-mark): Use `reftex-make-overlay' and
21647 `reftex-overlay-put'.
21648 (reftex-select-unmark): Use `reftex-delete-overlay' and
21649 `reftex-overlay-put'.
21650
21651 2005-05-18 Lute Kamstra <lute@gnu.org>
21652
21653 * emacs-lisp/lisp.el (check-parens): Fix docstring.
21654
21655 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
21656
21657 * add-log.el (add-change-log-entry):
21658 * array.el (array-make-template, array-reconfigure-rows)
21659 (array-init-max-row, array-init-max-column)
21660 (array-init-columns-per-line, array-init-field-width):
21661 * replace.el (replace-match-maybe-edit, perform-replace):
21662 * textmodes/spell.el (spell-region):
21663 Replace `read-input' by `read-string'.
21664
21665 * forms.el (forms-mode):
21666 * finder.el (finder-compile-keywords):
21667 * shadowfile.el (shadow-read-files):
21668 Replace `eval-current-buffer' by `eval-buffer'.
21669
21670 * terminal.el (te-pass-through):
21671 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
21672 (ange-ftp-raw-send-cmd):
21673 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
21674 (send-process-next-char, telnet-initial-filter, telnet):
21675 Replace `send-string' by `process-send-string'.
21676
21677 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
21678 (prolog-consult-region): Replace `send-string' by
21679 `process-send-string'; replace `send-region' by `process-send-region'.
21680
21681 * progmodes/delphi.el (delphi-log-msg):
21682 Replace `set-window-dot' by `set-window-point'.
21683
21684 * subr.el (window-dot, set-window-dot, read-input, send-string)
21685 (send-region, show-buffer, eval-current-buffer):
21686 Make really obsolete, as the comment says.
21687
21688 2005-05-17 Kim F. Storm <storm@cua.dk>
21689
21690 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
21691 (cua--init-keymaps): Bind C-return instead of S-return to set
21692 rectangle mark.
21693
21694 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
21695 instead of S-return to toggle/clear rectangle mark.
21696
21697 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
21698
21699 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
21700 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
21701 Also fontify plain strings assigned to variables, mostly so that a
21702 colon has a face and is thus not taken as a dependency separator.
21703 (makefile-previous-dependency): Inline the new matcher, because it
21704 is too complex to work in both directions.
21705 (makefile-match-dependency): Eliminate `backward' arg (see above).
21706 Completely reimplemented so as to not sometimes go into an endless
21707 loop. It should also be more efficient, because first it only
21708 searches for `:', instead of applying the very complex regexp.
21709 (makefile-mode): Cancel `font-lock-support-mode', because blocks
21710 to be fontified in one piece can be too long for JIT.
21711 Makefiles are never *that* big.
21712
21713 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
21714
21715 * dired.el (dired-mode): Simplify.
21716
21717 2005-05-17 Lute Kamstra <lute@gnu.org>
21718
21719 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
21720 defcustom for the mode hook variable.
21721
21722 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
21723 Emacs Lisp Reference Manual.
21724
21725 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
21726
21727 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
21728 (evenp, list*):
21729 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
21730 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
21731
21732 * net/tramp-smb.el (tramp-smb-open-connection):
21733 Pass `tramp-chunksize' as fifth (required) argument.
21734
21735 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
21736
21737 * font-lock.el (lisp-font-lock-keywords-1):
21738 Set `font-lock-negation-char-face' for [^...] char group.
21739 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
21740
21741 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
21742 a var, and refine it to mask one more level of nested vars.
21743 (makefile-rule-action-regex): Turn it into a var, and refine it so
21744 it recognizes backslashed continuation lines as belonging to the
21745 same command.
21746 (makefile-macroassign-regex): Refine it so it recognizes
21747 backslashed continuation lines as belonging to the same command.
21748 (makefile-var-use-regex): Don't look at the next char, because it
21749 might be the same one to be skipped by the initial [^$], leading
21750 to an overlooked variable use.
21751 (makefile-make-font-lock-keywords): Remove two parameters, which
21752 are now variables that some of the modes set locally.
21753 Handle dependency and rule action matching through functions, because
21754 regexps alone match too often. Dependency matching now comes
21755 last, so it can check, whether a colon already matched something else.
21756 (makefile-mode): Inform that font-lock improves makefile parsing
21757 capabilities.
21758 (makefile-match-dependency, makefile-match-action): New functions.
21759
21760 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
21761
21762 * emacs-lisp/cl-extra.el (equalp): Doc fix.
21763
21764 * align.el (align-regexp):
21765 * ansi-color.el (ansi-color-get-face):
21766 * array.el (array-reconfigure-rows, array-init-max-row)
21767 (array-init-max-column, array-init-columns-per-line)
21768 (array-init-field-width):
21769 * dired-aux.el (dired-trample-file-versions):
21770 * dired-x.el (dired-mark-sexp):
21771 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
21772 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
21773 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
21774 * faces.el (face-read-integer):
21775 * files.el (backup-extract-version, insert-directory):
21776 * hexl.el (hexl-insert-decimal-char):
21777 * server.el (server-process-filter):
21778 * shell.el (shell-extract-num):
21779 * startup.el (command-line-1):
21780 * term.el (term-command-hook):
21781 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
21782 (time-stamp-do-number):
21783 * time.el (display-time-update):
21784 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
21785 (timezone-fix-time):
21786 * vms-patch.el (vms-suspend-resume-hook):
21787 * calendar/appt.el (appt-convert-time):
21788 * calendar/cal-bahai.el (mark-bahai-diary-entries):
21789 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
21790 * calendar/cal-islam.el (mark-islamic-diary-entries):
21791 * calendar/calendar.el (calendar-cursor-to-date)
21792 (calendar-star-date):
21793 * calendar/diary-lib.el (diary-attrtype-convert)
21794 (mark-diary-entries, diary-entry-time):
21795 * calendar/solar.el (solar-get-number):
21796 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
21797 * emacs-lisp/re-builder.el (reb-display-subexp):
21798 * emulation/edt.el (edt-set-scroll-margins):
21799 * emulation/tpu-extras.el (tpu-set-scroll-margins):
21800 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
21801 (vip-get-ex-count):
21802 * emulation/viper-ex.el (viper-get-ex-token)
21803 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
21804 * international/fontset.el (fontset-plain-name):
21805 * mail/feedmail.el (feedmail-look-at-queue-directory):
21806 * mail/mailalias.el (mail-get-names):
21807 * mail/rmail.el (rmail-convert-to-babyl-format):
21808 * mail/rmailsum.el (rmail-make-basic-summary-line)
21809 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
21810 (rmail-summary-goto-msg):
21811 * mail/smtpmail.el (smtpmail-read-response):
21812 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
21813 (ange-ftp-vms-add-file-entry):
21814 * play/gametree.el (gametree-looking-at-ply)
21815 (gametree-current-branch-score):
21816 * progmodes/ada-xref.el (ada-prj-find-prj-file)
21817 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
21818 * progmodes/cperl-mode.el (condition-case):
21819 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
21820 (ebrowse-set-member-buffer-column-width)
21821 (ebrowse-select-1st-to-9nth):
21822 * progmodes/etags.el (etags-snarf-tag):
21823 * progmodes/flymake.el (flymake-parse-line):
21824 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
21825 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
21826 (idlwave-shell-menu-def):
21827 * progmodes/ps-mode.el (ps-run-goto-error):
21828 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
21829 (vhdl-speedbar-contract-level):
21830 * term/mac-win.el (x-handle-numeric-switch):
21831 * term/sun-mouse.el (sun-get-frame-data):
21832 * term/w32-win.el (x-handle-numeric-switch):
21833 * term/x-win.el (x-handle-numeric-switch):
21834 * textmodes/ispell.el (ispell-parse-output):
21835 * textmodes/nroff-mode.el (nroff-outline-level):
21836 * textmodes/reftex-cite.el (reftex-bib-sort-year)
21837 (reftex-bib-sort-year-reverse, reftex-format-citation):
21838 * textmodes/reftex-parse.el (reftex-init-section-numbers)
21839 (reftex-section-number):
21840 * textmodes/texinfmt.el (texinfo-paragraphindent):
21841 Replace `string-to-int' by `string-to-number'.
21842
21843 * international/latexenc.el: Add page marker to force the "Local
21844 Variables:" string out of the last page.
21845
21846 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
21847
21848 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
21849 tooltip-change-major-mode.
21850 (gud-tooltip-print-command): Remove case where gud-minor-mode
21851 is gdb ("--fullname").
21852 (gud-tooltip-tips): Turn GUD tooltips off for this case and
21853 explain to user.
21854
21855 2005-05-16 Jay Belanger <belanger@truman.edu>
21856
21857 * calc/calc-store.el (calc-copy-special-constant): New function.
21858
21859 * calc/calc-ext.el (calc-init-extensions): Add binding for
21860 `calc-copy-special-constant'.
21861
21862 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
21863 for the `calc-copy-special-constant' command.
21864
21865 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
21866
21867 * subr.el (left-fringe-p): New function.
21868
21869 * progmodes/compile.el (compilation-setup): Set local value of
21870 overlay-arrow-string to "" always.
21871 (compilation-set-window): Left fringe then don't scroll.
21872 No left fringe then no arrow and scroll message to top.
21873 (compilation-context-lines): Adjust doc string accordingly.
21874
21875 2005-05-16 Kim F. Storm <storm@cua.dk>
21876
21877 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
21878 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
21879 (ido-wide-find-dir-or-delete-dir): New command for M-d.
21880 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
21881 (ido-read-file-name): Handle commands with ido property value
21882 equal to find-file as reading a file name, to allow C-d to enter dired.
21883 (ibuffer-find-file): Add ido property with value find-file.
21884
21885 2005-05-15 Kim F. Storm <storm@cua.dk>
21886
21887 * subr.el (open-network-stream-nowait): Remove.
21888 (open-network-stream-server): Remove.
21889
21890 2005-05-15 Richard M. Stallman <rms@gnu.org>
21891
21892 * faces.el (describe-face): Output a definition link button.
21893
21894 * help-mode.el (help-face-def): New button type.
21895
21896 * emacs-lisp/copyright.el (copyright-fix-years):
21897 Match properly if the first year is 2-digit.
21898 Don't mess up the whitespace after the years by filling.
21899
21900 * dired-aux.el (dired-mark-confirm):
21901 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
21902
21903 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
21904 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
21905 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
21906
21907 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
21908 Set font-lock-comment-start-skip.
21909
21910 * font-lock.el (font-lock-comment-start-skip): New variable.
21911 (font-lock-comment-end-skip): New variable.
21912 (font-lock-fontify-syntactically-region): Use them if non-nil.
21913
21914 2005-05-15 Jay Belanger <belanger@truman.edu>
21915
21916 * calc/calc-store.el (calc-store-value): Return a string rather
21917 than display it as a message.
21918 Use calc-var-name for variable name.
21919 (calc-store-into): Add the result of calc-store-value to message.
21920 (calc-copy-variable): Add a message.
21921 (calc-store-exchange): Improve error messages.
21922 (calc-store-binary, calc-store-map): Don't reset the values of
21923 special constants.
21924
21925 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
21926
21927 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
21928 manual to docstring.
21929
21930 * files.el (hack-local-variables-confirm): Add STRING argument.
21931 Make the function handle non file visiting buffers correctly.
21932 (hack-local-variables-prop-line, hack-local-variables)
21933 (hack-one-local-variable): Use STRING arg of
21934 `hack-local-variables-confirm'.
21935
21936 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
21937
21938 Sync with Tramp 2.0.49.
21939
21940 * net/tramp.el (tramp-handle-dired-call-process)
21941 (tramp-handle-insert-directory):`insert-buffer' cannot be used
21942 because the contents of the Tramp buffer is changed before
21943 insertion (`expand-file' and alike).
21944 (tramp-handle-insert-directory): If `localname' has an empty
21945 nondirectory name, it must not be quoted.
21946 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
21947 variable `tramp-chunksize'. Change callees.
21948 (tramp-open-connection-setup-interactive-shell): Check remote host
21949 for buggy `send-process-string' implementation.
21950 Set `tramp-chunksize' if found. Reported by Michael Kifer
21951 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
21952 (tramp-handle-shell-command): `insert-buffer' cannot be used
21953 because the contents of the Tramp buffer is changed before
21954 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
21955 <frederic.bothamy@free.fr>.
21956 (tramp-set-auto-save): Actions should be done for Tramp file name
21957 handler only. Ange-FTP has its own auto-save mechanism.
21958 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
21959 (tramp-set-auto-save-file-modes): Set file modes of
21960 `buffer-auto-save-file-name' to ?\600 as fallback solution.
21961 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
21962 (tramp-bug): Remove obsolete variable.
21963 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
21964 for presence of `mml-mode'. Make it running for older Emacsen as well.
21965
21966 2005-05-14 John Paul Wallington <jpw@pobox.com>
21967
21968 * ibuf-ext.el (define-ibuffer-filter filename):
21969 If `dired-directory' is a list, use its car.
21970
21971 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
21972
21973 * ibuffer.el (define-ibuffer-column filename):
21974 If `dired-directory' is a list, use its car.
21975
21976 2005-05-14 Richard M. Stallman <rms@gnu.org>
21977
21978 * subr.el (symbol-file): Doc fix.
21979
21980 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
21981 (byte-compile-form): Call byte-compile-nogroup-warn.
21982 (byte-compile-warning-types): Doc fix.
21983
21984 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
21985
21986 * progmodes/cc-engine.el (c-literal-faces):
21987 Add font-lock-comment-delimiter-face.
21988
21989 * net/net-utils.el (dig): Use with-no-warnings.
21990
21991 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
21992 (sc-recite-frame-alist, sc-default-cite-frame)
21993 (sc-default-uncite-frame, sc-default-recite-frame)
21994 (sc-attrib-selection-list, sc-rewrite-header-list):
21995 Mark as risky-local-variable.
21996
21997 * international/ogonek.el (ogonek-jak, ogonek-how):
21998 Don't use beginning-of-buffer.
21999
22000 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
22001
22002 * calendar/solar.el (solar-data-list): Move definition up.
22003
22004 * dnd.el (dnd-protocol-alist): Add autoload.
22005
22006 * progmodes/sh-script.el: Many doc usage fixes.
22007 (sh-indent-after-do): Change default to match common styles.
22008
22009 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
22010
22011 * files.el (interpreter-mode-alist)
22012 (auto-mode-interpreter-regexp): Doc fixes.
22013
22014 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
22015
22016 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
22017
22018 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
22019
22020 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22021
22022 * dired.el (dired-mode): make-variable-buffer-local =>
22023 make-local-variable.
22024
22025 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22026
22027 * term/mac-win.el (mac-select-convert-to-string): Try coding
22028 systems in mac-script-code-coding-systems if specified one cannot
22029 encode string for `com.apple.traditional-mac-plain-text'.
22030
22031 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
22032
22033 * progmodes/make-mode.el (makefile-targets-face)
22034 (makefile-shell-face, makefile-makepp-perl-face): New faces.
22035 (makefile-dependency-regex): Fix it to not make the colon in
22036 $(var:a=b) special.
22037 (makefile-rule-action-regex): New regexp for highlighting embedded
22038 Shell strings.
22039 (makefile-macroassign-regex): Handle != for highlighting as
22040 embedded Shell strings.
22041 (makefile-var-use-regex): New const.
22042 (makefile-statements, makefile-automake-statements)
22043 (makefile-gmake-statements, makefile-makepp-statements)
22044 (makefile-bsdmake-statements): New consts.
22045 (makefile-make-font-lock-keywords): New function.
22046 (makefile-automake-font-lock-keywords)
22047 (makefile-gmake-font-lock-keywords)
22048 (makefile-makepp-font-lock-keywords)
22049 (makefile-bsdmake-font-lock-keywords): New consts.
22050 (makefile-mode-map): Add switchers between the various submodes.
22051 (makefile-mode): Document the availability of the variants.
22052 (makefile-automake-mode, makefile-gmake-mode)
22053 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
22054
22055 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
22056 new variants of makefile-mode.
22057
22058 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22059
22060 * font-lock.el (font-lock-comment-delimiter-face): Fix up
22061 the inheritance.
22062
22063 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
22064
22065 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
22066 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
22067
22068 * files.el (normal-mode): Extend the scope of the
22069 `enable-local-variables' binding to include the `set-auto-mode' call.
22070 (magic-mode-alist): Doc fix.
22071
22072 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22073
22074 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
22075 font-lock-comment-face rather than copying its setting.
22076
22077 2005-05-12 Andreas Schwab <schwab@suse.de>
22078
22079 * eshell/esh-mode.el (eshell-send-input): Doc fix.
22080
22081 2005-05-12 Lute Kamstra <lute@gnu.org>
22082
22083 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
22084 defcustom for the mode hook variable. Delete the last argument.
22085 * generic-x.el: Fix callers of define-generic-mode.
22086 (generic-x-modes): Delete group.
22087 (show-tabs-tab-face, show-tabs-space-face): Put them in the
22088 generic-x customization group.
22089
22090 2005-05-12 Kim F. Storm <storm@cua.dk>
22091
22092 * font-lock.el (font-lock-negation-char-face): Default to "off".
22093
22094 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
22095 font-lock-negation-char-face to ! in !=.
22096
22097 2005-05-12 Masatake YAMATO <jet@gyve.org>
22098
22099 * add-log.el (find-change-log): Fix typos in the docstring
22100 of function.
22101
22102 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
22103
22104 * international/latexenc.el (latexenc-find-file-coding-system):
22105 Avoid `re-search-forward' when looking for input encoding because
22106 of speed and safety. Better regular expressions for recognizing
22107 input encoding. Limit a search for TeX-master/tex-main-file to
22108 the local variable section.
22109
22110 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
22111
22112 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
22113 syntax of $ to "'" (quote).
22114
22115 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
22116
22117 * dnd.el (dnd-protocol-alist): Improve custom type.
22118
22119 * dired.el (dired-dnd-protocol-alist): New variable.
22120 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
22121 `dired-mode-hook' to the end.
22122
22123 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
22124
22125 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
22126 comment-end if comment-start-skip is not set.
22127 Obey the font-lock-comment-delimiter-face variables.
22128
22129 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
22130
22131 * files.el (executable-find): Move from executable.el. Use
22132 locate-file.
22133 * progmodes/executable.el (executable-find): Move to files.el.
22134
22135 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
22136 when trying to ensure forward progress.
22137
22138 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
22139
22140 * mouse-sel.el (mouse-sel-follow-link-p): New function.
22141 (mouse-select, mouse-select-internal, mouse-extend-internal):
22142 Use it to implement mouse-1-click-follows-link functionality.
22143
22144 2005-05-11 Richard M. Stallman <rms@gnu.org>
22145
22146 * font-lock.el (font-lock-fontify-syntactically-region):
22147 Use font-lock-comment-delimiter-face for comment delimiters.
22148
22149 2005-05-10 Jay Belanger <belanger@truman.edu>
22150
22151 * calc/calc-help.el (calc-m-prefix-help): Add mention of
22152 preserving embedded modes.
22153
22154 2005-05-10 Richard M. Stallman <rms@gnu.org>
22155
22156 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
22157
22158 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
22159 Move from ada-stmt.el.
22160 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
22161
22162 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
22163 Move to ada-mode.el.
22164 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
22165
22166 * cus-edit.el (custom-file): Call file-chase-links.
22167
22168 * files.el (read-directory-name): Fix previous change.
22169 (hack-local-variables-confirm): New function.
22170 (hack-local-variables-prop-line, hack-local-variables)
22171 (hack-one-local-variable): Use it.
22172
22173 2005-05-10 Lute Kamstra <lute@gnu.org>
22174
22175 * font-lock.el (font-lock-keywords-alist)
22176 (font-lock-removed-keywords-alist): Clarify docstrings.
22177
22178 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
22179
22180 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
22181 (gdb-source-info): Check for preprocessor info.
22182 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
22183 a macro for a function.
22184 (gdb-info-breakpoints-custom): Try to find file again if not already
22185 found (user might have used GDB dir command).
22186 (gdb-get-location): Update gdb-location-alist correctly for change
22187 to gdb-info-breakpoints-custom.
22188
22189 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
22190 (gud-tooltip-print-command): Add gdbmi case.
22191 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
22192 preprocessor info.
22193
22194 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
22195
22196 * startup.el (fancy-splash-insert): Fix typo in doc string.
22197
22198 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
22199
22200 * obsolete/float.el (string-to-float):
22201 * obsolete/hilit19.el (hilit-add-pattern):
22202 * obsolete/rnews.el (news-parse-range, news-select-message)
22203 (news-get-pruned-list-of-files): Replace `string-to-int' by
22204 `string-to-number'.
22205
22206 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
22207 `find-file-not-found-hooks'; use `add-hook'.
22208 (uncompress-while-visiting): Set `write-file-functions', not
22209 `write-file-hooks'; use `add-hook'.
22210
22211 2005-05-09 Kim F. Storm <storm@cua.dk>
22212
22213 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
22214 (cua-paste): Handle clipboard action.
22215 (cua--init-keymaps): Remap clipboard-kill-region and
22216 clipboard-kill-ring-save.
22217
22218 2005-05-08 Eli Zaretskii <eliz@gnu.org>
22219
22220 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
22221 Improve commentary.
22222
22223 * simple.el (next-error-overlay-arrow-position): Revert the change
22224 made on 2005-04-30.
22225
22226 2005-05-07 Jay Belanger <belanger@truman.edu>
22227
22228 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
22229 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
22230 `calc-sel-reselect'.
22231
22232 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
22233 Calc is in embedded mode.
22234
22235 2005-05-07 Eli Zaretskii <eliz@gnu.org>
22236
22237 * progmodes/compile.el (compilation-setup):
22238 Set overlay-arrow-string to an empty string on text terminals.
22239
22240 * textmodes/ispell.el (ispell-program-name): Try looking for
22241 "aspell" along exec-path, and if found, use it as the default
22242 speller program.
22243
22244 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
22245
22246 * international/mule.el (sgml-xml-auto-coding-function):
22247 Recognize encoding='FOO' in single quotes as well as in double quotes.
22248
22249 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
22250
22251 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
22252 as well as `interactive', so that defmacro* would recognize
22253 `declare' forms.
22254
22255 2005-05-07 Eli Zaretskii <eliz@gnu.org>
22256
22257 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
22258 Explain more about the LIGHTER arg's usage in the doc string.
22259 Add commentary to clarify what the code does. Fix the regexp that
22260 strips whitespace from LIGHTER. Quote LIGHTER before using it,
22261 since it could have characters special to regular expressions.
22262
22263 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
22264
22265 * replace.el (occur-1): Bind inhibit-read-only so that
22266 erase-buffer doesn't barf on read-only text properties (likewise
22267 for add-text-properties in occur-engine). Mark buffer as unmodified.
22268 (occur-engine): Don't set buffer-read-only here.
22269
22270 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22271
22272 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
22273 list-buffers-directory. This caused the *cvs-commit* buffer to be
22274 sometimes mistakenly reused as a *cvs* buffer.
22275
22276 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
22277
22278 * tooltip.el: Move code for GUD tooltips into gud.el.
22279 (require): CL no longer needed to compile case.
22280 (tooltip-mode): Do not toggle functions for GUD tooltips.
22281 (tooltip-gud-tips-p): Remove. Replace with minor mode
22282 gud-tooltip-mode in gud.el.
22283 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
22284 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
22285 tooltip-gud prefix with gud-tooltip and obsolete.
22286 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
22287 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
22288 (tooltip-mouse-motion): Mouse movement functions/variable.
22289 Rename in gud.el by adding gud prefix.
22290 (tooltip-gud-original-filter, tooltip-gud-dereference)
22291 (tooltip-gud-event, tooltip-toggle-gud-tips)
22292 (tooltip-gud-process-output, tooltip-gud-print-command)
22293 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
22294 gud.el by replacing tooltip-gud prefix with gud-tooltip.
22295 (gdb-tooltip-print): Move to gdb-ui.el.
22296
22297 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
22298 (require): CL needed to compile case.
22299 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
22300 tooltip-gud-tips-p. Make it a minor-mode.
22301 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
22302 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
22303 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
22304 (gud-tooltip-change-major-mode)
22305 (gud-tooltip-activate-mouse-motions-if-enabled)
22306 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
22307 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
22308 (gud-tooltip-original-filter, gud-tooltip-dereference)
22309 (gud-tooltip-event, tooltip-toggle-gud-tips)
22310 (gud-tooltip-process-output, gud-tooltip-print-command)
22311 (gud-tooltip-tips): Move from tooltip.el.
22312
22313 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
22314 (gdb-cpp-define-alist-flags): Doc fix.
22315 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
22316 gud-tooltip-mode is t.
22317
22318 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22319
22320 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
22321 evaporate if their text is deleted.
22322 (goto-address-at-point): Make it work as a mouse binding as well.
22323 (goto-address-at-mouse): Obsolete it. Update users.
22324
22325 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
22326
22327 * calendar/appt.el (top-level): No longer activate on load.
22328
22329 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
22330
22331 * calendar/cal-bahai.el (mark-bahai-diary-entries):
22332 * net/webjump.el (webjump):
22333 * progmodes/idlw-help.el (idlwave-do-context-help1)
22334 (idlwave-highlight-linked-completions):
22335 * textmodes/po.el (po-find-file-coding-system-guts):
22336 Replace `assoc-ignore-case' by `assoc-string'.
22337
22338 2005-05-06 Eli Zaretskii <eliz@gnu.org>
22339
22340 * files.el (locate-file): Doc fix.
22341
22342 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
22343 Remove the redundant test for ms-dos.
22344
22345 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
22346 look for the preprocessor with exec-suffixes. If not found in
22347 standard places, look in exec-path. Remove most of the tests that
22348 used system-type.
22349
22350 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
22351
22352 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
22353
22354 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
22355 file-name clash with jka-compr.el on 8+3 filesystems.
22356
22357 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22358
22359 * term/mac-win.el: Don't define or bind scroll bar functions if
22360 x-toolkit-scroll-bars is t.
22361 (x-select-text, x-get-selection-value): Clear
22362 x-last-selected-text-clipboard if x-select-enable-clipboard is
22363 nil.
22364 (PRIMARY): Put mac-scrap-name property.
22365 (mac-select-convert-to-file-url): New function.
22366 (public.file-url): New selection target type. Add to
22367 selection-converter-alist.
22368 (x-get-selection, x-selection-value): Handle it.
22369 (x-cut-buffer-or-selection-value): New alias.
22370
22371 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
22372
22373 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
22374 entry to avoid calling bibtex-find-entry with arg global
22375 being t. Remove arg key.
22376 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
22377 (bibtex-copy-summary-as-kill): Change accordingly.
22378
22379 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
22380
22381 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
22382 (org-agenda-date-later): Use with-current-buffer.
22383
22384 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
22385
22386 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
22387 (define-obsolete-variable-alias): Doc Fixes.
22388
22389 2005-05-06 Kim F. Storm <storm@cua.dk>
22390
22391 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
22392 vertical-motion when selective-display is active.
22393
22394 * ido.el (ido-setup-hook): New hook.
22395 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
22396 (ido-input-stack): New var.
22397 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
22398 ido-next-work-file binding to M-O.
22399 Bind M-f to ido-wide-find-file-or-pop-dir.
22400 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
22401 (ido-read-internal): Run ido-setup-hook.
22402 Catch quit in read-file-name and read-string to cancel edit.
22403 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
22404 Automatically pop-all when completing a directory name (RET).
22405 (ido-file-internal): Add with-no-warnings around ffap and dired code.
22406 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
22407 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
22408 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
22409 New functions for M-b/M-f to move among the directory components.
22410 (ido-make-merged-file-list): Catch quit to cancel merge.
22411 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
22412 (ido-completion-help): No warnings for ido-completion-buffer-full.
22413
22414 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
22415
22416 * font-lock.el (font-lock-negation-char-face): New face and variable.
22417 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
22418 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
22419 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
22420 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
22421
22422 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
22423
22424 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
22425 Fix typo in docstring.
22426
22427 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
22428 (ebrowse-print-statistics-line)
22429 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
22430
22431 * term/w32-win.el (image-library-alist): Add additional name for
22432 Xpm library.
22433
22434 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
22435
22436 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
22437 use gcc instead of cpp.
22438
22439 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
22440 (gdb-create-define-alist): Use it.
22441 (gdb-cpp-define-alist-program): Update for MS-DOS.
22442
22443 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
22444
22445 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
22446
22447 2005-05-04 Richard M. Stallman <rms@gnu.org>
22448
22449 * help.el (describe-key): No error when UNTRANSLATED is nil.
22450
22451 * simple.el (line-move-1): Fix previous change to signal errors
22452 appropriately.
22453
22454 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
22455
22456 * calendar/icalendar.el (icalendar-version): Now at 0.12.
22457 (icalendar-duration-correction): Remove.
22458 (icalendar--get-event-properties): Split result at commas.
22459 (icalendar--decode-isoduration): New optional argument
22460 DURATION-CORRECTION.
22461 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
22462 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
22463 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
22464 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
22465 (icalendar--convert-anniversary-to-ical): New functions, extracted
22466 from icalendar-export-region, with bug fixes.
22467 (icalendar-export-region): Use the above functions.
22468 (icalendar-import-buffer): Check before saving diary file.
22469 (icalendar--convert-recurring-to-diary)
22470 (icalendar--convert-non-recurring-all-day-to-diary)
22471 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
22472 extracted from icalendar--convert-ical-to-diary, with bug fixes.
22473 (icalendar--convert-ical-to-diary): Use the above functions.
22474
22475 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
22476
22477 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
22478 Remove these recent additions.
22479 (c-mode): Restore to before 2005-04-28.
22480
22481 * progmodes/cc-vars.el (cc-define-list-program): Remove this
22482 recent addition.
22483
22484 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
22485 (gdb-define-alist): New variables.
22486 (gdb-create-define-alist): New function.
22487 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
22488 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
22489 with string-to-number.
22490 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
22491
22492 * progmodes/gud.el: Replace string-to-int with string-to-number.
22493 (gud-find-file): Handle gdb-define-alist.
22494
22495 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
22496
22497 2005-05-02 Jay Belanger <belanger@truman.edu>
22498
22499 * calc/calc-aent.el (math-read-token):
22500 * calc/calc-bin.el (calc-word-size):
22501 * calc/calc-ext.el (calc-read-number-fancy):
22502 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
22503 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
22504 * calc/calc-frac.el (calc-over-notation):
22505 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
22506 (calc-graph-num-points, calc-graph-init):
22507 * calc/calc-prog.el (calc-read-parse-table-part)
22508 (calc-edit-macro-repeats):
22509 * calc/calc-yank.el (calc-do-grab-rectangle):
22510 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
22511 Replace `string-to-int' by `string-to-number'.
22512
22513 2005-05-02 Kim F. Storm <storm@cua.dk>
22514
22515 * kmacro.el: Use executing-kbd-macro-index variable.
22516
22517 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
22518
22519 * net/rlogin.el (rlogin-parse-words): Delete func.
22520 (rlogin): Use split-string, not rlogin-parse-words.
22521 Also, if there are option-like elements in the parsed args,
22522 take the host to be the first arg immediately following them.
22523 Suggested by Michael Mauger.
22524
22525 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
22526
22527 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
22528
22529 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
22530
22531 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
22532 (cc-mode-cpp-program): Rename to cc-define-list-program and
22533 move to cc-vars.el.
22534
22535 * progmodes/cc-vars.el (cc-define-list-program):
22536 Change to "gcc -E -dM -". Make customizable.
22537
22538 2005-05-02 Kim F. Storm <storm@cua.dk>
22539
22540 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
22541
22542 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
22543
22544 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
22545
22546 * international/mule-util.el (truncate-string): Remove alias and
22547 obsolete declaration.
22548
22549 * international/mule-cmds.el (update-iso-coding-systems):
22550 Remove alias and obsolete declaration.
22551
22552 * international/mule.el (coding-system-parent): Remove alias and
22553 obsolete declaration.
22554
22555 * subr.el (define-function, sref): Remove aliases and obsolete
22556 declarations.
22557 (chars-in-region): Remove obsolete declaration.
22558
22559 2005-05-01 Richard M. Stallman <rms@gnu.org>
22560
22561 * info.el (Info-mode): Set widen-automatically to nil, locally.
22562
22563 * simple.el (widen-automatically): New variable.
22564 (pop-global-mark): Obey widen-automatically.
22565
22566 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
22567
22568 * term/xterm.el (function-key-map): Call substitute-key-definition
22569 before the keymap size is increased by a lot of define-key calls.
22570
22571 2005-05-01 Richard M. Stallman <rms@gnu.org>
22572
22573 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
22574 Rename ARG to ELEMENT. Doc fix.
22575
22576 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
22577
22578 * allout.el (allout-exposure): Remove macro and obsolete declaration.
22579 Remove references to allout-exposure/change to allout-new-exposure.
22580
22581 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
22582 bytecode symbols.
22583
22584 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
22585 (compiled-function-p, focus-frame, unfocus-frame):
22586 Remove aliases and obsolete declarations.
22587 Back out inadvertent changes from previous commit.
22588
22589 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
22590
22591 * files.el (require-final-newline): Make Custom tags consistent
22592 with mode-require-final-newline.
22593 (mode-require-final-newline): Doc fix.
22594
22595 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
22596
22597 * international/latexenc.el (latexenc-find-file-coding-system):
22598 Fix regular expressions.
22599
22600 2005-05-01 David Kastrup <dak@gnu.org>
22601
22602 * international/latexenc.el (latexenc-find-file-coding-system):
22603 Fix regular expressions.
22604
22605 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
22606
22607 * subr.el (string-to-int): Make obsolete.
22608
22609 2005-04-30 Richard M. Stallman <rms@gnu.org>
22610
22611 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
22612
22613 * loadup.el: load jka-comp-hook.
22614
22615 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
22616 (jka-compr-handler): Add autoload. `put' calls moved
22617 to jka-comp-hook.el.
22618 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
22619 (jka-compr-inhibit): Autoload.
22620
22621 * jka-comp-hook.el: New file.
22622 Enable the mode by default.
22623
22624 * files.el (backup-buffer-copy): Use copy-file instead
22625 of write-region, and put back the 'excl.
22626
22627 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
22628
22629 * progmodes/flymake.el (flymake-split-string)
22630 (flymake-split-string, flymake-log, flymake-pid-to-names)
22631 (flymake-reg-names, flymake-get-source-buffer-name)
22632 (flymake-unreg-names, flymake-add-line-err-info)
22633 (flymake-add-err-info): Clarify docstrings.
22634 (flymake-popup-menu, flymake-make-emacs-menu)
22635 (flymake-make-xemacs-menu): Add docstrings.
22636 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
22637 Set variables directly throughout.
22638
22639 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
22640
22641 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
22642 exists. Initialize cc-define-alist.
22643 (c-mode): Add cc-create-define-alist locally to after-save-hook.
22644 If there is no file (Macroexpansion) don't create an alist.
22645
22646 2005-04-29 Sam Steingold <sds@gnu.org>
22647
22648 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
22649 (cc-create-define-alist): Use it instead of the hard-coded string.
22650
22651 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
22652
22653 * international/mule-conf.el (file-coding-system-alist): Fix regexp
22654 for latexenc.
22655
22656 2005-04-29 Lute Kamstra <lute@gnu.org>
22657
22658 * emacs-lisp/generic.el: Improve commentary section.
22659 (define-generic-mode): Improve docstring.
22660
22661 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
22662
22663 * textmodes/org.el (many places): Change to quiet the byte compiler.
22664 (org-prefix-format-compiled): New variable.
22665 (org-compile-prefix-format): New function.
22666 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
22667 (org-agenda-prefix-format, org-timeline-prefix-format): New options.
22668 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
22669 (org-get-entries-from-diary): Use `org-get-time-of-day' for
22670 consistency with entries from `org-mode' files.
22671 (org-get-time-of-day): Fix bug with partial matches early in a line.
22672 (org-non-link-chars): New constant.
22673 (org-link-regexp): Respect `org-non-link-chars'.
22674 (org-agenda-day-view): Remove command.
22675 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
22676 (org-follow-bbdb-link, org-store-link): Search also company field.
22677 (org-highlight-overlay): New variable.
22678 (org-highlight, org-unhighlight): New functions.
22679 (org-agenda-mode): Add pre-command-hook to remove highlight.
22680 (org-evaluate-time-range): Behavior depends upon whether time stamp
22681 contains a time or not.
22682 (org-show-subtree, org-show-entry): New functions.
22683 (org-agenda-cleanup-fancy-diary): Remove empty lines.
22684
22685 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
22686
22687 * comint.el (comint-output-filter-functions): Add autoload cookie.
22688
22689 2005-04-28 Kim F. Storm <storm@cua.dk>
22690
22691 * ido.el (ido-everywhere): Fix last change.
22692
22693 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
22694
22695 * international/latexenc.el: New file.
22696 * international/mule-conf.el (file-coding-system-alist): For .tex,
22697 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
22698
22699 2005-04-28 Lute Kamstra <lute@gnu.org>
22700
22701 * font-lock.el (font-lock-add-keywords)
22702 (font-lock-remove-keywords): Clarify docstring.
22703 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
22704 Don't start docstrings with a `*'.
22705 (font-lock-update-removed-keyword-alist): Give it a docstring.
22706
22707 * generic-x.el: Update commentary section.
22708 Only require font-lock when compiling.
22709 Define all modes conditionally.
22710 Place all generic modes in the generic-x-modes customization group.
22711 (generic-x-modes): New customization group.
22712 (generic-default-modes, generic-mswindows-modes)
22713 (generic-unix-modes, generic-other-modes): New constants.
22714 (generic-define-mswindows-modes, generic-define-unix-modes):
22715 Update docstrings. Make them obsolete.
22716 (generic-extras-enable-list): New default value. Update docstring.
22717 Improve :type. Change :set function.
22718 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
22719 Fix docstring.
22720
22721 * emacs-lisp/generic.el (generic-mode-internal):
22722 Simplify font-lock-defaults.
22723 (define-generic-mode): Fix docstring.
22724
22725 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
22726
22727 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
22728 font-lock-face property to highlight matches.
22729
22730 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
22731
22732 * progmodes/cc-mode.el (cc-create-define-alist): New function.
22733 (cc-define-alist): New variable.
22734 (c-mode): Make it local and initialize it.
22735
22736 * progmodes/gdb-ui.el (gdb-active-process): New variable.
22737 (gdb-exited): New function.
22738 (gdb-annotation-rules): Use it.
22739 (gdb-starting): Set gdb-active-process to t.
22740 (gdb-stopping): Amend doc string.
22741 (gdb-reset): Set gdb-active-process to nil.
22742
22743 * tooltip.el (tooltip-gud-tips): Show the associated #define
22744 directives when a C program under GDB is not executing.
22745
22746 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
22747
22748 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
22749 font-lock-fontify-syntactic-keywords.
22750
22751 * font-lock.el (font-lock-default-fontify-region): Don't force
22752 parse-sexp-lookup-properties to nil.
22753
22754 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
22755
22756 * man.el (man-mode-syntax-table): Set up `:' to have
22757 word-constituent syntax.
22758
22759 2005-04-27 Lute Kamstra <lute@gnu.org>
22760
22761 * novice.el (disable-command): Don't add spurious newlines to the
22762 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
22763
22764 2005-04-26 Jay Belanger <belanger@truman.edu>
22765
22766 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
22767 than one window before deleting window.
22768
22769 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
22770
22771 * shell.el (shell-prompt-pattern): Doc fix.
22772 (shell-mode): Set paragraph-separate buffer locally to "\\'".
22773
22774 * comint.el (comint-prompt-regexp, comint-get-old-input)
22775 (comint-use-prompt-regexp)
22776 (comint-use-prompt-regexp-instead-of-fields)
22777 (comint-replace-by-expanded-history, comint-send-input)
22778 (comint-output-filter, comint-get-old-input-default)
22779 (comint-line-beginning-position, comint-bol, comint-show-output)
22780 (comint-backward-matching-input, comint-forward-matching-input)
22781 (comint-next-prompt, comint-previous-prompt):
22782 Rename `comint-use-prompt-regexp-instead-of-fields' to
22783 `comint-use-prompt-regexp'. Keep old name as alias and declare
22784 obsolete.
22785 (comint-use-prompt-regexp): Shorten first line of doc string.
22786
22787 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
22788 Set paragraph-separate buffer locally to "\\'".
22789
22790 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
22791 Adapt to above name change.
22792
22793 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
22794 (smbclient-prompt-regexp): Ditto.
22795
22796 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
22797
22798 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
22799
22800 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
22801 gdb-location-list.
22802 Break lines that are over 80 characters wide.
22803
22804 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
22805
22806 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
22807 New fun and var, to preserve compatibility.
22808
22809 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
22810
22811 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
22812
22813 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
22814 name to file-newer-than-file-p.
22815
22816 2005-04-26 Richard M. Stallman <rms@gnu.org>
22817
22818 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
22819
22820 * progmodes/python.el (python-mode):
22821 Use new name eldoc-documentation-function.
22822
22823 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
22824
22825 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
22826 (eldoc-documentation-function):
22827 Rename from eldoc-print-current-symbol-info-function. Calls changed.
22828
22829 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
22830
22831 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
22832
22833 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
22834
22835 * term/xterm.el (function-key-map): Fix strings for
22836 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
22837 {C,S,A,C-S}-{f1-f12}.
22838
22839 2005-04-26 Kenichi Handa <handa@m17n.org>
22840
22841 * international/mule-cmds.el (select-safe-coding-system):
22842 Fix previous change.
22843
22844 2005-04-26 Lute Kamstra <lute@gnu.org>
22845
22846 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
22847
22848 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
22849 (font-lock-comment-delimiter-face): Ditto.
22850
22851 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
22852
22853 2005-04-25 Jay Belanger <belanger@truman.edu>
22854
22855 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
22856 to t while inserting information; use help-mode.
22857
22858 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
22859
22860 * term.el (ansi-term-color-vector): Use the xterm colors.
22861 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
22862
22863 2005-04-25 Lute Kamstra <lute@gnu.org>
22864
22865 * font-core.el (font-lock-defaults): Fix docstring.
22866
22867 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
22868
22869 2005-04-25 Kenichi Handa <handa@m17n.org>
22870
22871 * international/mule-cmds.el (select-safe-coding-system):
22872 Don't check consistency with coding: spec, etc if raw-text or
22873 no-conversion was found to be safe.
22874
22875 2005-04-24 Richard M. Stallman <rms@gnu.org>
22876
22877 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
22878 citation markers at start of each line.
22879
22880 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
22881 citation markers at start of each line.
22882
22883 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
22884
22885 * files.el (mode-require-final-newline): Fix previous change.
22886 (require-final-newline): Fix type label.
22887
22888 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
22889
22890 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
22891 statement in buffer (broken by 2004-11-24 change).
22892
22893 2005-04-24 Kim F. Storm <storm@cua.dk>
22894
22895 * ido.el (ido-everywhere): Save and restore old read-buffer-function
22896 and read-file-name-function values. Don't overwrite existing
22897 non-nil values if ido-mode is enabled without ido-everywhere.
22898
22899 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
22900
22901 * files.el (mode-require-final-newline): Minor doc fix.
22902
22903 2005-04-24 Eli Zaretskii <eliz@gnu.org>
22904
22905 * subr.el (syntax-after): Doc fix.
22906 (syntax-class): If argument is nil, return nil. Mask off upper 16
22907 bits, not 8 bits.
22908
22909 * files.el (mode-require-final-newline): Doc fix.
22910 (backup-buffer-copy): Fix last change.
22911
22912 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22913
22914 * term/mac-win.el: Require select. Set selection-coding-system to
22915 mac-system-coding-system. Call menu-bar-enable-clipboard.
22916 (x-last-selected-text-clipboard, x-last-selected-text-primary)
22917 (x-select-enable-clipboard): New variables.
22918 (x-select-text, x-get-selection, x-selection-value)
22919 (x-get-selection-value, mac-select-convert-to-string)
22920 (mac-services-open-file, mac-services-open-selection)
22921 (mac-services-insert-text): New functions.
22922 (CLIPBOARD, FIND): Put mac-scrap-name property.
22923 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
22924 (public.tiff): Put mac-ostype property.
22925 (selection-converter-alist): Add entries for them.
22926 (mac-application-menu-map): New keymap.
22927 (interprogram-cut-function, interprogram-paste-function): Set to
22928 x-select-text and x-get-selection-value, respectively.
22929 (split-window-keep-point): Set to t.
22930
22931 2005-04-23 Richard M. Stallman <rms@gnu.org>
22932
22933 * files.el (read-directory-name): Always pass non-nil
22934 DEFAULT-FILENAME arg to read-file-name.
22935 (backup-buffer-copy, basic-save-buffer-2): Take care against
22936 writing thru an unexpected existing symlink.
22937 (revert-buffer): In indirect buffer, revert the base buffer.
22938 (magic-mode-alist): Doc fix.
22939 (buffer-stale-function): Doc fix.
22940 (minibuffer-with-setup-hook): Avoid warning.
22941 (mode-require-final-newline): Doc and custom fix.
22942
22943 * follow.el (follow-end-of-buffer): Use with-no-warnings.
22944
22945 * font-lock.el (font-lock-comment-face): On terminals with few colors,
22946 use the default appearance.
22947 (font-lock-comment-delimiter-face): New face, new variable.
22948
22949 * imenu.el (imenu--generic-function): The official position of a
22950 definition is the start of the line that BEG is in.
22951
22952 * midnight.el (midnight-timer): Move defvar up.
22953
22954 * mouse.el (mouse-drag-region-1): Delete some debugging code.
22955
22956 * saveplace.el (save-place-to-alist): Use with-no-warnings.
22957
22958 * startup.el (command-line): Use with-no-warnings.
22959
22960 * window.el (window-size-fixed): New defvar.
22961
22962 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
22963
22964 * mail/rmail.el (rmail-font-lock-keywords):
22965 Use font-lock-comment-delimiter-face.
22966
22967 * mail/sendmail.el (mail-font-lock-keywords):
22968 Use font-lock-comment-delimiter-face.
22969
22970 * progmodes/compile.el (next-error-highlight-timer): New defvar.
22971
22972 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
22973
22974 * progmodes/compile.el (compilation-mode-font-lock-keywords):
22975 Specify t for LAXMATCH when matching directories.
22976 Save match data around compilation-compat-error-properties form.
22977
22978 2005-04-23 David Kastrup <dak@gnu.org>
22979
22980 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
22981 Mention that the autoloaded aliases should be kept for AUCTeX.
22982
22983 2005-04-23 Andreas Schwab <schwab@suse.de>
22984
22985 * isearch.el (isearch-forward): Doc fix.
22986
22987 2005-04-23 Eli Zaretskii <eliz@gnu.org>
22988
22989 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
22990 (jit-lock-stealth-nice): Change default value to 0.5.
22991
22992 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
22993
22994 * abbrev.el (write-abbrev-file): Write table entries in
22995 alphabetical order by table name.
22996
22997 2005-04-22 Kim F. Storm <storm@cua.dk>
22998
22999 * ido.el (ido-read-internal): Fix `list' completion.
23000
23001 2005-04-22 Kenichi Handa <handa@m17n.org>
23002
23003 * recentf.el (recentf-save-file-coding-system): New variable.
23004 (recentf-save-list): Encode the file by
23005 recentf-save-file-coding-system and add coding: tag.
23006
23007 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
23008
23009 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
23010
23011 2005-04-21 Lute Kamstra <lute@gnu.org>
23012
23013 * loadhist.el (unload-feature): Don't remove a function from hooks
23014 if it is about to be restored to an autoload . Remove functions
23015 that will become unbound from auto-mode-alist. Simplify the code.
23016
23017 * subr.el (assq-delete-all): New implementation that is linear,
23018 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
23019 (rassq-delete-all): New function.
23020
23021 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
23022 Add size-indication-mode.
23023
23024 2005-04-21 Kenichi Handa <handa@m17n.org>
23025
23026 * international/mule-cmds.el: Add autoload for widget-value in
23027 eval-when-compile.
23028
23029 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
23030
23031 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
23032 Add tooltip-mode.
23033
23034 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
23035
23036 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
23037
23038 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
23039 (inferior-lisp-filter-regexp, inferior-lisp-program)
23040 (inferior-lisp-load-command, inferior-lisp-prompt)
23041 (inferior-lisp-mode-hook, lisp-source-modes)
23042 (inferior-lisp-load-hook): defvar->defcustom.
23043 (inferior-lisp-program, inferior-lisp-prompt)
23044 (inferior-lisp-load-hook): Doc fixes.
23045 (inferior-lisp-install-letter-bindings): Small change in
23046 introductory comment.
23047
23048 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
23049
23050 * vc.el (vc-annotate-color-map): Change some colors so that text
23051 using them as foreground is readable on both white and black
23052 backgrounds.
23053
23054 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
23055
23056 * international/mule-conf.el (translation-table-for-input):
23057 Remove redundant declaration.
23058
23059 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
23060
23061 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
23062
23063 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
23064 (tooltip-toggle-gud-tips): New function.
23065
23066 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23067
23068 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
23069 right angle brackets.
23070
23071 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
23072
23073 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
23074
23075 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
23076
23077 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
23078 Remove. Update callers to use expand-file-name instead.
23079
23080 * subr.el (syntax-class): New function.
23081
23082 * simple.el (blink-matching-open): Use it.
23083
23084 * paren.el (show-paren-function): Use it to recognize parens that are
23085 also used in 2-char comment markers.
23086
23087 2005-04-19 Lute Kamstra <lute@gnu.org>
23088
23089 * loadhist.el (unload-feature): Update for new format of
23090 load-history. Simplify the code.
23091
23092 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23093
23094 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
23095 (mac-add-charset-info): New function. Initialize variable
23096 mac-charset-info-alist using it.
23097 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
23098 for translation.
23099 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
23100 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
23101 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
23102 New CCL programs.
23103
23104 2005-04-19 Kim F. Storm <storm@cua.dk>
23105
23106 * simple.el (next-buffer, prev-buffer, next-error)
23107 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
23108 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
23109
23110 * bindings.el (next-buffer, prev-buffer, next-error)
23111 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
23112 (clone-indirect-buffer-other-window): Move bindings from simple.el.
23113 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
23114 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
23115
23116 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
23117
23118 * isearch.el (isearch-edit-string): Make the search-ring available for
23119 minibuffer history commands.
23120 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
23121 the default history commands now work just as well.
23122 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
23123
23124 2005-04-18 Kim F. Storm <storm@cua.dk>
23125
23126 * emulation/cua-base.el (cua--pre-command-handler): Add more
23127 elaborate check for shift modifier on non-window systems.
23128
23129 2005-04-18 Lars Hansen <larsh@math.ku.dk>
23130
23131 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
23132
23133 2005-04-18 Kim F. Storm <storm@cua.dk>
23134
23135 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
23136 and make it optional. Don't test tooltip-gud-echo-area here.
23137 (tooltip-gud-process-output, gdb-tooltip-print):
23138 Pass tooltip-gud-echo-area to tooltip-show.
23139 (tooltip-help-tips): Remove second optional arg to tooltip-show.
23140
23141 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23142
23143 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
23144 `display-graphic-p' may not be bound yet.
23145
23146 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
23147
23148 * startup.el (command-line): No longer enable Xterm Mouse mode by
23149 default in terminals compatible with xterm.
23150
23151 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
23152
23153 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
23154
23155 * tooltip.el (tooltip-gud-echo-area): Rename from
23156 tooltip-use-echo-area.
23157 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
23158 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
23159 area independently of where help tooltips are displayed.
23160
23161 2005-04-17 David Kastrup <dak@gnu.org>
23162
23163 * cus-theme.el (custom-theme-write-variables): Quote variables
23164 where necessary.
23165
23166 2005-04-17 Richard M. Stallman <rms@gnu.org>
23167
23168 * simple.el (yank-excluded-properties): Add follow-link to value.
23169
23170 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
23171
23172 * startup.el (fancy-splash-max-time): Just 30 seconds.
23173 (fancy-splash-delay): Just 7.
23174 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
23175
23176 * loadhist.el (unload-feature): Update for new format of load-history.
23177 Simplify the code.
23178
23179 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
23180 (rmail-font-lock-keywords): Don't fontify the text of a citation.
23181
23182 * mail/sendmail.el (mail-font-lock-keywords):
23183 Don't fontify subject text.
23184 Don't fontify the text of a citation.
23185
23186 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
23187
23188 * comint.el (comint-output-filter): Run comint-output-filter-functions
23189 with point where the user had it.
23190
23191 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
23192
23193 * international/ucs-tables.el (ucs-set-table-for-input):
23194 Disable when using unify-on-decoding.
23195
23196 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
23197
23198 * emulation/cua-base.el (cua-global-mark-face): Add special case
23199 for displays supporting a high number of colors.
23200
23201 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
23202
23203 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
23204
23205 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
23206
23207 * filesets.el (filesets-add-buffer): If user supplies a name of a
23208 non-existing fileset, create a new fileset.
23209
23210 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
23211
23212 * textmodes/org.el (org-up-heading-all): Fix bug with
23213 `outline-up-heading-all'.
23214
23215 2005-04-16 Andreas Schwab <schwab@suse.de>
23216
23217 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
23218 /etc/permissions.d/* and /etc/aliases.d/*.
23219
23220 2005-04-16 Kenichi Handa <handa@m17n.org>
23221
23222 * international/code-pages.el (cp-make-coding-system):
23223 Set `translation-table-for-input' property value to the symbol
23224 ucs-mule-to-mule-unicode, not to that value.
23225 (pt154): Escape guillemet by `\'.
23226
23227 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
23228
23229 * loadup.el: Load tooltip if x-show-tip is fboundp.
23230
23231 * startup.el (command-line): Add comment.
23232
23233 * tooltip.el (tooltip-mode): Specify correct standard value for
23234 Custom in init-value.
23235
23236 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
23237
23238 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
23239 possible.
23240
23241 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
23242
23243 * textmodes/org.el (org-agenda-date-prompt): Rename from
23244 `org-agenda-date-today'.
23245 (org-evaluate-time-range): Insert at point instead of directly
23246 after time range.
23247 (org-first-headline-recenter, org-subtree-end-visible-p)
23248 (org-optimize-window-after-visibility-change): New functions
23249 (org-agenda-post-command-hook): Don't allow point at end of line,
23250 to make sure it always hits the text properties.
23251 (org-agenda-next-date-line, org-agenda-previous-date-line):
23252 New commands.
23253 (org-set-regexps-and-options): Category may contain white space.
23254 (org-agenda-get-deadlines, org-agenda-get-scheduled):
23255 Improve marker positions.
23256 (org-agenda-new-marker): Argument POS made optional.
23257 (org-agenda-get-timestamps): Deadlines which are done are listed
23258 in org-done-face now.
23259 (org-agenda-get-todos, org-agenda-get-timestamps)
23260 (org-agenda-get-deadlines, org-agenda-get-scheduled):
23261 Set `undone-face' and `done-face' properties.
23262 (org-last-todo-state-is-todo): New variable.
23263 (org-todo): Set `org-last-todo-state-is-todo'.
23264 (org-agenda-todo): Change face according to
23265 `org-last-todo-state-is-todo'. And change other lines referring to
23266 the same entry.
23267 (org-calendar-goto-agenda): New command.
23268 (org-calendar-to-agenda-key): New option.
23269 (org-startup-folded): New allowed value `content'.
23270 (org-set-regexps-and-options): Accept new value `content' for
23271 `org-startup-folded'.
23272 (org-get-current-options): Handle new value `content' for
23273 `org-startup-folded'.
23274 (org-insert-todo-heading): New command.
23275 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
23276 interactively in empty file and option
23277 `org-insert-mode-line-in-empty-file' has been set.
23278 (org-agenda-todo, org-agenda-priority): Modify to use
23279 `org-agenda-change-all-lines'.
23280 (org-warning-face): Change color on dark background
23281
23282 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23283
23284 * international/mule-cmds.el (set-locale-environment): On Mac OS,
23285 use preferences AppleLocale and AppleLanguages, and variable
23286 mac-system-locale for default locale. On Mac OS Classic, use
23287 mac-system-coding-system for default coding systems.
23288
23289 * term/mac-win.el: Don't set file-name-coding-system.
23290 Decode variables system-name, emacs-build-system, user-login-name, and
23291 user-full-name by mac-system-coding-system on Mac OS Classic.
23292 (mac-system-coding-system): New variable.
23293
23294 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
23295
23296 * startup.el (command-line): Handle `xterm-mouse-mode' before
23297 reading init file.
23298
23299 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
23300
23301 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
23302
23303 * progmodes/sh-script.el (sh-here-document-word): Make it a
23304 defcustom. Doc fix.
23305 (sh-add): Bash uses $(( )) for arithmetic.
23306 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
23307 (sh-maybe-here-document): Remove quotes and leading whitespace
23308 from heredoc word when closing. Indent heredoc with tabs if word
23309 starts with "-".
23310
23311 2005-04-13 Richard M. Stallman <rms@gnu.org>
23312
23313 * simple.el (undo): Fix previous change.
23314
23315 * custom.el (defface): Doc fix.
23316
23317 2005-04-13 Lute Kamstra <lute@gnu.org>
23318
23319 * Makefile.in (DONTCOMPILE): Remove list.
23320 (compile, compile-always): Don't use DONTCOMPILE.
23321 (update-authors): Load the library in which batch-update-authors
23322 is defined.
23323 * makefile.w32-in (DONTCOMPILE): Remove list.
23324 (compile, compile-always): Fix comments.
23325 (update-authors): Load the library in which batch-update-authors
23326 is defined.
23327
23328 * generic-x.el (generic-mode-ini-file-find-file-hook):
23329 Rename to ini-generic-mode-find-file-hook.
23330 Keep generic-mode-ini-file-find-file-hook as an alias.
23331 (ini-generic-mode-find-file-hook): Rename from
23332 generic-mode-ini-file-find-file-hook. Fix docstring.
23333 (ini-generic-mode): Docstring change.
23334 (bat-generic-mode-run-as-comint): Silence the byte compiler.
23335
23336 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
23337 called from lisp.
23338
23339 * generic.el: Move to the emacs-lisp subdir.
23340
23341 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
23342
23343 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
23344 and C-S- function and cursor motion keys.
23345
23346 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
23347
23348 * startup.el (command-line): Enable Xterm Mouse mode by default.
23349 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
23350 for Custom. No longer show "Mouse" in mode line when enabled.
23351 Doc fix.
23352
23353 2005-04-12 Kim F. Storm <storm@cua.dk>
23354
23355 * emulation/cua-base.el (cua-rectangle-face)
23356 (cua-rectangle-noselect-face): Define face attributes here.
23357
23358 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
23359
23360 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
23361
23362 * startup.el (command-line): Turn off blinking cursor if
23363 cursorBlink in resources is off or false.
23364
23365 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23366
23367 * term/mac-win.el (dnd): Require dnd.
23368 (mac-drag-n-drop): Call dnd-handle-one-url.
23369 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
23370 (kTextEncodingISOLatin2): Remove constants.
23371 (mac-script-code-coding-systems): New constant.
23372 (mac-handle-language-change): New function.
23373 (special-event-map): Bind it to `language-change' event.
23374 (mac-centraleurroman, mac-cyrillic): New coding systems.
23375 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
23376 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
23377 and mac-cyrillic-encoder to encode-mac-centraleurroman and
23378 encode-mac-cyrillic, respectively.
23379
23380 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
23381
23382 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
23383 Don't set overlay-arrow-string to "=>" as this is done
23384 globally in C now.
23385
23386 2005-04-12 Lute Kamstra <lute@gnu.org>
23387
23388 * generic-x.el (rc-generic-mode, rul-generic-mode):
23389 Fix auto-mode-alist entries.
23390 (etc-fstab-generic-mode): Tweak fontification.
23391
23392 * generic.el (generic-make-keywords-list): Fix docstring.
23393 (generic-mode-internal): Simplify generic-font-lock-keywords.
23394
23395 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
23396
23397 * whitespace.el (whitespace-buffer-leading)
23398 (whitespace-buffer-trailing): Revert the incorrect test inversion.
23399 However, fix the highlight area for the leading and
23400 trailing whitespaces to show space.
23401
23402 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
23403
23404 * whitespace.el (whitespace-version): Bump to 3.5
23405
23406 (whitespace-buffer-leading, whitespace-buffer-trailing):
23407 Invert sense of the test to highlight the whitespace.
23408
23409 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
23410
23411 * progmodes/gud.el (gud-display-line): GUD uses its own
23412 overlay arrow now so don't set overlay-arrow-string.
23413 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
23414
23415 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
23416
23417 * term.el (term-ansi-current-bold, term-ansi-current-underline)
23418 (term-ansi-current-reverse, term-ansi-current-invisible)
23419 (term-ansi-face-already-done): Change to boolean.
23420 (term-reset-terminal, term-handle-colors-array): Handle the above
23421 vars accordingly.
23422 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
23423 (term-emulate-terminal): Use the new name.
23424
23425 * faces.el (secondary-selection): Use yellow1, not yellow.
23426 (trailing-whitespace): Use red1, not red.
23427
23428 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
23429
23430 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
23431 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
23432 (dired-dnd-handle-file): Call dnd-get-local-file-uri
23433
23434 * cus-edit.el (dnd): New group.
23435
23436 * term/w32-win.el (dnd): Require dnd
23437 (w32-drag-n-drop): Call dnd-handle-one-url.
23438
23439 * x-dnd.el: Require dnd.
23440 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
23441 Call dnd-handle-one-url.
23442 (x-dnd-types-alist, x-dnd-insert-utf8-text)
23443 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
23444 to dnd-insert-text.
23445 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
23446 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
23447 (x-dnd-get-local-file-name, x-dnd-open-local-file)
23448 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
23449
23450 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
23451
23452 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
23453
23454 * wdired.el: Doc fixes.
23455 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
23456 (wdired-use-dired-vertical-movement): Rename from
23457 wdired-always-move-to-filename-beginning.
23458 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
23459 (wdired-change-to-wdired-mode): Change mode name.
23460 (wdired-newline): Delete.
23461
23462 2005-04-11 Richard M. Stallman <rms@gnu.org>
23463
23464 * whitespace.el (whitespace-highlight-the-space):
23465 Don't call whitespace-unhighlight-the-space here.
23466
23467 * simple.el (undo): Record t in undo-equiv-table
23468 for the redo record made by an undo-in-region.
23469
23470 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
23471
23472 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
23473 (gdb-frame-inferior-io-buffer): New Functions to control
23474 display of separate IO buffer.
23475 (menu): Add them to menu-bar.
23476 (gdb-display-buffer): Check for buffer another frame.
23477 Protect GUD buffer.
23478 (gdb-setup-windows): Create IO buffer if not already there.
23479 (gdb-memory-mode): Remove purecopy noops.
23480
23481 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
23482
23483 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
23484 and pass to self-insert-command.
23485
23486 2005-04-11 Lute Kamstra <lute@gnu.org>
23487
23488 * generic.el: Commentary section cleanup.
23489 (generic): Delete.
23490 (generic-use-find-file-hook, generic-lines-to-scan)
23491 (generic-find-file-regexp, generic-ignore-files-regexp)
23492 (default-generic-mode, generic-mode-find-file-hook)
23493 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
23494 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
23495 (generic-use-find-file-hook, generic-lines-to-scan)
23496 (generic-find-file-regexp, generic-ignore-files-regexp)
23497 (default-generic-mode, generic-mode-find-file-hook)
23498 (generic-mode-ini-file-find-file-hook): Move from generic.el.
23499
23500 2005-04-10 Karl Fogel <kfogel@red-bean.com>
23501
23502 * bookmark.el (bookmark-write-file): Catch errors writing file.
23503 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
23504
23505 2005-04-10 Richard M. Stallman <rms@gnu.org>
23506
23507 * startup.el (fancy-splash-tail): Update copyright year.
23508 (command-line): Split part of -Q into -D.
23509 (emacs-basic-display): New defvar.
23510 (fancy-splash-text): Correct name of menu item.
23511
23512 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
23513
23514 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
23515 lines in one node.
23516
23517 * comint.el (comint-send-input): New arg ARTIFICIAL.
23518 Callers in this file changed.
23519
23520 * abbrev.el (define-abbrevs): Read system abbrevs properly.
23521
23522 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
23523
23524 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
23525
23526 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
23527 `ldap-search-internal'.
23528
23529 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
23530
23531 * files.el (set-auto-mode-1): Use line-end-position.
23532
23533 * international/latin-1.el:
23534 * international/latin-2.el:
23535 * international/latin-3.el:
23536 * international/latin-4.el:
23537 * international/latin-5.el:
23538 * international/latin-8.el:
23539 * international/latin-9.el: Give punctuation syntax to NBSP.
23540
23541 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
23542 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
23543 Use char-classes to accept non-ascii letters, accepted in some recent
23544 bibtex implementations.
23545
23546 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
23547
23548 * custom.el (custom-set-minor-mode): Any non-nil value for the
23549 variable should enable the mode when set through Custom.
23550
23551 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
23552
23553 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
23554 TAB binding so tab-always-indent is obeyed.
23555 (vhdl-minibuffer-local-map): Move initialization into declaration.
23556 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
23557 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
23558 (vhdl-hooked-abbrev): Avoid test for XEmacs.
23559 (vhdl-current-line): Use line-beginning-position.
23560 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
23561 with-output-to-temp-buffer, so the current position can be recorded.
23562
23563 2005-04-10 Masatake YAMATO <jet@gyve.org>
23564
23565 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23566 Add regexp for gcov.
23567
23568 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
23569
23570 * calendar/time-date.el (time-to-seconds, seconds-to-time)
23571 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
23572 syntax which Emacs 20 doesn't support.
23573
23574 2005-04-09 Richard M. Stallman <rms@gnu.org>
23575
23576 * help.el (describe-key-briefly, describe-key):
23577 Replace strings as event types with "(any string)".
23578
23579 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
23580
23581 * arc-mode.el (archive-mode-map): Move initialization into
23582 the declaration. Override *all* bindings of `undo'.
23583 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
23584
23585 2005-04-09 Jay Belanger <belanger@truman.edu>
23586
23587 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
23588
23589 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
23590
23591 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
23592 (xterm-register-default-colors): Update color values computation
23593 to match xterm-200.
23594
23595 2005-04-09 Kenichi Handa <handa@m17n.org>
23596
23597 * international/code-pages.el (iso-latin-7): Fix the map.
23598
23599 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
23600
23601 * emacs-lisp/lisp.el (defun-prompt-regexp)
23602 (parens-require-spaces, buffer-end, end-of-defun)
23603 (insert-parentheses): Doc fixes.
23604
23605 2005-04-08 Kim F. Storm <storm@cua.dk>
23606
23607 * comint.el (comint-highlight-prompt): Fix face spec.
23608 * hi-lock.el (hi-green): Likewise.
23609
23610 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
23611
23612 * cus-edit.el (custom-modified-face):
23613 * comint.el (comint-highlight-input): Fix previous changes.
23614 * term.el (term-handle-ansi-escape): Add a comment.
23615
23616 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
23617
23618 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
23619 in the buffer and in whitespace-highlighted-space.
23620 (whitespace-unhighlight-the-space): Simplify.
23621 (whitespace-buffer): Simplify.
23622
23623 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
23624
23625 * textmodes/table.el (table-cell-face): Add special case for
23626 displays supporting a high number of colors.
23627 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
23628 (vhdl-font-lock-reserved-words-face)
23629 (vhdl-speedbar-architecture-face)
23630 (vhdl-speedbar-instantiation-face)
23631 (vhdl-speedbar-architecture-selected-face)
23632 (vhdl-speedbar-instantiation-selected-face): Likewise.
23633 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
23634 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
23635 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
23636 (ebrowse-root-class-face, ebrowse-member-attribute-face)
23637 (ebrowse-progress-face): Likewise.
23638 * progmodes/compile.el (compilation-info-face): Likewise.
23639 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
23640 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
23641 * calendar/calendar.el (diary-face): Likewise.
23642 * woman.el (woman-italic-face, woman-bold-face)
23643 (woman-unknown-face): Likewise.
23644 * wid-edit.el (widget-button-pressed-face): Likewise.
23645 * whitespace.el (whitespace-highlight-face): Likewise.
23646 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
23647 * pcvs-info.el (cvs-marked-face): Likewise.
23648 * info.el (info-xref): Likewise.
23649 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
23650 * hilit-chg.el (highlight-changes-face)
23651 (highlight-changes-delete-face): Likewise.
23652 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
23653 (hi-red-b): Likewise.
23654 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
23655 * font-lock.el (font-lock-keyword-face)
23656 (font-lock-function-name-face, font-lock-warning-face): Likewise.
23657 * cus-edit.el (custom-invalid-face, custom-modified-face)
23658 (custom-set-face, custom-changed-face, custom-variable-tag-face)
23659 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
23660 * comint.el (comint-highlight-prompt): Likewise.
23661
23662 2005-04-08 Lute Kamstra <lute@gnu.org>
23663
23664 * font-lock.el (font-lock-keywords): Docstring fixes.
23665
23666 2005-04-08 Kenichi Handa <handa@m17n.org>
23667
23668 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
23669 chars are more than a limit, print " and more..." at the tail.
23670
23671 2005-04-08 Kim F. Storm <storm@cua.dk>
23672
23673 * emacs-lisp/authors.el (authors-aliases): Update list.
23674 (authors-ignored-files): New list.
23675 (authors-fixed-entries): Fix typo.
23676 (authors-renamed-files-alist): Update list.
23677 (authors-add): Check authors-ignored-files.
23678
23679 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
23680
23681 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
23682 optional, to ensure backward compatibility.
23683
23684 2005-04-08 Stephen Eglen <stephen@gnu.org>
23685
23686 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
23687
23688 2005-04-08 Kim F. Storm <storm@cua.dk>
23689
23690 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
23691
23692 * mouse.el (mouse-on-link-p): Doc fix.
23693
23694 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
23695
23696 * ielm.el (ielm-prompt-read-only): Doc fix.
23697
23698 * comint.el (comint-prompt-read-only): Doc fix.
23699
23700 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
23701
23702 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
23703 ensure dired always handles wildcards passed to ffap.
23704 (find-file-at-point): Use it.
23705 (ffap-dired-wildcards): Doc fix.
23706
23707 2005-04-07 Juri Linkov <juri@jurta.org>
23708
23709 * simple.el (next-error-overlay-arrow-position): New defvar.
23710 Put "=>" on its property `overlay-arrow-string'. Add it to
23711 `overlay-arrow-variable-list'.
23712
23713 * progmodes/compile.el (compilation-setup):
23714 Set `next-error-overlay-arrow-position' to nil. Also set it to
23715 nil in the local hook `kill-buffer-hook'. Make local variable
23716 `overlay-arrow-string' and set it to "=>".
23717 (compilation-goto-locus): Set BOL position to
23718 `next-error-overlay-arrow-position' instead of
23719 `overlay-arrow-position'.
23720
23721 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
23722 locally instead of adding it to the global hook.
23723 (Info-kill-buffer): Move up.
23724
23725 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
23726
23727 * term/xterm.el (xterm-standard-colors): Update color values from
23728 xterm-200.
23729
23730 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
23731
23732 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
23733
23734 * fast-lock.el:
23735 * lazy-lock.el: Move them to the obsolete subdir.
23736
23737 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
23738
23739 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
23740 (wdired-add-replace-advice): Remove.
23741 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
23742
23743 2005-04-06 Kim F. Storm <storm@cua.dk>
23744
23745 * startup.el (command-line): Add --bare-bones alias for -Q.
23746
23747 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23748
23749 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
23750 create the startup fontset if a font specification ends with
23751 `mac-roman'.
23752
23753 2005-04-06 Lute Kamstra <lute@gnu.org>
23754
23755 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
23756 change.
23757
23758 * emacs-lisp/copyright.el (copyright-update-year): Replace the
23759 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
23760
23761 2005-04-05 Lute Kamstra <lute@gnu.org>
23762
23763 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
23764 (define-generic-mode): Ditto. Fix debug declaration.
23765
23766 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
23767 Put them in the generic-x group.
23768
23769 * calendar/timeclock.el (timeclock): Doc fix.
23770
23771 * generic.el (define-generic-mode): Don't use custom-current-group.
23772 Document default :group value.
23773 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
23774 (define-global-minor-mode): Don't use custom-current-group.
23775
23776 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
23777
23778 * startup.el (command-line-1): Display startup-echo-area-message
23779 when fancy splash screen is in use.
23780
23781 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
23782 (sh-escaped-newline): New face.
23783 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
23784 newline, and use sh-escaped-newline face.
23785
23786 * progmodes/tcl.el (tcl-escaped-newline): New face.
23787 (tcl-builtin-list): New variable.
23788 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
23789 newlines. Fix keywords subexpression number.
23790
23791 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
23792
23793 * textmodes/org.el (org-diary-default-entry): Fix call to
23794 `add-to-diary-entry'.
23795
23796 2005-04-05 Kim F. Storm <storm@cua.dk>
23797
23798 * ediff-init.el: Use (featurep 'xemacs).
23799
23800 2005-04-05 David Ponce <david@dponce.com>
23801
23802 * cus-edit.el (face): Derive from symbol widget. Display sample
23803 of the current face on the fly.
23804 (widget-face-sample-face-get, widget-face-notify): New functions.
23805 (widget-face-value-create): Remove.
23806
23807 * wid-edit.el (widget-field-end): Temporarily remove field
23808 narrowing before to call `get-char-property'.
23809
23810 2005-04-04 Jay Belanger <belanger@truman.edu>
23811
23812 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
23813 (math-read-subscripts): New variable.
23814 (math-read-preprocess-string): Process subscripts.
23815
23816 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
23817
23818 * comint.el (comint-prompt-read-only): Doc fix.
23819
23820 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
23821 `-1'. Doc fix.
23822
23823 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
23824
23825 * textmodes/org.el (org-insert-mode-line-in-empty-file):
23826 Change default value to nil.
23827
23828 2005-04-04 Lute Kamstra <lute@gnu.org>
23829
23830 * autorevert.el (auto-revert-mode): Specify :group.
23831 * battery.el (display-battery-mode): Specify :group.
23832 * diff-mode.el (diff-minor-mode): Specify :group.
23833 * font-core.el (font-lock-mode): Specify :group.
23834 * hl-line.el (hl-line-mode): Specify :group.
23835 * iimage.el (iimage): New customization group.
23836 (iimage-mode): Specify :group.
23837 * longlines.el (longlines-mode): Specify :group.
23838 * master.el: Don't require easy-mmode.
23839 (master): New customization group.
23840 (master-mode): Specify :group.
23841 * msb.el (msb-mode): Specify :group.
23842 * reveal.el (reveal-mode): Specify :group.
23843 * simple.el (next-error-follow-minor-mode): Specify :group.
23844 * smerge-mode.el (smerge-mode): Specify :group.
23845 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
23846 * emulation/cua-base.el (cua-mode): Specify :group.
23847 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
23848 * language/thai-util.el (thai-auto-composition-mode)
23849 (thai-word-mode): Specify :group.
23850 * mail/supercite.el (sc-minor-mode): Specify :group.
23851 * progmodes/cwarn.el (cwarn-mode): Specify :group.
23852 * progmodes/flymake.el (flymake-mode): Specify :group.
23853 * progmodes/glasses.el (glasses-mode): Specify :group.
23854 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
23855 * textmodes/enriched.el (enriched-mode): Specify :group.
23856 * textmodes/refill.el (refill-mode): Specify :group.
23857
23858 * add-log.el (change-log-font-lock-keywords): Names in
23859 parenthesized lists can contain spaces.
23860
23861 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
23862
23863 * startup.el (fancy-splash-text): Shorten default text of
23864 "Emacs Tutorial" line. Also, if the current language env
23865 indicates an available tutorial file other than TUTORIAL,
23866 extract its title and append it to the line in parentheses.
23867 (fancy-splash-insert): If arg is a thunk, funcall it.
23868
23869 2005-04-04 Jay Belanger <belanger@truman.edu>
23870
23871 * calc.el (calc-language-alist): Add tags to customization type.
23872
23873 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
23874
23875 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
23876 Doc fix.
23877
23878 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
23879
23880 * add-log.el (change-log-font-lock-keywords): The manual
23881 describing a Change Log entry, says: (...) "Aside from these
23882 header lines, every line in the change log starts with a space or
23883 a tab.". The font-lock was not highlighting lines started with
23884 spaces, added support for it.
23885
23886 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
23887
23888 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
23889 (bibtex-generate-url-list): Update docstring accordingly. Put the
23890 complex example in the docstring.
23891 (bibtex-font-lock-url): Use pop.
23892
23893 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
23894
23895 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
23896
23897 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
23898
23899 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
23900
23901 * filesets.el (filesets-set-default): Doc fix.
23902
23903 2005-04-03 Lute Kamstra <lute@gnu.org>
23904
23905 * generic.el (define-generic-mode): Add argument to specify
23906 keywords for defcustom.
23907 (default-generic-mode): Specify :group.
23908
23909 * generic-x.el: Specify :group for all generic modes.
23910
23911 * desktop.el (desktop-no-desktop-file-hook)
23912 (desktop-after-read-hook): Doc fix.
23913
23914 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
23915
23916 * simple.el (visible-mode): Use explicit :group keyword.
23917 This changes the group of `visible-mode-hook' from paren-blinking
23918 to editing-basics.
23919
23920 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
23921
23922 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
23923 mailbox specifications as well as URLs.
23924 (rmail-insert-inbox-text): Remove unused conditional branches.
23925
23926 2005-04-01 Jay Belanger <belanger@truman.edu>
23927
23928 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
23929 (calc-gnuplot-print-command): Move definitions to calc.el.
23930
23931 * calc/calc-embed.el (calc-embedded-announce-formula)
23932 (calc-embedded-open-formula, calc-embedded-close-formula)
23933 (calc-embedded-open-word, calc-embedded-close-word)
23934 (calc-embedded-open-plain, calc-embedded-close-plain)
23935 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
23936 (calc-embedded-open-mode, calc-embedded-close-mode):
23937 Move definitions to calc.el.
23938
23939 * calc/calc.el (calc-settings-file, calc-language-alist):
23940 Make customizable.
23941 (calc-embedded-announce-formula, calc-embedded-open-formula)
23942 (calc-embedded-close-formula, calc-embedded-open-word)
23943 (calc-embedded-close-word, calc-embedded-open-plain)
23944 (calc-embedded-close-plain, calc-embedded-open-new-formula)
23945 (calc-embedded-close-new-formula, calc-embedded-open-mode)
23946 (calc-embedded-close-mode, calc-gnuplot-name)
23947 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
23948 from other files and make customizable.
23949
23950 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
23951
23952 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
23953 Use buffer-live-p.
23954 (cvs-mode-run): Don't call cvs-update-header here.
23955 (cvs-run-process): Call cvs-update-header.
23956 Use process properties for cvs-postprocess and cvs-buffer so that
23957 the sentinel can behave better if the temp buffer is killed.
23958 Use a pipe rather than a tty, to better handle unexpected prompts.
23959 (cvs-sentinel): Rewrite. Call cvs-update-header.
23960
23961 2005-04-01 Andre Spiegel <spiegel@gnu.org>
23962
23963 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
23964 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
23965
23966 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
23967
23968 * generic.el (define-generic-mode): Add indentation rule.
23969
23970 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
23971
23972 * files.el (mode-require-final-newline): Make Custom correctly
23973 report a nil value and allow to set it to nil via Custom.
23974 Doc fix.
23975
23976 2005-04-01 Kenichi Handa <handa@m17n.org>
23977
23978 * international/characters.el: Enable the correct case setting for
23979 dotless-i and dotted-I.
23980
23981 2005-04-01 Kim F. Storm <storm@cua.dk>
23982
23983 * ido.el (ido-file-internal): Fall back to non-ido command if
23984 initial directory is on slow ftp (or tramp) host.
23985
23986 2005-03-31 Richard M. Stallman <rms@gnu.org>
23987
23988 * emacs-lisp/autoload.el (make-autoload):
23989 Handle define-global-minor-mode.
23990
23991 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
23992 Rename from easy-mmode-define-global-mode.
23993 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
23994
23995 * progmodes/scheme.el (scheme-mode-syntax-table):
23996 Update syntax of | and # for two-character comment syntax.
23997
23998 2005-03-31 Lute Kamstra <lute@gnu.org>
23999
24000 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
24001 (define-minor-mode): Call custom-current-group at load-time.
24002
24003 * generic.el (define-generic-mode): Add debug declaration.
24004 Add defcustom for the mode hook.
24005 (generic-mode-internal): Use run-mode-hooks.
24006
24007 2005-03-31 Kim F. Storm <storm@cua.dk>
24008
24009 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
24010 (mouse-fixup-help-message): New defun called by show_help_echo
24011 to fixup mouse-2 prefix in help messages when applicable.
24012
24013 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
24014
24015 2005-03-31 Kenichi Handa <handa@m17n.org>
24016
24017 * language/thai-word.el (thai-find-word-ends): Pay attention to
24018 the case that we reach the end of buffer.
24019
24020 * textmodes/fill.el (fill-text-properties-at): New function.
24021 (fill-newline): Use fill-text-properties-at instead of
24022 text-properties-at.
24023
24024 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
24025
24026 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
24027 not comint-quote-filename.
24028
24029 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
24030
24031 * help-fns.el (help-with-tutorial): Revert last change.
24032
24033 2005-03-31 Kim F. Storm <storm@cua.dk>
24034
24035 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
24036
24037 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
24038
24039 * calendar/cal-china.el: Update reference to "Calendrical
24040 Calculations" book; there's a new edition.
24041 * calendar/cal-coptic.el: Likewise.
24042 * calendar/cal-french.el: Likewise.
24043 * calendar/cal-hebrew.el: Likewise.
24044 * calendar/cal-islam.el: Likewise.
24045 * calendar/cal-iso.el: Likewise.
24046 * calendar/cal-julian.el: Likewise.
24047 * calendar/cal-mayan.el: Likewise.
24048 * calendar/cal-persia.el: Likewise.
24049 * calendar/calendar.el: Likewise.
24050 * calendar/holidays.el: Likewise.
24051 * calendar/lunar.el: Likewise.
24052 * calendar/solar.el: Likewise.
24053
24054 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
24055 white space from doc string.
24056
24057 2005-03-30 Jay Belanger <belanger@truman.edu>
24058
24059 * calc/calc-help.el (calc-full-help): Remove email address.
24060
24061 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
24062
24063 * help-fns.el (help-with-tutorial): Delete title line.
24064
24065 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
24066
24067 * calendar/cal-x.el (calendar-one-frame-setup)
24068 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
24069 rather than `symbol' for set-window-dedicated-p.
24070
24071 * calendar/appt.el (appt-buffer-name): Make it a constant.
24072 (appt-add): Doc fix.
24073
24074 * filesets.el (filesets-menu-path, filesets-menu-before)
24075 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
24076 (filesets-menu-cache-file): Use directory ~/.emacs.d.
24077 (filesets-add-submenu): Delete and use add-submenu instead.
24078
24079 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
24080
24081 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
24082 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
24083 (org-diary-default-entry): New function.
24084 (org-get-entries-from-diary): Better parsing of diary entries.
24085 (org-agenda-check-no-diary): New function.
24086 ("diary-lib"): Advice to function `add-to-diary-list', to allow
24087 linking to diary entries.
24088 (org-agenda-execute-calendar-command): New function.
24089 (org-agenda): Improve visible section in window.
24090 Use `org-fit-agenda-window'.
24091 (org-fit-agenda-window): New option.
24092 (org-move-subtree-down): Better handling of empty lines
24093 at end of subtree.
24094 (org-cycle): Numeric prefix is interpreted now as show-subtree N
24095 levels up.
24096 (org-fontify-done-headline): New option.
24097 (org-headline-done-face): New face.
24098 (org-set-font-lock-defaults): Use `org-headline-done-face'.
24099 (org-table-copy-down): Rename from `org-table-copy-from-above'.
24100 When current field is non-empty, it is copied to next row.
24101 (org-table-copy-from-above): Fix bug which made it
24102 impossible to copy fields containing only a single non-white character.
24103
24104 2005-03-30 Kim F. Storm <storm@cua.dk>
24105
24106 * kmacro.el (kmacro-end-macro): Isearch may store this command
24107 into the macro -- so ignore it when executing keyboard macro.
24108
24109 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
24110
24111 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
24112
24113 2005-03-29 Kenichi Handa <handa@m17n.org>
24114
24115 * language/thai.el ("Thai"): Set setup-function and exit-function
24116 for Thai language environment.
24117
24118 * language/thai-util.el: Require thai-word.
24119 (thai-word-mode-map): New variable.
24120 (thai-word-mode): New minor mode.
24121 (setup-thai-language-environment-internal): New function.
24122 (exit-thai-language-environment-internal): New function.
24123
24124 * language/thai-word.el (thai-word-table): Declare it by defvar,
24125 use dolist to initialize it.
24126 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
24127 (thai-fill-find-break-point): New functions.
24128
24129 2005-03-29 Richard M. Stallman <rms@gnu.org>
24130
24131 * simple.el (idle-update-delay): Move definition up.
24132 (set-mark): Doc fix.
24133
24134 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
24135
24136 * longlines.el: New file.
24137
24138 * simple.el (buffer-substring-filters): New variable.
24139 (filter-buffer-substring): New function.
24140 (kill-region, copy-region-as-kill): Use it.
24141
24142 * register.el (copy-to-register, append-to-register)
24143 (prepend-to-register): Use filter-buffer-substring.
24144
24145 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
24146
24147 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
24148 (gud-filter-pending-text): Move in front of gdb.
24149 (gud-overlay-arrow-position): New variable.
24150 (gud-sentinel, gud-display-line): Use it in place of
24151 overlay-arrow-position.
24152
24153 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
24154
24155 * progmodes/fortran.el (fortran-if-indent): Doc fix.
24156 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
24157 (fortran-font-lock-keywords-4): New variable.
24158 (fortran-blocks-re, fortran-end-block-re)
24159 (fortran-start-block-re): New constants, for hideshow.
24160 (hs-special-modes-alist): Add a Fortran entry.
24161 (fortran-mode-map): Bind fortran-end-of-block,
24162 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
24163 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
24164 (fortran-looking-at-if-then, fortran-end-of-block)
24165 (fortran-beginning-of-block): New functions, for hideshow.
24166
24167 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
24168 Doc fix. Tweak regexp.
24169 (f90-beginning-of-block): Push mark first.
24170
24171 2005-03-29 Jay Belanger <belanger@truman.edu>
24172
24173 * calc/calc.el: Update copyright date.
24174 (calc-version): Increase to 2.1.
24175 (calc-version-date): Remove.
24176
24177 * calc/calc-help.el: Update copyright date.
24178 (calc-full-help): Remove reference to calc-version-date.
24179 Update copyright date.
24180
24181 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
24182
24183 * vc.el (vc-do-command): Use a pipe for async processes, so password
24184 prompts don't show up at places where the user can't reply.
24185
24186 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
24187
24188 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
24189 on the file name we pass to the inferior shell.
24190
24191 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
24192
24193 * progmodes/which-func.el (which-function): Be robust in the face of an
24194 imenu--make-index-alist failure.
24195
24196 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
24197
24198 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
24199
24200 * progmodes/python.el (python-preoutput-filter): Fix last change.
24201
24202 2005-03-29 Lute Kamstra <lute@gnu.org>
24203
24204 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
24205 functions and compiled macros.
24206 (debug-convert-byte-code): Handle macros too.
24207 (debug-on-entry-1): Don't signal an error when trying to clear a
24208 function that is not set to debug on entry.
24209
24210 2005-03-29 Jay Belanger <belanger@truman.edu>
24211
24212 * calc/calc-lang.el: Add functions to math-function-table
24213 properties of tex and math.
24214
24215 2005-03-29 Kenichi Handa <handa@m17n.org>
24216
24217 * ps-mule.el (ps-mule-plot-string): Translate characters by
24218 ps-print-translation-table.
24219 (ps-mule-begin-job): Call find-charset-region/string with
24220 ps-print-translation-table.
24221 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
24222
24223 * ps-print.el (ps-print-translation-table): New variable.
24224 (ps-plot-region): Translate characters by ps-print-translation-table.
24225
24226 2005-03-29 Juri Linkov <juri@jurta.org>
24227
24228 * simple.el (next-error-highlight-timer): New variable.
24229
24230 * progmodes/compile.el (compilation-goto-locus):
24231 Use `next-error-highlight-timer' instead of `sit-for'.
24232
24233 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
24234
24235 * mail/supercite.el (sc-mail-field): Use assoc-string.
24236 (sc-get-address): Simplify regexps.
24237
24238 * files.el (minibuffer-with-setup-hook): New macro.
24239 (find-file-read-args): Use it to avoid let-binding
24240 minibuffer-with-setup-hook (which breaks turning on/off
24241 file-name-shadow-mode while in the prompt).
24242
24243 * complete.el (PC-read-include-file-name-internal):
24244 Use test-completion.
24245
24246 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
24247
24248 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
24249
24250 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
24251
24252 * window.el (window-buffer-height): Use count-screen-lines.
24253
24254 * progmodes/python.el (python-preoutput-leftover): New var.
24255 (python-preoutput-filter): Use it.
24256 (python-send-receive): Loop until all the result has been received.
24257
24258 2005-03-28 Juri Linkov <juri@jurta.org>
24259
24260 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
24261
24262 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
24263 "Recover Crashed Session".
24264 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
24265 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
24266 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
24267 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
24268 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
24269 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
24270 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
24271 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
24272
24273 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
24274 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
24275 Ediff Sessions", "Toggle use of separate control buffer frame",
24276 "Use separate frame for Ediff control buffer".
24277
24278 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
24279 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
24280 "Rename Bookmark", "Delete Bookmark".
24281
24282 * info.el (Info-mode-menu): Remove ellipsis from "Index".
24283 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
24284 Add `:active Info-index-alternatives' to "Next Matching Item".
24285
24286 * wdired.el (wdired-change-to-wdired-mode):
24287 Mention `wdired-abort-changes' key in the initial message.
24288
24289 * international/mule.el (auto-coding-alist): Associate non-ascii
24290 image filename extensions with `no-conversion'.
24291
24292 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
24293
24294 * international/iso-acc.el:
24295 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
24296
24297 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
24298
24299 * textmodes/sgml-mode.el (html-mode): Doc update.
24300
24301 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
24302
24303 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
24304
24305 * term.el (term-move-columns): Fix face after extending a line.
24306 (term-insert-spaces): Likewise.
24307 (term-reset-terminal): Fix off by one error.
24308
24309 2005-03-26 Eli Zaretskii <eliz@gnu.org>
24310
24311 * international/mule.el (auto-coding-alist): Add .xpi files.
24312
24313 * files.el (auto-mode-alist): Add .xpi files.
24314
24315 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
24316
24317 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
24318
24319 2005-03-26 Eli Zaretskii <eliz@gnu.org>
24320
24321 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
24322
24323 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
24324
24325 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
24326 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
24327
24328 * calendar/cal-move.el (calendar-beginning-of-year): Move the
24329 cursor to Jan 1 when needed.
24330 (calendar-end-of-year): Fix -/+ typo.
24331 Reported by Chong Yidong <cyd@stupidchicken.com>.
24332
24333 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
24334
24335 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
24336
24337 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
24338 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
24339
24340 2005-03-25 Richard M. Stallman <rms@gnu.org>
24341
24342 * filesets.el (filesets-init): Add autoload.
24343
24344 * mail/mailalias.el (mail-directory): Doc fix.
24345
24346 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
24347
24348 * mail/mailalias.el (mail-directory-process): Do nothing if
24349 mail-directory-process is an atom.
24350 (mail-get-names): Ignore mail-directory-names if it is an atom.
24351 (mail-directory-process defvar): Doc fix.
24352 (mail-names): Doc fix.
24353
24354 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
24355
24356 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
24357
24358 2005-03-26 Kenichi Handa <handa@m17n.org>
24359
24360 * international/mule-util.el (detect-coding-with-priority):
24361 Call update-coding-systems-internal before detect-coding-region.
24362
24363 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
24364
24365 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
24366 (gdb-frames-mode-map): Add follow-link property.
24367
24368 2005-03-25 Jay Belanger <belanger@truman.edu>
24369
24370 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
24371 for variables.
24372
24373 2005-03-25 Juri Linkov <juri@jurta.org>
24374
24375 * image-mode.el: Optimize image filename extension regexps in
24376 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
24377 in `auto-mode-alist'.
24378 (image-mode): Add `image-toggle-display-text' to local hook
24379 `change-major-mode-hook'. Display the image as an image by
24380 default. Set `cursor-type' and `truncate-lines' if the image
24381 is already displayed. Take into account the current mode (image
24382 or text) in message.
24383 (image-minor-mode): New minor mode.
24384 (image-mode-maybe, image-toggle-display-text): New functions.
24385 (image-toggle-display): Use called-interactively-p.
24386 Let-bind `inhibit-read-only' to t.
24387
24388 * image-mode.el (image-minor-mode): Set `cursor-type' and
24389 `truncate-lines' if the image is already displayed. Add turning
24390 image-minor-mode off to `change-major-mode-hook'. Add message.
24391 Call `image-toggle-display-text' after turning image-minor-mode off.
24392
24393 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
24394
24395 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
24396 Terminal.app, use utf-8.
24397 (set-display-table-and-terminal-coding-system): Add coding-system arg.
24398 (set-locale-environment): Use it.
24399
24400 * term/xterm.el: Undo last change, better done in mule-cmds.el.
24401
24402 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
24403
24404 * progmodes/python.el (python-close-block-statement-p)
24405 (python-outdent-p, python-current-defun): Use symbol-end.
24406
24407 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
24408
24409 * files.el (save-some-buffers): Doc fix.
24410
24411 2005-03-25 Werner Lemberg <wl@gnu.org>
24412
24413 * complete.el, thumbs.el: Replace `legal' with `valid'.
24414 * calendar/calendar.el: Replace `legal' with `valid'.
24415 * emacs-lisp/advice.el: Replace `legal' with `valid'.
24416 * mail/supercite.el: Replace `legal' with `valid'.
24417 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
24418 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
24419 Replace `legal' with `valid'.
24420 * textmodes/reftex-vars.el, textmodes/reftex.el:
24421 Replace `legal' with `valid'.
24422
24423 2005-03-25 Werner Lemberg <wl@gnu.org>
24424
24425 * calc/calc-forms.el, calc/calc-sel.el
24426 * midnight.el, vc-cvs.el
24427 * emacs-lisp/cl-macs.el
24428 * emulation/vip.el
24429 * eshell/esh-io.el, eshell/esh-var.el
24430 * mail/supercite.el
24431 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
24432 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
24433 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
24434 * progmodes/sh-script.el, progmodes/xscheme.el
24435 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
24436 * textmodes/reftex-index.el, textmodes/reftex-parse.el
24437 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
24438 * textmodes/reftex.el, textmodes/org.el:
24439 Replace `illegal' with `invalid'.
24440
24441 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24442
24443 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
24444 (flymake-find-buildfile, flymake-find-possible-master-files)
24445 (flymake-check-include, flymake-parse-line): Replace loops over the
24446 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
24447
24448 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
24449 Substitute file-name-as-directory in the rest of the file.
24450 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
24451 (flymake-replace-region): Remove unused arg `buffer'.
24452 (flymake-check-patch-master-file-buffer): Update calls to it.
24453 (flymake-add-err-info): Remove unused var `count'.
24454 (flymake-mode): Use define-minor-mode.
24455
24456 * progmodes/flymake.el: Use with-current-buffer.
24457 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
24458 flymake-replace-regexp-in-string, flymake-line-beginning-position)
24459 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
24460 Avoid testing for `xemacs'.
24461 (flymake-nop): Move.
24462 (flymake-region-has-flymake-overlays): Return the computed value.
24463 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
24464 Remove unused var `endline'.
24465 (flymake-get-line-count): Remove unused function.
24466 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
24467
24468 * emulation/vi.el:
24469 * generic.el:
24470 * hilit-chg.el (global-highlight-changes):
24471 * hi-lock.el (hi-lock-mode):
24472 * follow.el: find-file-hooks -> find-file-hook.
24473
24474 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
24475
24476 2005-03-24 Juri Linkov <juri@jurta.org>
24477
24478 * dired.el (dired-mode-map): Add menu item "Compare directories"
24479 for dired-compare-directories.
24480
24481 * dired-aux.el (dired-compare-directories): Add autoload cookie.
24482 Doc fix. Replace `read-file-name' with `read-directory-name'.
24483
24484 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24485
24486 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
24487
24488 2005-03-24 Jay Belanger <belanger@truman.edu>
24489
24490 * calc/calc-embed.el (calc-embedded-mode-change): Save all
24491 relevant mode settings in calc-embedded-original-modes when modes
24492 are permanently changed.
24493
24494 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
24495
24496 * autoinsert.el: find-file-hooks -> find-file-hook.
24497
24498 2005-03-24 Lute Kamstra <lute@gnu.org>
24499
24500 * generic.el (generic-font-lock-defaults): Make it obsolete.
24501 (generic-font-lock-keywords): New variable to replace
24502 generic-font-lock-defaults.
24503 (generic-mode-set-font-lock): Delete it.
24504 (generic-mode-internal): Don't call generic-mode-set-font-lock.
24505 (generic-bracket-support): Add docstring.
24506
24507 * generic-x.el: Rename generic-font-lock-defaults to
24508 generic-font-lock-keywords throughout.
24509 (mailagent-rules-setup-function): Delete it.
24510 (mailagent-rules-generic-mode): Use anonymous function instead.
24511 (show-tabs-generic-mode-font-lock-defaults-1)
24512 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
24513 Quote faces.
24514 (show-tabs-tab-face, show-tabs-space-face): Specify background,
24515 not foreground.
24516
24517 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
24518 Recognize define-generic-mode.
24519
24520 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
24521
24522 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
24523 if there's no completion table.
24524
24525 2005-03-23 Miles Bader <miles@gnu.org>
24526
24527 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
24528 Remove tty-specific variants, as they're no longer needed.
24529
24530 2005-03-23 Lute Kamstra <lute@gnu.org>
24531
24532 * generic-x.el: Code cleanup: make args constant whenever possible.
24533 (installshield-statement-keyword-list)
24534 (installshield-system-functions-list)
24535 (installshield-system-variables-list, installshield-types-list)
24536 (installshield-funarg-constants-list): Make them constants.
24537
24538 * generic.el (generic-make-keywords-list): Add autoload cookie.
24539
24540 * calendar/time-date.el: Add comment on time value formats.
24541 Don't require parse-time.
24542 (with-decoded-time-value): New macro.
24543 (encode-time-value): New function.
24544 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
24545 (days-to-time): Return a valid time value when arg is huge.
24546 (time-since): Use time-subtract.
24547 (time-to-number-of-days): Use time-to-seconds.
24548
24549 2005-03-23 David Ponce <david@dponce.com>
24550
24551 * recentf.el (recentf-keep): New option.
24552 (recentf-menu-action): Default to `find-file'.
24553 (recentf-keep-non-readable-files-flag)
24554 (recentf-keep-non-readable-files-p)
24555 (recentf-file-readable-p, recentf-find-file)
24556 (recentf-cleanup-remote): Remove.
24557 (recentf-include-p): More robust.
24558 (recentf-keep-p): New function.
24559 (recentf-remove-if-non-kept): Rename from
24560 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
24561 All callers updated.
24562 (recentf-menu-items-for-commands): Fix help string.
24563 (recentf-track-closed-file): Update. Doc fix.
24564 (recentf-cleanup): Update. Count removed files. Doc fix.
24565
24566 2005-03-23 Kim F. Storm <storm@cua.dk>
24567
24568 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
24569 Don't inherit from fringe face (now happens automatically).
24570
24571 2005-03-22 Kim F. Storm <storm@cua.dk>
24572
24573 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
24574 position values.
24575
24576 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
24577
24578 * menu-bar.el (showhide-date-time): Remove.
24579 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
24580 (menu-bar-make-mm-toggle): Simplify.
24581
24582 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
24583
24584 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
24585 Accept qualified variable and function names.
24586
24587 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
24588
24589 * bindings.el (completion-ignored-extensions):
24590 Remove ".lis" for `vax-vms'.
24591
24592 2005-03-22 Andreas Schwab <schwab@suse.de>
24593
24594 * generic-x.el: Revert last change.
24595 * ldefs-boot.el: Update.
24596
24597 2005-03-22 Jay Belanger <belanger@truman.edu>
24598
24599 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
24600 (calc-embedded-save-original-modes)
24601 (calc-embedded-restore-original-modes): New functions.
24602 (calc-do-embedded): Save original modes when entering embedded mode
24603 and restore when leaving embedded mode.
24604 (calc-embedded-modes-change): Change the value of
24605 calc-embedded-original-modes to reflect permanent changes.
24606
24607 2005-03-22 Lute Kamstra <lute@gnu.org>
24608
24609 * generic-x.el: Require generic again.
24610
24611 2005-03-22 Miles Bader <miles@gnu.org>
24612
24613 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
24614 Tweak details to look good on both ttys and bitmap displays, light
24615 or dark background, etc.
24616
24617 2005-03-21 Kim F. Storm <storm@cua.dk>
24618
24619 * tooltip.el (tooltip-show-help-function): Check car and cdr of
24620 mouse position.
24621
24622 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
24623
24624 * icomplete.el: Don't forcibly turn on the mode upon load.
24625 (icomplete-mode): Use define-minor-mode.
24626 (icomplete-eoinput): Default to nil.
24627 (icomplete-minibuffer-setup): Remove autoload.
24628 (icomplete-tidy): Simplify.
24629 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
24630 in the initial state or if the user has modified the field.
24631 Fix handling of icomplete-max-delay-chars.
24632 Remove code that handles the oddball case where
24633 minibuffer-completion-table is an integer.
24634 Wrap icomplete-completions in while-no-input in case building
24635 completions takes more time than expected.
24636 (icomplete-completions): Simplify.
24637
24638 2005-03-21 Richard M. Stallman <rms@gnu.org>
24639
24640 * jka-compr.el (jka-compr-really-do-compress):
24641 Make variable buffer-local.
24642
24643 * image-mode.el: Handle .xpm files too.
24644 (image-toggle-display): Preserve modification flag.
24645
24646 * help.el (where-is): Don't mention aliases with no key bindings.
24647
24648 2005-03-21 Lute Kamstra <lute@gnu.org>
24649
24650 * generic.el: Fix commentary section. Don't require cl for
24651 compilation.
24652 (generic-mode-list): Add autoload cookie.
24653 (generic-use-find-file-hook, generic-lines-to-scan)
24654 (generic-find-file-regexp, generic-ignore-files-regexp)
24655 (generic-mode, generic-mode-find-file-hook)
24656 (generic-mode-ini-file-find-file-hook): Fix docstrings.
24657 (define-generic-mode): Make it a defmacro. Fix docstring.
24658 (generic-mode-internal): Code cleanup. Add autoload cookie.
24659 (generic-mode-set-comments): Code cleanup.
24660 * generic-x.el: Don't prevent compilation. Don't require generic.
24661 Follow coding conventions. Minor code cleanup.
24662 (etc-fstab-generic-mode): Add some keywords.
24663 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
24664 define-generic-mode like a function declaration.
24665
24666 2005-03-21 Jay Belanger <belanger@truman.edu>
24667
24668 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
24669 changing modes.
24670
24671 2005-03-21 Sam Steingold <sds@gnu.org>
24672
24673 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
24674
24675 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
24676
24677 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
24678 Add underscore to "f$ lexicals" regexp.
24679
24680 2005-03-20 Juri Linkov <juri@jurta.org>
24681
24682 * subr.el (progress-reporter-do-update): When `min-value' is equal
24683 to `max-value', set `percentage' to 0 and prevent division by zero.
24684
24685 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
24686
24687 Sync with Tramp 2.0.48.
24688
24689 * net/tramp.el (all): Change all addresses to .gnu.org.
24690 (tramp-append-tramp-buffers): New defun.
24691 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
24692 Catch `dont-send' signal.
24693 (tramp-set-auto-save-file-modes): Set always permissions, because
24694 there might be an old auto-saved file belonging to another
24695 original file. This could be a security threat. Reported by
24696 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
24697 Check for Emacs 21.3.50 removed.
24698
24699 * net/tramp-smb.el (all): Remove debug construct for
24700 `with-parsed-tramp-file-name'.
24701 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
24702 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
24703 No error message if DIRECTORY or FILENAME doesn't exist.
24704 (tramp-smb-open-connection): Check existence of
24705 `tramp-smb-program'.
24706
24707 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
24708
24709 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
24710 Properly handle the case where the `m' or `s' command's argument is not
24711 yet terminated.
24712 (perl-indent-new-calculate): New function.
24713 (perl-indent-line): Use it.
24714
24715 2005-03-20 Miles Bader <miles@gnu.org>
24716
24717 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
24718 in text-mode too. Change to new face names.
24719 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
24720 Add `:weight bold' attribute.
24721 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
24722
24723 2005-03-19 Juri Linkov <juri@jurta.org>
24724
24725 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
24726
24727 * international/mule.el (auto-coding-alist): Sync with
24728 `auto-mode-alist' by adding upper case archive file extensions
24729 and adding ear/war to jar extension.
24730
24731 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
24732
24733 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
24734 running, restart it.
24735
24736 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
24737
24738 * finder.el (finder-current-item): Throw an error on an empty line.
24739
24740 * man.el (Man-follow-manual-reference): If current-word returns
24741 nil, use "".
24742
24743 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
24744
24745 * simple.el (goto-line): Doc fix.
24746
24747 2005-03-19 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
24748
24749 * files.el (save-buffer): Doc fix.
24750
24751 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
24752
24753 * recentf.el (recentf-cleanup-remote): New variable.
24754 (recentf-cleanup): Use it to conditionally check availability of
24755 remote files.
24756
24757 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
24758
24759 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
24760 function names.
24761
24762 2005-03-19 Eli Zaretskii <eliz@gnu.org>
24763
24764 * language/thai-word.el: New file.
24765
24766 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
24767
24768 * files.el (backup-buffer): If the file's directory is not
24769 writable, use copy instead of move to backup the file.
24770
24771 2005-03-19 Eli Zaretskii <eliz@gnu.org>
24772
24773 * obsolete/keyswap.el: Moved to obsolete/ from term/.
24774
24775 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
24776
24777 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
24778 Use functionp instead of symbolp and fboundp. Reported by Drkm
24779 <darkman_spam@yahoo.fr>.
24780 (ps-print-version): New version 6.6.6.
24781
24782 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
24783
24784 * textmodes/table.el (table--line-column-position): New idiom.
24785 (table--row-column-insertion-point-p): New function to test
24786 validity of row and column insertion operation at a location.
24787 (table-global-menu, table-cell-menu): Use above functions for
24788 deterministic test operation.
24789 (table--editable-cell-p): Behave in deterministic fashion.
24790
24791 2005-03-18 Juri Linkov <juri@jurta.org>
24792
24793 * isearch.el (isearch-lazy-highlight-new-loop):
24794 Make arguments beg and end optional.
24795 (isearch-update): Remove optional arguments nil from
24796 isearch-lazy-highlight-new-loop.
24797 (isearch-lazy-highlight-search): Let-bind case-fold-search to
24798 isearch-lazy-highlight-case-fold-search instead of
24799 isearch-case-fold-search, and let-bind isearch-regexp to
24800 isearch-lazy-highlight-regexp.
24801 Use isearch-lazy-highlight-last-string instead of isearch-string.
24802
24803 * replace.el (perform-replace): Remove bindings of global
24804 variables isearch-string, isearch-regexp, isearch-case-fold-search.
24805 Add three new arguments to `replace-highlight'.
24806 (replace-highlight): Add arguments string, regexp, case-fold.
24807 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
24808 to allow isearch-lazy-highlight-new-loop to use these values
24809 to set corresponding isearch-lazy-highlight-* internal
24810 variables whose values lazy highlighting will use regardless of
24811 changes to global variables isearch-string, isearch-regexp,
24812 isearch-case-fold-search during lazy highlighting loop.
24813 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
24814 to `lazy-highlight-cleanup'.
24815
24816 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
24817 (ispell-highlight-face): Set default face to `isearch' when
24818 lazy highlighting is enabled.
24819 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
24820 priority to 1. Add lazy highlighting.
24821 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
24822 from `isearch-dehighlight'.
24823
24824 2005-03-18 David Ponce <david@dponce.com>
24825
24826 * files.el (hack-local-variables): Do a case-insensitive search
24827 for End.
24828
24829 2005-03-18 Juri Linkov <juri@jurta.org>
24830
24831 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
24832 `isearch-lazy-highlight-cleanup', add alias to old name and
24833 declare obsolete. Add release numbers to other obsolete vars.
24834 (isearch-done, isearch-lazy-highlight-new-loop):
24835 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
24836 (lazy-highlight-cleanup) <variable>: Doc fix.
24837 (isearch-lazy-highlight-update): Rename obsolete
24838 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
24839
24840 2005-03-18 Kenichi Handa <handa@m17n.org>
24841
24842 * language/thai-util.el: Fix categorization of Thai characters in
24843 thai-category-table.
24844 (thai-composition-pattern): Adjust it for the above change.
24845 (thai-self-insert-command, thai-compose-syllable): New functions.
24846 (thai-compose-region): Use thai-compose-syllable.
24847 (thai-compose-string): Likewise.
24848 (thai-composition-function): Likewise.
24849 (thai-auto-composition): New function.
24850 (thai-auto-composition-mode): New minor mode.
24851
24852 * language/thai.el: Fix patterns to be registered in
24853 composition-function-table.
24854
24855 * international/quail.el (quail-input-method): Locally bind
24856 inhibit-modification-hooks to t.
24857
24858 2005-03-17 Richard M. Stallman <rms@gnu.org>
24859
24860 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
24861 (perl-mode): Use run-mode-hooks.
24862
24863 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
24864 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
24865 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
24866
24867 * mail/sendmail.el (sendmail-send-it): Reenable the code
24868 to compute resend-to-address and use it.
24869
24870 * tar-mode.el (tar-mode): Turn off undo unconditionally.
24871
24872 * image-mode.el: New file.
24873
24874 * image.el (insert-sliced-image): Add autoload cookie.
24875
24876 * font-lock.el (font-lock-lines-before): New user option.
24877 (font-lock-after-change-function): Obey it.
24878
24879 * bindings.el (esc-map): Make M-g a prefix.
24880 Bind M-g g and M-g M-g to goto-line.
24881
24882 * faces.el (face-id): Doc fix.
24883
24884 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
24885
24886 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
24887 (rmail-show-message): Use rmail-unknown-mail-followup-to.
24888 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
24889
24890 * mail/sendmail.el (mail-yank-ignored-headers)
24891 (mail-font-lock-keywords, mail-mode-fill-paragraph):
24892 Add Mail-Followup-To and Mail-Reply-To headers.
24893 (mail-citation-hook): Add autoload cookie.
24894 (mail-mode): Doc fix.
24895 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
24896 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
24897 (mail-mode-fill-paragraph): Handle those headers.
24898 (mail-mailing-lists): New variable.
24899 (mail-mail-reply-to, mail-mail-followup-to): New functions.
24900
24901 2005-03-17 Juri Linkov <juri@jurta.org>
24902
24903 * isearch.el (isearch-fallback): Check for `(car previous)'
24904 before calling `isearch-other-end-state'.
24905
24906 2005-03-17 Kim F. Storm <storm@cua.dk>
24907
24908 * simple.el (move-beginning-of-line): Move to beginning of buffer
24909 line, as well as beginning of screen line.
24910
24911 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
24912
24913 * calendar/diary-lib.el (mark-diary-entries): Use new optional
24914 argument REDRAW rather than calendar-redrawing variable.
24915 * calendar/calendar.el (calendar-redrawing): Delete.
24916 (redraw-calendar): Do not bind calendar-redrawing.
24917
24918 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
24919
24920 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
24921 diary-file buffer.
24922
24923 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
24924
24925 * help.el (describe-mode): Allow a :minor-mode-function property to
24926 specify a different minor mode toggle function than the variable.
24927 * simple.el (auto-fill-function):
24928 * subr.el (add-minor-mode): Use it.
24929
24930 2005-03-16 Kenichi Handa <handa@m17n.org>
24931
24932 * language/ethio-util.el (sera-being-called-by-w3): New variable.
24933 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
24934 (ethio-fidel-to-sera-buffer): Likewise.
24935
24936 2005-03-16 Juri Linkov <juri@jurta.org>
24937
24938 * emacs-lisp/find-func.el (find-function-regexp):
24939 Add defun-emitting macro `menu-bar-make-toggle'.
24940
24941 * isearch.el: Put `isearch-scroll' property to
24942 `split-window-horizontally'.
24943
24944 * info.el: Update error messages for `debug-ignored-errors'.
24945 (Info-isearch-search): Doc fix.
24946 (Info-find-node): Move up code to go into info buffer before
24947 recording the node to the history.
24948 (Info-fontify-node): Fontify titles only if the next line
24949 has two or more `*', `=', `-', `.'.
24950 Display "go to this node" for empty (match-string 3).
24951
24952 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24953
24954 * term/mac-win.el: Add mouse pointer shape constants.
24955
24956 2005-03-15 Kim F. Storm <storm@cua.dk>
24957
24958 * simple.el (move-beginning-of-line): Use vertical-motion.
24959
24960 2005-03-15 Juri Linkov <juri@jurta.org>
24961
24962 * isearch.el (isearch-error): New variable.
24963 (isearch-invalid-regexp, isearch-within-brackets): Remove.
24964 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
24965 (isearch-within-brackets-state): Remove.
24966 (isearch-case-fold-search-state, isearch-pop-fun-state):
24967 Decrease frame index.
24968 (isearch-mode, isearch-top-state, isearch-push-state)
24969 (isearch-edit-string, isearch-abort, isearch-search-and-update)
24970 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
24971 (isearch-search, isearch-lazy-highlight-new-loop):
24972 Replace `isearch-invalid-regexp' with `isearch-error'.
24973 Remove `isearch-within-brackets'.
24974 (isearch-search): Add `search-failed' handler to `condition-case'.
24975 (isearch-lazy-highlight-search): Add `condition-case' to catch
24976 errors and allow `isearch-lazy-highlight-update' to try
24977 highlighting from the beginning of the window.
24978 (isearch-repeat): Move up code to set isearch-wrapped to t
24979 before calling isearch-wrap-function.
24980
24981 * info.el (Info-isearch-initial-node): New internal variable.
24982 (Info-search): Signal an error in isearch mode when search leaves
24983 the initial node. Signal an error when `bound' is non-nil and
24984 nothing was found in the current subfile.
24985 (Info-isearch-search): Remove `condition-case'.
24986 (Info-isearch-wrap): Don't wrap when search failed during leaving
24987 the initial node. If `Info-isearch-search' is nil, wrap around
24988 the current node.
24989 (Info-isearch-start): New fun.
24990 (Info-mode): Add buffer-local hook `Info-isearch-start' to
24991 `isearch-mode-hook'.
24992
24993 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24994
24995 * simple.el (normal-erase-is-backspace): Set default to t if
24996 running on Mac.
24997
24998 * term/mac-win.el (function-key-map): Sync with x-win.el.
24999
25000 2005-03-15 Kenichi Handa <handa@m17n.org>
25001
25002 * international/mule-cmds.el (locale-language-names): Modify the
25003 format of elements and add more entries.
25004 (locale-preferred-coding-systems): Add more entries.
25005 (set-locale-environment): Adjust for the change of
25006 locale-language-names.
25007
25008 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
25009
25010 * pcvs.el (smerge-ediff): Remove bogus autoload.
25011
25012 2005-03-14 Lute Kamstra <lute@gnu.org>
25013
25014 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
25015 Ignore a `*' at the beginning of a line.
25016
25017 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
25018 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
25019 subr.el.
25020 (dont-compile, eval-when-compile, eval-and-compile): Use declare
25021 to specify indentation.
25022
25023 * generic.el (define-generic-mode): Let generic-mode-list be a
25024 list of strings; test membership with equal.
25025
25026 2005-03-14 Kim F. Storm <storm@cua.dk>
25027
25028 * simple.el (next-line, previous-line): Add optional try-vscroll
25029 arg to recognize interactive use. Pass it on to line-move.
25030 (line-move): Don't perform auto-window-vscroll when defining or
25031 executing keyboard macro to ensure consistent behavior.
25032
25033 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
25034
25035 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
25036
25037 2005-03-13 Lute Kamstra <lute@gnu.org>
25038
25039 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
25040 debugger-setup-buffer so that backtrace marks the frames set to
25041 debug-on-exit and we don't have to do it manually. Set an extra
25042 debug-on-exit for macro's.
25043 (debugger-setup-buffer): Don't mark the top frame manually.
25044
25045 2005-03-12 Lute Kamstra <lute@gnu.org>
25046
25047 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
25048 lisp-indent-function throughout.
25049 (with-no-warnings): Set lisp-indent-function property.
25050
25051 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
25052
25053 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
25054 Add entry for backslash.
25055
25056 2005-03-12 Juri Linkov <juri@jurta.org>
25057
25058 * info.el (Info-search): Four fixes for backward search.
25059
25060 2005-03-11 Jay Belanger <belanger@truman.edu>
25061
25062 * calc/calc.el (calc-language-alist): New variable.
25063 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
25064 (calc-embedded-find-modes): Use calc-language-alist instead of
25065 calc-embedded-language-alist.
25066
25067 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
25068
25069 * calendar/calendar.el (calendar-redrawing): New internal
25070 variable.
25071 (redraw-calendar): Remove bogus save-excursion from previous
25072 change. Bind calendar-redrawing to t for mark-diary-entries.
25073 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
25074 calendar if that is why we were called.
25075
25076 2005-03-11 Kenichi Handa <handa@m17n.org>
25077
25078 * international/mule.el (make-coding-system): Set property
25079 coding-system-define-form to nil.
25080 (define-coding-system-alias): Likewise.
25081
25082 2005-03-11 Kenichi Handa <handa@m17n.org>
25083
25084 These changes are suggested by Dave Love <fx@gnu.org>.
25085
25086 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
25087 coding: tag.
25088 (adaptive-fill-regexp): Add more bullets.
25089 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
25090 regexps.
25091
25092 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
25093
25094 * help.el (describe-mode): Properly handle non-trivial lighters.
25095 Don't ignore minor modes that are not listed in minor-mode-list.
25096
25097 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
25098 feature ON when the user requests to turn it OFF.
25099
25100 2005-03-10 Lute Kamstra <lute@gnu.org>
25101
25102 * emacs-lisp/debug.el (debug-entry-code): Delete it.
25103 (implement-debug-on-entry): New function to replace debug-entry-code.
25104 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
25105 second argument as the 2005-03-07 change makes it obsolete.
25106 (debug-on-entry, cancel-debug-on-entry): Update call to
25107 debug-on-entry-1.
25108 (debug, debugger-setup-buffer): Comment update.
25109 (debugger-frame-number): Update to work with implement-debug-on-entry.
25110
25111 2005-03-10 Jay Belanger <belanger@truman.edu>
25112
25113 * calc/calc-embed.el (math-ms-args): Declare it.
25114 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
25115 math-ms-args.
25116 (calc-embedded-subst): Use math-multi-subst-rec to substitute
25117 variables.
25118
25119 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
25120
25121 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
25122 Use message-box.
25123
25124 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
25125 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
25126 (tooltip-gud-tips): Simplify.
25127 (tooltip-gud-tips-p): Remove superfluous :set.
25128 (tooltip-gud-modes): Add fortran-mode.
25129 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
25130
25131 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
25132
25133 2005-03-09 Kim F. Storm <storm@cua.dk>
25134
25135 * play/animate.el (animate-place-char): Use forward-line instead
25136 of next-line to improve performance.
25137
25138 2005-03-09 Simon Josefsson <jas@extundo.com>
25139
25140 * net/browse-url.el (browse-url-default-browser): Doc fix.
25141
25142 2005-03-09 Miles Bader <miles@gnu.org>
25143
25144 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
25145 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
25146
25147 2005-03-09 Kenichi Handa <handa@m17n.org>
25148
25149 * international/latin-1.el: Set case and syntax for 255 only if
25150 set-case-syntax-set-multibyte is nil.
25151
25152 * textmodes/ispell.el (ispell-insert-word): New function.
25153 (ispell-word): Use ispell-insert-word to insert a new word.
25154 (ispell-process-line): Likewise.
25155 (ispell-complete-word): Likewise.
25156
25157 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
25158
25159 * calendar/calendar.el (redraw-calendar): Preserve point.
25160 Reported by Matt Hodges <MPHodges@member.fsf.org>.
25161 (calendar-week-start-day): Move after definition of
25162 redraw-calendar. Delete buffer test, since redraw-calendar has
25163 that now.
25164
25165 * calendar/diary-lib.el (mark-diary-entries): Only call
25166 redraw-calendar in the first of any recursive calls.
25167 Reported by Alan Shutko <ats@acm.org>.
25168
25169 2005-03-08 Juri Linkov <juri@jurta.org>
25170
25171 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
25172 (html-horizontal-rule, html-line, html-image, html-checkboxes)
25173 (html-radio-buttons): Add a space before the trailing `/>' where
25174 sgml-xml-mode is non-nil.
25175 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
25176 the subsequent tag of the empty XML tag.
25177 (html-href-anchor): Don't set initial input to "http:".
25178 (html-image): Ask for the image URL and set point inside alt="".
25179 (html-name-anchor): Duplicate the name in the `id' attribute when
25180 sgml-xml-mode is non-nil.
25181 (html-paragraph): Remove \n before <p>.
25182 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
25183 instead of `checked' when sgml-xml-mode is non-nil.
25184
25185 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
25186 Remove 1 space before #RRGGBB to not truncate it on terminal
25187 windows w/o fringes. Remove 1 space between bg and fg examples
25188 to get more space.
25189 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
25190 avoid byte-compile warnings.
25191
25192 * image-file.el (image-file-handler): Put `safe-magic' property to
25193 `image-file-handler'.
25194
25195 * info.el (Info-isearch-search): Emulate word search in
25196 isearching through multiple Info nodes with Info-search.
25197 (Info-isearch-wrap): Allow isearch-word.
25198
25199 2005-03-08 Lute Kamstra <lute@gnu.org>
25200
25201 * emacs-lisp/debug.el (debugger-step-through): Make sure that
25202 stepping into the debugger's code is not possible.
25203 (debugger-jumping-flag): Docstring update.
25204
25205 2005-03-08 Jay Belanger <belanger@truman.edu>
25206
25207 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
25208 embedded mode begins.
25209 (calc-embedded-language-alist): New variable.
25210 (calc-embedded-find-modes): Use calc-embedded-language-alist to
25211 set default language mode.
25212
25213 2005-03-08 Kenichi Handa <handa@m17n.org>
25214
25215 * international/ccl.el (define-ccl-program): Fix docstring about
25216 extra 256 bytes assured for the output buffer.
25217
25218 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
25219 Fix BUFFER_MAGNIFICATION to 2.
25220 (ccl-encode-mule-utf-16be-with-signature): Likewise.
25221
25222 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
25223
25224 * align.el (align-rules-list): Added an alignment rule for CSS
25225 declarations (applies to css-mode and html-mode buffers).
25226
25227 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
25228
25229 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
25230
25231 2005-03-07 Kim F. Storm <storm@cua.dk>
25232
25233 * simple.el (move-beginning-of-line): New command.
25234
25235 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
25236
25237 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
25238
25239 * emulation/cua-base.el: Put CUA move property on move-end-of-line
25240 and move-beginning-of-line.
25241
25242 * apropos.el (apropos-print): Omit command from M-x ... RET.
25243
25244 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
25245
25246 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
25247 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
25248
25249 2005-03-06 Richard M. Stallman <rms@gnu.org>
25250
25251 * bindings.el (esc-map): Bind M-g to goto-line.
25252
25253 * facemenu.el (global-map): Bind M-o, not M-g.
25254
25255 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
25256
25257 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
25258 "Open Directory" as for "Open File".
25259
25260 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
25261
25262 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
25263 (push-mark-command): Run activate-mark-hook.
25264
25265 2005-03-06 Richard M. Stallman <rms@gnu.org>
25266
25267 * help-mode.el (help-mode-finish): Don't alter the element
25268 in view-return-to-alist if there already is one.
25269
25270 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
25271 make sure the current buffer is the expected one.
25272
25273 * novice.el (disabled-command-function): Output in *Disabled Command*.
25274 Explicitly ignore non-keyboard events, and explicitly handle C-g.
25275
25276 * textmodes/flyspell.el (flyspell-large-region):
25277 Pass args differently for aspell.
25278
25279 * files.el (mode-require-final-newline): Doc fix.
25280
25281 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
25282
25283 * progmodes/which-func.el (which-function):
25284 Specify NOERROR when calling imenu--make-index-alist.
25285
25286 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
25287
25288 * simple.el (normal-erase-is-backspace): Define default value.
25289
25290 * custom.el (custom-theme-set-variables): Remove unused var
25291 `immediate'.
25292 (custom-reevaluate-setting): Simple function to handle variables
25293 that are defined before their default value can really be
25294 computed.
25295
25296 * startup.el (command-line): Use it for temporary-file-directory,
25297 small-emporary-file-directory, auto-save-file-name-transforms,
25298 blink-cursor-mode, and normal-erase-is-backspace.
25299
25300 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
25301 progress, even with buggy anchored keywords.
25302
25303 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
25304
25305 * simple.el (goto-line): Remove unbalanced final parenthesis.
25306
25307 2005-03-05 Richard M. Stallman <rms@gnu.org>
25308
25309 * simple.el (goto-line): Use a number at point as the default.
25310 With C-u as arg, switch buffers.
25311
25312 2005-03-05 Juri Linkov <juri@jurta.org>
25313
25314 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
25315 with `no-blinking-cursor'.
25316
25317 * startup.el (no-blinking-cursor): New defvar.
25318 (command-line): Add `--no-blinking-cursor' to longopts.
25319 Set `no-blinking-cursor' to t for command line arguments
25320 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
25321 with `no-blinking-cursor' in the condition for calling
25322 `blink-cursor-mode'.
25323
25324 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
25325
25326 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
25327 (menu-bar-options-save): Add blink-cursor-mode.
25328 (menu-bar-options-menu): Add blink-cursor-mode.
25329
25330 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
25331
25332 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
25333 (icalendar-export-file, icalendar-export-region)
25334 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
25335 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
25336
25337 2005-03-04 Lute Kamstra <lute@gnu.org>
25338
25339 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
25340 (debug-function-list): Ditto.
25341
25342 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
25343
25344 * textmodes/texinfmt.el (texinfo-append-refill):
25345 Redefine the types of line to which @refill
25346 is not appended by replacing a search for `@refill\\|@bye' with
25347 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
25348 itemize@refill' bug and the unfilled long lines bug.
25349 (texinfmt-version): Update number and date.
25350
25351 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
25352
25353 * international/code-pages.el (windows-1250, windows-125[2-8])
25354 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
25355
25356 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
25357
25358 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
25359 bound yet.
25360
25361 2005-03-02 Romain Francoise <romain@orebokech.com>
25362
25363 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
25364 buffer after removing limits.
25365 (ibuffer-pop-filter): Ditto.
25366 Update copyright.
25367
25368 2005-03-02 Miles Bader <miles@gnu.org>
25369
25370 * button.el (make-text-button): If the user doesn't specify a
25371 type, use the default. Rewrite to use `add-text-properties' and
25372 plist functions.
25373
25374 2005-03-01 Lute Kamstra <lute@gnu.org>
25375
25376 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
25377 (debugger-jumping-flag): New var.
25378 (debug-entry-code): Use it.
25379 (debugger-jump): Use debugger-jumping-flag and add
25380 debugger-reenable to post-command-hook.
25381 (debugger-reenable): Use debugger-jumping-flag and remove itself
25382 from post-command-hook.
25383 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
25384 debugger-reenable.
25385
25386 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
25387
25388 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
25389 inclusion of "itemize\\|", which may be unnecessary, is certainly
25390 inelegant, and stops refilling in itemize lists when formatting
25391 Japanese Texinfo files to Info.
25392 Update copyright to 2005.
25393
25394 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
25395
25396 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
25397 of an error if GDB can't find the source file.
25398
25399 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
25400
25401 * calendar/calendar.el (redraw-calendar): Work from any buffer,
25402 not just the calendar.
25403
25404 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
25405 first.
25406 (diary-redraw-calendar): New function.
25407 (make-diary-entry): Add diary-redraw-calendar to local
25408 write-contents-functions. Turn off selective display before
25409 inserting in diary.
25410
25411 2005-03-01 Kim F. Storm <storm@cua.dk>
25412
25413 * emacs-lisp/copyright.el (copyright-fix-years): New command.
25414
25415 2005-03-01 Lute Kamstra <lute@gnu.org>
25416
25417 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
25418 that debug-entry-code can be safely removed from a function while
25419 this code is being evaluated. Revert the 2005-02-27 change as the
25420 new implementation no longer requires it. Make sure that a
25421 function body containing just a string is not mistaken for a docstring.
25422 (debug): Skip one more frame in case of debug on entry.
25423 (debugger-setup-buffer): Delete one more frame line in case of
25424 debug on entry.
25425 (debugger-frame-number): Update to use the new text introduced by
25426 the 1999-11-03 change. Skip one more frame in case of debug on entry.
25427
25428 2005-02-28 Kim F. Storm <storm@cua.dk>
25429
25430 * double.el (double-translate-key): Call force-window-update after
25431 read-event to avoid crash in redisplay.
25432
25433 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
25434
25435 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
25436 (debug): Use it. Move the inhibit-trace earlier.
25437 (debug-entry-code): New const.
25438 (debug-on-entry-1): Use it.
25439
25440 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
25441
25442 * international/utf-16.el (ccl-encode-mule-utf-16le):
25443 Fix BUFFER_MAGNIFICATION to 2.
25444 (ccl-encode-mule-utf-16be): Likewise.
25445
25446 2005-02-28 Kenichi Handa <handa@m17n.org>
25447
25448 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
25449 Fix BUFFER_MAGNIFICATION to 4.
25450 (ccl-encode-mule-utf-16be-with-signature): Likewise.
25451
25452 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
25453
25454 * speedbar.el (speedbar-update-flag): Doc fix.
25455 (speedbar-show-info-under-mouse): Give set-mouse-position the right
25456 argument.
25457
25458 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
25459
25460 * reveal.el (reveal-post-command): Don't try to reveal overlays which
25461 have a non-nil `invisible' property but are actually visible.
25462
25463 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
25464 for perldoc sections.
25465 (perl-outline-regexp, perl-outline-level): New var and function.
25466 (perl-mode): Use them.
25467
25468 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
25469
25470 * calendar/diary-lib.el (diary-remind): Discard any mark portion
25471 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
25472
25473 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
25474
25475 * cus-edit.el: Comment change.
25476 (custom-buffer-create-internal): Slightly reword text at top of
25477 Custom buffers. Mention there that saving an option edits the
25478 init file. Add link to Emacs manual node on `custom-file'.
25479 (custom-magic-alist): Rewrite individual State messages to use
25480 capitalized keywords. Doc fix.
25481
25482 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
25483
25484 * calendar/calendar.el (calendar-buffer): Move above
25485 calendar-week-start-day.
25486 (calendar-week-start-day): Doc fix. Add :set function.
25487 (calendar-minimum-window-height): New variable.
25488 (generate-calendar-window): Only resize window if selected-window
25489 is displaying the calendar buffer. Use new variable
25490 calendar-minimum-window-height.
25491 (generate-calendar): Reword error message.
25492 (calendar-mode-map): Bind DEL to scroll-other-window-down.
25493
25494 2005-02-27 Andreas Schwab <schwab@suse.de>
25495
25496 * vc.el (vc-do-command): Don't run command asynchronously when
25497 operating in a remote directory.
25498
25499 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
25500 change from sync with Tramp 2.0.47.
25501
25502 2005-02-27 Richard M. Stallman <rms@gnu.org>
25503
25504 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
25505
25506 * textmodes/flyspell.el (flyspell-mode-on):
25507 Call ispell-change-dictionary only if necessary.
25508
25509 * emacs-lisp/re-builder.el (regexp-builder): New function.
25510
25511 * register.el (describe-register-1): Explicitly handle
25512 yank-excluded-properties = t.
25513
25514 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
25515 (custom-magic-alist): Change the status descriptions again.
25516 (face widget-type): Total rewrite based on `restricted-sexp'
25517 to eliminate the confusing double hiding levels.
25518
25519 * emacs-lisp/debug.el (debug-on-entry-1):
25520 If function body is empty, add nil as body form.
25521
25522 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
25523
25524 * emacs-lisp/trace.el (inhibit-trace): New var.
25525 (trace-make-advice): Use it.
25526
25527 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
25528
25529 2005-02-26 Kim F. Storm <storm@cua.dk>
25530
25531 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
25532 (mouse-on-link-p, mouse-drag-region-1): Use it.
25533
25534 2005-02-25 Lute Kamstra <lute@gnu.org>
25535
25536 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
25537
25538 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
25539
25540 * frame.el (blink-cursor-mode): Add :group keyword.
25541
25542 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
25543
25544 * calendar/icalendar.el (icalendar--decode-isodatetime):
25545 New optional argument DAY-SHIFT.
25546 (icalendar-export-region): Fix coding-system-for-write.
25547 (icalendar--convert-ical-to-diary): Shift end-day of all-day
25548 events by one.
25549
25550 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
25551
25552 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
25553
25554 2005-02-24 Kim F. Storm <storm@cua.dk>
25555
25556 * international/iso-acc.el (iso-accents-compose): Fix crash
25557 during redisplay. Call force-window-update after read-event
25558 and delete-region to signal that window is not accurate.
25559
25560 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
25561
25562 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
25563 Remove unused and inexistent var `inhibit-trace'.
25564 (debugger-mode): Use run-mode-hooks.
25565 (debugger-list-functions): Add buttons; setup xref stack.
25566
25567 2005-02-23 Richard M. Stallman <rms@gnu.org>
25568
25569 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
25570 appointment says it was explicitly made.
25571 (appt-add): Set the 3rd element.
25572 (appt-make-list): Preserve explicit appointments.
25573
25574 * subr.el (find-tag-default): Catch errors in forward-sexp.
25575
25576 2005-02-23 Juri Linkov <juri@jurta.org>
25577
25578 * info.el (Info-isearch-search): New defcustom.
25579 (Info-isearch-search): Call the default isearch function
25580 when Info-isearch-search is nil.
25581 (Info-isearch-wrap): Use variable Info-isearch-search.
25582
25583 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
25584
25585 * cus-edit.el: Comment change.
25586
25587 2005-02-22 Kim F. Storm <storm@cua.dk>
25588
25589 * progmodes/hideif.el (hide-ifdef-use-define-alist):
25590 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
25591
25592 2005-02-22 Simon Josefsson <jas@extundo.com>
25593
25594 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
25595 New variable.
25596 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
25597 Oskarsson" <myrkraverk@users.sourceforget.net>.
25598
25599 2005-02-22 Kim F. Storm <storm@cua.dk>
25600
25601 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
25602 check that window of that event is the selected window.
25603 (mouse-drag-region-1): Compare mouse event window to selected
25604 window before setting point.
25605
25606 * tooltip.el (tooltip-show-help-function): Pass event to
25607 mouse-on-link-p so it can check selected window.
25608
25609 2005-02-22 Kenichi Handa <handa@m17n.org>
25610
25611 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
25612 (ps-mule-show-warning): New function.
25613 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
25614 characters are found.
25615
25616 * ps-print.el (ps-header-footer-string): Return a list of header
25617 and footer strings.
25618
25619 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
25620
25621 * pcvs.el (cvs-retrieve-revision): Fix thinko.
25622
25623 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
25624
25625 * frame.el (blink-cursor-mode): Use define-minor-mode.
25626
25627 * term/mac-win.el (function-key-map): Use char-names more consistently.
25628 (file-name-coding-system): Only set it for MacOS-9. The other case is
25629 already handled in mule-cmds.el (where it also works when mac-win.el
25630 is not used).
25631
25632 2005-02-21 Kenichi Handa <handa@m17n.org>
25633
25634 * international/mule.el (ctext-pre-write-conversion): Always use
25635 " *code-converting-work*" buffer for work.
25636
25637 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
25638
25639 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
25640
25641 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
25642
25643 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
25644
25645 * ses.el (undo-more): Restore defadvice, but only the part that
25646 allows changes outside the restricted area of the buffer.
25647
25648 2005-02-20 Kim F. Storm <storm@cua.dk>
25649
25650 * simple.el (line-move): Add fourth optional arg try-vscroll which
25651 must be set to perform auto-window-vscroll.
25652 When moving backwards and doing auto-window-vscroll, automatically
25653 vscroll to the last part of lines which are taller than the window.
25654 (next-line, previous-line): Set try-vscroll arg on line-move.
25655
25656 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
25657
25658 * replace.el (query-replace, query-replace-regexp)
25659 (replace-string, replace-regexp): When operating on region, make
25660 the minibuffer prompt say so.
25661
25662 * isearch.el (isearch-forward): Document isearch-query-replace and
25663 isearch-query-replace-regexp keybindings.
25664
25665 2005-02-19 Jay Belanger <belanger@truman.edu>
25666
25667 * calc/calc-aent.el (math-read-token): Add local variable.
25668
25669 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
25670 (calc-edit-top): Move declaration to earlier in file.
25671 (calc-edit-macro-repeats): Add local variables.
25672
25673 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
25674 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
25675 calcFunc-tanh.
25676 Adjust integration rule for calcFunc-tan.
25677
25678 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
25679
25680 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
25681 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
25682 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
25683 (viper-skip-separators): Bug fix.
25684 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
25685 particular major mode.
25686 (viper-del-backward-char-in-replace): Don't put deleted char on the
25687 kill ring.
25688
25689 * viper-ex.el (viper-color-display-p): New function.
25690 (viper-has-face-support-p): Use viper-color-display-p.
25691
25692 * viper-keym.el (viper-gnus-modifier-map): New keymap.
25693
25694 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
25695
25696 * viper-util.el (viper-glob-unix-files): Fix shell status check.
25697 (viper-file-remote-p): Make equivalent to file-remote-p.
25698
25699 * viper.el (viper-major-mode-modifier-list):
25700 Use viper-gnus-modifier-map.
25701
25702 2005-02-19 David Kastrup <dak@gnu.org>
25703
25704 * subr.el (subregexp-context-p): Fix garbled doc string by adding
25705 quoting.
25706
25707 2005-02-19 Jay Belanger <belanger@truman.edu>
25708
25709 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
25710 Remove extra definitions.
25711 (calc-coth): New function.
25712 (calcFunc-cot): Fix `let'.
25713
25714 2005-02-19 Eli Zaretskii <eliz@gnu.org>
25715
25716 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
25717 the reasons we use "type pc" in these faces.
25718
25719 * button.el (button): Ditto.
25720
25721 2005-02-19 Michael Mauger <mmaug@yahoo.com>
25722
25723 * replace.el (query-replace-read-from): Set the value of
25724 query-replace-from-history-variable to handle the case of an empty
25725 string entered to accept the suggested default.
25726
25727 * net/tramp.el (tramp-file-name-for-operation):
25728 Use dired-call-process instead of dired-call-process-command.
25729
25730 2005-02-19 Jay Belanger <belanger@truman.edu>
25731
25732 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
25733 (math-div-non-trig): New variables.
25734 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
25735 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
25736 (math-combine-prod, math-div-symb-fancy): Add simplifications for
25737 trig expressions.
25738
25739 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
25740
25741 * progmodes/gdb-ui.el (gdb-var-update-handler)
25742 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
25743 for watch expressions,
25744 (gdb-var-create-handler): Don't set speedbar-update-flag.
25745 (gdb-post-prompt): Simplify test for speedbar.
25746
25747 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
25748
25749 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
25750 (ediff-set-fine-overlays-in-one-buffer, ediff-goto-word): Make sure
25751 we use the syntax table of the correct buffer.
25752 (ediff-same-file-contents, ediff-same-contents): Enhancements thanks to
25753 Felix Gatzemeier.
25754
25755 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
25756 (ediff-file-remote-p): Make synonymous with file-remote-p.
25757 In all deffaces ediff-*-face-*, use min-colors.
25758
25759 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
25760 ediff-recurse-to-subdirectories.
25761 (ediff-mark-if-equal): Check that the arguments are strings, use
25762 ediff-same-contents (after to Felix Gatzemeier).
25763
25764 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
25765 nil.
25766
25767 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
25768
25769 * log-view.el (log-view-message-re): Fix up Subversion regexp.
25770
25771 2005-02-18 David Kastrup <dak@gnu.org>
25772
25773 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
25774 use `mark-active' when defined.
25775
25776 2005-02-18 Kenichi Handa <handa@m17n.org>
25777
25778 * ps-print.el (ps-font-info-database): New entry
25779 ZapfChancery-MediumItalic with correct font name. Fix font name
25780 of the entry Zapf-Chancery-MediumItalic.
25781
25782 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
25783
25784 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
25785
25786 2005-02-16 Kim F. Storm <storm@cua.dk>
25787
25788 * ido.el (ido-fallback-command): Pass user input to fallback command.
25789
25790 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
25791
25792 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
25793 (gdb-find-file-hook): Add server prefix.
25794
25795 2005-02-16 Richard M. Stallman <rms@gnu.org>
25796
25797 * replace.el (perform-replace): Pass new args to replace-highlight.
25798 (replace-highlight): Take region args,
25799 and pass them to isearch-lazy-highlight-new-loop.
25800
25801 * novice.el (disabled-command-hook): Autoload the defalias
25802 and the make-obsolete-variable call.
25803
25804 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
25805
25806 * isearch.el (isearch-lazy-highlight-start-limit)
25807 (isearch-lazy-highlight-end-limit): New variables limit
25808 the region for highlighting.
25809 (isearch-lazy-highlight-new-loop): New args BEG and END.
25810 (isearch-lazy-highlight-search): Use the new vars.
25811 (isearch-lazy-highlight-update): Likewise.
25812
25813 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
25814
25815 * cus-start.el (all): Use default-boundp.
25816
25817 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
25818
25819 * menu-bar.el (menu-bar-select-frame): Handle current frame.
25820
25821 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
25822
25823 * autorevert.el (auto-revert-stop-on-user-input)
25824 (auto-revert-verbose): Doc fixes.
25825
25826 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
25827
25828 * international/mule-cmds.el (set-locale-environment): Remove call
25829 to set-selection-coding-system on Windows.
25830
25831 2005-02-15 Jay Belanger <belanger@truman.edu>
25832
25833 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
25834 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
25835 calcFunc-coth.
25836 (math-simplify-sqrt): Add simplifications.
25837
25838 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
25839 to list.
25840
25841 * calc/calc-ext.el: Add functions to autoloads.
25842
25843 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
25844 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
25845 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
25846 (math-csc-raw, math-cot-raw): New functions.
25847
25848 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
25849
25850 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
25851 the variable name in a message.
25852
25853 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
25854 calcFunc-csc, calcFunc-cot.
25855
25856 * calc/calcalg2.el: Add derivative and integration rules for
25857 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
25858 calcFunc-csch, calcFunc-coth.
25859 (math-do-integral-methods): Add to checks for when to use
25860 substitutions.
25861
25862 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
25863
25864 2005-02-15 Lute Kamstra <lute@gnu.org>
25865
25866 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
25867 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
25868 <monnier@iro.umontreal.ca>
25869 (lisp-outline-level): Improve efficiency. Suggested by David
25870 Kastrup <dak@gnu.org>.
25871
25872 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
25873
25874 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
25875 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
25876 (gdb-set-gud-minor-mode-existing-buffers): New functions.
25877 (gdb-find-file-hook): New hook. Add it to find-file-hook.
25878 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
25879
25880 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
25881
25882 * cus-start.el (all): Comment change.
25883
25884 2005-02-14 Lute Kamstra <lute@gnu.org>
25885
25886 * cus-start.el (all): Check if symbol is void.
25887
25888 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
25889
25890 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
25891 optional argument to \cite.
25892
25893 2005-02-14 Richard M. Stallman <rms@gnu.org>
25894
25895 * cus-edit.el (custom-buffer-create-internal): Update help message.
25896 (custom-magic-alist): Update help messages.
25897
25898 * cus-start.el (all): Allow a var to specify a standard value.
25899
25900 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
25901
25902 * custom.el (custom-theme-set-variables): Handle variable aliases.
25903
25904 * frame.el (blink-cursor-timer): Doc fix.
25905 (blink-cursor): Make it an alias for `blink-cursor-mode' and
25906 declare obsolete.
25907 (blink-cursor-mode): Define with defcustom and use correct
25908 standard expression in that defcustom.
25909 * startup.el (command-line): Adapt to above changes in frame.el.
25910
25911 2005-02-11 Lute Kamstra <lute@gnu.org>
25912
25913 * apropos.el (apropos-score-doc): Prevent division by zero.
25914
25915 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
25916
25917 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
25918 (icalendar--get-event-property-attributes)
25919 (icalendar--get-event-properties)
25920 (icalendar--datetime-to-diary-date): New functions.
25921 (icalendar--split-value): Doc fix.
25922 (icalendar--datetime-to-noneuropean-date)
25923 (icalendar--datetime-to-european-date): New optional argument
25924 SEPARATOR. Return result as a string instead of a list.
25925 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
25926 (icalendar--convert-string-for-export): Rename arg S to STRING.
25927 (icalendar-export-region): Doc fix. Change name of error buffer.
25928 Save output buffer.
25929 (icalendar-import-file): Add blank at end of prompt.
25930 (icalendar-import-buffer): Doc fix. Do not switch to error
25931 buffer. Indicate status in return value.
25932 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
25933 buffer. Save output buffer. Handle exception from recurrence
25934 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
25935 events. Fix problems with weekly all-day events.
25936
25937 2005-02-10 Richard M. Stallman <rms@gnu.org>
25938
25939 * simple.el (eval-expression-print-format):
25940 Avoid warning about edebug-active.
25941
25942 * help.el (help-for-help-internal): Rename from help-for-help.
25943 (help-for-help): Define with defalias.
25944
25945 * font-core.el (font-lock-default-function): Use with-no-warnings.
25946
25947 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
25948
25949 * custom.el (defface): Doc fix.
25950
25951 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
25952
25953 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
25954 width 0" to prevent word wrapping problems.
25955
25956 2005-02-09 Kim F. Storm <storm@cua.dk>
25957
25958 * ido.el (ido-file-extensions-order): New defcustom.
25959 (ido-file-extension-lessp, ido-file-extension-aux)
25960 (ido-file-extension-order): New advanced file ordering.
25961 (ido-file-lessp): New simple file ordering.
25962 (ido-sort-list): Remove.
25963 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
25964 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
25965
25966 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
25967
25968 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
25969 that some versions of grep produce.
25970 (grep-mode-font-lock-keywords): Likewise.
25971
25972 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
25973
25974 * progmodes/gdb-ui.el (gdb-location-list): New variable.
25975 (gdb-cdir): Delete.
25976 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
25977 (gdb-source-info): Treat case when source file is in another
25978 directory properly.
25979 (gdb-get-location): New function.
25980
25981 2005-02-07 Jay Belanger <belanger@truman.edu>
25982
25983 * calc/calc-prog.el (calc-write-parse-table-part)
25984 (calc-fix-token-name): Fix a check for language type.
25985
25986 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
25987
25988 2005-02-07 Andre Spiegel <spiegel@gnu.org>
25989
25990 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
25991 as directory not writable.
25992
25993 2005-02-07 Kim F. Storm <storm@cua.dk>
25994
25995 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
25996 (cua--standard-movement-commands): Remove list.
25997 Instead, set CUA property value to move for movement commands.
25998 (cua-movement-commands): Remove. Users must set CUA prop instead.
25999 (cua--pre-command-handler): Check CUA property.
26000 (cua--init-keymaps): Don't remap undo commands.
26001 (cua-mode): Don't call cua--rectangle-on-off.
26002
26003 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
26004 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
26005 (cua--rect-undo-set-point): New var.
26006 (cua--rectangle-undo-boundary): Setup undo apply entry.
26007 (cua--rect-undo-handler): New function for rectangle undo.
26008 (cua--rect-start-position, cua--rect-end-position): Add.
26009 (cua--rectangle-post-command): Call cua--rectangle-set-corners
26010 for restored rectangle. Set point if cua--rect-undo-set-point.
26011
26012 2005-02-06 Jay Belanger <belanger@truman.edu>
26013
26014 * calc/calc-lang.el (calc-tex-language): Display more information
26015 in messages.
26016
26017 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
26018 in TeX mode.
26019
26020 2005-02-06 Richard M. Stallman <rms@gnu.org>
26021
26022 * emacs-lisp/lisp.el (buffer-end): Doc fix.
26023
26024 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
26025
26026 * net/ldap.el (ldap-search-internal): Support attributes with
26027 optional descriptions separated by a semi-colon, as in
26028 "userCertificate;binary".
26029
26030 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
26031
26032 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
26033 isn't a cons (i.e. the version is 0).
26034
26035 2005-02-05 Eli Zaretskii <eliz@gnu.org>
26036
26037 * help.el (help-for-help): Doc fix.
26038
26039 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
26040
26041 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
26042 GDB-Windows on the menu-bar as this works better.
26043
26044 2005-02-04 Jay Belanger <belanger@truman.edu>
26045
26046 * calc/calc-embed.el (calc-embedded-update): Don't put in
26047 unnecessary newlines. Adjust the end of formula marker.
26048
26049 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
26050 (math-latex-parse-two-args): New function.
26051
26052 2005-02-03 Lute Kamstra <lute@gnu.org>
26053
26054 * help-fns.el (help-with-tutorial): Make sure that users cannot
26055 remove the entire text of the tutorial by means of `undo'.
26056
26057 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
26058
26059 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
26060 in recent changes, where the ispell process was repeatedly
26061 killed & restarted.
26062
26063 * international/mule-cmds.el (set-locale-environment): Set file-name
26064 coding system to utf-8 on Darwin systems.
26065 (set-default-coding-systems): Don't set default-file-name-coding-system
26066 on Darwin systems.
26067
26068 2005-02-03 Richard M. Stallman <rms@gnu.org>
26069
26070 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
26071
26072 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
26073
26074 * faces.el (list-faces-display): Add optional argument.
26075
26076 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
26077
26078 * font-core.el (font-lock-default-function): Handle the rare case where
26079 only font-lock-keywords is set.
26080
26081 2005-02-02 Kenichi Handa <handa@m17n.org>
26082
26083 * international/characters.el: Cancel previous change for
26084 I-WITH-DOT-ABOVE and DOTLESS-i.
26085
26086 * international/latin-5.el: Cancel previous change.
26087
26088 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
26089
26090 * progmodes/gud.el: Correction to syntax in gud-menu-map.
26091
26092 2005-02-02 Kenichi Handa <handa@m17n.org>
26093
26094 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
26095 DOTLESS-i.
26096
26097 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
26098 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
26099
26100 * case-table.el (get-upcase-table): New function.
26101 (copy-case-table): Copy upcaes table too if non-nil.
26102 (set-case-syntax-delims): Maintain upcase table too.
26103 (set-case-syntax-pair): Likewise.
26104 (set-upcase-syntax, set-downcase-syntax): New functions.
26105 (set-case-syntax): Maintain upcase table too.
26106
26107 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
26108
26109 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
26110
26111 * progmodes/gud.el (gud-goto-info): New function.
26112 (gud-tool-bar-map): Use correct icon.
26113
26114 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
26115
26116 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
26117 When delegating, order args in the funcall correctly.
26118
26119 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
26120
26121 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
26122
26123 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
26124
26125 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
26126 buffer not visiting a file.
26127
26128 2005-01-31 Jay Belanger <belanger@truman.edu>
26129
26130 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
26131 bound on the line with the formula.
26132
26133 2005-01-31 Kim F. Storm <storm@cua.dk>
26134
26135 * ses.el (ses-create-cell-variable-range)
26136 (ses-destroy-cell-variable-range, ses-reset-header-string)
26137 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
26138 (ses-insert-row): Fix format of apply undo entries.
26139
26140 2005-01-31 Jay Belanger <belanger@truman.edu>
26141
26142 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
26143 parts.
26144
26145 * calc/calc-embed.el (calc-embedded-open-formula)
26146 (calc-embedded-close-formula): Ignore matrix environments.
26147
26148 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
26149 TeX mode.
26150
26151 * calc/calc-lang.el (math-function-table, math-oper-table)
26152 (math-variable-table): Adjust the LaTeX portions.
26153
26154 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
26155 (math-latex-ignore-words): New constant.
26156
26157 2005-01-31 Richard M. Stallman <rms@gnu.org>
26158
26159 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
26160 (ispell-local-dictionary): Doc fix.
26161 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
26162 Don't reinitialize at run time. Don't defcustom.
26163 All uses changed to append ispell-local-dictionary-alist,
26164 or check it first.
26165 (ispell-current-dictionary): New variable for dictionary in use.
26166 (ispell-dictionary): Now used only for global default.
26167 (ispell-start-process): Set ispell-current-dictionary,
26168 not ispell-dictionary.
26169 (ispell-change-dictionary): Use this only for setting
26170 user preferences.
26171 (ispell-internal-change-dictionary): New function
26172 to change the current dictionary in use.
26173 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
26174 Use ispell-current-dictionary.
26175 Handle ispell-local-dictionary-overridden.
26176 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
26177
26178 2005-01-31 Jay Belanger <belanger@truman.edu>
26179
26180 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
26181
26182 * calc/calc-ext.el: Add calc-latex-language to autoloads.
26183 (calc-mode-map): Add calc-latex-language.
26184
26185 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
26186 (math-latex-print-frac): New functions.
26187 (math-oper-table, math-function-table, math-variable-table)
26188 (math-complex-format, math-input-filter): Add latex properties.
26189 (calc-set-language): Set math-expr-special-function-mapping.
26190
26191 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
26192 (calc-write-parse-table-part): Add LaTeX support.
26193
26194 * calc/calc.el (calc-language): Adjust docstring.
26195 (calc-set-mode-line): Add LaTeX support.
26196 (math-expr-special-function-mapping): New variable.
26197 (math-tex-ignore-words): Add to list.
26198
26199 * calc/calccomp.el (math-compose-expr, math-compose-rows):
26200 Add LaTeX support.
26201 (math-compose-expr): Add support for special functions.
26202
26203 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
26204
26205 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
26206
26207 * progmodes/gdb-ui.el (gdb-memory-address)
26208 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
26209 (gdb-memory-mode-map, gdb-memory-format-keymap)
26210 (gdb-memory-format-menu, gdb-memory-unit-keymap)
26211 (gdb-memory-unit-menu): New variables for a buffer
26212 that lets the user examine program memory.
26213 (gdb-memory-set-address, gdb-memory-set-repeat-count)
26214 (gdb-memory-format-binary, gdb-memory-format-octal)
26215 (gdb-memory-format-unsigned, gdb-memory-format-signed)
26216 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
26217 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
26218 (gdb-memory-unit-word, gdb-memory-unit-halfword)
26219 (gdb-memory-unit-byte, gdb-memory-unit-menu)
26220 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
26221 (gdb-memory-mode, gdb-memory-buffer-name)
26222 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
26223 New functions for above buffer.
26224
26225 2005-01-30 Richard M. Stallman <rms@gnu.org>
26226
26227 * cus-edit.el (custom-bury-buffer): Function deleted.
26228 (custom-buffer-done-function): Option deleted.
26229 (custom-buffer-done-kill): New replacement option.
26230 (Custom-buffer-done): Call quit-window.
26231 (custom-buffer-create-internal): Update for above changes.
26232
26233 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
26234
26235 * simple.el (undo-ask-before-discard): New var.
26236 (undo-outer-limit-truncate): Implement it.
26237 (undo-extra-outer-limit): Doc update.
26238
26239 2005-01-29 Richard M. Stallman <rms@gnu.org>
26240
26241 * ses.el (undo-more): Delete defadvice.
26242 (ses-begin-change): Doc fix.
26243
26244 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
26245 instead of rebinding C-x u and C-_.
26246
26247 * files.el (normal-backup-enable-predicate): Return nil for files
26248 in /tmp, regardless of temporary-file-directory.
26249
26250 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
26251
26252 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
26253 (open-rectangle, delete-whitespace-rectangle-line)
26254 (clear-rectangle-line): If FILL, pass t instead of FILL
26255 for move-to-column's 2nd arg.
26256
26257 * simple.el (undo): Fix the test for continuing a series of undos.
26258 (undo-more): Set pending-undo-list to t when we reach end.
26259 (pending-undo-list): Move up defvar.
26260
26261 * wid-edit.el (widget-button-click):
26262 Shorten the range of the track-mouse binding.
26263
26264 * comint.el (comint-insert-input): Undo previous changes;
26265 use last-input-event in interactive spec.
26266
26267 2005-01-29 Eli Zaretskii <eliz@gnu.org>
26268
26269 * progmodes/compile.el (compilation-start): Bind buffer-read-only
26270 to nil before invoking call-process. Reset buffer's modified flag
26271 after fontifying it in the no-async branch.
26272
26273 * wid-edit.el (widget-specify-button): If mouse pointer shape
26274 cannot be changed, use mouse face instead.
26275
26276 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
26277
26278 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
26279 (gdb-goto-breakpoint): Make breakpoint handling work on template
26280 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
26281 (gdb-assembler-custom): Update to recognize breakpoint information
26282 added on 2005-01-19.
26283
26284 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
26285
26286 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
26287 (dsssl-mode): Use define-derived-mode.
26288 (scheme-mode-initialize): Remove.
26289 (scheme-mode): Use run-mode-hooks.
26290
26291 * cus-edit.el (customize-group-other-window)
26292 (custom-buffer-create-other-window): Don't override special-display-*.
26293 (custom-mode-map): Make it dense.
26294
26295 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
26296 sets the default value.
26297
26298 2005-01-28 Eli Zaretskii <eliz@gnu.org>
26299
26300 * descr-text.el: Add more keywords.
26301
26302 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
26303
26304 * speedbar.el: Avoid unnecessary use of locate-library.
26305
26306 * international/mule-cmds.el (standard-display-european-internal):
26307 Don't fiddle with latin-1 non-break space any more since it's now
26308 special cased in the C code.
26309 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
26310
26311 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
26312
26313 * cus-start.el (all): Add `undo-outer-limit'.
26314
26315 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
26316
26317 * textmodes/bibtex.el (bibtex-format-entry):
26318 Use `bibtex-empty-field-re' only on the text of fields, not on entire
26319 field lines.
26320 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
26321 not on part of a buffer.
26322
26323 2005-01-25 Lute Kamstra <lute@gnu.org>
26324
26325 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
26326 nonempty field text strings like "{letters\\macro{}more letters}".
26327 Clarify docstring.
26328 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
26329 (bibtex-entry-offset, bibtex-parse-association)
26330 (bibtex-parse-field-name): Fix typos in docstrings.
26331 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
26332
26333 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
26334
26335 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
26336 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
26337 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
26338 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
26339
26340 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
26341 isearch minor mode.
26342
26343 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
26344
26345 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
26346
26347 2005-01-24 Lute Kamstra <lute@gnu.org>
26348
26349 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
26350 CASECHARS and NOT-CASECHARS regular expressions of the
26351 "nederlands" and "nederlands8" dictionaries to prevent a "Range
26352 striding over charsets" error.
26353
26354 2005-01-24 Jay Belanger <belanger@truman.edu>
26355
26356 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
26357 display variable name.
26358
26359 2005-01-24 Kenichi Handa <handa@m17n.org>
26360
26361 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
26362 Fix setting of the element of encoded-kbd-iso2022-invocations.
26363
26364 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
26365
26366 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
26367 (gdb-threads-select): Change to also accept mouse events.
26368 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
26369 (gdb-threads-mouse-select): Delete.
26370
26371 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
26372
26373 * files.el (insert-directory): Take care of empty directory,
26374 listed without -a switch.
26375
26376 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
26377
26378 * textmodes/refill.el (refill-post-command-function):
26379 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
26380 to the list of functions that we should be careful not to undo.
26381 (refill-late-fill-paragraph-function): Remove.
26382 (refill-saved-state): New var.
26383 (refill-mode): Use it to save fill-paragraph-function.
26384 Save also the value of auto-fill-function.
26385
26386 * term/w32-win.el: Simplify code.
26387
26388 2005-01-23 Kim F. Storm <storm@cua.dk>
26389
26390 * simple.el (line-move): Adapt to new return value from
26391 pos-visible-in-window-p.
26392
26393 * simple.el (line-move): Fix last change. Check partial
26394 visibility at point rather than at window-start.
26395
26396 2005-01-22 Jason Rumney <jasonr@gnu.org>
26397
26398 * term/w32-win.el (xw-defined-colors): Remove debug-message.
26399
26400 2005-01-22 David Kastrup <dak@gnu.org>
26401
26402 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
26403
26404 2005-01-22 Eli Zaretskii <eliz@gnu.org>
26405
26406 * type-break.el (type-break-mode): Add a test for
26407 type-break-file-name being non-nil.
26408
26409 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
26410
26411 * net/eudc.el (top level): Call (message "") via progn, so that
26412 eudc-options-file is loaded.
26413
26414 2005-01-22 Kim F. Storm <storm@cua.dk>
26415
26416 * simple.el (line-move-1): Rename from line-move.
26417 (line-move): New function that adjusts vscroll for partially
26418 visible rows, and calls line-move-1 otherwise.
26419
26420 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
26421
26422 * pcomplete.el: Define pcomplete-read-event instead of read-event,
26423 since it's not a complete read-event implementation
26424
26425 2005-01-20 Jay Belanger <belanger@truman.edu>
26426
26427 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
26428 for called function.
26429
26430 2005-01-20 Steven Tamm <steventamm@mac.com>
26431
26432 * term/mac-win.el (process-connection-type): Remove.
26433 Controlled now by s/darwin.h:PTY_ITERATION.
26434
26435 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
26436
26437 * window.el (handle-select-window): Don't switch window when we're
26438 in the minibuffer.
26439
26440 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
26441
26442 * subr.el (dotimes-with-progress-reporter): New macro.
26443
26444 * ses.el (ses-dotimes-msg): Remove macro.
26445 Use `dotimes-with-progress-reporter' instead.
26446
26447 2005-01-19 Steven Tamm <steventamm@mac.com>
26448
26449 * term/mac-win.el (process-connection-type): Use new
26450 operating-system-release variable to use ptys on Darwin 7 (OS X
26451 10.3) when using carbon build.
26452
26453 2005-01-19 Jay Belanger <belanger@truman.edu>
26454
26455 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
26456 flags if the last command was a tab or M-tab.
26457
26458 * calc/calc-prog.el (calc-user-define-edit): Put original formula
26459 in formula editing buffer.
26460
26461 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
26462
26463 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
26464 breakpoint image symbol in margin.
26465
26466 2005-01-19 Jay Belanger <belanger@truman.edu>
26467
26468 * calc/calc-prog.el (calc-execute-kbd-macro):
26469 Ignore calc-keep-arg-flag.
26470
26471 2005-01-19 Kenichi Handa <handa@m17n.org>
26472
26473 * textmodes/ispell.el (ispell-looking-at): New function.
26474 (ispell-process-line): Use ispell-looking-at to compare the ispell
26475 output and the buffer contents.
26476
26477 2005-01-18 Jay Belanger <belanger@truman.edu>
26478
26479 * calc/calc.el (calc-display-raw): Fix docstring.
26480
26481 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
26482
26483 * simple.el (blink-matching-open): Strip extra info from syntax.
26484
26485 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
26486 funny chars in the end-of-here-doc marker.
26487
26488 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
26489
26490 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
26491 that enable/disabled state of breakpoints is shown correctly in
26492 fringe and on ttys.
26493 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
26494 Add breakpoint information as text properties.
26495 (gdb-mouse-toggle-breakpoint):
26496 Rename to gdb-mouse-set-clear-breakpoint.
26497 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
26498 breakpoints in the margin.
26499 (gdb-remove-strings): Simplify.
26500
26501 2005-01-17 Jay Belanger <belanger@truman.edu>
26502
26503 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
26504 erasing buffer.
26505
26506 2005-01-17 Richard M. Stallman <rms@gnu.org>
26507
26508 * progmodes/grep.el (grep-find): Copy from `grep' the condition
26509 for calling grep-compute-defaults.
26510
26511 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
26512 if buffer is empty.
26513
26514 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
26515
26516 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
26517
26518 * hilit-chg.el (highlight-changes-mode): Don't autoload.
26519
26520 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
26521 non-preloaded variables.
26522
26523 2005-01-17 Steven Tamm <steventamm@mac.com>
26524
26525 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
26526 tex-shell cause to force interactivity when using pipes.
26527
26528 2005-01-17 Kim F. Storm <storm@cua.dk>
26529
26530 * simple.el (just-one-space): Make arg optional.
26531
26532 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
26533
26534 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
26535 posn-at-x-y to t to access left-margin.
26536
26537 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
26538
26539 Sync with Tramp 2.0.47.
26540
26541 * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
26542 catching keep-date problems in cp/scp operations.
26543 (tramp-handle-copy-file): Don't call `set-file-modes'
26544 unconditionally. Specialized functions should know better what is
26545 necessary. This improves performance a little bit, and the
26546 functions could catch errors with `cp -p' and `scp -p'.
26547 (tramp-do-copy-or-rename-file-via-buffer)
26548 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
26549 when appropriate.
26550 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
26551 Call `set-file-modes' when appropriate.
26552 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
26553 Johnsson <isak@hypergene.com>
26554 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
26555 of both Tramp buffer and debug buffer. Reported by Joakim Verona
26556 <joakim@verona.se>
26557 (tramp-file-name-for-operation): Mark `shell-command' as magic for
26558 Emacs only.
26559
26560 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
26561 `find-file-hooks' and `dired-mode-hook'.
26562 (tramp-minor-mode-map): Respective map. Add remapping for
26563 `compile' and `recompile'.
26564 (tramp-remap-command, tramp-recompile): New defuns.
26565 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
26566 in buffer "*Compilation*". Call the commands asynchronously.
26567
26568 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
26569 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
26570 `shell-command', because it isn't magic in XEmacs. Reported by
26571 Adrian Aichner <adrian@xemacs.org>.
26572
26573 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
26574 `substitute-in-file-name.
26575 (tramp-smb-handle-substitute-in-file-name): New defun.
26576 (tramp-smb-advice-PC-do-completion): Delete advice.
26577
26578 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
26579
26580 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
26581 Fix error in deleting region.
26582
26583 2005-01-15 Richard M. Stallman <rms@gnu.org>
26584
26585 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
26586 In non-temp buffer, switch syntax table temporarily.
26587
26588 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
26589
26590 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
26591
26592 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
26593
26594 * imenu.el (imenu--split-menu): Copy menulist before sorting.
26595 (imenu--generic-function): Use START, not BEG, as pos of definition.
26596
26597 * simple.el (just-one-space): Argument specifies number of spaces.
26598
26599 * simple.el (eval-expression-print-format): Avoid warning
26600 about edebug-active.
26601
26602 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (Tiny change)
26603
26604 * progmodes/sh-script.el: Code copied from make-mode.el
26605 with small changes,
26606 (sh-mode-map): Bind C-c C-\.
26607 (sh-backslash-column, sh-backslash-align): New variables.
26608 (sh-backslash-region, sh-append-backslash): New functions.
26609
26610 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
26611
26612 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
26613 (rmail-pop-password, rmail-pop-password-required): Move to
26614 rmail-obsolete group.
26615 (rmail-set-pop-password): Rename to rmail-set-remote-password.
26616 All callers updated.
26617 (rmail-get-pop-password): Rename to rmail-get-remote-password.
26618 Take an argument specifying whether it is POP or IMAP mailbox we
26619 are using. All callers updated.
26620 (rmail-pop-password-error): Rename to
26621 rmail-remote-password-error. Added mailutils-specific error message.
26622 (rmail-movemail-search-path)
26623 (rmail-movemail-variant-in-use): New variables.
26624 (rmail-remote-password, rmail-remote-password-required):
26625 New customization variables.
26626 (rmail-probe, rmail-autodetect, rmail-movemail-variant-p): New funs.
26627 (rmail-parse-url): New function.
26628 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
26629 with GNU mailutils movemail.
26630
26631 2005-01-15 Kevin Ryde <user42@zip.com.au>
26632
26633 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
26634 suffix to space, $ or '$, to correctly position point when going
26635 to @table style constants like DBL_MAX.
26636
26637 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
26638
26639 * type-break.el (type-break-mode, type-break-file-time)
26640 (type-break-file-keystroke-count, type-break-choose-file):
26641 Don't store data in or load data from the file if type-break-file-name
26642 is nil.
26643 (type-break-file-name): Doc update as per the above.
26644
26645 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
26646
26647 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
26648 lookup-key might return nil; handle that.
26649
26650 2005-01-15 Alan Mackenzie <acm@muc.de>
26651
26652 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
26653 rather than the element found, thus enabling the tree to be setcar'd.
26654
26655 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
26656
26657 * textmodes/org.el (org-show-following-heading): New option.
26658 (org-show-hierarchy-above): Use `org-show-following-heading'.
26659 (org-cycle): Documentation fix.
26660
26661 * textmodes/org.el (orgtbl-optimized): New option
26662 (orgtbl-mode): New command, a minor mode.
26663 (orgtbl-mode-map): New variable.
26664 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
26665 (orgtbl-error, orgtbl-self-insert-command)
26666 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
26667
26668 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
26669 a local variable in each org-mode buffer.
26670
26671 * textmodes/org.el (org-set-regexps-and-options): Rename from
26672 `org-set-regexps'. Added checking for STARTUP keyword.
26673 (org-get-current-options): Add STARTUP options.
26674 (org-table-insert-row): Make mode intelligent about when
26675 realignment is needed.
26676 (org-self-insert-command, org-delete-backward-char, org-delete-char):
26677 New commands.
26678 (org-enable-table-editor): New default value `optimized'.
26679 (org-table-blank-field): Support blanking regions if active.
26680
26681 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
26682
26683 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
26684 if the year is not given.
26685
26686 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
26687 Add new escapes %m and %M, fixed bug with %F by adding
26688 save-match-data.
26689 (reftex-reference): Remove ?. from list of spaces.
26690 (reftex-label-info): Add automatic label prefix recognition.
26691
26692 * textmodes/reftex-index.el (reftex-index-next-phrase):
26693 Add slave parameter to call of `reftex-index-this-phrase'.
26694 (reftex-index-this-phrase): New optional argument.
26695 (reftex-index-region-phrases): Add slave parameter to call of
26696 `reftex-index-this-phrase'.
26697 (reftex-display-index): New argument redo.
26698 (reftex-index-rescan): Add `redo' to arguments of
26699 `reftex-display-index'.
26700 (reftex-index-Rescan, reftex-index-revert)
26701 (reftex-index-switch-index-tag): Add `redo' to arguments of
26702 `reftex-display-index'.
26703 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
26704 indexing. Fix bug with matching is there is a quote before or
26705 after the word.
26706
26707 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
26708 Fix bug when collecting citation keys in lines with comments.
26709 (reftex-citation): Prefix argument no longer rescans the document,
26710 but forces prompting for optional arguments of cite macros.
26711 (reftex-do-citation): Prompting for optional arguments implemented.
26712
26713 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
26714 Add optional arguments to most cite commands.
26715 (reftex-cite-cleanup-optional-args): New option
26716 (reftex-cite-prompt-optional-args): New option.
26717 (reftex-trust-label-prefix): New option.
26718
26719 * textmodes/reftex-toc.el (reftex-toc-find-section):
26720 Add push-mark before changing the position in the buffer.
26721
26722 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
26723 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
26724
26725 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
26726
26727 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
26728 more carefully.
26729
26730 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
26731
26732 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
26733 (sgml-mode): Use it.
26734 (sgml-get-context): Better keep track of implicitly closed tags.
26735
26736 2005-01-13 Kenichi Handa <handa@m17n.org>
26737
26738 * textmodes/ispell.el: These changes are to fix misalignment error
26739 caused by equivalent characters of different Emacs charsets.
26740 (ispell-unified-chars-table): New variable.
26741 (ispell-get-decoded-string): New function.
26742 (ispell-get-casechars, ispell-get-not-casechars)
26743 (ispell-get-otherchars): Call ispell-get-decoded-string.
26744
26745 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
26746
26747 * custom.el (custom-declare-variable): Just put symbol instead
26748 of (defvar . symbol) in `current-load-list'.
26749
26750 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
26751
26752 * emacs-lisp/elint.el: Fixed typo in Commentary section.
26753
26754 2005-01-12 Jay Belanger <belanger@truman.edu>
26755
26756 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
26757 to create a Calc summary.
26758
26759 2005-01-12 Kim F. Storm <storm@cua.dk>
26760
26761 * mouse.el (mouse-on-link-p): Change functionality and doc
26762 string to comply with latest description in lisp ref.
26763
26764 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
26765
26766 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
26767 Enable mouse clicks on mode-line, header-line and margin.
26768 (event-type): Give mouse event symbols an `event-kind' property
26769 with value `mouse-click'.
26770
26771 2005-01-12 Juri Linkov <juri@jurta.org>
26772
26773 * facemenu.el (list-colors-display): Add new arg buffer-name.
26774 Use it. Fix docstring. Replace code for identifying duplicate
26775 colors by the name with call to `list-colors-duplicates' which
26776 identifies duplicate colors by the value unless the color
26777 is one of special Windows colors. Set truncate-lines to t.
26778 Print sorted duplicate color names on each line. Indent to 22
26779 \(the longest color name in rgb.txt) instead of 20. Optimize.
26780 (list-colors-duplicates): New function.
26781 (facemenu-color-name-equal): Delete function.
26782
26783 * facemenu.el (list-colors-print): New function created from code
26784 in list-colors-display. Print #RRGGBB at the window right edge.
26785 (list-colors-display): When temp-buffer-show-function is not
26786 defined, call list-colors-print from temp-buffer-show-hook
26787 to get the right value of window-width in list-colors-print
26788 after the buffer is displayed.
26789
26790 * simple.el (pop-mark): Move deactivate-mark out of conditional
26791 part to deactivate the active mark regardless of the state of the
26792 mark ring.
26793
26794 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
26795 variables line in desktop files.
26796
26797 2005-01-12 Juri Linkov <juri@jurta.org>
26798
26799 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
26800 Bring together isearch highlight related options.
26801 (lazy-highlight): Replace group `replace' by `matching'.
26802 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
26803 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
26804 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
26805 and declare them obsolete.
26806 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
26807 (isearch-faces): Remove defgroup.
26808 (isearch-overlay, isearch-highlight, isearch-dehighlight):
26809 Move isearch highlighting code closer to lazy highlighting code.
26810
26811 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
26812 (query-replace-highlight, query-replace-lazy-highlight)
26813 (query-replace): Move definitions to the beginning of the file.
26814
26815 2005-01-11 Juri Linkov <juri@jurta.org>
26816
26817 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
26818 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
26819 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
26820
26821 * info.el (Info-history-forward): New variable.
26822 (Info-select-node): Reset Info-history-forward to nil.
26823 (Info-last): Turn into defalias.
26824 (Info-history-back): Rename from Info-last.
26825 Add current node to Info-history-forward.
26826 (Info-history-forward): New fun.
26827 (Info-mode-map): Replace Info-last by Info-history-back.
26828 Bind Info-history-forward to "r".
26829 (Info-mode-menu): Replace Info-last by Info-history-back.
26830 Fix menu item text. Add menu item for Info-history-forward.
26831 (info-tool-bar-map): Replace Info-last by Info-history-back.
26832 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
26833 for Info-history-forward.
26834 (Info-mode): Replace Info-last by Info-history-back in docstring.
26835 Add local variable Info-history-forward.
26836 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
26837
26838 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
26839
26840 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
26841 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
26842 Ignore select-window events rather than fiddle with
26843 mouse-autoselect-window.
26844
26845 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
26846
26847 * type-break.el (type-break-mode): Fix previous change.
26848
26849 2005-01-10 Jay Belanger <belanger@truman.edu>
26850
26851 * calc/calc-ext.el (calc-reset): Reset when inside embedded
26852 calculator; only reset when point is inside a calculator.
26853 Don't adjust the window height if the window takes up the whole height
26854 of the frame.
26855
26856 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
26857
26858 * ebuff-menu.el (Electric-buffer-menu-mode):
26859 Preserve value of buffer-local var header-line-format.
26860
26861 2005-01-09 Jay Belanger <belanger@truman.edu>
26862
26863 * calc/calc.el (calc-mode-var-list-restore-saved-values):
26864 Make sure settings file exists before accessing it.
26865
26866 * calc/calc-embed.el (calc-embedded-subst):
26867 Replace math-multi-subst-rec, which is only supposed to be called
26868 by math-multi-subst, by math-multi-subst.
26869
26870 2005-01-09 Andre Spiegel <spiegel@gnu.org>
26871
26872 * vc.el (vc-allow-async-revert): New user option.
26873 (vc-disable-async-diff): New internal variable.
26874 (vc-revert-buffer): Use them to disable asynchronous diff.
26875
26876 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
26877 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
26878 asynchronously if vc-disable-async-diff is t.
26879
26880 2005-01-09 Jay Belanger <belanger@truman.edu>
26881
26882 * calc/calc.el (defcalcmodevar): New macro.
26883 (calc-mode-var-list-restore-default-values)
26884 (calc-mode-var-list-restore-saved-values): New functions.
26885 (calc-mode-var-list): Use defcalcmodevar to define it.
26886 (calc-always-load-extensions, calc-line-numbering)
26887 (calc-line-breaking, calc-display-just, calc-display-origin)
26888 (calc-number-radix, calc-leading-zeros, calc-group-digits)
26889 (calc-group-char, calc-point-char, calc-frac-format)
26890 (calc-prefer-frac, calc-hms-format, calc-date-format)
26891 (calc-float-format, calc-full-float-format, calc-complex-format)
26892 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
26893 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
26894 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
26895 (calc-matrix-brackets, calc-language, calc-language-option)
26896 (calc-left-label, calc-right-label, calc-word-size)
26897 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
26898 (calc-display-raw, calc-internal-prec, calc-angle-mode)
26899 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
26900 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
26901 (calc-window-height, calc-display-trail, calc-show-selections)
26902 (calc-use-selections, calc-assoc-selections)
26903 (calc-display-working-message, calc-auto-why, calc-timing)
26904 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
26905 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
26906 (calc-gnuplot-default-device, calc-gnuplot-default-output)
26907 (calc-gnuplot-print-device, calc-gnuplot-print-output)
26908 (calc-gnuplot-geometry, calc-graph-default-resolution)
26909 (calc-graph-default-resolution-3d, calc-invocation-macro)
26910 (calc-show-banner): Use defcalcmodevar to declare them and set
26911 their default values.
26912
26913 * calc/calc-ext.el (calc-reset): Restore saved values of variables
26914 instead of default values (but restore default values if there is
26915 an argument of 0).
26916
26917 2005-01-09 David Kastrup <dak@gnu.org>
26918
26919 * desktop.el (desktop-restore-eager): Fix typo in type.
26920
26921 2005-01-08 Richard M. Stallman <rms@gnu.org>
26922
26923 * cus-edit.el (customize): Delete :link.
26924
26925 2005-01-08 Jay Belanger <belanger@truman.edu>
26926
26927 * calc/calc.el (calc-mode): Remove the extension from the
26928 `calc-settings-file' file name when loading it.
26929
26930 2005-01-08 Kim F. Storm <storm@cua.dk>
26931
26932 * info.el (Info-mode-map, Info-next-link-keymap)
26933 (Info-prev-link-keymap, Info-up-link-keymap):
26934 Map follow-link to mouse-face.
26935 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
26936
26937 2005-01-08 Jay Belanger <belanger@truman.edu>
26938
26939 * calc/calc.el (calc-settings-file): Change default value.
26940 Suggested by cgw in a comment in calc-mode.el.
26941
26942 * calc/calc-mode.el (calc-settings-file-name):
26943 Compare calc-settings-file to user-init-file instead of ~/.emacs.
26944 Replace ~/.emacs in a prompt by calc-settings-file.
26945
26946 2005-01-07 Lars Hansen <larsh@math.ku.dk>
26947
26948 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
26949 (desktop-lazy-idle-delay): New customizable variables.
26950 (desktop-buffer-args-list): New variable.
26951 (desktop-append-buffer-args): New function.
26952 (desktop-save): Call desktop-append-buffer-args for some buffers.
26953 (desktop-lazy-create-buffer): New function.
26954 (desktop-idle-create-buffers): New function.
26955 (desktop-read): Add message about buffers to restore lazily.
26956 (desktop-lazy-abort): New command.
26957 (desktop-clear): Call desktop-lazy-abort.
26958 (desktop-lazy-complete): New command.
26959
26960 2005-01-06 Richard M. Stallman <rms@gnu.org>
26961
26962 * emacs-lisp/find-func.el (find-face-definition):
26963 Rename from find-face.
26964
26965 2005-01-06 Kim F. Storm <storm@cua.dk>
26966
26967 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
26968
26969 * man.el (Man-xref-man-page, Man-xref-header-file)
26970 (Man-xref-normal-file): Add follow-link property.
26971
26972 2005-01-06 Jay Belanger <belanger@truman.edu>
26973
26974 * calc/calc-units.el: Make sure the proper macro definitions are
26975 available when compiling.
26976
26977 2005-01-06 Juri Linkov <juri@jurta.org>
26978
26979 * isearch.el (isearch-lazy-highlight-update):
26980 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
26981
26982 2005-01-06 Miles Bader <miles@gnu.org>
26983
26984 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
26985 (isearch-lazy-highlight-face): Use new name.
26986
26987 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
26988
26989 * uniquify.el (uniquify-rationalize-file-buffer-names):
26990 Re-add an interactive spec.
26991 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
26992 to the same name.
26993
26994 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
26995 (isearch-update, isearch-done): Adjust calls accordingly.
26996
26997 2005-01-05 Richard M. Stallman <rms@gnu.org>
26998
26999 * custom.el (custom-set-variables, custom-theme-set-variables):
27000 Clarify documentation.
27001
27002 * emacs-lisp/find-func.el (find-variable)
27003 (find-variable-other-window, find-variable-other-frame):
27004 Fix the TYPE args to find-function-read and find-function-do-it.
27005 (find-function): Doc fix.
27006 (find-function-at-point): Replace function-at-point alias.
27007
27008 2005-01-04 Richard M. Stallman <rms@gnu.org>
27009
27010 * cus-face.el (custom-declare-face):
27011 Record defface in current-load-list.
27012
27013 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
27014
27015 * emacs-lisp/find-func.el: Doc fixes.
27016 (find-face-regexp): New variable.
27017 (find-function-regexp-alist): New variable.
27018 (find-function-C-source): Third arg is now TYPE.
27019 (find-function-search-for-symbol): Handle general TYPE.
27020 (find-function-read, find-function-do-it): Handle general TYPE.
27021 (find-definition-noselect, find-face): New functions.
27022 (function-at-point): Alias deleted.
27023
27024 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
27025
27026 * battery.el (display-battery-mode): Rename from display-battery.
27027 Handle the case where it gets turned off.
27028
27029 2005-01-04 Richard M. Stallman <rms@gnu.org>
27030
27031 * cus-edit.el (customize): Make :link point to user doc.
27032
27033 * man.el (Man-fontify-manpage): Turn off undo generation.
27034
27035 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
27036
27037 2005-01-04 Andreas Schwab <schwab@suse.de>
27038
27039 * files.el (insert-directory): Only look for error lines in
27040 inserted text. Don't move too far after processing --dired markers.
27041
27042 2005-01-04 Richard M. Stallman <rms@gnu.org>
27043
27044 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
27045 Don't expand if the character is @, period, dash, etc.
27046 (define-mail-abbrev): Quote names that contain problem characters.
27047
27048 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
27049
27050 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
27051
27052 2005-01-03 Richard M. Stallman <rms@gnu.org>
27053
27054 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
27055 (query-replace-highlight, query-replace-lazy-highlight)
27056 (query-replace): Definitions moved up. Doc fix.
27057
27058 2005-01-03 Richard M. Stallman <rms@gnu.org>
27059
27060 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
27061 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
27062 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
27063 (lazy-highlight-face): Rename from isearch-lazy-...
27064 Change all references to them.
27065
27066 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
27067
27068 * cus-edit.el (custom-file): Doc fix for defcustom.
27069 (custom-file): The function no longer sets the variable
27070 `custom-file' to its return value.
27071
27072 * startup.el (command-line): No longer load `custom-file'.
27073
27074 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
27075
27076 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
27077
27078 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
27079 Don't confuse module-prefixed identifiers for labels.
27080 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
27081
27082 2005-01-02 Richard M. Stallman <rms@gnu.org>
27083
27084 * files.el (basic-save-buffer-1): Fix previous change.
27085
27086 * loadhist.el (file-loadhist-lookup): New function.
27087 (file-provides, file-requires): Use it.
27088
27089 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
27090 instead of calculating the right size.
27091
27092 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
27093
27094 * vc-svn.el (vc-svn-diff): Stay local if possible.
27095
27096 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
27097
27098 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
27099
27100 * files.el (hack-local-variables): Fix last change.
27101
27102 2005-01-02 Jay Belanger <belanger@truman.edu>
27103
27104 * calc/calc-yank.el (calc-edit-top): New variable.
27105 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
27106 object. Change header properties.
27107 (calc-edit-finish, calc-edit-finish-stack-object)
27108 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
27109 edited object.
27110 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
27111 for the beginning of the edited object.
27112 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
27113 for the beginning of the edited object.
27114 * calc/calc-prog.el (calc-edit-macro-finish-edit)
27115 (calc-finish-formula-edit, calc-macro-repeats)
27116 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
27117 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
27118 beginning of the edited object.
27119 (calc-user-define-edit): Change the header for editing macros.
27120 Remove unnecessary variable.
27121
27122 2005-01-01 Jay Belanger <belanger@truman.edu>
27123
27124 * calc/calc-yank.el (calc-edit-mode): Change default header.
27125 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
27126 * calc/calc-store.el (calc-edit-variable): Change title to match new
27127 header.
27128 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
27129 mode to match new header.
27130 (calc-user-define-edit): Change titles to include names of commands.
27131 (calc-finish-formula-edit): Adjust to handle new header.
27132 (calc-finish-macro-edit): Remove.
27133 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
27134 (calc-edit-macro-command, calc-edit-macro-command-type)
27135 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
27136 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
27137 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
27138 (calc-edit-macro-finish-edit): New functions.
27139 (calc-user-define-edit): Use new functions to edit named calc macros.
27140
27141 2005-01-01 Stefan <monnier@iro.umontreal.ca>
27142
27143 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
27144
27145 * ses.el (copy-region-as-kill): Deactivate mark.
27146
27147 2005-01-01 Richard M. Stallman <rms@gnu.org>
27148
27149 * replace.el (occur-1): If the output buffer is also an input,
27150 don't kill it, rename it.
27151
27152 * faces.el (set-face-background, set-face-foreground): Doc fix.
27153
27154 * cus-face.el (custom-face-attributes): Fix :help-echo strings
27155 for :foreground and :background.
27156
27157 * dired.el (dired-view-command-alist): Variable deleted.
27158 (dired-view-file, dired-mouse-find-file-other-window):
27159 Delete the code to use it.
27160
27161 2005-01-01 Kim F. Storm <storm@cua.dk>
27162
27163 * image.el (insert-sliced-image): Use t for line-height property.
27164
27165 See ChangeLog.11 for earlier changes.
27166
27167 ;; Local Variables:
27168 ;; coding: iso-2022-7bit
27169 ;; End:
27170
27171 Copyright (C) 2005, 2006 Free Software Foundation, Inc.
27172 Copying and distribution of this file, with or without modification,
27173 are permitted provided the copyright notice and this notice are preserved.
27174
27175 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1